diff --git a/bin/Debug/net461/AxInterop.QRMAKERADLib.dll b/bin/Debug/net461/AxInterop.QRMAKERADLib.dll new file mode 100644 index 0000000..3014ebb Binary files /dev/null and b/bin/Debug/net461/AxInterop.QRMAKERADLib.dll differ diff --git a/bin/Debug/net461/CSJLabelLib.dll b/bin/Debug/net461/CSJLabelLib.dll new file mode 100644 index 0000000..0800d74 Binary files /dev/null and b/bin/Debug/net461/CSJLabelLib.dll differ diff --git a/bin/Debug/net461/Citizen.LayoutUtilities.Common.dll b/bin/Debug/net461/Citizen.LayoutUtilities.Common.dll new file mode 100644 index 0000000..de61d8b Binary files /dev/null and b/bin/Debug/net461/Citizen.LayoutUtilities.Common.dll differ diff --git a/bin/Debug/net461/Citizen.LayoutUtilities.Printing.dll b/bin/Debug/net461/Citizen.LayoutUtilities.Printing.dll new file mode 100644 index 0000000..3e62032 Binary files /dev/null and b/bin/Debug/net461/Citizen.LayoutUtilities.Printing.dll differ diff --git a/bin/Debug/net461/Google.Protobuf.dll b/bin/Debug/net461/Google.Protobuf.dll new file mode 100644 index 0000000..6ea720d Binary files /dev/null and b/bin/Debug/net461/Google.Protobuf.dll differ diff --git a/bin/Debug/net461/Google.Protobuf.xml b/bin/Debug/net461/Google.Protobuf.xml new file mode 100644 index 0000000..ebbf629 --- /dev/null +++ b/bin/Debug/net461/Google.Protobuf.xml @@ -0,0 +1,7470 @@ + + + + Google.Protobuf + + + + + Provides a utility routine to copy small arrays much more quickly than Buffer.BlockCopy + + + + + The threshold above which you should use Buffer.BlockCopy rather than ByteArray.Copy + + + + + Determines which copy routine to use based on the number of bytes to be copied. + + + + + Reverses the order of bytes in the array + + + + + Immutable array of bytes. + + + + + Unsafe operations that can cause IO Failure and/or other catestrophic side-effects. + + + + + Constructs a new ByteString from the given byte array. The array is + *not* copied, and must not be modified after this constructor is called. + + + + + Provides direct, unrestricted access to the bytes contained in this instance. + You must not modify or resize the byte array returned by this method. + + + + + Internal use only. Ensure that the provided array is not mutated and belongs to this instance. + + + + + Constructs a new ByteString from the given byte array. The array is + *not* copied, and must not be modified after this constructor is called. + + + + + Returns an empty ByteString. + + + + + Returns the length of this ByteString in bytes. + + + + + Returns true if this byte string is empty, false otherwise. + + + + + Converts this into a byte array. + + The data is copied - changes to the returned array will not be reflected in this ByteString. + A byte array with the same data as this ByteString. + + + + Converts this into a standard base64 representation. + + A base64 representation of this ByteString. + + + + Constructs a from the Base64 Encoded String. + + + + + Constructs a from data in the given stream, synchronously. + + If successful, will be read completely, from the position + at the start of the call. + The stream to copy into a ByteString. + A ByteString with content read from the given stream. + + + + Constructs a from data in the given stream, asynchronously. + + If successful, will be read completely, from the position + at the start of the call. + The stream to copy into a ByteString. + The cancellation token to use when reading from the stream, if any. + A ByteString with content read from the given stream. + + + + Constructs a from the given array. The contents + are copied, so further modifications to the array will not + be reflected in the returned ByteString. + This method can also be invoked in ByteString.CopyFrom(0xaa, 0xbb, ...) form + which is primarily useful for testing. + + + + + Constructs a from a portion of a byte array. + + + + + Creates a new by encoding the specified text with + the given encoding. + + + + + Creates a new by encoding the specified text in UTF-8. + + + + + Retuns the byte at the given index. + + + + + Converts this into a string by applying the given encoding. + + + This method should only be used to convert binary data which was the result of encoding + text with the given encoding. + + The encoding to use to decode the binary data into text. + The result of decoding the binary data with the given decoding. + + + + Converts this into a string by applying the UTF-8 encoding. + + + This method should only be used to convert binary data which was the result of encoding + text with UTF-8. + + The result of decoding the binary data with the given decoding. + + + + Returns an iterator over the bytes in this . + + An iterator over the bytes in this object. + + + + Returns an iterator over the bytes in this . + + An iterator over the bytes in this object. + + + + Creates a CodedInputStream from this ByteString's data. + + + + + Compares two byte strings for equality. + + The first byte string to compare. + The second byte string to compare. + true if the byte strings are equal; false otherwise. + + + + Compares two byte strings for inequality. + + The first byte string to compare. + The second byte string to compare. + false if the byte strings are equal; true otherwise. + + + + Compares this byte string with another object. + + The object to compare this with. + true if refers to an equal ; false otherwise. + + + + Returns a hash code for this object. Two equal byte strings + will return the same hash code. + + A hash code for this object. + + + + Compares this byte string with another. + + The to compare this with. + true if refers to an equal byte string; false otherwise. + + + + Used internally by CodedOutputStream to avoid creating a copy for the write + + + + + Copies the entire byte array to the destination array provided at the offset specified. + + + + + Writes the entire byte array to the provided stream + + + + + Reads and decodes protocol message fields. + + + + This class is generally used by generated code to read appropriate + primitives from the stream. It effectively encapsulates the lowest + levels of protocol buffer format. + + + Repeated fields and map fields are not handled by this class; use + and to serialize such fields. + + + + + + Whether to leave the underlying stream open when disposing of this stream. + This is always true when there's no stream. + + + + + Buffer of data read from the stream or provided at construction time. + + + + + The index of the buffer at which we need to refill from the stream (if there is one). + + + + + The position within the current buffer (i.e. the next byte to read) + + + + + The stream to read further input from, or null if the byte array buffer was provided + directly on construction, with no further data available. + + + + + The last tag we read. 0 indicates we've read to the end of the stream + (or haven't read anything yet). + + + + + The next tag, used to store the value read by PeekTag. + + + + + The total number of bytes read before the current buffer. The + total bytes read up to the current position can be computed as + totalBytesRetired + bufferPos. + + + + + The absolute position of the end of the current message. + + + + + Creates a new CodedInputStream reading data from the given byte array. + + + + + Creates a new that reads from the given byte array slice. + + + + + Creates a new reading data from the given stream, which will be disposed + when the returned object is disposed. + + The stream to read from. + + + + Creates a new reading data from the given stream. + + The stream to read from. + true to leave open when the returned + is disposed; false to dispose of the given stream when the + returned object is disposed. + + + + Creates a new CodedInputStream reading data from the given + stream and buffer, using the default limits. + + + + + Creates a new CodedInputStream reading data from the given + stream and buffer, using the specified limits. + + + This chains to the version with the default limits instead of vice versa to avoid + having to check that the default values are valid every time. + + + + + Creates a with the specified size and recursion limits, reading + from an input stream. + + + This method exists separately from the constructor to reduce the number of constructor overloads. + It is likely to be used considerably less frequently than the constructors, as the default limits + are suitable for most use cases. + + The input stream to read from + The total limit of data to read from the stream. + The maximum recursion depth to allow while reading. + A CodedInputStream reading from with the specified size + and recursion limits. + + + + Returns the current position in the input stream, or the position in the input buffer + + + + + Returns the last tag read, or 0 if no tags have been read or we've read beyond + the end of the stream. + + + + + Returns the size limit for this stream. + + + This limit is applied when reading from the underlying stream, as a sanity check. It is + not applied when reading from a byte array data source without an underlying stream. + The default value is 64MB. + + + The size limit. + + + + + Returns the recursion limit for this stream. This limit is applied whilst reading messages, + to avoid maliciously-recursive data. + + + The default limit is 64. + + + The recursion limit for this stream. + + + + + Disposes of this instance, potentially closing any underlying stream. + + + As there is no flushing to perform here, disposing of a which + was constructed with the leaveOpen option parameter set to true (or one which + was constructed to read from a byte array) has no effect. + + + + + Verifies that the last call to ReadTag() returned tag 0 - in other words, + we've reached the end of the stream when we expected to. + + The + tag read was not the one specified + + + + Peeks at the next field tag. This is like calling , but the + tag is not consumed. (So a subsequent call to will return the + same value.) + + + + + Reads a field tag, returning the tag of 0 for "end of stream". + + + If this method returns 0, it doesn't necessarily mean the end of all + the data in this CodedInputStream; it may be the end of the logical stream + for an embedded message, for example. + + The next field tag, or 0 for end of stream. (0 is never a valid tag.) + + + + Skips the data for the field with the tag we've just read. + This should be called directly after , when + the caller wishes to skip an unknown field. + + + This method throws if the last-read tag was an end-group tag. + If a caller wishes to skip a group, they should skip the whole group, by calling this method after reading the + start-group tag. This behavior allows callers to call this method on any field they don't understand, correctly + resulting in an error if an end-group tag has not been paired with an earlier start-group tag. + + The last tag was an end-group tag + The last read operation read to the end of the logical stream + + + + Skip a group. + + + + + Reads a double field from the stream. + + + + + Reads a float field from the stream. + + + + + Reads a uint64 field from the stream. + + + + + Reads an int64 field from the stream. + + + + + Reads an int32 field from the stream. + + + + + Reads a fixed64 field from the stream. + + + + + Reads a fixed32 field from the stream. + + + + + Reads a bool field from the stream. + + + + + Reads a string field from the stream. + + + + + Reads an embedded message field value from the stream. + + + + + Reads a bytes field value from the stream. + + + + + Reads a uint32 field value from the stream. + + + + + Reads an enum field value from the stream. + + + + + Reads an sfixed32 field value from the stream. + + + + + Reads an sfixed64 field value from the stream. + + + + + Reads an sint32 field value from the stream. + + + + + Reads an sint64 field value from the stream. + + + + + Reads a length for length-delimited data. + + + This is internally just reading a varint, but this method exists + to make the calling code clearer. + + + + + Peeks at the next tag in the stream. If it matches , + the tag is consumed and the method returns true; otherwise, the + stream is left in the original position and the method returns false. + + + + + Same code as ReadRawVarint32, but read each byte individually, checking for + buffer overflow. + + + + + Reads a raw Varint from the stream. If larger than 32 bits, discard the upper bits. + This method is optimised for the case where we've got lots of data in the buffer. + That means we can check the size just once, then just read directly from the buffer + without constant rechecking of the buffer length. + + + + + Reads a varint from the input one byte at a time, so that it does not + read any bytes after the end of the varint. If you simply wrapped the + stream in a CodedInputStream and used ReadRawVarint32(Stream) + then you would probably end up reading past the end of the varint since + CodedInputStream buffers its input. + + + + + + + Reads a raw varint from the stream. + + + + + Reads a 32-bit little-endian integer from the stream. + + + + + Reads a 64-bit little-endian integer from the stream. + + + + + Decode a 32-bit value with ZigZag encoding. + + + ZigZag encodes signed integers into values that can be efficiently + encoded with varint. (Otherwise, negative values must be + sign-extended to 64 bits to be varint encoded, thus always taking + 10 bytes on the wire.) + + + + + Decode a 32-bit value with ZigZag encoding. + + + ZigZag encodes signed integers into values that can be efficiently + encoded with varint. (Otherwise, negative values must be + sign-extended to 64 bits to be varint encoded, thus always taking + 10 bytes on the wire.) + + + + + Sets currentLimit to (current position) + byteLimit. This is called + when descending into a length-delimited embedded message. The previous + limit is returned. + + The old limit. + + + + Discards the current limit, returning the previous limit. + + + + + Returns whether or not all the data before the limit has been read. + + + + + + Returns true if the stream has reached the end of the input. This is the + case if either the end of the underlying input source has been reached or + the stream has reached a limit created using PushLimit. + + + + + Called when buffer is empty to read more bytes from the + input. If is true, RefillBuffer() gurantees that + either there will be at least one byte in the buffer when it returns + or it will throw an exception. If is false, + RefillBuffer() returns false if no more bytes were available. + + + + + + + Read one byte from the input. + + + the end of the stream or the current limit was reached + + + + + Reads a fixed size of bytes from the input. + + + the end of the stream or the current limit was reached + + + + + Reads and discards bytes. + + the end of the stream + or the current limit was reached + + + + Abstraction of skipping to cope with streams which can't really skip. + + + + + Encodes and writes protocol message fields. + + + + This class is generally used by generated code to write appropriate + primitives to the stream. It effectively encapsulates the lowest + levels of protocol buffer format. Unlike some other implementations, + this does not include combined "write tag and value" methods. Generated + code knows the exact byte representations of the tags they're going to write, + so there's no need to re-encode them each time. Manually-written code calling + this class should just call one of the WriteTag overloads before each value. + + + Repeated fields and map fields are not handled by this class; use RepeatedField<T> + and MapField<TKey, TValue> to serialize such fields. + + + + + + Computes the number of bytes that would be needed to encode a + double field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + float field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + uint64 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode an + int64 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode an + int32 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + fixed64 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + fixed32 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + bool field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + string field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + group field, including the tag. + + + + + Computes the number of bytes that would be needed to encode an + embedded message field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + bytes field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + uint32 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + enum field, including the tag. The caller is responsible for + converting the enum value to its numeric value. + + + + + Computes the number of bytes that would be needed to encode an + sfixed32 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode an + sfixed64 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode an + sint32 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode an + sint64 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a length, + as written by . + + + + + Computes the number of bytes that would be needed to encode a varint. + + + + + Computes the number of bytes that would be needed to encode a varint. + + + + + Computes the number of bytes that would be needed to encode a tag. + + + + + The buffer size used by CreateInstance(Stream). + + + + + Creates a new CodedOutputStream that writes directly to the given + byte array. If more bytes are written than fit in the array, + OutOfSpaceException will be thrown. + + + + + Creates a new CodedOutputStream that writes directly to the given + byte array slice. If more bytes are written than fit in the array, + OutOfSpaceException will be thrown. + + + + + Creates a new which write to the given stream, and disposes of that + stream when the returned CodedOutputStream is disposed. + + The stream to write to. It will be disposed when the returned CodedOutputStream is disposed. + + + + Creates a new CodedOutputStream which write to the given stream and uses + the specified buffer size. + + The stream to write to. It will be disposed when the returned CodedOutputStream is disposed. + The size of buffer to use internally. + + + + Creates a new CodedOutputStream which write to the given stream. + + The stream to write to. + If true, is left open when the returned CodedOutputStream is disposed; + if false, the provided stream is disposed as well. + + + + Creates a new CodedOutputStream which write to the given stream and uses + the specified buffer size. + + The stream to write to. + The size of buffer to use internally. + If true, is left open when the returned CodedOutputStream is disposed; + if false, the provided stream is disposed as well. + + + + Returns the current position in the stream, or the position in the output buffer + + + + + Writes a double field value, without a tag, to the stream. + + The value to write + + + + Writes a float field value, without a tag, to the stream. + + The value to write + + + + Writes a uint64 field value, without a tag, to the stream. + + The value to write + + + + Writes an int64 field value, without a tag, to the stream. + + The value to write + + + + Writes an int32 field value, without a tag, to the stream. + + The value to write + + + + Writes a fixed64 field value, without a tag, to the stream. + + The value to write + + + + Writes a fixed32 field value, without a tag, to the stream. + + The value to write + + + + Writes a bool field value, without a tag, to the stream. + + The value to write + + + + Writes a string field value, without a tag, to the stream. + The data is length-prefixed. + + The value to write + + + + Writes a message, without a tag, to the stream. + The data is length-prefixed. + + The value to write + + + + Write a byte string, without a tag, to the stream. + The data is length-prefixed. + + The value to write + + + + Writes a uint32 value, without a tag, to the stream. + + The value to write + + + + Writes an enum value, without a tag, to the stream. + + The value to write + + + + Writes an sfixed32 value, without a tag, to the stream. + + The value to write. + + + + Writes an sfixed64 value, without a tag, to the stream. + + The value to write + + + + Writes an sint32 value, without a tag, to the stream. + + The value to write + + + + Writes an sint64 value, without a tag, to the stream. + + The value to write + + + + Writes a length (in bytes) for length-delimited data. + + + This method simply writes a rawint, but exists for clarity in calling code. + + Length value, in bytes. + + + + Encodes and writes a tag. + + The number of the field to write the tag for + The wire format type of the tag to write + + + + Writes an already-encoded tag. + + The encoded tag + + + + Writes the given single-byte tag directly to the stream. + + The encoded tag + + + + Writes the given two-byte tag directly to the stream. + + The first byte of the encoded tag + The second byte of the encoded tag + + + + Writes the given three-byte tag directly to the stream. + + The first byte of the encoded tag + The second byte of the encoded tag + The third byte of the encoded tag + + + + Writes the given four-byte tag directly to the stream. + + The first byte of the encoded tag + The second byte of the encoded tag + The third byte of the encoded tag + The fourth byte of the encoded tag + + + + Writes the given five-byte tag directly to the stream. + + The first byte of the encoded tag + The second byte of the encoded tag + The third byte of the encoded tag + The fourth byte of the encoded tag + The fifth byte of the encoded tag + + + + Writes a 32 bit value as a varint. The fast route is taken when + there's enough buffer space left to whizz through without checking + for each byte; otherwise, we resort to calling WriteRawByte each time. + + + + + Writes out an array of bytes. + + + + + Writes out part of an array of bytes. + + + + + Encode a 32-bit value with ZigZag encoding. + + + ZigZag encodes signed integers into values that can be efficiently + encoded with varint. (Otherwise, negative values must be + sign-extended to 64 bits to be varint encoded, thus always taking + 10 bytes on the wire.) + + + + + Encode a 64-bit value with ZigZag encoding. + + + ZigZag encodes signed integers into values that can be efficiently + encoded with varint. (Otherwise, negative values must be + sign-extended to 64 bits to be varint encoded, thus always taking + 10 bytes on the wire.) + + + + + Indicates that a CodedOutputStream wrapping a flat byte array + ran out of space. + + + + + Flushes any buffered data and optionally closes the underlying stream, if any. + + + + By default, any underlying stream is closed by this method. To configure this behaviour, + use a constructor overload with a leaveOpen parameter. If this instance does not + have an underlying stream, this method does nothing. + + + For the sake of efficiency, calling this method does not prevent future write calls - but + if a later write ends up writing to a stream which has been disposed, that is likely to + fail. It is recommend that you not call any other methods after this. + + + + + + Flushes any buffered data to the underlying stream (if there is one). + + + + + Verifies that SpaceLeft returns zero. It's common to create a byte array + that is exactly big enough to hold a message, then write to it with + a CodedOutputStream. Calling CheckNoSpaceLeft after writing verifies that + the message was actually as big as expected, which can help bugs. + + + + + If writing to a flat array, returns the space left in the array. Otherwise, + throws an InvalidOperationException. + + + + + Utility to compare if two Lists are the same, and the hash code + of a List. + + + + + Checks if two lists are equal. + + + + + Gets the list's hash code. + + + + + Representation of a map field in a Protocol Buffer message. + + Key type in the map. Must be a type supported by Protocol Buffer map keys. + Value type in the map. Must be a type supported by Protocol Buffers. + + + For string keys, the equality comparison is provided by . + + + Null values are not permitted in the map, either for wrapper types or regular messages. + If a map is deserialized from a data stream and the value is missing from an entry, a default value + is created instead. For primitive types, that is the regular default value (0, the empty string and so + on); for message types, an empty instance of the message is created, as if the map entry contained a 0-length + encoded value for the field. + + + This implementation does not generally prohibit the use of key/value types which are not + supported by Protocol Buffers (e.g. using a key type of byte) but nor does it guarantee + that all operations will work in such cases. + + + The order in which entries are returned when iterating over this object is undefined, and may change + in future versions. + + + + + + Creates a deep clone of this object. + + + A deep clone of this object. + + + + + Adds the specified key/value pair to the map. + + + This operation fails if the key already exists in the map. To replace an existing entry, use the indexer. + + The key to add + The value to add. + The given key already exists in map. + + + + Determines whether the specified key is present in the map. + + The key to check. + true if the map contains the given key; false otherwise. + + + + Removes the entry identified by the given key from the map. + + The key indicating the entry to remove from the map. + true if the map contained the given key before the entry was removed; false otherwise. + + + + Gets the value associated with the specified key. + + The key whose value to get. + When this method returns, the value associated with the specified key, if the key is found; + otherwise, the default value for the type of the parameter. + This parameter is passed uninitialized. + true if the map contains an element with the specified key; otherwise, false. + + + + Gets or sets the value associated with the specified key. + + The key of the value to get or set. + The property is retrieved and key does not exist in the collection. + The value associated with the specified key. If the specified key is not found, + a get operation throws a , and a set operation creates a new element with the specified key. + + + + Gets a collection containing the keys in the map. + + + + + Gets a collection containing the values in the map. + + + + + Adds the specified entries to the map. The keys and values are not automatically cloned. + + The entries to add to the map. + + + + Returns an enumerator that iterates through the collection. + + + An enumerator that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Adds the specified item to the map. + + The item to add to the map. + + + + Removes all items from the map. + + + + + Determines whether map contains an entry equivalent to the given key/value pair. + + The key/value pair to find. + + + + + Copies the key/value pairs in this map to an array. + + The array to copy the entries into. + The index of the array at which to start copying values. + + + + Removes the specified key/value pair from the map. + + Both the key and the value must be found for the entry to be removed. + The key/value pair to remove. + true if the key/value pair was found and removed; false otherwise. + + + + Gets the number of elements contained in the map. + + + + + Gets a value indicating whether the map is read-only. + + + + + Determines whether the specified , is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Compares this map with another for equality. + + + The order of the key/value pairs in the maps is not deemed significant in this comparison. + + The map to compare this with. + true if refers to an equal map; false otherwise. + + + + Adds entries to the map from the given stream. + + + It is assumed that the stream is initially positioned after the tag specified by the codec. + This method will continue reading entries from the stream until the end is reached, or + a different tag is encountered. + + Stream to read from + Codec describing how the key/value pairs are encoded + + + + Writes the contents of this map to the given coded output stream, using the specified codec + to encode each entry. + + The output stream to write to. + The codec to use for each entry. + + + + Calculates the size of this map based on the given entry codec. + + The codec to use to encode each entry. + + + + + Returns a string representation of this repeated field, in the same + way as it would be represented by the default JSON formatter. + + + + + A codec for a specific map field. This contains all the information required to encode and + decode the nested messages. + + + + + Creates a new entry codec based on a separate key codec and value codec, + and the tag to use for each map entry. + + The key codec. + The value codec. + The map tag to use to introduce each map entry. + + + + The tag used in the enclosing message to indicate map entries. + + + + + A mutable message class, used for parsing and serializing. This + delegates the work to a codec, but implements the interface + for interop with and . + This is nested inside Codec as it's tightly coupled to the associated codec, + and it's simpler if it has direct access to all its fields. + + + + + Provides a central place to implement equality comparisons, primarily for bitwise float/double equality. + + + + + Returns an equality comparer for suitable for Protobuf equality comparisons. + This is usually just the default equality comparer for the type, but floating point numbers are compared + bitwise. + + The type of equality comparer to return. + The equality comparer. + + + + Returns an equality comparer suitable for comparing 64-bit floating point values, by bitwise comparison. + (NaN values are considered equal, but only when they have the same representation.) + + + + + Returns an equality comparer suitable for comparing 32-bit floating point values, by bitwise comparison. + (NaN values are considered equal, but only when they have the same representation.) + + + + + Returns an equality comparer suitable for comparing nullable 64-bit floating point values, by bitwise comparison. + (NaN values are considered equal, but only when they have the same representation.) + + + + + Returns an equality comparer suitable for comparing nullable 32-bit floating point values, by bitwise comparison. + (NaN values are considered equal, but only when they have the same representation.) + + + + + Read-only wrapper around another dictionary. + + + + + The contents of a repeated field: essentially, a collection with some extra + restrictions (no null values) and capabilities (deep cloning). + + + This implementation does not generally prohibit the use of types which are not + supported by Protocol Buffers but nor does it guarantee that all operations will work in such cases. + + The element type of the repeated field. + + + + Creates a deep clone of this repeated field. + + + If the field type is + a message type, each element is also cloned; otherwise, it is + assumed that the field type is primitive (including string and + bytes, both of which are immutable) and so a simple copy is + equivalent to a deep clone. + + A deep clone of this repeated field. + + + + Adds the entries from the given input stream, decoding them with the specified codec. + + The input stream to read from. + The codec to use in order to read each entry. + + + + Calculates the size of this collection based on the given codec. + + The codec to use when encoding each field. + The number of bytes that would be written to a by , + using the same codec. + + + + Writes the contents of this collection to the given , + encoding each value using the specified codec. + + The output stream to write to. + The codec to use when encoding each value. + + + + Adds the specified item to the collection. + + The item to add. + + + + Removes all items from the collection. + + + + + Determines whether this collection contains the given item. + + The item to find. + true if this collection contains the given item; false otherwise. + + + + Copies this collection to the given array. + + The array to copy to. + The first index of the array to copy to. + + + + Removes the specified item from the collection + + The item to remove. + true if the item was found and removed; false otherwise. + + + + Gets the number of elements contained in the collection. + + + + + Gets a value indicating whether the collection is read-only. + + + + + Adds all of the specified values into this collection. + + The values to add to this collection. + + + + Adds all of the specified values into this collection. This method is present to + allow repeated fields to be constructed from queries within collection initializers. + Within non-collection-initializer code, consider using the equivalent + method instead for clarity. + + The values to add to this collection. + + + + Returns an enumerator that iterates through the collection. + + + An enumerator that can be used to iterate through the collection. + + + + + Determines whether the specified , is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Compares this repeated field with another for equality. + + The repeated field to compare this with. + true if refers to an equal repeated field; false otherwise. + + + + Returns the index of the given item within the collection, or -1 if the item is not + present. + + The item to find in the collection. + The zero-based index of the item, or -1 if it is not found. + + + + Inserts the given item at the specified index. + + The index at which to insert the item. + The item to insert. + + + + Removes the item at the given index. + + The zero-based index of the item to remove. + + + + Returns a string representation of this repeated field, in the same + way as it would be represented by the default JSON formatter. + + + + + Gets or sets the item at the specified index. + + + The element at the specified index. + + The zero-based index of the element to get or set. + The item at the specified index. + + + + Extension methods for , effectively providing + the familiar members from previous desktop framework versions while + targeting the newer releases, .NET Core etc. + + + + + Returns the public getter of a property, or null if there is no such getter + (either because it's read-only, or the getter isn't public). + + + + + Returns the public setter of a property, or null if there is no such setter + (either because it's write-only, or the setter isn't public). + + + + + Provides extension methods on Type that just proxy to TypeInfo. + These are used to support the new type system from .NET 4.5, without + having calls to GetTypeInfo all over the place. While the methods here are meant to be + broadly compatible with the desktop framework, there are some subtle differences in behaviour - but + they're not expected to affect our use cases. While the class is internal, that should be fine: we can + evaluate each new use appropriately. + + + + + See https://msdn.microsoft.com/en-us/library/system.type.isassignablefrom + + + + + Returns a representation of the public property associated with the given name in the given type, + including inherited properties or null if there is no such public property. + Here, "public property" means a property where either the getter, or the setter, or both, is public. + + + + + Returns a representation of the public method associated with the given name in the given type, + including inherited methods. + + + This has a few differences compared with Type.GetMethod in the desktop framework. It will throw + if there is an ambiguous match even between a private method and a public one, but it *won't* throw + if there are two overloads at different levels in the type hierarchy (e.g. class Base declares public void Foo(int) and + class Child : Base declares public void Foo(long)). + + One type in the hierarchy declared more than one method with the same name + + + + Factory methods for . + + + + + Retrieves a codec suitable for a string field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for a bytes field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for a bool field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for an int32 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for an sint32 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for a fixed32 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for an sfixed32 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for a uint32 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for an int64 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for an sint64 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for a fixed64 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for an sfixed64 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for a uint64 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for a float field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for a double field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for an enum field with the given tag. + + The tag. + A conversion function from to the enum type. + A conversion function from the enum type to . + A codec for the given tag. + + + + Retrieves a codec suitable for a message field with the given tag. + + The tag. + A parser to use for the message type. + A codec for the given tag. + + + + Creates a codec for a wrapper type of a class - which must be string or ByteString. + + + + + Creates a codec for a wrapper type of a struct - which must be Int32, Int64, UInt32, UInt64, + Bool, Single or Double. + + + + + Helper code to create codecs for wrapper types. + + + Somewhat ugly with all the static methods, but the conversions involved to/from nullable types make it + slightly tricky to improve. So long as we keep the public API (ForClassWrapper, ForStructWrapper) in place, + we can refactor later if we come up with something cleaner. + + + + + Returns a field codec which effectively wraps a value of type T in a message. + + + + + + + An encode/decode pair for a single field. This effectively encapsulates + all the information needed to read or write the field value from/to a coded + stream. + + + This class is public and has to be as it is used by generated code, but its public + API is very limited - just what the generated code needs to call directly. + + + + This never writes default values to the stream, and does not address "packedness" + in repeated fields itself, other than to know whether or not the field *should* be packed. + + + + + Returns a delegate to write a value (unconditionally) to a coded output stream. + + + + + Returns the size calculator for just a value. + + + + + Returns a delegate to read a value from a coded input stream. It is assumed that + the stream is already positioned on the appropriate tag. + + + + + Returns the fixed size for an entry, or 0 if sizes vary. + + + + + Gets the tag of the codec. + + + The tag of the codec. + + + + + Default value for this codec. Usually the same for every instance of the same type, but + for string/ByteString wrapper fields the codec's default value is null, whereas for + other string/ByteString fields it's "" or ByteString.Empty. + + + The default value of the codec's type. + + + + + Write a tag and the given value, *if* the value is not the default. + + + + + Reads a value of the codec type from the given . + + The input stream to read from. + The value read from the stream. + + + + Calculates the size required to write the given value, with a tag, + if the value is not the default. + + + + + Class containing helpful workarounds for various platform compatibility + + + + + A message type that has a custom string format for diagnostic purposes. + + + + Calling on a generated message type normally + returns the JSON representation. If a message type implements this interface, + then the method will be called instead of the regular + JSON formatting code, but only when ToString() is called either on the message itself + or on another message which contains it. This does not affect the normal JSON formatting of + the message. + + + For example, if you create a proto message representing a GUID, the internal + representation may be a bytes field or four fixed32 fields. However, when debugging + it may be more convenient to see a result in the same format as provides. + + This interface extends to avoid it accidentally being implemented + on types other than messages, where it would not be used by anything in the framework. + + + + + Returns a string representation of this object, for diagnostic purposes. + + + This method is called when a message is formatted as part of a + call. It does not affect the JSON representation used by other than + in calls to . While it is recommended + that the result is valid JSON, this is never assumed by the Protobuf library. + + A string representation of this object, for diagnostic purposes. + + + + Generic interface for a deeply cloneable type. + + + + All generated messages implement this interface, but so do some non-message types. + Additionally, due to the type constraint on T in , + it is simpler to keep this as a separate interface. + + + The type itself, returned by the method. + + + + Creates a deep clone of this object. + + A deep clone of this object. + + + + Interface for a Protocol Buffers message, supporting + basic operations required for serialization. + + + + + Merges the data from the specified coded input stream with the current message. + + See the user guide for precise merge semantics. + + + + + Writes the data to the given coded output stream. + + Coded output stream to write the data to. Must not be null. + + + + Calculates the size of this message in Protocol Buffer wire format, in bytes. + + The number of bytes required to write this message + to a coded output stream. + + + + Descriptor for this message. All instances are expected to return the same descriptor, + and for generated types this will be an explicitly-implemented member, returning the + same value as the static property declared on the type. + + + + + Generic interface for a Protocol Buffers message, + where the type parameter is expected to be the same type as + the implementation class. + + The message type. + + + + Merges the given message into this one. + + See the user guide for precise merge semantics. + The message to merge with this one. Must not be null. + + + + Thrown when an attempt is made to parse invalid JSON, e.g. using + a non-string property key, or including a redundant comma. Parsing a protocol buffer + message represented in JSON using can throw both this + exception and depending on the situation. This + exception is only thrown for "pure JSON" errors, whereas InvalidProtocolBufferException + is thrown when the JSON may be valid in and of itself, but cannot be parsed as a protocol buffer + message. + + + + + Thrown when a protocol message being parsed is invalid in some way, + e.g. it contains a malformed varint or a negative byte length. + + + + + Creates an exception for an error condition of an invalid tag being encountered. + + + + + Reflection-based converter from messages to JSON. + + + + Instances of this class are thread-safe, with no mutable state. + + + This is a simple start to get JSON formatting working. As it's reflection-based, + it's not as quick as baking calls into generated messages - but is a simpler implementation. + (This code is generally not heavily optimized.) + + + + + + Returns a formatter using the default settings. + + + + + The JSON representation of the first 160 characters of Unicode. + Empty strings are replaced by the static constructor. + + + + + Creates a new formatted with the given settings. + + The settings. + + + + Formats the specified message as JSON. + + The message to format. + The formatted message. + + + + Formats the specified message as JSON. + + The message to format. + The TextWriter to write the formatted message to. + The formatted message. + + + + Converts a message to JSON for diagnostic purposes with no extra context. + + + + This differs from calling on the default JSON + formatter in its handling of . As no type registry is available + in calls, the normal way of resolving the type of + an Any message cannot be applied. Instead, a JSON property named @value + is included with the base64 data from the property of the message. + + The value returned by this method is only designed to be used for diagnostic + purposes. It may not be parsable by , and may not be parsable + by other Protocol Buffer implementations. + + The message to format for diagnostic purposes. + The diagnostic-only JSON representation of the message + + + + Writes a single value to the given writer as JSON. Only types understood by + Protocol Buffers can be written in this way. This method is only exposed for + advanced use cases; most users should be using + or . + + The writer to write the value to. Must not be null. + The value to write. May be null. + + + + Central interception point for well-known type formatting. Any well-known types which + don't need special handling can fall back to WriteMessage. We avoid assuming that the + values are using the embedded well-known types, in order to allow for dynamic messages + in the future. + + + + + Writes a string (including leading and trailing double quotes) to a builder, escaping as required. + + + Other than surrogate pair handling, this code is mostly taken from src/google/protobuf/util/internal/json_escaping.cc. + + + + + Settings controlling JSON formatting. + + + + + Default settings, as used by + + + + + Whether fields whose values are the default for the field type (e.g. 0 for integers) + should be formatted (true) or omitted (false). + + + + + The type registry used to format messages. + + + + + Whether to format enums as ints. Defaults to false. + + + + + Creates a new object with the specified formatting of default values + and an empty type registry. + + true if default values (0, empty strings etc) should be formatted; false otherwise. + + + + Creates a new object with the specified formatting of default values + and type registry. + + true if default values (0, empty strings etc) should be formatted; false otherwise. + The to use when formatting messages. + + + + Creates a new object with the specified parameters. + + true if default values (0, empty strings etc) should be formatted; false otherwise. + The to use when formatting messages. TypeRegistry.Empty will be used if it is null. + true to format the enums as integers; false to format enums as enum names. + + + + Creates a new object with the specified formatting of default values and the current settings. + + true if default values (0, empty strings etc) should be formatted; false otherwise. + + + + Creates a new object with the specified type registry and the current settings. + + The to use when formatting messages. + + + + Creates a new object with the specified enums formatting option and the current settings. + + true to format the enums as integers; false to format enums as enum names. + + + + Reflection-based converter from JSON to messages. + + + + Instances of this class are thread-safe, with no mutable state. + + + This is a simple start to get JSON parsing working. As it's reflection-based, + it's not as quick as baking calls into generated messages - but is a simpler implementation. + (This code is generally not heavily optimized.) + + + + + + Returns a formatter using the default settings. + + + + + Creates a new formatted with the given settings. + + The settings. + + + + Parses and merges the information into the given message. + + The message to merge the JSON information into. + The JSON to parse. + + + + Parses JSON read from and merges the information into the given message. + + The message to merge the JSON information into. + Reader providing the JSON to parse. + + + + Merges the given message using data from the given tokenizer. In most cases, the next + token should be a "start object" token, but wrapper types and nullity can invalidate + that assumption. This is implemented as an LL(1) recursive descent parser over the stream + of tokens provided by the tokenizer. This token stream is assumed to be valid JSON, with the + tokenizer performing that validation - but not every token stream is valid "protobuf JSON". + + + + + Parses into a new message. + + The type of message to create. + The JSON to parse. + The JSON does not comply with RFC 7159 + The JSON does not represent a Protocol Buffers message correctly + + + + Parses JSON read from into a new message. + + The type of message to create. + Reader providing the JSON to parse. + The JSON does not comply with RFC 7159 + The JSON does not represent a Protocol Buffers message correctly + + + + Parses into a new message. + + The JSON to parse. + Descriptor of message type to parse. + The JSON does not comply with RFC 7159 + The JSON does not represent a Protocol Buffers message correctly + + + + Parses JSON read from into a new message. + + Reader providing the JSON to parse. + Descriptor of message type to parse. + The JSON does not comply with RFC 7159 + The JSON does not represent a Protocol Buffers message correctly + + + + Creates a new instance of the message type for the given field. + + + + + Checks that any infinite/NaN values originated from the correct text. + This corrects the lenient whitespace handling of double.Parse/float.Parse, as well as the + way that Mono parses out-of-range values as infinity. + + + + + Settings controlling JSON parsing. + + + + + Default settings, as used by . This has the same default + recursion limit as , and an empty type registry. + + + + + The maximum depth of messages to parse. Note that this limit only applies to parsing + messages, not collections - so a message within a collection within a message only counts as + depth 2, not 3. + + + + + The type registry used to parse messages. + + + + + Whether the parser should ignore unknown fields (true) or throw an exception when + they are encountered (false). + + + + + Creates a new object with the specified recursion limit. + + The maximum depth of messages to parse + + + + Creates a new object with the specified recursion limit and type registry. + + The maximum depth of messages to parse + The type registry used to parse messages + + + + Creates a new object set to either ignore unknown fields, or throw an exception + when unknown fields are encountered. + + true if unknown fields should be ignored when parsing; false to throw an exception. + + + + Creates a new object based on this one, but with the specified recursion limit. + + The new recursion limit. + + + + Creates a new object based on this one, but with the specified type registry. + + The new type registry. Must not be null. + + + + Simple but strict JSON tokenizer, rigidly following RFC 7159. + + + + This tokenizer is stateful, and only returns "useful" tokens - names, values etc. + It does not create tokens for the separator between names and values, or for the comma + between values. It validates the token stream as it goes - so callers can assume that the + tokens it produces are appropriate. For example, it would never produce "start object, end array." + + Implementation details: the base class handles single token push-back and + Not thread-safe. + + + + + Creates a tokenizer that reads from the given text reader. + + + + + Creates a tokenizer that first replays the given list of tokens, then continues reading + from another tokenizer. Note that if the returned tokenizer is "pushed back", that does not push back + on the continuation tokenizer, or vice versa. Care should be taken when using this method - it was + created for the sake of Any parsing. + + + + + Returns the depth of the stack, purely in objects (not collections). + Informally, this is the number of remaining unclosed '{' characters we have. + + + + + Returns the next JSON token in the stream. An EndDocument token is returned to indicate the end of the stream, + after which point Next() should not be called again. + + This implementation provides single-token buffering, and calls if there is no buffered token. + The next token in the stream. This is never null. + This method is called after an EndDocument token has been returned + The input text does not comply with RFC 7159 + + + + Returns the next JSON token in the stream, when requested by the base class. (The method delegates + to this if it doesn't have a buffered token.) + + This method is called after an EndDocument token has been returned + The input text does not comply with RFC 7159 + + + + Skips the value we're about to read. This must only be called immediately after reading a property name. + If the value is an object or an array, the complete object/array is skipped. + + + + + Tokenizer which first exhausts a list of tokens, then consults another tokenizer. + + + + + Tokenizer which does all the *real* work of parsing JSON. + + + + + This method essentially just loops through characters skipping whitespace, validating and + changing state (e.g. from ObjectBeforeColon to ObjectAfterColon) + until it reaches something which will be a genuine token (e.g. a start object, or a value) at which point + it returns the token. Although the method is large, it would be relatively hard to break down further... most + of it is the large switch statement, which sometimes returns and sometimes doesn't. + + + + + Reads a string token. It is assumed that the opening " has already been read. + + + + + Reads an escaped character. It is assumed that the leading backslash has already been read. + + + + + Reads an escaped Unicode 4-nybble hex sequence. It is assumed that the leading \u has already been read. + + + + + Consumes a text-only literal, throwing an exception if the read text doesn't match it. + It is assumed that the first letter of the literal has already been read. + + + + + Validates that we're in a valid state to read a value (using the given error prefix if necessary) + and changes the state to the appropriate one, e.g. ObjectAfterColon to ObjectAfterProperty. + + + + + Pops the top-most container, and sets the state to the appropriate one for the end of a value + in the parent container. + + + + + Possible states of the tokenizer. + + + This is a flags enum purely so we can simply and efficiently represent a set of valid states + for checking. + + Each is documented with an example, + where ^ represents the current position within the text stream. The examples all use string values, + but could be any value, including nested objects/arrays. + The complete state of the tokenizer also includes a stack to indicate the contexts (arrays/objects). + Any additional notional state of "AfterValue" indicates that a value has been completed, at which + point there's an immediate transition to ExpectedEndOfDocument, ObjectAfterProperty or ArrayAfterValue. + + + These states were derived manually by reading RFC 7159 carefully. + + + + + + ^ { "foo": "bar" } + Before the value in a document. Next states: ObjectStart, ArrayStart, "AfterValue" + + + + + { "foo": "bar" } ^ + After the value in a document. Next states: ReaderExhausted + + + + + { "foo": "bar" } ^ (and already read to the end of the reader) + Terminal state. + + + + + { ^ "foo": "bar" } + Before the *first* property in an object. + Next states: + "AfterValue" (empty object) + ObjectBeforeColon (read a name) + + + + + { "foo" ^ : "bar", "x": "y" } + Next state: ObjectAfterColon + + + + + { "foo" : ^ "bar", "x": "y" } + Before any property other than the first in an object. + (Equivalently: after any property in an object) + Next states: + "AfterValue" (value is simple) + ObjectStart (value is object) + ArrayStart (value is array) + + + + + { "foo" : "bar" ^ , "x" : "y" } + At the end of a property, so expecting either a comma or end-of-object + Next states: ObjectAfterComma or "AfterValue" + + + + + { "foo":"bar", ^ "x":"y" } + Read the comma after the previous property, so expecting another property. + This is like ObjectStart, but closing brace isn't valid here + Next state: ObjectBeforeColon. + + + + + [ ^ "foo", "bar" ] + Before the *first* value in an array. + Next states: + "AfterValue" (read a value) + "AfterValue" (end of array; will pop stack) + + + + + [ "foo" ^ , "bar" ] + After any value in an array, so expecting either a comma or end-of-array + Next states: ArrayAfterComma or "AfterValue" + + + + + [ "foo", ^ "bar" ] + After a comma in an array, so there *must* be another value (simple or complex). + Next states: "AfterValue" (simple value), StartObject, StartArray + + + + + Wrapper around a text reader allowing small amounts of buffering and location handling. + + + + + The buffered next character, if we have one. + + + + + Returns the next character in the stream, or null if we have reached the end. + + + + + + Creates a new exception appropriate for the current state of the reader. + + + + + Stream implementation which proxies another stream, only allowing a certain amount + of data to be read. Note that this is only used to read delimited streams, so it + doesn't attempt to implement everything. + + + + + Extension methods on and . + + + + + Merges data from the given byte array into an existing message. + + The message to merge the data into. + The data to merge, which must be protobuf-encoded binary data. + + + + Merges data from the given byte array slice into an existing message. + + The message to merge the data into. + The data containing the slice to merge, which must be protobuf-encoded binary data. + The offset of the slice to merge. + The length of the slice to merge. + + + + Merges data from the given byte string into an existing message. + + The message to merge the data into. + The data to merge, which must be protobuf-encoded binary data. + + + + Merges data from the given stream into an existing message. + + The message to merge the data into. + Stream containing the data to merge, which must be protobuf-encoded binary data. + + + + Merges length-delimited data from the given stream into an existing message. + + + The stream is expected to contain a length and then the data. Only the amount of data + specified by the length will be consumed. + + The message to merge the data into. + Stream containing the data to merge, which must be protobuf-encoded binary data. + + + + Converts the given message into a byte array in protobuf encoding. + + The message to convert. + The message data as a byte array. + + + + Writes the given message data to the given stream in protobuf encoding. + + The message to write to the stream. + The stream to write to. + + + + Writes the length and then data of the given message to a stream. + + The message to write. + The output stream to write to. + + + + Converts the given message into a byte string in protobuf encoding. + + The message to convert. + The message data as a byte string. + + + + A general message parser, typically used by reflection-based code as all the methods + return simple . + + + + + Creates a template instance ready for population. + + An empty message. + + + + Parses a message from a byte array. + + The byte array containing the message. Must not be null. + The newly parsed message. + + + + Parses a message from a byte array slice. + + The byte array containing the message. Must not be null. + The offset of the slice to parse. + The length of the slice to parse. + The newly parsed message. + + + + Parses a message from the given byte string. + + The data to parse. + The parsed message. + + + + Parses a message from the given stream. + + The stream to parse. + The parsed message. + + + + Parses a length-delimited message from the given stream. + + + The stream is expected to contain a length and then the data. Only the amount of data + specified by the length will be consumed. + + The stream to parse. + The parsed message. + + + + Parses a message from the given coded input stream. + + The stream to parse. + The parsed message. + + + + Parses a message from the given JSON. + + The JSON to parse. + The parsed message. + The JSON does not comply with RFC 7159 + The JSON does not represent a Protocol Buffers message correctly + + + + A parser for a specific message type. + + +

+ This delegates most behavior to the + implementation within the original type, but + provides convenient overloads to parse from a variety of sources. +

+

+ Most applications will never need to create their own instances of this type; + instead, use the static Parser property of a generated message type to obtain a + parser for that type. +

+
+ The type of message to be parsed. +
+ + + Creates a new parser. + + + The factory method is effectively an optimization over using a generic constraint + to require a parameterless constructor: delegates are significantly faster to execute. + + Function to invoke when a new, empty message is required. + + + + Creates a template instance ready for population. + + An empty message. + + + + Parses a message from a byte array. + + The byte array containing the message. Must not be null. + The newly parsed message. + + + + Parses a message from a byte array slice. + + The byte array containing the message. Must not be null. + The offset of the slice to parse. + The length of the slice to parse. + The newly parsed message. + + + + Parses a message from the given byte string. + + The data to parse. + The parsed message. + + + + Parses a message from the given stream. + + The stream to parse. + The parsed message. + + + + Parses a length-delimited message from the given stream. + + + The stream is expected to contain a length and then the data. Only the amount of data + specified by the length will be consumed. + + The stream to parse. + The parsed message. + + + + Parses a message from the given coded input stream. + + The stream to parse. + The parsed message. + + + + Parses a message from the given JSON. + + The JSON to parse. + The parsed message. + The JSON does not comply with RFC 7159 + The JSON does not represent a Protocol Buffers message correctly + + + + Helper methods for throwing exceptions when preconditions are not met. + + + This class is used internally and by generated code; it is not particularly + expected to be used from application code, although nothing prevents it + from being used that way. + + + + + Throws an ArgumentNullException if the given value is null, otherwise + return the value to the caller. + + + + + Throws an ArgumentNullException if the given value is null, otherwise + return the value to the caller. + + + This is equivalent to but without the type parameter + constraint. In most cases, the constraint is useful to prevent you from calling CheckNotNull + with a value type - but it gets in the way if either you want to use it with a nullable + value type, or you want to use it with an unconstrained type parameter. + + + + + Container for a set of custom options specified within a message, field etc. + + + + This type is publicly immutable, but internally mutable. It is only populated + by the descriptor parsing code - by the time any user code is able to see an instance, + it will be fully initialized. + + + If an option is requested using the incorrect method, an answer may still be returned: all + of the numeric types are represented internally using 64-bit integers, for example. It is up to + the caller to ensure that they make the appropriate method call for the option they're interested in. + Note that enum options are simply stored as integers, so the value should be fetched using + and then cast appropriately. + + + Repeated options are currently not supported. Asking for a single value of an option + which was actually repeated will return the last value, except for message types where + all the set values are merged together. + + + + + + Singleton for all descriptors with an empty set of options. + + + + + A sequence of values per field. This needs to be per field rather than per tag to allow correct deserialization + of repeated fields which could be "int, ByteString, int" - unlikely as that is. The fact that values are boxed + is unfortunate; we might be able to use a struct instead, and we could combine uint and ulong values. + + + + + Retrieves a Boolean value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a signed 32-bit integer value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a signed 64-bit integer value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves an unsigned 32-bit integer value for the specified option field, + assuming a fixed-length representation. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves an unsigned 64-bit integer value for the specified option field, + assuming a fixed-length representation. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a signed 32-bit integer value for the specified option field, + assuming a fixed-length representation. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a signed 64-bit integer value for the specified option field, + assuming a fixed-length representation. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a signed 32-bit integer value for the specified option field, + assuming a zigzag encoding. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a signed 64-bit integer value for the specified option field, + assuming a zigzag encoding. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves an unsigned 32-bit integer value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves an unsigned 64-bit integer value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a 32-bit floating point value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a 64-bit floating point value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a string value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a bytes value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a message value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Reads an unknown field, either parsing it and storing it or skipping it. + + + If the current set of options is empty and we manage to read a field, a new set of options + will be created and returned. Otherwise, the return value is this. This allows + us to start with a singleton empty set of options and just create new ones where necessary. + + Input stream to read from. + The resulting set of custom options, either this or a new set. + + + + All field values can be stored as a byte string or a 64-bit integer. + This struct avoids unnecessary boxing. + + + + Holder for reflection information generated from google/protobuf/descriptor.proto + + + File descriptor for google/protobuf/descriptor.proto + + + + The protocol compiler can output a FileDescriptorSet containing the .proto + files it parses. + + + + Field number for the "file" field. + + + + Describes a complete .proto file. + + + + Field number for the "name" field. + + + + file name, relative to root of source tree + + + + Field number for the "package" field. + + + + e.g. "foo", "foo.bar", etc. + + + + Field number for the "dependency" field. + + + + Names of files imported by this file. + + + + Field number for the "public_dependency" field. + + + + Indexes of the public imported files in the dependency list above. + + + + Field number for the "weak_dependency" field. + + + + Indexes of the weak imported files in the dependency list. + For Google-internal migration only. Do not use. + + + + Field number for the "message_type" field. + + + + All top-level definitions in this file. + + + + Field number for the "enum_type" field. + + + Field number for the "service" field. + + + Field number for the "extension" field. + + + Field number for the "options" field. + + + Field number for the "source_code_info" field. + + + + This field contains optional information about the original source code. + You may safely remove this entire field without harming runtime + functionality of the descriptors -- the information is needed only by + development tools. + + + + Field number for the "syntax" field. + + + + The syntax of the proto file. + The supported values are "proto2" and "proto3". + + + + + Describes a message type. + + + + Field number for the "name" field. + + + Field number for the "field" field. + + + Field number for the "extension" field. + + + Field number for the "nested_type" field. + + + Field number for the "enum_type" field. + + + Field number for the "extension_range" field. + + + Field number for the "oneof_decl" field. + + + Field number for the "options" field. + + + Field number for the "reserved_range" field. + + + Field number for the "reserved_name" field. + + + + Reserved field names, which may not be used by fields in the same message. + A given name may only be reserved once. + + + + Container for nested types declared in the DescriptorProto message type. + + + Field number for the "start" field. + + + Field number for the "end" field. + + + Field number for the "options" field. + + + + Range of reserved tag numbers. Reserved tag numbers may not be used by + fields or extension ranges in the same message. Reserved ranges may + not overlap. + + + + Field number for the "start" field. + + + + Inclusive. + + + + Field number for the "end" field. + + + + Exclusive. + + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. See above. + + + + + Describes a field within a message. + + + + Field number for the "name" field. + + + Field number for the "number" field. + + + Field number for the "label" field. + + + Field number for the "type" field. + + + + If type_name is set, this need not be set. If both this and type_name + are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP. + + + + Field number for the "type_name" field. + + + + For message and enum types, this is the name of the type. If the name + starts with a '.', it is fully-qualified. Otherwise, C++-like scoping + rules are used to find the type (i.e. first the nested types within this + message are searched, then within the parent, on up to the root + namespace). + + + + Field number for the "extendee" field. + + + + For extensions, this is the name of the type being extended. It is + resolved in the same manner as type_name. + + + + Field number for the "default_value" field. + + + + For numeric types, contains the original text representation of the value. + For booleans, "true" or "false". + For strings, contains the default text contents (not escaped in any way). + For bytes, contains the C escaped value. All bytes >= 128 are escaped. + TODO(kenton): Base-64 encode? + + + + Field number for the "oneof_index" field. + + + + If set, gives the index of a oneof in the containing type's oneof_decl + list. This field is a member of that oneof. + + + + Field number for the "json_name" field. + + + + JSON name of this field. The value is set by protocol compiler. If the + user has set a "json_name" option on this field, that option's value + will be used. Otherwise, it's deduced from the field's name by converting + it to camelCase. + + + + Field number for the "options" field. + + + Container for nested types declared in the FieldDescriptorProto message type. + + + + 0 is reserved for errors. + Order is weird for historical reasons. + + + + + Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT64 if + negative values are likely. + + + + + Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT32 if + negative values are likely. + + + + + Tag-delimited aggregate. + Group type is deprecated and not supported in proto3. However, Proto3 + implementations should still be able to parse the group wire format and + treat group fields as unknown fields. + + + + + Length-delimited aggregate. + + + + + New in version 2. + + + + + Uses ZigZag encoding. + + + + + Uses ZigZag encoding. + + + + + 0 is reserved for errors + + + + + Describes a oneof. + + + + Field number for the "name" field. + + + Field number for the "options" field. + + + + Describes an enum type. + + + + Field number for the "name" field. + + + Field number for the "value" field. + + + Field number for the "options" field. + + + Field number for the "reserved_range" field. + + + + Range of reserved numeric values. Reserved numeric values may not be used + by enum values in the same enum declaration. Reserved ranges may not + overlap. + + + + Field number for the "reserved_name" field. + + + + Reserved enum value names, which may not be reused. A given name may only + be reserved once. + + + + Container for nested types declared in the EnumDescriptorProto message type. + + + + Range of reserved numeric values. Reserved values may not be used by + entries in the same enum. Reserved ranges may not overlap. + + Note that this is distinct from DescriptorProto.ReservedRange in that it + is inclusive such that it can appropriately represent the entire int32 + domain. + + + + Field number for the "start" field. + + + + Inclusive. + + + + Field number for the "end" field. + + + + Inclusive. + + + + + Describes a value within an enum. + + + + Field number for the "name" field. + + + Field number for the "number" field. + + + Field number for the "options" field. + + + + Describes a service. + + + + Field number for the "name" field. + + + Field number for the "method" field. + + + Field number for the "options" field. + + + + Describes a method of a service. + + + + Field number for the "name" field. + + + Field number for the "input_type" field. + + + + Input and output type names. These are resolved in the same way as + FieldDescriptorProto.type_name, but must refer to a message type. + + + + Field number for the "output_type" field. + + + Field number for the "options" field. + + + Field number for the "client_streaming" field. + + + + Identifies if client streams multiple client messages + + + + Field number for the "server_streaming" field. + + + + Identifies if server streams multiple server messages + + + + Field number for the "java_package" field. + + + + Sets the Java package where classes generated from this .proto will be + placed. By default, the proto package is used, but this is often + inappropriate because proto packages do not normally start with backwards + domain names. + + + + Field number for the "java_outer_classname" field. + + + + If set, all the classes from the .proto file are wrapped in a single + outer class with the given name. This applies to both Proto1 + (equivalent to the old "--one_java_file" option) and Proto2 (where + a .proto always translates to a single class, but you may want to + explicitly choose the class name). + + + + Field number for the "java_multiple_files" field. + + + + If set true, then the Java code generator will generate a separate .java + file for each top-level message, enum, and service defined in the .proto + file. Thus, these types will *not* be nested inside the outer class + named by java_outer_classname. However, the outer class will still be + generated to contain the file's getDescriptor() method as well as any + top-level extensions defined in the file. + + + + Field number for the "java_generate_equals_and_hash" field. + + + + This option does nothing. + + + + Field number for the "java_string_check_utf8" field. + + + + If set true, then the Java2 code generator will generate code that + throws an exception whenever an attempt is made to assign a non-UTF-8 + byte sequence to a string field. + Message reflection will do the same. + However, an extension field still accepts non-UTF-8 byte sequences. + This option has no effect on when used with the lite runtime. + + + + Field number for the "optimize_for" field. + + + Field number for the "go_package" field. + + + + Sets the Go package where structs generated from this .proto will be + placed. If omitted, the Go package will be derived from the following: + - The basename of the package import path, if provided. + - Otherwise, the package statement in the .proto file, if present. + - Otherwise, the basename of the .proto file, without extension. + + + + Field number for the "cc_generic_services" field. + + + + Should generic services be generated in each language? "Generic" services + are not specific to any particular RPC system. They are generated by the + main code generators in each language (without additional plugins). + Generic services were the only kind of service generation supported by + early versions of google.protobuf. + + Generic services are now considered deprecated in favor of using plugins + that generate code specific to your particular RPC system. Therefore, + these default to false. Old code which depends on generic services should + explicitly set them to true. + + + + Field number for the "java_generic_services" field. + + + Field number for the "py_generic_services" field. + + + Field number for the "php_generic_services" field. + + + Field number for the "deprecated" field. + + + + Is this file deprecated? + Depending on the target platform, this can emit Deprecated annotations + for everything in the file, or it will be completely ignored; in the very + least, this is a formalization for deprecating files. + + + + Field number for the "cc_enable_arenas" field. + + + + Enables the use of arenas for the proto messages in this file. This applies + only to generated classes for C++. + + + + Field number for the "objc_class_prefix" field. + + + + Sets the objective c class prefix which is prepended to all objective c + generated classes from this .proto. There is no default. + + + + Field number for the "csharp_namespace" field. + + + + Namespace for generated classes; defaults to the package. + + + + Field number for the "swift_prefix" field. + + + + By default Swift generators will take the proto package and CamelCase it + replacing '.' with underscore and use that to prefix the types/symbols + defined. When this options is provided, they will use this value instead + to prefix the types/symbols defined. + + + + Field number for the "php_class_prefix" field. + + + + Sets the php class prefix which is prepended to all php generated classes + from this .proto. Default is empty. + + + + Field number for the "php_namespace" field. + + + + Use this option to change the namespace of php generated classes. Default + is empty. When this option is empty, the package name will be used for + determining the namespace. + + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. + See the documentation for the "Options" section above. + + + + Container for nested types declared in the FileOptions message type. + + + + Generated classes can be optimized for speed or code size. + + + + + Generate complete code for parsing, serialization, + + + + + etc. + + + + + Generate code using MessageLite and the lite runtime. + + + + Field number for the "message_set_wire_format" field. + + + + Set true to use the old proto1 MessageSet wire format for extensions. + This is provided for backwards-compatibility with the MessageSet wire + format. You should not use this for any other reason: It's less + efficient, has fewer features, and is more complicated. + + The message must be defined exactly as follows: + message Foo { + option message_set_wire_format = true; + extensions 4 to max; + } + Note that the message cannot have any defined fields; MessageSets only + have extensions. + + All extensions of your type must be singular messages; e.g. they cannot + be int32s, enums, or repeated messages. + + Because this is an option, the above two restrictions are not enforced by + the protocol compiler. + + + + Field number for the "no_standard_descriptor_accessor" field. + + + + Disables the generation of the standard "descriptor()" accessor, which can + conflict with a field of the same name. This is meant to make migration + from proto1 easier; new code should avoid fields named "descriptor". + + + + Field number for the "deprecated" field. + + + + Is this message deprecated? + Depending on the target platform, this can emit Deprecated annotations + for the message, or it will be completely ignored; in the very least, + this is a formalization for deprecating messages. + + + + Field number for the "map_entry" field. + + + + Whether the message is an automatically generated map entry type for the + maps field. + + For maps fields: + map<KeyType, ValueType> map_field = 1; + The parsed descriptor looks like: + message MapFieldEntry { + option map_entry = true; + optional KeyType key = 1; + optional ValueType value = 2; + } + repeated MapFieldEntry map_field = 1; + + Implementations may choose not to generate the map_entry=true message, but + use a native map in the target language to hold the keys and values. + The reflection APIs in such implementions still need to work as + if the field is a repeated message field. + + NOTE: Do not set the option in .proto files. Always use the maps syntax + instead. The option should only be implicitly set by the proto compiler + parser. + + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. See above. + + + + Field number for the "ctype" field. + + + + The ctype option instructs the C++ code generator to use a different + representation of the field than it normally would. See the specific + options below. This option is not yet implemented in the open source + release -- sorry, we'll try to include it in a future version! + + + + Field number for the "packed" field. + + + + The packed option can be enabled for repeated primitive fields to enable + a more efficient representation on the wire. Rather than repeatedly + writing the tag and type for each element, the entire array is encoded as + a single length-delimited blob. In proto3, only explicit setting it to + false will avoid using packed encoding. + + + + Field number for the "jstype" field. + + + + The jstype option determines the JavaScript type used for values of the + field. The option is permitted only for 64 bit integral and fixed types + (int64, uint64, sint64, fixed64, sfixed64). A field with jstype JS_STRING + is represented as JavaScript string, which avoids loss of precision that + can happen when a large value is converted to a floating point JavaScript. + Specifying JS_NUMBER for the jstype causes the generated JavaScript code to + use the JavaScript "number" type. The behavior of the default option + JS_NORMAL is implementation dependent. + + This option is an enum to permit additional types to be added, e.g. + goog.math.Integer. + + + + Field number for the "lazy" field. + + + + Should this field be parsed lazily? Lazy applies only to message-type + fields. It means that when the outer message is initially parsed, the + inner message's contents will not be parsed but instead stored in encoded + form. The inner message will actually be parsed when it is first accessed. + + This is only a hint. Implementations are free to choose whether to use + eager or lazy parsing regardless of the value of this option. However, + setting this option true suggests that the protocol author believes that + using lazy parsing on this field is worth the additional bookkeeping + overhead typically needed to implement it. + + This option does not affect the public interface of any generated code; + all method signatures remain the same. Furthermore, thread-safety of the + interface is not affected by this option; const methods remain safe to + call from multiple threads concurrently, while non-const methods continue + to require exclusive access. + + Note that implementations may choose not to check required fields within + a lazy sub-message. That is, calling IsInitialized() on the outer message + may return true even if the inner message has missing required fields. + This is necessary because otherwise the inner message would have to be + parsed in order to perform the check, defeating the purpose of lazy + parsing. An implementation which chooses not to check required fields + must be consistent about it. That is, for any particular sub-message, the + implementation must either *always* check its required fields, or *never* + check its required fields, regardless of whether or not the message has + been parsed. + + + + Field number for the "deprecated" field. + + + + Is this field deprecated? + Depending on the target platform, this can emit Deprecated annotations + for accessors, or it will be completely ignored; in the very least, this + is a formalization for deprecating fields. + + + + Field number for the "weak" field. + + + + For Google-internal migration only. Do not use. + + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. See above. + + + + Container for nested types declared in the FieldOptions message type. + + + + Default mode. + + + + + Use the default type. + + + + + Use JavaScript strings. + + + + + Use JavaScript numbers. + + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. See above. + + + + Field number for the "allow_alias" field. + + + + Set this option to true to allow mapping different tag names to the same + value. + + + + Field number for the "deprecated" field. + + + + Is this enum deprecated? + Depending on the target platform, this can emit Deprecated annotations + for the enum, or it will be completely ignored; in the very least, this + is a formalization for deprecating enums. + + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. See above. + + + + Field number for the "deprecated" field. + + + + Is this enum value deprecated? + Depending on the target platform, this can emit Deprecated annotations + for the enum value, or it will be completely ignored; in the very least, + this is a formalization for deprecating enum values. + + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. See above. + + + + Field number for the "deprecated" field. + + + + Is this service deprecated? + Depending on the target platform, this can emit Deprecated annotations + for the service, or it will be completely ignored; in the very least, + this is a formalization for deprecating services. + + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. See above. + + + + Field number for the "deprecated" field. + + + + Is this method deprecated? + Depending on the target platform, this can emit Deprecated annotations + for the method, or it will be completely ignored; in the very least, + this is a formalization for deprecating methods. + + + + Field number for the "idempotency_level" field. + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. See above. + + + + Container for nested types declared in the MethodOptions message type. + + + + Is this method side-effect-free (or safe in HTTP parlance), or idempotent, + or neither? HTTP based RPC implementation may choose GET verb for safe + methods, and PUT verb for idempotent methods instead of the default POST. + + + + + implies idempotent + + + + + idempotent, but may have side effects + + + + + A message representing a option the parser does not recognize. This only + appears in options protos created by the compiler::Parser class. + DescriptorPool resolves these when building Descriptor objects. Therefore, + options protos in descriptor objects (e.g. returned by Descriptor::options(), + or produced by Descriptor::CopyTo()) will never have UninterpretedOptions + in them. + + + + Field number for the "name" field. + + + Field number for the "identifier_value" field. + + + + The value of the uninterpreted option, in whatever type the tokenizer + identified it as during parsing. Exactly one of these should be set. + + + + Field number for the "positive_int_value" field. + + + Field number for the "negative_int_value" field. + + + Field number for the "double_value" field. + + + Field number for the "string_value" field. + + + Field number for the "aggregate_value" field. + + + Container for nested types declared in the UninterpretedOption message type. + + + + The name of the uninterpreted option. Each string represents a segment in + a dot-separated name. is_extension is true iff a segment represents an + extension (denoted with parentheses in options specs in .proto files). + E.g.,{ ["foo", false], ["bar.baz", true], ["qux", false] } represents + "foo.(bar.baz).qux". + + + + Field number for the "name_part" field. + + + Field number for the "is_extension" field. + + + + Encapsulates information about the original source file from which a + FileDescriptorProto was generated. + + + + Field number for the "location" field. + + + + A Location identifies a piece of source code in a .proto file which + corresponds to a particular definition. This information is intended + to be useful to IDEs, code indexers, documentation generators, and similar + tools. + + For example, say we have a file like: + message Foo { + optional string foo = 1; + } + Let's look at just the field definition: + optional string foo = 1; + ^ ^^ ^^ ^ ^^^ + a bc de f ghi + We have the following locations: + span path represents + [a,i) [ 4, 0, 2, 0 ] The whole field definition. + [a,b) [ 4, 0, 2, 0, 4 ] The label (optional). + [c,d) [ 4, 0, 2, 0, 5 ] The type (string). + [e,f) [ 4, 0, 2, 0, 1 ] The name (foo). + [g,h) [ 4, 0, 2, 0, 3 ] The number (1). + + Notes: + - A location may refer to a repeated field itself (i.e. not to any + particular index within it). This is used whenever a set of elements are + logically enclosed in a single code segment. For example, an entire + extend block (possibly containing multiple extension definitions) will + have an outer location whose path refers to the "extensions" repeated + field without an index. + - Multiple locations may have the same path. This happens when a single + logical declaration is spread out across multiple places. The most + obvious example is the "extend" block again -- there may be multiple + extend blocks in the same scope, each of which will have the same path. + - A location's span is not always a subset of its parent's span. For + example, the "extendee" of an extension declaration appears at the + beginning of the "extend" block and is shared by all extensions within + the block. + - Just because a location's span is a subset of some other location's span + does not mean that it is a descendent. For example, a "group" defines + both a type and a field in a single declaration. Thus, the locations + corresponding to the type and field and their components will overlap. + - Code which tries to interpret locations should probably be designed to + ignore those that it doesn't understand, as more types of locations could + be recorded in the future. + + + + Container for nested types declared in the SourceCodeInfo message type. + + + Field number for the "path" field. + + + + Identifies which part of the FileDescriptorProto was defined at this + location. + + Each element is a field number or an index. They form a path from + the root FileDescriptorProto to the place where the definition. For + example, this path: + [ 4, 3, 2, 7, 1 ] + refers to: + file.message_type(3) // 4, 3 + .field(7) // 2, 7 + .name() // 1 + This is because FileDescriptorProto.message_type has field number 4: + repeated DescriptorProto message_type = 4; + and DescriptorProto.field has field number 2: + repeated FieldDescriptorProto field = 2; + and FieldDescriptorProto.name has field number 1: + optional string name = 1; + + Thus, the above path gives the location of a field name. If we removed + the last element: + [ 4, 3, 2, 7 ] + this path refers to the whole field declaration (from the beginning + of the label to the terminating semicolon). + + + + Field number for the "span" field. + + + + Always has exactly three or four elements: start line, start column, + end line (optional, otherwise assumed same as start line), end column. + These are packed into a single field for efficiency. Note that line + and column numbers are zero-based -- typically you will want to add + 1 to each before displaying to a user. + + + + Field number for the "leading_comments" field. + + + + If this SourceCodeInfo represents a complete declaration, these are any + comments appearing before and after the declaration which appear to be + attached to the declaration. + + A series of line comments appearing on consecutive lines, with no other + tokens appearing on those lines, will be treated as a single comment. + + leading_detached_comments will keep paragraphs of comments that appear + before (but not connected to) the current element. Each paragraph, + separated by empty lines, will be one comment element in the repeated + field. + + Only the comment content is provided; comment markers (e.g. //) are + stripped out. For block comments, leading whitespace and an asterisk + will be stripped from the beginning of each line other than the first. + Newlines are included in the output. + + Examples: + + optional int32 foo = 1; // Comment attached to foo. + // Comment attached to bar. + optional int32 bar = 2; + + optional string baz = 3; + // Comment attached to baz. + // Another line attached to baz. + + // Comment attached to qux. + // + // Another line attached to qux. + optional double qux = 4; + + // Detached comment for corge. This is not leading or trailing comments + // to qux or corge because there are blank lines separating it from + // both. + + // Detached comment for corge paragraph 2. + + optional string corge = 5; + /* Block comment attached + * to corge. Leading asterisks + * will be removed. */ + /* Block comment attached to + * grault. */ + optional int32 grault = 6; + + // ignored detached comments. + + + + Field number for the "trailing_comments" field. + + + Field number for the "leading_detached_comments" field. + + + + Describes the relationship between generated code and its original source + file. A GeneratedCodeInfo message is associated with only one generated + source file, but may contain references to different source .proto files. + + + + Field number for the "annotation" field. + + + + An Annotation connects some span of text in generated code to an element + of its generating .proto file. + + + + Container for nested types declared in the GeneratedCodeInfo message type. + + + Field number for the "path" field. + + + + Identifies the element in the original source .proto file. This field + is formatted the same as SourceCodeInfo.Location.path. + + + + Field number for the "source_file" field. + + + + Identifies the filesystem path to the original source .proto. + + + + Field number for the "begin" field. + + + + Identifies the starting offset in bytes in the generated code + that relates to the identified object. + + + + Field number for the "end" field. + + + + Identifies the ending offset in bytes in the generated code that + relates to the identified offset. The end offset should be one past + the last relevant byte (so the length of the text = end - begin). + + + + + Base class for nearly all descriptors, providing common functionality. + + + + + The index of this descriptor within its parent descriptor. + + + This returns the index of this descriptor within its parent, for + this descriptor's type. (There can be duplicate values for different + types, e.g. one enum type with index 0 and one message type with index 0.) + + + + + Returns the name of the entity (field, message etc) being described. + + + + + The fully qualified name of the descriptor's target. + + + + + The file this descriptor was declared in. + + + + + Contains lookup tables containing all the descriptors defined in a particular file. + + + + + Finds a symbol of the given name within the pool. + + The type of symbol to look for + Fully-qualified name to look up + The symbol with the given name and type, + or null if the symbol doesn't exist or has the wrong type + + + + Adds a package to the symbol tables. If a package by the same name + already exists, that is fine, but if some other kind of symbol + exists under the same name, an exception is thrown. If the package + has multiple components, this also adds the parent package(s). + + + + + Adds a symbol to the symbol table. + + The symbol already existed + in the symbol table. + + + + Verifies that the descriptor's name is valid (i.e. it contains + only letters, digits and underscores, and does not start with a digit). + + + + + + Returns the field with the given number in the given descriptor, + or null if it can't be found. + + + + + Adds a field to the fieldsByNumber table. + + A field with the same + containing type and number already exists. + + + + Adds an enum value to the enumValuesByNumber table. If an enum value + with the same type and number already exists, this method does nothing. + (This is allowed; the first value defined with the number takes precedence.) + + + + + Looks up a descriptor by name, relative to some other descriptor. + The name may be fully-qualified (with a leading '.'), partially-qualified, + or unqualified. C++-like name lookup semantics are used to search for the + matching descriptor. + + + This isn't heavily optimized, but it's only used during cross linking anyway. + If it starts being used more widely, we should look at performance more carefully. + + + + + Struct used to hold the keys for the fieldByNumber table. + + + + + Internal class containing utility methods when working with descriptors. + + + + + Equivalent to Func[TInput, int, TOutput] but usable in .NET 2.0. Only used to convert + arrays. + + + + + Converts the given array into a read-only list, applying the specified conversion to + each input element. + + + + + Thrown when building descriptors fails because the source DescriptorProtos + are not valid. + + + + + The full name of the descriptor where the error occurred. + + + + + A human-readable description of the error. (The Message property + is made up of the descriptor's name and this description.) + + + + + Descriptor for an enum type in a .proto file. + + + + + The brief name of the descriptor's target. + + + + + The CLR type for this enum. For generated code, this will be a CLR enum type. + + + + + If this is a nested type, get the outer descriptor, otherwise null. + + + + + An unmodifiable list of defined value descriptors for this enum. + + + + + Finds an enum value by number. If multiple enum values have the + same number, this returns the first defined value with that number. + If there is no value for the given number, this returns null. + + + + + Finds an enum value by name. + + The unqualified name of the value (e.g. "FOO"). + The value's descriptor, or null if not found. + + + + The (possibly empty) set of custom options for this enum. + + + + + Descriptor for a single enum value within an enum in a .proto file. + + + + + Returns the name of the enum value described by this object. + + + + + Returns the number associated with this enum value. + + + + + Returns the enum descriptor that this value is part of. + + + + + The (possibly empty) set of custom options for this enum value. + + + + + Base class for field accessors. + + + + + Descriptor for a field or extension within a message in a .proto file. + + + + + Get the field's containing message type. + + + + + Returns the oneof containing this field, or null if it is not part of a oneof. + + + + + The effective JSON name for this field. This is usually the lower-camel-cased form of the field name, + but can be overridden using the json_name option in the .proto file. + + + + + The brief name of the descriptor's target. + + + + + Returns the accessor for this field. + + + + While a describes the field, it does not provide + any way of obtaining or changing the value of the field within a specific message; + that is the responsibility of the accessor. + + + The value returned by this property will be non-null for all regular fields. However, + if a message containing a map field is introspected, the list of nested messages will include + an auto-generated nested key/value pair message for the field. This is not represented in any + generated type, and the value of the map field itself is represented by a dictionary in the + reflection API. There are never instances of those "hidden" messages, so no accessor is provided + and this property will return null. + + + + + + Maps a field type as included in the .proto file to a FieldType. + + + + + Returns true if this field is a repeated field; false otherwise. + + + + + Returns true if this field is a map field; false otherwise. + + + + + Returns true if this field is a packed, repeated field; false otherwise. + + + + + Returns the type of the field. + + + + + Returns the field number declared in the proto file. + + + + + Compares this descriptor with another one, ordering in "canonical" order + which simply means ascending order by field number. + must be a field of the same type, i.e. the of + both fields must be the same. + + + + + For enum fields, returns the field's type. + + + + + For embedded message and group fields, returns the field's type. + + + + + The (possibly empty) set of custom options for this field. + + + + + Look up and cross-link all field types etc. + + + + + Enumeration of all the possible field types. + + + + + The double field type. + + + + + The float field type. + + + + + The int64 field type. + + + + + The uint64 field type. + + + + + The int32 field type. + + + + + The fixed64 field type. + + + + + The fixed32 field type. + + + + + The bool field type. + + + + + The string field type. + + + + + The field type used for groups (not supported in this implementation). + + + + + The field type used for message fields. + + + + + The bytes field type. + + + + + The uint32 field type. + + + + + The sfixed32 field type. + + + + + The sfixed64 field type. + + + + + The sint32 field type. + + + + + The sint64 field type. + + + + + The field type used for enum fields. + + + + + Describes a .proto file, including everything defined within. + IDescriptor is implemented such that the File property returns this descriptor, + and the FullName is the same as the Name. + + + + + Computes the full name of a descriptor within this file, with an optional parent message. + + + + + Extracts public dependencies from direct dependencies. This is a static method despite its + first parameter, as the value we're in the middle of constructing is only used for exceptions. + + + + + The descriptor in its protocol message representation. + + + + + The file name. + + + + + The package as declared in the .proto file. This may or may not + be equivalent to the .NET namespace of the generated classes. + + + + + Unmodifiable list of top-level message types declared in this file. + + + + + Unmodifiable list of top-level enum types declared in this file. + + + + + Unmodifiable list of top-level services declared in this file. + + + + + Unmodifiable list of this file's dependencies (imports). + + + + + Unmodifiable list of this file's public dependencies (public imports). + + + + + The original serialized binary form of this descriptor. + + + + + Implementation of IDescriptor.FullName - just returns the same as Name. + + + + + Implementation of IDescriptor.File - just returns this descriptor. + + + + + Pool containing symbol descriptors. + + + + + Finds a type (message, enum, service or extension) in the file by name. Does not find nested types. + + The unqualified type name to look for. + The type of descriptor to look for + The type's descriptor, or null if not found. + + + + Builds a FileDescriptor from its protocol buffer representation. + + The original serialized descriptor data. + We have only limited proto2 support, so serializing FileDescriptorProto + would not necessarily give us this. + The protocol message form of the FileDescriptor. + FileDescriptors corresponding to all of the + file's dependencies, in the exact order listed in the .proto file. May be null, + in which case it is treated as an empty array. + Whether unknown dependencies are ignored (true) or cause an exception to be thrown (false). + Details about generated code, for the purposes of reflection. + If is not + a valid descriptor. This can occur for a number of reasons, such as a field + having an undefined type or because two messages were defined with the same name. + + + + Creates a descriptor for generated code. + + + This method is only designed to be used by the results of generating code with protoc, + which creates the appropriate dependencies etc. It has to be public because the generated + code is "external", but should not be called directly by end users. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Returns the file descriptor for descriptor.proto. + + + This is used for protos which take a direct dependency on descriptor.proto, typically for + annotations. While descriptor.proto is a proto2 file, it is built into the Google.Protobuf + runtime for reflection purposes. The messages are internal to the runtime as they would require + proto2 semantics for full support, but the file descriptor is available via this property. The + C# codegen in protoc automatically uses this property when it detects a dependency on descriptor.proto. + + + The file descriptor for descriptor.proto. + + + + + The (possibly empty) set of custom options for this file. + + + + + Extra information provided by generated code when initializing a message or file descriptor. + These are constructed as required, and are not long-lived. Hand-written code should + never need to use this type. + + + + + Irrelevant for file descriptors; the CLR type for the message for message descriptors. + + + + + Irrelevant for file descriptors; the parser for message descriptors. + + + + + Irrelevant for file descriptors; the CLR property names (in message descriptor field order) + for fields in the message for message descriptors. + + + + + Irrelevant for file descriptors; the CLR property "base" names (in message descriptor oneof order) + for oneofs in the message for message descriptors. It is expected that for a oneof name of "Foo", + there will be a "FooCase" property and a "ClearFoo" method. + + + + + The reflection information for types within this file/message descriptor. Elements may be null + if there is no corresponding generated type, e.g. for map entry types. + + + + + The CLR types for enums within this file/message descriptor. + + + + + Creates a GeneratedClrTypeInfo for a message descriptor, with nested types, nested enums, the CLR type, property names and oneof names. + Each array parameter may be null, to indicate a lack of values. + The parameter order is designed to make it feasible to format the generated code readably. + + + + + Creates a GeneratedClrTypeInfo for a file descriptor, with only types and enums. + + + + + Interface implemented by all descriptor types. + + + + + Returns the name of the entity (message, field etc) being described. + + + + + Returns the fully-qualified name of the entity being described. + + + + + Returns the descriptor for the .proto file that this entity is part of. + + + + + Allows fields to be reflectively accessed. + + + + + Returns the descriptor associated with this field. + + + + + Clears the field in the specified message. (For repeated fields, + this clears the list.) + + + + + Fetches the field value. For repeated values, this will be an + implementation. For map values, this will be an + implementation. + + + + + Mutator for single "simple" fields only. + + + Repeated fields are mutated by fetching the value and manipulating it as a list. + Map fields are mutated by fetching the value and manipulating it as a dictionary. + + The field is not a "simple" field. + + + + Accessor for map fields. + + + + + Describes a message type. + + + + + The brief name of the descriptor's target. + + + + + The CLR type used to represent message instances from this descriptor. + + + + The value returned by this property will be non-null for all regular fields. However, + if a message containing a map field is introspected, the list of nested messages will include + an auto-generated nested key/value pair message for the field. This is not represented in any + generated type, so this property will return null in such cases. + + + For wrapper types ( and the like), the type returned here + will be the generated message type, not the native type used by reflection for fields of those types. Code + using reflection should call to determine whether a message descriptor represents + a wrapper type, and handle the result appropriately. + + + + + + A parser for this message type. + + + + As is not generic, this cannot be statically + typed to the relevant type, but it should produce objects of a type compatible with . + + + The value returned by this property will be non-null for all regular fields. However, + if a message containing a map field is introspected, the list of nested messages will include + an auto-generated nested key/value pair message for the field. No message parser object is created for + such messages, so this property will return null in such cases. + + + For wrapper types ( and the like), the parser returned here + will be the generated message type, not the native type used by reflection for fields of those types. Code + using reflection should call to determine whether a message descriptor represents + a wrapper type, and handle the result appropriately. + + + + + + Returns whether this message is one of the "well known types" which may have runtime/protoc support. + + + + + Returns whether this message is one of the "wrapper types" used for fields which represent primitive values + with the addition of presence. + + + + + If this is a nested type, get the outer descriptor, otherwise null. + + + + + A collection of fields, which can be retrieved by name or field number. + + + + + An unmodifiable list of this message type's nested types. + + + + + An unmodifiable list of this message type's enum types. + + + + + An unmodifiable list of the "oneof" field collections in this message type. + + + + + Finds a field by field name. + + The unqualified name of the field (e.g. "foo"). + The field's descriptor, or null if not found. + + + + Finds a field by field number. + + The field number within this message type. + The field's descriptor, or null if not found. + + + + Finds a nested descriptor by name. The is valid for fields, nested + message types, oneofs and enums. + + The unqualified name of the descriptor, e.g. "Foo" + The descriptor, or null if not found. + + + + The (possibly empty) set of custom options for this message. + + + + + Looks up and cross-links all fields and nested types. + + + + + A collection to simplify retrieving the field accessor for a particular field. + + + + + Returns the fields in the message as an immutable list, in the order in which they + are declared in the source .proto file. + + + + + Returns the fields in the message as an immutable list, in ascending field number + order. Field numbers need not be contiguous, so there is no direct mapping from the + index in the list to the field number; to retrieve a field by field number, it is better + to use the indexer. + + + + + Returns a read-only dictionary mapping the field names in this message as they're available + in the JSON representation to the field descriptors. For example, a field foo_bar + in the message would result two entries, one with a key fooBar and one with a key + foo_bar, both referring to the same field. + + + + + Retrieves the descriptor for the field with the given number. + + Number of the field to retrieve the descriptor for + The accessor for the given field + The message descriptor does not contain a field + with the given number + + + + Retrieves the descriptor for the field with the given name. + + Name of the field to retrieve the descriptor for + The descriptor for the given field + The message descriptor does not contain a field + with the given name + + + + Describes a single method in a service. + + + + + The service this method belongs to. + + + + + The method's input type. + + + + + The method's input type. + + + + + Indicates if client streams multiple requests. + + + + + Indicates if server streams multiple responses. + + + + + The (possibly empty) set of custom options for this method. + + + + + The brief name of the descriptor's target. + + + + + Reflection access for a oneof, allowing clear and "get case" actions. + + + + + Gets the descriptor for this oneof. + + + The descriptor of the oneof. + + + + + Clears the oneof in the specified message. + + + + + Indicates which field in the oneof is set for specified message + + + + + Describes a "oneof" field collection in a message type: a set of + fields of which at most one can be set in any particular message. + + + + + The brief name of the descriptor's target. + + + + + Gets the message type containing this oneof. + + + The message type containing this oneof. + + + + + Gets the fields within this oneof, in declaration order. + + + The fields within this oneof, in declaration order. + + + + + Gets an accessor for reflective access to the values associated with the oneof + in a particular message. + + + The accessor used for reflective access. + + + + + The (possibly empty) set of custom options for this oneof. + + + + + Specifies the original name (in the .proto file) of a named element, + such as an enum value. + + + + + The name of the element in the .proto file. + + + + + If the name is preferred in the .proto file. + + + + + Constructs a new attribute instance for the given name. + + The name of the element in the .proto file. + + + + Represents a package in the symbol table. We use PackageDescriptors + just as placeholders so that someone cannot define, say, a message type + that has the same name as an existing package. + + + + + The methods in this class are somewhat evil, and should not be tampered with lightly. + Basically they allow the creation of relatively weakly typed delegates from MethodInfos + which are more strongly typed. They do this by creating an appropriate strongly typed + delegate from the MethodInfo, and then calling that within an anonymous method. + Mind-bending stuff (at least to your humble narrator) but the resulting delegates are + very fast compared with calling Invoke later on. + + + + + Empty Type[] used when calling GetProperty to force property instead of indexer fetching. + + + + + Creates a delegate which will cast the argument to the appropriate method target type, + call the method on it, then convert the result to object. + + + + + Creates a delegate which will cast the argument to the appropriate method target type, + call the method on it, then convert the result to the specified type. + + + + + Creates a delegate which will execute the given method after casting the first argument to + the target type of the method, and the second argument to the first parameter type of the method. + + + + + Creates a delegate which will execute the given method after casting the first argument to + the target type of the method. + + + + + Accessor for repeated fields. + + + + + Describes a service type. + + + + + The brief name of the descriptor's target. + + + + + An unmodifiable list of methods in this service. + + + + + Finds a method by name. + + The unqualified name of the method (e.g. "Foo"). + The method's decsriptor, or null if not found. + + + + The (possibly empty) set of custom options for this service. + + + + + Accessor for single fields. + + + + + An immutable registry of types which can be looked up by their full name. + + + + + An empty type registry, containing no types. + + + + + Attempts to find a message descriptor by its full name. + + The full name of the message, which is the dot-separated + combination of package, containing messages and message name + The message descriptor corresponding to or null + if there is no such message descriptor. + + + + Creates a type registry from the specified set of file descriptors. + + + This is a convenience overload for + to allow calls such as TypeRegistry.FromFiles(descriptor1, descriptor2). + + The set of files to include in the registry. Must not contain null values. + A type registry for the given files. + + + + Creates a type registry from the specified set of file descriptors. + + + All message types within all the specified files are added to the registry, and + the dependencies of the specified files are also added, recursively. + + The set of files to include in the registry. Must not contain null values. + A type registry for the given files. + + + + Creates a type registry from the file descriptor parents of the specified set of message descriptors. + + + This is a convenience overload for + to allow calls such as TypeRegistry.FromFiles(descriptor1, descriptor2). + + The set of message descriptors to use to identify file descriptors to include in the registry. + Must not contain null values. + A type registry for the given files. + + + + Creates a type registry from the file descriptor parents of the specified set of message descriptors. + + + The specified message descriptors are only used to identify their file descriptors; the returned registry + contains all the types within the file descriptors which contain the specified message descriptors (and + the dependencies of those files), not just the specified messages. + + The set of message descriptors to use to identify file descriptors to include in the registry. + Must not contain null values. + A type registry for the given files. + + + + Builder class which isn't exposed, but acts as a convenient alternative to passing round two dictionaries in recursive calls. + + + + + Represents a single field in an UnknownFieldSet. + + An UnknownField consists of four lists of values. The lists correspond + to the four "wire types" used in the protocol buffer binary format. + Normally, only one of the four lists will contain any values, since it + is impossible to define a valid message type that declares two different + types for the same field number. However, the code is designed to allow + for the case where the same unknown field number is encountered using + multiple different wire types. + + + + + + Creates a new UnknownField. + + + + + Checks if two unknown field are equal. + + + + + Get the hash code of the unknown field. + + + + + Serializes the field, including the field number, and writes it to + + + The unknown field number. + The CodedOutputStream to write to. + + + + Computes the number of bytes required to encode this field, including field + number. + + + + + Merge the values in into this field. For each list + of values, 's values are append to the ones in this + field. + + + + + Returns a new list containing all of the given specified values from + both the and lists. + If is null and is empty, + null is returned. Otherwise, either a new list is created (if + is null) or the elements of are added to . + + + + + Adds a varint value. + + + + + Adds a fixed32 value. + + + + + Adds a fixed64 value. + + + + + Adds a length-delimited value. + + + + + Adds to the , creating + a new list if is null. The list is returned - either + the original reference or the new list. + + + + + Used to keep track of fields which were seen when parsing a protocol message + but whose field numbers or types are unrecognized. This most frequently + occurs when new fields are added to a message type and then messages containing + those fields are read by old software that was built before the new types were + added. + + Most users will never need to use this class directly. + + + + + Creates a new UnknownFieldSet. + + + + + Checks whether or not the given field number is present in the set. + + + + + Serializes the set and writes it to . + + + + + Gets the number of bytes required to encode this set. + + + + + Checks if two unknown field sets are equal. + + + + + Gets the unknown field set's hash code. + + + + + Adds a field to the set. If a field with the same number already exists, it + is replaced. + + + + + Parse a single field from and merge it + into this set. + + The coded input stream containing the field + false if the tag is an "end group" tag, true otherwise + + + + Create a new UnknownFieldSet if unknownFields is null. + Parse a single field from and merge it + into unknownFields. + + The UnknownFieldSet which need to be merged + The coded input stream containing the field + The merged UnknownFieldSet + + + + Merges the fields from into this set. + If a field number exists in both sets, the values in + will be appended to the values in this set. + + + + + Created a new UnknownFieldSet to if + needed and merges the fields from into the first set. + If a field number exists in both sets, the values in + will be appended to the values in this set. + + + + + Adds a field to the unknown field set. If a field with the same + number already exists, the two are merged. + + + + + Clone an unknown field set from . + + + + Holder for reflection information generated from google/protobuf/any.proto + + + File descriptor for google/protobuf/any.proto + + + + `Any` contains an arbitrary serialized protocol buffer message along with a + URL that describes the type of the serialized message. + + Protobuf library provides support to pack/unpack Any values in the form + of utility functions or additional generated methods of the Any type. + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by default use + 'type.googleapis.com/full.type.name' as the type URL and the unpack + methods only use the fully qualified type name after the last '/' + in the type URL, for example "foo.bar.com/x/y.z" will yield type + name "y.z". + + JSON + ==== + The JSON representation of an `Any` value uses the regular + representation of the deserialized, embedded message, with an + additional field `@type` which contains the type URL. Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": <string>, + "lastName": <string> + } + + If the embedded message type is well-known and has a custom JSON + representation, that representation will be embedded adding a field + `value` which holds the custom JSON in addition to the `@type` + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + + + + Field number for the "type_url" field. + + + + A URL/resource name whose content describes the type of the + serialized protocol buffer message. + + For URLs which use the scheme `http`, `https`, or no scheme, the + following restrictions and interpretations apply: + + * If no scheme is provided, `https` is assumed. + * The last segment of the URL's path must represent the fully + qualified name of the type (as in `path/google.protobuf.Duration`). + The name should be in a canonical form (e.g., leading "." is + not accepted). + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Schemes other than `http`, `https` (or the empty scheme) might be + used with implementation specific semantics. + + + + Field number for the "value" field. + + + + Must be a valid serialized protocol buffer of the above specified type. + + + + + Retrieves the type name for a type URL, matching the + of the packed message type. + + + + This is always just the last part of the URL, after the final slash. No validation of + anything before the trailing slash is performed. If the type URL does not include a slash, + an empty string is returned rather than an exception being thrown; this won't match any types, + and the calling code is probably in a better position to give a meaningful error. + + + There is no handling of fragments or queries at the moment. + + + The URL to extract the type name from + The type name + + + + Unpacks the content of this Any message into the target message type, + which must match the type URL within this Any message. + + The type of message to unpack the content into. + The unpacked message. + The target message type doesn't match the type URL in this message + + + + Attempts to unpack the content of this Any message into the target message type, + if it matches the type URL within this Any message. + + The type of message to attempt to unpack the content into. + true if the message was successfully unpacked; false if the type name didn't match + + + + Packs the specified message into an Any message using a type URL prefix of "type.googleapis.com". + + The message to pack. + An Any message with the content and type URL of . + + + + Packs the specified message into an Any message using the specified type URL prefix. + + The message to pack. + The prefix for the type URL. + An Any message with the content and type URL of . + + + Holder for reflection information generated from google/protobuf/api.proto + + + File descriptor for google/protobuf/api.proto + + + + Api is a light-weight descriptor for an API Interface. + + Interfaces are also described as "protocol buffer services" in some contexts, + such as by the "service" keyword in a .proto file, but they are different + from API Services, which represent a concrete implementation of an interface + as opposed to simply a description of methods and bindings. They are also + sometimes simply referred to as "APIs" in other contexts, such as the name of + this message itself. See https://cloud.google.com/apis/design/glossary for + detailed terminology. + + + + Field number for the "name" field. + + + + The fully qualified name of this interface, including package name + followed by the interface's simple name. + + + + Field number for the "methods" field. + + + + The methods of this interface, in unspecified order. + + + + Field number for the "options" field. + + + + Any metadata attached to the interface. + + + + Field number for the "version" field. + + + + A version string for this interface. If specified, must have the form + `major-version.minor-version`, as in `1.10`. If the minor version is + omitted, it defaults to zero. If the entire version field is empty, the + major version is derived from the package name, as outlined below. If the + field is not empty, the version in the package name will be verified to be + consistent with what is provided here. + + The versioning schema uses [semantic + versioning](http://semver.org) where the major version number + indicates a breaking change and the minor version an additive, + non-breaking change. Both version numbers are signals to users + what to expect from different versions, and should be carefully + chosen based on the product plan. + + The major version is also reflected in the package name of the + interface, which must end in `v<major-version>`, as in + `google.feature.v1`. For major versions 0 and 1, the suffix can + be omitted. Zero major versions must only be used for + experimental, non-GA interfaces. + + + + Field number for the "source_context" field. + + + + Source context for the protocol buffer service represented by this + message. + + + + Field number for the "mixins" field. + + + + Included interfaces. See [Mixin][]. + + + + Field number for the "syntax" field. + + + + The source syntax of the service. + + + + + Method represents a method of an API interface. + + + + Field number for the "name" field. + + + + The simple name of this method. + + + + Field number for the "request_type_url" field. + + + + A URL of the input message type. + + + + Field number for the "request_streaming" field. + + + + If true, the request is streamed. + + + + Field number for the "response_type_url" field. + + + + The URL of the output message type. + + + + Field number for the "response_streaming" field. + + + + If true, the response is streamed. + + + + Field number for the "options" field. + + + + Any metadata attached to the method. + + + + Field number for the "syntax" field. + + + + The source syntax of this method. + + + + + Declares an API Interface to be included in this interface. The including + interface must redeclare all the methods from the included interface, but + documentation and options are inherited as follows: + + - If after comment and whitespace stripping, the documentation + string of the redeclared method is empty, it will be inherited + from the original method. + + - Each annotation belonging to the service config (http, + visibility) which is not set in the redeclared method will be + inherited. + + - If an http annotation is inherited, the path pattern will be + modified as follows. Any version prefix will be replaced by the + version of the including interface plus the [root][] path if + specified. + + Example of a simple mixin: + + package google.acl.v1; + service AccessControl { + // Get the underlying ACL object. + rpc GetAcl(GetAclRequest) returns (Acl) { + option (google.api.http).get = "/v1/{resource=**}:getAcl"; + } + } + + package google.storage.v2; + service Storage { + rpc GetAcl(GetAclRequest) returns (Acl); + + // Get a data record. + rpc GetData(GetDataRequest) returns (Data) { + option (google.api.http).get = "/v2/{resource=**}"; + } + } + + Example of a mixin configuration: + + apis: + - name: google.storage.v2.Storage + mixins: + - name: google.acl.v1.AccessControl + + The mixin construct implies that all methods in `AccessControl` are + also declared with same name and request/response types in + `Storage`. A documentation generator or annotation processor will + see the effective `Storage.GetAcl` method after inherting + documentation and annotations as follows: + + service Storage { + // Get the underlying ACL object. + rpc GetAcl(GetAclRequest) returns (Acl) { + option (google.api.http).get = "/v2/{resource=**}:getAcl"; + } + ... + } + + Note how the version in the path pattern changed from `v1` to `v2`. + + If the `root` field in the mixin is specified, it should be a + relative path under which inherited HTTP paths are placed. Example: + + apis: + - name: google.storage.v2.Storage + mixins: + - name: google.acl.v1.AccessControl + root: acls + + This implies the following inherited HTTP annotation: + + service Storage { + // Get the underlying ACL object. + rpc GetAcl(GetAclRequest) returns (Acl) { + option (google.api.http).get = "/v2/acls/{resource=**}:getAcl"; + } + ... + } + + + + Field number for the "name" field. + + + + The fully qualified name of the interface which is included. + + + + Field number for the "root" field. + + + + If non-empty specifies a path under which inherited HTTP paths + are rooted. + + + + Holder for reflection information generated from google/protobuf/duration.proto + + + File descriptor for google/protobuf/duration.proto + + + + A Duration represents a signed, fixed-length span of time represented + as a count of seconds and fractions of seconds at nanosecond + resolution. It is independent of any calendar and concepts like "day" + or "month". It is related to Timestamp in that the difference between + two Timestamp values is a Duration and it can be added or subtracted + from a Timestamp. Range is approximately +-10,000 years. + + # Examples + + Example 1: Compute Duration from two Timestamps in pseudo code. + + Timestamp start = ...; + Timestamp end = ...; + Duration duration = ...; + + duration.seconds = end.seconds - start.seconds; + duration.nanos = end.nanos - start.nanos; + + if (duration.seconds < 0 && duration.nanos > 0) { + duration.seconds += 1; + duration.nanos -= 1000000000; + } else if (durations.seconds > 0 && duration.nanos < 0) { + duration.seconds -= 1; + duration.nanos += 1000000000; + } + + Example 2: Compute Timestamp from Timestamp + Duration in pseudo code. + + Timestamp start = ...; + Duration duration = ...; + Timestamp end = ...; + + end.seconds = start.seconds + duration.seconds; + end.nanos = start.nanos + duration.nanos; + + if (end.nanos < 0) { + end.seconds -= 1; + end.nanos += 1000000000; + } else if (end.nanos >= 1000000000) { + end.seconds += 1; + end.nanos -= 1000000000; + } + + Example 3: Compute Duration from datetime.timedelta in Python. + + td = datetime.timedelta(days=3, minutes=10) + duration = Duration() + duration.FromTimedelta(td) + + # JSON Mapping + + In JSON format, the Duration type is encoded as a string rather than an + object, where the string ends in the suffix "s" (indicating seconds) and + is preceded by the number of seconds, with nanoseconds expressed as + fractional seconds. For example, 3 seconds with 0 nanoseconds should be + encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should + be expressed in JSON format as "3.000000001s", and 3 seconds and 1 + microsecond should be expressed in JSON format as "3.000001s". + + + + Field number for the "seconds" field. + + + + Signed seconds of the span of time. Must be from -315,576,000,000 + to +315,576,000,000 inclusive. Note: these bounds are computed from: + 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years + + + + Field number for the "nanos" field. + + + + Signed fractions of a second at nanosecond resolution of the span + of time. Durations less than one second are represented with a 0 + `seconds` field and a positive or negative `nanos` field. For durations + of one second or more, a non-zero value for the `nanos` field must be + of the same sign as the `seconds` field. Must be from -999,999,999 + to +999,999,999 inclusive. + + + + + The number of nanoseconds in a second. + + + + + The number of nanoseconds in a BCL tick (as used by and ). + + + + + The maximum permitted number of seconds. + + + + + The minimum permitted number of seconds. + + + + + Converts this to a . + + If the duration is not a precise number of ticks, it is truncated towards 0. + The value of this duration, as a TimeSpan. + This value isn't a valid normalized duration, as + described in the documentation. + + + + Converts the given to a . + + The TimeSpan to convert. + The value of the given TimeSpan, as a Duration. + + + + Returns the result of negating the duration. For example, the negation of 5 minutes is -5 minutes. + + The duration to negate. Must not be null. + The negated value of this duration. + + + + Adds the two specified values together. + + The first value to add. Must not be null. + The second value to add. Must not be null. + + + + + Subtracts one from another. + + The duration to subtract from. Must not be null. + The duration to subtract. Must not be null. + The difference between the two specified durations. + + + + Creates a duration with the normalized values from the given number of seconds and + nanoseconds, conforming with the description in the proto file. + + + + + Converts a duration specified in seconds/nanoseconds to a string. + + + If the value is a normalized duration in the range described in duration.proto, + is ignored. Otherwise, if the parameter is true, + a JSON object with a warning is returned; if it is false, an is thrown. + + Seconds portion of the duration. + Nanoseconds portion of the duration. + Determines the handling of non-normalized values + The represented duration is invalid, and is false. + + + + Returns a string representation of this for diagnostic purposes. + + + Normally the returned value will be a JSON string value (including leading and trailing quotes) but + when the value is non-normalized or out of range, a JSON object representation will be returned + instead, including a warning. This is to avoid exceptions being thrown when trying to + diagnose problems - the regular JSON formatter will still throw an exception for non-normalized + values. + + A string representation of this value. + + + + Appends a number of nanoseconds to a StringBuilder. Either 0 digits are added (in which + case no "." is appended), or 3 6 or 9 digits. This is internal for use in Timestamp as well + as Duration. + + + + Holder for reflection information generated from google/protobuf/empty.proto + + + File descriptor for google/protobuf/empty.proto + + + + A generic empty message that you can re-use to avoid defining duplicated + empty messages in your APIs. A typical example is to use it as the request + or the response type of an API method. For instance: + + service Foo { + rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); + } + + The JSON representation for `Empty` is empty JSON object `{}`. + + + + Holder for reflection information generated from google/protobuf/field_mask.proto + + + File descriptor for google/protobuf/field_mask.proto + + + + `FieldMask` represents a set of symbolic field paths, for example: + + paths: "f.a" + paths: "f.b.d" + + Here `f` represents a field in some root message, `a` and `b` + fields in the message found in `f`, and `d` a field found in the + message in `f.b`. + + Field masks are used to specify a subset of fields that should be + returned by a get operation or modified by an update operation. + Field masks also have a custom JSON encoding (see below). + + # Field Masks in Projections + + When used in the context of a projection, a response message or + sub-message is filtered by the API to only contain those fields as + specified in the mask. For example, if the mask in the previous + example is applied to a response message as follows: + + f { + a : 22 + b { + d : 1 + x : 2 + } + y : 13 + } + z: 8 + + The result will not contain specific values for fields x,y and z + (their value will be set to the default, and omitted in proto text + output): + + f { + a : 22 + b { + d : 1 + } + } + + A repeated field is not allowed except at the last position of a + paths string. + + If a FieldMask object is not present in a get operation, the + operation applies to all fields (as if a FieldMask of all fields + had been specified). + + Note that a field mask does not necessarily apply to the + top-level response message. In case of a REST get operation, the + field mask applies directly to the response, but in case of a REST + list operation, the mask instead applies to each individual message + in the returned resource list. In case of a REST custom method, + other definitions may be used. Where the mask applies will be + clearly documented together with its declaration in the API. In + any case, the effect on the returned resource/resources is required + behavior for APIs. + + # Field Masks in Update Operations + + A field mask in update operations specifies which fields of the + targeted resource are going to be updated. The API is required + to only change the values of the fields as specified in the mask + and leave the others untouched. If a resource is passed in to + describe the updated values, the API ignores the values of all + fields not covered by the mask. + + If a repeated field is specified for an update operation, the existing + repeated values in the target resource will be overwritten by the new values. + Note that a repeated field is only allowed in the last position of a `paths` + string. + + If a sub-message is specified in the last position of the field mask for an + update operation, then the existing sub-message in the target resource is + overwritten. Given the target message: + + f { + b { + d : 1 + x : 2 + } + c : 1 + } + + And an update message: + + f { + b { + d : 10 + } + } + + then if the field mask is: + + paths: "f.b" + + then the result will be: + + f { + b { + d : 10 + } + c : 1 + } + + However, if the update mask was: + + paths: "f.b.d" + + then the result would be: + + f { + b { + d : 10 + x : 2 + } + c : 1 + } + + In order to reset a field's value to the default, the field must + be in the mask and set to the default value in the provided resource. + Hence, in order to reset all fields of a resource, provide a default + instance of the resource and set all fields in the mask, or do + not provide a mask as described below. + + If a field mask is not present on update, the operation applies to + all fields (as if a field mask of all fields has been specified). + Note that in the presence of schema evolution, this may mean that + fields the client does not know and has therefore not filled into + the request will be reset to their default. If this is unwanted + behavior, a specific service may require a client to always specify + a field mask, producing an error if not. + + As with get operations, the location of the resource which + describes the updated values in the request message depends on the + operation kind. In any case, the effect of the field mask is + required to be honored by the API. + + ## Considerations for HTTP REST + + The HTTP kind of an update operation which uses a field mask must + be set to PATCH instead of PUT in order to satisfy HTTP semantics + (PUT must only be used for full updates). + + # JSON Encoding of Field Masks + + In JSON, a field mask is encoded as a single string where paths are + separated by a comma. Fields name in each path are converted + to/from lower-camel naming conventions. + + As an example, consider the following message declarations: + + message Profile { + User user = 1; + Photo photo = 2; + } + message User { + string display_name = 1; + string address = 2; + } + + In proto a field mask for `Profile` may look as such: + + mask { + paths: "user.display_name" + paths: "photo" + } + + In JSON, the same mask is represented as below: + + { + mask: "user.displayName,photo" + } + + # Field Masks and Oneof Fields + + Field masks treat fields in oneofs just as regular fields. Consider the + following message: + + message SampleMessage { + oneof test_oneof { + string name = 4; + SubMessage sub_message = 9; + } + } + + The field mask can be: + + mask { + paths: "name" + } + + Or: + + mask { + paths: "sub_message" + } + + Note that oneof type names ("test_oneof" in this case) cannot be used in + paths. + + ## Field Mask Verification + + The implementation of the all the API methods, which have any FieldMask type + field in the request, should verify the included field paths, and return + `INVALID_ARGUMENT` error if any path is duplicated or unmappable. + + + + Field number for the "paths" field. + + + + The set of field mask paths. + + + + + Converts a timestamp specified in seconds/nanoseconds to a string. + + + If the value is a normalized duration in the range described in field_mask.proto, + is ignored. Otherwise, if the parameter is true, + a JSON object with a warning is returned; if it is false, an is thrown. + + Paths in the field mask + Determines the handling of non-normalized values + The represented field mask is invalid, and is false. + + + + Checks whether the given path is valid for a field mask. + + true if the path is valid; false otherwise + + + + Returns a string representation of this for diagnostic purposes. + + + Normally the returned value will be a JSON string value (including leading and trailing quotes) but + when the value is non-normalized or out of range, a JSON object representation will be returned + instead, including a warning. This is to avoid exceptions being thrown when trying to + diagnose problems - the regular JSON formatter will still throw an exception for non-normalized + values. + + A string representation of this value. + + + Holder for reflection information generated from google/protobuf/source_context.proto + + + File descriptor for google/protobuf/source_context.proto + + + + `SourceContext` represents information about the source of a + protobuf element, like the file in which it is defined. + + + + Field number for the "file_name" field. + + + + The path-qualified name of the .proto file that contained the associated + protobuf element. For example: `"google/protobuf/source_context.proto"`. + + + + Holder for reflection information generated from google/protobuf/struct.proto + + + File descriptor for google/protobuf/struct.proto + + + + `NullValue` is a singleton enumeration to represent the null value for the + `Value` type union. + + The JSON representation for `NullValue` is JSON `null`. + + + + + Null value. + + + + + `Struct` represents a structured data value, consisting of fields + which map to dynamically typed values. In some languages, `Struct` + might be supported by a native representation. For example, in + scripting languages like JS a struct is represented as an + object. The details of that representation are described together + with the proto support for the language. + + The JSON representation for `Struct` is JSON object. + + + + Field number for the "fields" field. + + + + Unordered map of dynamically typed values. + + + + + `Value` represents a dynamically typed value which can be either + null, a number, a string, a boolean, a recursive struct value, or a + list of values. A producer of value is expected to set one of that + variants, absence of any variant indicates an error. + + The JSON representation for `Value` is JSON value. + + + + Field number for the "null_value" field. + + + + Represents a null value. + + + + Field number for the "number_value" field. + + + + Represents a double value. + + + + Field number for the "string_value" field. + + + + Represents a string value. + + + + Field number for the "bool_value" field. + + + + Represents a boolean value. + + + + Field number for the "struct_value" field. + + + + Represents a structured value. + + + + Field number for the "list_value" field. + + + + Represents a repeated `Value`. + + + + Enum of possible cases for the "kind" oneof. + + + + Convenience method to create a Value message with a string value. + + Value to set for the StringValue property. + A newly-created Value message with the given value. + + + + Convenience method to create a Value message with a number value. + + Value to set for the NumberValue property. + A newly-created Value message with the given value. + + + + Convenience method to create a Value message with a Boolean value. + + Value to set for the BoolValue property. + A newly-created Value message with the given value. + + + + Convenience method to create a Value message with a null initial value. + + A newly-created Value message a null initial value. + + + + Convenience method to create a Value message with an initial list of values. + + The values provided are not cloned; the references are copied directly. + A newly-created Value message an initial list value. + + + + Convenience method to create a Value message with an initial struct value + + The value provided is not cloned; the reference is copied directly. + A newly-created Value message an initial struct value. + + + + `ListValue` is a wrapper around a repeated field of values. + + The JSON representation for `ListValue` is JSON array. + + + + Field number for the "values" field. + + + + Repeated field of dynamically typed values. + + + + + Extension methods on BCL time-related types, converting to protobuf types. + + + + + Converts the given to a . + + The date and time to convert to a timestamp. + The value has a other than Utc. + The converted timestamp. + + + + Converts the given to a + + The offset is taken into consideration when converting the value (so the same instant in time + is represented) but is not a separate part of the resulting value. In other words, there is no + roundtrip operation to retrieve the original DateTimeOffset. + The date and time (with UTC offset) to convert to a timestamp. + The converted timestamp. + + + + Converts the given to a . + + The time span to convert. + The converted duration. + + + Holder for reflection information generated from google/protobuf/timestamp.proto + + + File descriptor for google/protobuf/timestamp.proto + + + + A Timestamp represents a point in time independent of any time zone + or calendar, represented as seconds and fractions of seconds at + nanosecond resolution in UTC Epoch time. It is encoded using the + Proleptic Gregorian Calendar which extends the Gregorian calendar + backwards to year one. It is encoded assuming all minutes are 60 + seconds long, i.e. leap seconds are "smeared" so that no leap second + table is needed for interpretation. Range is from + 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. + By restricting to that range, we ensure that we can convert to + and from RFC 3339 date strings. + See [https://www.ietf.org/rfc/rfc3339.txt](https://www.ietf.org/rfc/rfc3339.txt). + + # Examples + + Example 1: Compute Timestamp from POSIX `time()`. + + Timestamp timestamp; + timestamp.set_seconds(time(NULL)); + timestamp.set_nanos(0); + + Example 2: Compute Timestamp from POSIX `gettimeofday()`. + + struct timeval tv; + gettimeofday(&tv, NULL); + + Timestamp timestamp; + timestamp.set_seconds(tv.tv_sec); + timestamp.set_nanos(tv.tv_usec * 1000); + + Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`. + + FILETIME ft; + GetSystemTimeAsFileTime(&ft); + UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime; + + // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z + // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z. + Timestamp timestamp; + timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL)); + timestamp.set_nanos((INT32) ((ticks % 10000000) * 100)); + + Example 4: Compute Timestamp from Java `System.currentTimeMillis()`. + + long millis = System.currentTimeMillis(); + + Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000) + .setNanos((int) ((millis % 1000) * 1000000)).build(); + + Example 5: Compute Timestamp from current time in Python. + + timestamp = Timestamp() + timestamp.GetCurrentTime() + + # JSON Mapping + + In JSON format, the Timestamp type is encoded as a string in the + [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the + format is "{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z" + where {year} is always expressed using four digits while {month}, {day}, + {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional + seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution), + are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone + is required, though only UTC (as indicated by "Z") is presently supported. + + For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past + 01:30 UTC on January 15, 2017. + + In JavaScript, one can convert a Date object to this format using the + standard [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString] + method. In Python, a standard `datetime.datetime` object can be converted + to this format using [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) + with the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one + can use the Joda Time's [`ISODateTimeFormat.dateTime()`]( + http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime--) + to obtain a formatter capable of generating timestamps in this format. + + + + Field number for the "seconds" field. + + + + Represents seconds of UTC time since Unix epoch + 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to + 9999-12-31T23:59:59Z inclusive. + + + + Field number for the "nanos" field. + + + + Non-negative fractions of a second at nanosecond resolution. Negative + second values with fractions must still have non-negative nanos values + that count forward in time. Must be from 0 to 999,999,999 + inclusive. + + + + + Returns the difference between one and another, as a . + + The timestamp to subtract from. Must not be null. + The timestamp to subtract. Must not be null. + The difference between the two specified timestamps. + + + + Adds a to a , to obtain another Timestamp. + + The timestamp to add the duration to. Must not be null. + The duration to add. Must not be null. + The result of adding the duration to the timestamp. + + + + Subtracts a from a , to obtain another Timestamp. + + The timestamp to subtract the duration from. Must not be null. + The duration to subtract. + The result of subtracting the duration from the timestamp. + + + + Converts this timestamp into a . + + + The resulting DateTime will always have a Kind of Utc. + If the timestamp is not a precise number of ticks, it will be truncated towards the start + of time. For example, a timestamp with a value of 99 will result in a + value precisely on a second. + + This timestamp as a DateTime. + The timestamp contains invalid values; either it is + incorrectly normalized or is outside the valid range. + + + + Converts this timestamp into a . + + + The resulting DateTimeOffset will always have an Offset of zero. + If the timestamp is not a precise number of ticks, it will be truncated towards the start + of time. For example, a timestamp with a value of 99 will result in a + value precisely on a second. + + This timestamp as a DateTimeOffset. + The timestamp contains invalid values; either it is + incorrectly normalized or is outside the valid range. + + + + Converts the specified to a . + + + The Kind of is not DateTimeKind.Utc. + The converted timestamp. + + + + Converts the given to a + + The offset is taken into consideration when converting the value (so the same instant in time + is represented) but is not a separate part of the resulting value. In other words, there is no + roundtrip operation to retrieve the original DateTimeOffset. + The date and time (with UTC offset) to convert to a timestamp. + The converted timestamp. + + + + Converts a timestamp specified in seconds/nanoseconds to a string. + + + If the value is a normalized duration in the range described in timestamp.proto, + is ignored. Otherwise, if the parameter is true, + a JSON object with a warning is returned; if it is false, an is thrown. + + Seconds portion of the duration. + Nanoseconds portion of the duration. + Determines the handling of non-normalized values + The represented duration is invalid, and is false. + + + + Returns a string representation of this for diagnostic purposes. + + + Normally the returned value will be a JSON string value (including leading and trailing quotes) but + when the value is non-normalized or out of range, a JSON object representation will be returned + instead, including a warning. This is to avoid exceptions being thrown when trying to + diagnose problems - the regular JSON formatter will still throw an exception for non-normalized + values. + + A string representation of this value. + + + Holder for reflection information generated from google/protobuf/type.proto + + + File descriptor for google/protobuf/type.proto + + + + The syntax in which a protocol buffer element is defined. + + + + + Syntax `proto2`. + + + + + Syntax `proto3`. + + + + + A protocol buffer message type. + + + + Field number for the "name" field. + + + + The fully qualified message name. + + + + Field number for the "fields" field. + + + + The list of fields. + + + + Field number for the "oneofs" field. + + + + The list of types appearing in `oneof` definitions in this type. + + + + Field number for the "options" field. + + + + The protocol buffer options. + + + + Field number for the "source_context" field. + + + + The source context. + + + + Field number for the "syntax" field. + + + + The source syntax. + + + + + A single field of a message type. + + + + Field number for the "kind" field. + + + + The field type. + + + + Field number for the "cardinality" field. + + + + The field cardinality. + + + + Field number for the "number" field. + + + + The field number. + + + + Field number for the "name" field. + + + + The field name. + + + + Field number for the "type_url" field. + + + + The field type URL, without the scheme, for message or enumeration + types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`. + + + + Field number for the "oneof_index" field. + + + + The index of the field type in `Type.oneofs`, for message or enumeration + types. The first type has index 1; zero means the type is not in the list. + + + + Field number for the "packed" field. + + + + Whether to use alternative packed wire representation. + + + + Field number for the "options" field. + + + + The protocol buffer options. + + + + Field number for the "json_name" field. + + + + The field JSON name. + + + + Field number for the "default_value" field. + + + + The string value of the default value of this field. Proto2 syntax only. + + + + Container for nested types declared in the Field message type. + + + + Basic field types. + + + + + Field type unknown. + + + + + Field type double. + + + + + Field type float. + + + + + Field type int64. + + + + + Field type uint64. + + + + + Field type int32. + + + + + Field type fixed64. + + + + + Field type fixed32. + + + + + Field type bool. + + + + + Field type string. + + + + + Field type group. Proto2 syntax only, and deprecated. + + + + + Field type message. + + + + + Field type bytes. + + + + + Field type uint32. + + + + + Field type enum. + + + + + Field type sfixed32. + + + + + Field type sfixed64. + + + + + Field type sint32. + + + + + Field type sint64. + + + + + Whether a field is optional, required, or repeated. + + + + + For fields with unknown cardinality. + + + + + For optional fields. + + + + + For required fields. Proto2 syntax only. + + + + + For repeated fields. + + + + + Enum type definition. + + + + Field number for the "name" field. + + + + Enum type name. + + + + Field number for the "enumvalue" field. + + + + Enum value definitions. + + + + Field number for the "options" field. + + + + Protocol buffer options. + + + + Field number for the "source_context" field. + + + + The source context. + + + + Field number for the "syntax" field. + + + + The source syntax. + + + + + Enum value definition. + + + + Field number for the "name" field. + + + + Enum value name. + + + + Field number for the "number" field. + + + + Enum value number. + + + + Field number for the "options" field. + + + + Protocol buffer options. + + + + + A protocol buffer option, which can be attached to a message, field, + enumeration, etc. + + + + Field number for the "name" field. + + + + The option's name. For protobuf built-in options (options defined in + descriptor.proto), this is the short name. For example, `"map_entry"`. + For custom options, it should be the fully-qualified name. For example, + `"google.api.http"`. + + + + Field number for the "value" field. + + + + The option's value packed in an Any message. If the value is a primitive, + the corresponding wrapper type defined in google/protobuf/wrappers.proto + should be used. If the value is an enum, it should be stored as an int32 + value using the google.protobuf.Int32Value type. + + + + Holder for reflection information generated from google/protobuf/wrappers.proto + + + File descriptor for google/protobuf/wrappers.proto + + + + Field number for the single "value" field in all wrapper types. + + + + + Wrapper message for `double`. + + The JSON representation for `DoubleValue` is JSON number. + + + + Field number for the "value" field. + + + + The double value. + + + + + Wrapper message for `float`. + + The JSON representation for `FloatValue` is JSON number. + + + + Field number for the "value" field. + + + + The float value. + + + + + Wrapper message for `int64`. + + The JSON representation for `Int64Value` is JSON string. + + + + Field number for the "value" field. + + + + The int64 value. + + + + + Wrapper message for `uint64`. + + The JSON representation for `UInt64Value` is JSON string. + + + + Field number for the "value" field. + + + + The uint64 value. + + + + + Wrapper message for `int32`. + + The JSON representation for `Int32Value` is JSON number. + + + + Field number for the "value" field. + + + + The int32 value. + + + + + Wrapper message for `uint32`. + + The JSON representation for `UInt32Value` is JSON number. + + + + Field number for the "value" field. + + + + The uint32 value. + + + + + Wrapper message for `bool`. + + The JSON representation for `BoolValue` is JSON `true` and `false`. + + + + Field number for the "value" field. + + + + The bool value. + + + + + Wrapper message for `string`. + + The JSON representation for `StringValue` is JSON string. + + + + Field number for the "value" field. + + + + The string value. + + + + + Wrapper message for `bytes`. + + The JSON representation for `BytesValue` is JSON string. + + + + Field number for the "value" field. + + + + The bytes value. + + + + + This class is used internally by the Protocol Buffer Library and generated + message implementations. It is public only for the sake of those generated + messages. Others should not use this class directly. + + This class contains constants and helper functions useful for dealing with + the Protocol Buffer wire format. + + + + + + Wire types within protobuf encoding. + + + + + Variable-length integer. + + + + + A fixed-length 64-bit value. + + + + + A length-delimited value, i.e. a length followed by that many bytes of data. + + + + + A "start group" value - not supported by this implementation. + + + + + An "end group" value - not supported by this implementation. + + + + + A fixed-length 32-bit value. + + + + + Given a tag value, determines the wire type (lower 3 bits). + + + + + Given a tag value, determines the field number (the upper 29 bits). + + + + + Makes a tag value given a field number and wire type. + + +
+
diff --git a/bin/Debug/net461/GrapeSystems.Core.Common.dll b/bin/Debug/net461/GrapeSystems.Core.Common.dll new file mode 100644 index 0000000..c8968bc Binary files /dev/null and b/bin/Debug/net461/GrapeSystems.Core.Common.dll differ diff --git a/bin/Debug/net461/GrapeSystems.Core.Drawing.Fx20.dll b/bin/Debug/net461/GrapeSystems.Core.Drawing.Fx20.dll new file mode 100644 index 0000000..ac8b16a Binary files /dev/null and b/bin/Debug/net461/GrapeSystems.Core.Drawing.Fx20.dll differ diff --git a/bin/Debug/net461/GrapeSystems.Core.Parts.Frames.dll b/bin/Debug/net461/GrapeSystems.Core.Parts.Frames.dll new file mode 100644 index 0000000..28ce807 Binary files /dev/null and b/bin/Debug/net461/GrapeSystems.Core.Parts.Frames.dll differ diff --git a/bin/Debug/net461/GrapeSystems.Core.Parts.dll b/bin/Debug/net461/GrapeSystems.Core.Parts.dll new file mode 100644 index 0000000..c12d4f5 Binary files /dev/null and b/bin/Debug/net461/GrapeSystems.Core.Parts.dll differ diff --git a/bin/Debug/net461/GrapeSystems.Library.BarcodeAd.dll b/bin/Debug/net461/GrapeSystems.Library.BarcodeAd.dll new file mode 100644 index 0000000..4361dc9 Binary files /dev/null and b/bin/Debug/net461/GrapeSystems.Library.BarcodeAd.dll differ diff --git a/bin/Debug/net461/GrapeSystems.Library.Controls.dll b/bin/Debug/net461/GrapeSystems.Library.Controls.dll new file mode 100644 index 0000000..7043f7f Binary files /dev/null and b/bin/Debug/net461/GrapeSystems.Library.Controls.dll differ diff --git a/bin/Debug/net461/GrapeSystems.Library.Image.dll b/bin/Debug/net461/GrapeSystems.Library.Image.dll new file mode 100644 index 0000000..59d3839 Binary files /dev/null and b/bin/Debug/net461/GrapeSystems.Library.Image.dll differ diff --git a/bin/Debug/net461/Interop.QRMAKERADLib.dll b/bin/Debug/net461/Interop.QRMAKERADLib.dll new file mode 100644 index 0000000..b41ae1f Binary files /dev/null and b/bin/Debug/net461/Interop.QRMAKERADLib.dll differ diff --git a/bin/Debug/net461/MLComponent.XmlSerializers.dll b/bin/Debug/net461/MLComponent.XmlSerializers.dll new file mode 100644 index 0000000..e0c2dc0 Binary files /dev/null and b/bin/Debug/net461/MLComponent.XmlSerializers.dll differ diff --git a/bin/Debug/net461/MLComponent.dll b/bin/Debug/net461/MLComponent.dll new file mode 100644 index 0000000..f21d6a0 Binary files /dev/null and b/bin/Debug/net461/MLComponent.dll differ diff --git a/bin/Debug/net461/Microsoft.Win32.Primitives.dll b/bin/Debug/net461/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..8b69a69 Binary files /dev/null and b/bin/Debug/net461/Microsoft.Win32.Primitives.dll differ diff --git a/bin/Debug/net461/MySql.Data.dll b/bin/Debug/net461/MySql.Data.dll new file mode 100644 index 0000000..669149a Binary files /dev/null and b/bin/Debug/net461/MySql.Data.dll differ diff --git a/bin/Debug/net461/MySql.Data.xml b/bin/Debug/net461/MySql.Data.xml new file mode 100644 index 0000000..bd57447 --- /dev/null +++ b/bin/Debug/net461/MySql.Data.xml @@ -0,0 +1,16192 @@ + + + + MySql.Data + + + + + The implementation of the caching_sha2_password authentication plugin. + + + + + Defines the stage of the authentication. + + + + + Defines the default behavior for an authentication plugin. + + + + + Gets or sets the authentication data returned by the server. + + + + + This is a factory method that is used only internally. It creates an auth plugin based on the method type + + + + + + + + + Gets the connection option settings. + + + + + Gets the server version associated with this authentication plugin. + + + + + Gets the encoding assigned to the native driver. + + + + + Sets the authentication data required to encode, encrypt, or convert the password of the user. + + A byte array containing the authentication data provided by the server. + This method may be overriden based on the requirements by the implementing authentication plugin. + + + + Defines the behavior when checking for constraints. + + This method is intended to be overriden. + + + + Throws a MySqlException that encapsulates the original exception. + + The exception to encapsulate. + + + + Defines the behavior when authentication is successful. + + This method is intended to be overriden. + + + + Defines the behavior when more data is required from the server. + + The data returned by the server. + The data to return to the server. + + + + Gets the plugin name based on the authentication plugin type defined during the creation of this object. + + + + + Gets the user name associated to the connection settings. + + The user name associated to the connection settings. + + + + Gets the encoded, encrypted, or converted password based on the authentication plugin type defined during the creation of this object. + + An object containing the encoded, encrypted, or converted password. + This method is intended to be overriden. + + + + Allows connections to a user account set with the mysql_native_password authentication plugin. + + + + + Returns a byte array containing the proper encryption of the + given password/seed according to the new 4.1.1 authentication scheme. + + + + + + + + The implementation of the sha256_password authentication plugin. + + + + + + + + + + Defines the type of the security buffer. + + + + + Defines a security handle. + + + + + Describes a buffer allocated by a transport to pass to a security package. + + + + + Specifies the size, in bytes, of the buffer. + + + + + Bit flags that indicate the type of the buffer. + + + + + Pointer to a buffer. + + + + + Hold a numeric value used in defining other data types. + + + + + Least significant digits. + + + + + Most significant digits. + + + + + Holds a pointer used to define a security handle. + + + + + Least significant digits. + + + + + Most significant digits. + + + + + Indicates the sizes of important structures used in the message support functions. + + + + + Specifies the maximum size of the security token used in the authentication changes. + + + + + Specifies the maximum size of the signature created by the MakeSignature function. This member must be zero if integrity services are not requested or available. + + + + + Specifies the preferred integral size of the messages. + + + + + Size of the security trailer to be appended to messages. This member should be zero if the relevant services are not requested or available. + + + + + Allows importing large amounts of data into a database with bulk loading. + + + + + Gets or sets the connection. + + The connection. + + + + Gets or sets the field terminator. + + The field terminator. + + + + Gets or sets the line terminator. + + The line terminator. + + + + Gets or sets the name of the table. + + The name of the table. + + + + Gets or sets the character set. + + The character set. + + + + Gets or sets the name of the file. + + The name of the file. + + + + Gets or sets the timeout. + + The timeout. + + + + Gets or sets a value indicating whether the filename that is to be loaded + is local to the client or not + + true if local; otherwise, false. + + + + Gets or sets the number of lines to skip. + + The number of lines to skip. + + + + Gets or sets the line prefix. + + The line prefix. + + + + Gets or sets the field quotation character. + + The field quotation character. + + + + Gets or sets a value indicating whether [field quotation optional]. + + + true if [field quotation optional]; otherwise, false. + + + + + Gets or sets the escape character. + + The escape character. + + + + Gets or sets the conflict option. + + The conflict option. + + + + Gets or sets the priority. + + The priority. + + + + Gets the columns. + + The columns. + + + + Gets the expressions. + + The expressions. + + + + Execute the load operation + + The number of rows inserted. + + + + Async version of Load + + The number of rows inserted. + + + + Executes the load operation asynchronously while the cancellation isn't requested. + + The cancellation token. + The number of rows inserted. + + + + Represents the priority set for bulk loading operations. + + + + + This is the default and indicates normal priority + + + + + Low priority will cause the load operation to wait until all readers of the table + have finished. This only affects storage engines that use only table-level locking + such as MyISAM, Memory, and Merge. + + + + + Concurrent priority is only relevant for MyISAM tables and signals that if the table + has no free blocks in the middle that other readers can retrieve data from the table + while the load operation is happening. + + + + + Represents the behavior when conflicts arise during bulk loading operations. + + + + + This is the default and indicates normal operation. In the event of a LOCAL load, this + is the same as ignore. When the data file is on the server, then a key conflict will + cause an error to be thrown and the rest of the data file ignored. + + + + + Replace column values when a key conflict occurs. + + + + + Ignore any rows where the primary key conflicts. + + + + + Summary description for CharSetMap. + + + + + Returns the text encoding for a given MySQL character set name + + Version of the connection requesting the encoding + Name of the character set to get the encoding for + Encoding object for the given character set name + + + + Initializes the mapping. + + + + Represents a SQL statement to execute against a MySQL database. This class cannot be inherited. + MySqlCommand features the following methods for executing commands at a MySQL database: + + + Item + Description + + + + ExecuteReader + + Executes commands that return rows. + + + + ExecuteNonQuery + + Executes commands such as SQL INSERT, DELETE, and UPDATE statements. + + + + ExecuteScalar + + Retrieves a single value (for example, an aggregate value) from a database. + + + + You can reset the CommandText property and reuse the MySqlCommand + object. However, you must close the MySqlDataReader + before you can execute a new or previous command. + + If a MySqlException is + generated by the method executing a MySqlCommand, the MySqlConnection + remains open. It is the responsibility of the programmer to close the connection. + + + Using the '@' symbol for paramters is now the preferred approach although the old pattern of using + '?' is still supported. Please be aware though that using '@' can cause conflicts when user variables + are also used. To help with this situation please see the documentation on the 'allow user variables' + connection string option. The 'old syntax' connection string option has now been deprecated. + + + The following example creates a MySqlCommand and + a MySqlConnection. The MySqlConnection is opened and set as the Connection + for the MySqlCommand. The example then calls ExecuteNonQuery, + and closes the connection. To accomplish this, the ExecuteNonQuery is + passed a connection string and a query string that is a SQL INSERT + statement. + + Public Sub InsertRow(myConnectionString As String) + " If the connection string is null, use a default. + If myConnectionString = "" Then + myConnectionString = "Database=Test;Data Source=localhost;User Id=username;Password=pass" + End If + Dim myConnection As New MySqlConnection(myConnectionString) + Dim myInsertQuery As String = "INSERT INTO Orders (id, customerId, amount) Values(1001, 23, 30.66)" + Dim myCommand As New MySqlCommand(myInsertQuery) + myCommand.Connection = myConnection + myConnection.Open() + myCommand.ExecuteNonQuery() + myCommand.Connection.Close() + End Sub + + + public void InsertRow(string myConnectionString) + { + // If the connection string is null, use a default. + if(myConnectionString == "") + { + myConnectionString = "Database=Test;Data Source=localhost;User Id=username;Password=pass"; + } + MySqlConnection myConnection = new MySqlConnection(myConnectionString); + string myInsertQuery = "INSERT INTO Orders (id, customerId, amount) Values(1001, 23, 30.66)"; + MySqlCommand myCommand = new MySqlCommand(myInsertQuery); + myCommand.Connection = myConnection; + myConnection.Open(); + myCommand.ExecuteNonQuery(); + myCommand.Connection.Close(); + } + + + + + + + Initializes a new instance of the MySqlCommand class. + + + The following example creates a MySqlCommand and sets some of its properties. + + + This example shows how to use one of the overloaded + versions of the MySqlCommand constructor. For other examples that might be available, + see the individual overload topics. + + + + Public Sub CreateMySqlCommand() + Dim myConnection As New MySqlConnection _ + ("Persist Security Info=False;database=test;server=myServer") + myConnection.Open() + Dim myTrans As MySqlTransaction = myConnection.BeginTransaction() + Dim mySelectQuery As String = "SELECT * FROM MyTable" + Dim myCommand As New MySqlCommand(mySelectQuery, myConnection, myTrans) + myCommand.CommandTimeout = 20 + End Sub + + + public void CreateMySqlCommand() + { + MySqlConnection myConnection = new MySqlConnection("Persist Security Info=False; + database=test;server=myServer"); + myConnection.Open(); + MySqlTransaction myTrans = myConnection.BeginTransaction(); + string mySelectQuery = "SELECT * FROM myTable"; + MySqlCommand myCommand = new MySqlCommand(mySelectQuery, myConnection,myTrans); + myCommand.CommandTimeout = 20; + } + + + public: + void CreateMySqlCommand() + { + MySqlConnection* myConnection = new MySqlConnection(S"Persist Security Info=False; + database=test;server=myServer"); + myConnection->Open(); + MySqlTransaction* myTrans = myConnection->BeginTransaction(); + String* mySelectQuery = S"SELECT * FROM myTable"; + MySqlCommand* myCommand = new MySqlCommand(mySelectQuery, myConnection, myTrans); + myCommand->CommandTimeout = 20; + }; + + + + Initializes a new instance of the MySqlCommand class. + + The base constructor initializes all fields to their default values. The + following table shows initial property values for an instance of . + + + Properties + Initial Value + + + + + + empty string ("") + + + + + + 0 + + + + + + CommandType.Text + + + + + + Null + + + + You can change the value for any of these properties through a separate call to + the property. + + + The following example creates a and + sets some of its properties. + + + Public Sub CreateMySqlCommand() + Dim myCommand As New MySqlCommand() + myCommand.CommandType = CommandType.Text + End Sub + + + public void CreateMySqlCommand() + { + MySqlCommand myCommand = new MySqlCommand(); + myCommand.CommandType = CommandType.Text; + } + + + + + + Initializes a new instance of the class with the text of the query. + The text of the query. + When an instance of is created, + the following read/write properties are set to initial values. + + + + Properties + Initial Value + + + + + + + cmdText + + + + + + + 0 + + + + + + CommandType.Text + + + + + + Null + + + + You can change the value for any of these properties through a separate call to + the property. + + + The following example creates a and + sets some of its properties. + + + Public Sub CreateMySqlCommand() + Dim sql as String = "SELECT * FROM mytable" + Dim myCommand As New MySqlCommand(sql) + myCommand.CommandType = CommandType.Text + End Sub + + + public void CreateMySqlCommand() + { + string sql = "SELECT * FROM mytable"; + MySqlCommand myCommand = new MySqlCommand(sql); + myCommand.CommandType = CommandType.Text; + } + + + + + + Initializes a new instance of the class + with the text of the query and a . + The text of the query. + A that represents the + connection to an instance of SQL Server. + + When an instance of is created, + the following read/write properties are set to initial values. + + + + Properties + Initial Value + + + + + + + cmdText + + + + + + + 0 + + + + + + CommandType.Text + + + + + + + connection + + + + + You can change the value for any of these properties through a separate call to + the property. + + + The following example creates a and + sets some of its properties. + + + Public Sub CreateMySqlCommand() + Dim conn as new MySqlConnection("server=myServer") + Dim sql as String = "SELECT * FROM mytable" + Dim myCommand As New MySqlCommand(sql, conn) + myCommand.CommandType = CommandType.Text + End Sub + + + public void CreateMySqlCommand() + { + MySqlConnection conn = new MySqlConnection("server=myserver") + string sql = "SELECT * FROM mytable"; + MySqlCommand myCommand = new MySqlCommand(sql, conn); + myCommand.CommandType = CommandType.Text; + } + + + + + + Initializes a new instance of the class + with the text of the query, a , and the + . + The text of the query. + A that represents the + connection to an instance of SQL Server. + + The in which the executes. + + When an instance of is created, + the following read/write properties are set to initial values. + + + + Properties + Initial Value + + + + + + + cmdText + + + + + + + 0 + + + + + + CommandType.Text + + + + + + + connection + + + + + You can change the value for any of these properties through a separate call to + the property. + + + The following example creates a and + sets some of its properties. + + + Public Sub CreateMySqlCommand() + Dim conn as new MySqlConnection("server=myServer") + conn.Open(); + Dim txn as MySqlTransaction = conn.BeginTransaction() + Dim sql as String = "SELECT * FROM mytable" + Dim myCommand As New MySqlCommand(sql, conn, txn) + myCommand.CommandType = CommandType.Text + End Sub + + + public void CreateMySqlCommand() + { + MySqlConnection conn = new MySqlConnection("server=myserver") + conn.Open(); + MySqlTransaction txn = conn.BeginTransaction(); + string sql = "SELECT * FROM mytable"; + MySqlCommand myCommand = new MySqlCommand(sql, conn, txn); + myCommand.CommandType = CommandType.Text; + } + + + + + + Gets the last inserted id. + + + + + Gets or sets the SQL statement to execute at the data source. + + The SQL statement or stored procedure to execute. The default is an empty string. + + + When the property is set to StoredProcedure, + the CommandText property should be set to the name of the stored procedure. + The user may be required to use escape character syntax if the stored procedure name + contains any special characters. The command executes this stored procedure when + you call one of the Execute methods. Starting with Connector/NET 5.0, having both a stored function + and stored procedure with the same name in the same database is not supported. It is + suggested that you provide unqiue names for your stored routines. + + + The following example creates a and sets some of its properties. + + Public Sub CreateMySqlCommand() + Dim myCommand As New MySqlCommand() + myCommand.CommandText = "SELECT * FROM Mytable ORDER BY id" + myCommand.CommandType = CommandType.Text + End Sub + + + public void CreateMySqlCommand() + { + MySqlCommand myCommand = new MySqlCommand(); + myCommand.CommandText = "SELECT * FROM mytable ORDER BY id"; + myCommand.CommandType = CommandType.Text; + } + + + + + + Gets or sets the wait time before terminating the attempt to execute a command + and generating an error. + + The time (in seconds) to wait for the command to execute. The default is 30 + seconds. + + CommandTimeout is dependent on the ability of MySQL to cancel an executing query. + Because of this, CommandTimeout is only supported when connected to MySQL + version 5.0.0 or higher. + + + + + Gets or sets a value indicating how the property is to be interpreted. + + One of the values. The default is Text. + + + When you set the CommandType property to StoredProcedure, you + should set the property to the name of the stored + procedure. The command executes this stored procedure when you call one of the + Execute methods. + + + The following example creates a and sets some of its properties. + + Public Sub CreateMySqlCommand() + Dim myCommand As New MySqlCommand() + myCommand.CommandType = CommandType.Text + End Sub + + + public void CreateMySqlCommand() + { + MySqlCommand myCommand = new MySqlCommand(); + myCommand.CommandType = CommandType.Text; + } + + + + + + Gets a boolean value that indicates whether the Prepared method has been called. + + + + + Gets or sets the used by this instance of the + . + + The connection to a data source. The default value is a null reference + (Nothing in Visual Basic). + + + If you set Connection while a transaction is in progress and the + property is not null, an + is generated. If the Transaction property is not null and the transaction + has already been committed or rolled back, Transaction is set to + null. + + + The following example creates a and sets some of its properties. + + Public Sub CreateMySqlCommand() + Dim mySelectQuery As String = "SELECT * FROM mytable ORDER BY id" + Dim myConnectString As String = "Persist Security Info=False;database=test;server=myServer" + Dim myCommand As New MySqlCommand(mySelectQuery) + myCommand.Connection = New MySqlConnection(myConnectString) + myCommand.CommandType = CommandType.Text + End Sub + + + public void CreateMySqlCommand() + { + string mySelectQuery = "SELECT * FROM mytable ORDER BY id"; + string myConnectString = "Persist Security Info=False;database=test;server=myServer"; + MySqlCommand myCommand = new MySqlCommand(mySelectQuery); + myCommand.Connection = new MySqlConnection(myConnectString); + myCommand.CommandType = CommandType.Text; + } + + + + + + Get the + + The parameters of the SQL statement or stored procedure. The default is + an empty collection. + + Connector/NET does not support unnamed parameters. Every parameter added to the collection must + have an associated name. + + The following example creates a and displays its parameters. + To accomplish this, the method is passed a , a query string + that is a SQL SELECT statement, and an array of objects. + + Public Sub CreateMySqlCommand(myConnection As MySqlConnection, _ + mySelectQuery As String, myParamArray() As MySqlParameter) + Dim myCommand As New MySqlCommand(mySelectQuery, myConnection) + myCommand.CommandText = "SELECT id, name FROM mytable WHERE age=@age" + myCommand.UpdatedRowSource = UpdateRowSource.Both + myCommand.Parameters.Add(myParamArray) + Dim j As Integer + For j = 0 To myCommand.Parameters.Count - 1 + myCommand.Parameters.Add(myParamArray(j)) + Next j + Dim myMessage As String = "" + Dim i As Integer + For i = 0 To myCommand.Parameters.Count - 1 + myMessage += myCommand.Parameters(i).ToString() & ControlChars.Cr + Next i + Console.WriteLine(myMessage) + End Sub + + + public void CreateMySqlCommand(MySqlConnection myConnection, string mySelectQuery, + MySqlParameter[] myParamArray) + { + MySqlCommand myCommand = new MySqlCommand(mySelectQuery, myConnection); + myCommand.CommandText = "SELECT id, name FROM mytable WHERE age=@age"; + myCommand.Parameters.Add(myParamArray); + for (int j=0; j<myParamArray.Length; j++) + { + myCommand.Parameters.Add(myParamArray[j]) ; + } + string myMessage = ""; + for (int i = 0; i < myCommand.Parameters.Count; i++) + { + myMessage += myCommand.Parameters[i].ToString() + "\n"; + } + MessageBox.Show(myMessage); + } + + + + + + Gets or sets the within which the executes. + + The . The default value is a null reference (Nothing in Visual Basic). + + You cannot set the Transaction property if it is already set to a + specific value, and the command is in the process of executing. If you set the + transaction property to a object that is not connected + to the same as the object, + an exception will be thrown the next time you attempt to execute a statement. + + + + + Gets or sets a boolean value that indicates whether caching is enabled. + + + + + Gets or sets the seconds for how long a TableDirect result should be cached. + + + + + Gets or sets how command results are applied to the DataRow when used by the + Update method of the DbDataAdapter. + + + + + Gets or sets a value indicating whether the command object should be visible in a Windows Form Designer control. + + + + + Attempts to cancel the execution of a currently active command + + + Cancelling a currently active query only works with MySQL versions 5.0.0 and higher. + + + + + Creates a new instance of a object. + + + This method is a strongly-typed version of . + + A object. + + + + + Check the connection to make sure + - it is open + - it is not currently being used by a reader + - and we have the right version of MySQL for the requested command type + + + + + Executes a SQL statement against the connection and returns the number of rows affected. + Number of rows affected + You can use ExecuteNonQuery to perform any type of database operation, + however any resultsets returned will not be available. Any output parameters + used in calling a stored procedure will be populated with data and can be + retrieved after execution is complete. + For UPDATE, INSERT, and DELETE statements, the return value is the number + of rows affected by the command. For all other types of statements, the return + value is -1. + + The following example creates a MySqlCommand and then + executes it using ExecuteNonQuery. The example is passed a string that is a + SQL statement (such as UPDATE, INSERT, or DELETE) and a string to use to + connect to the data source. + + Public Sub CreateMySqlCommand(myExecuteQuery As String, myConnection As MySqlConnection) + Dim myCommand As New MySqlCommand(myExecuteQuery, myConnection) + myCommand.Connection.Open() + myCommand.ExecuteNonQuery() + myConnection.Close() + End Sub + + + public void CreateMySqlCommand(string myExecuteQuery, MySqlConnection myConnection) + { + MySqlCommand myCommand = new MySqlCommand(myExecuteQuery, myConnection); + myCommand.Connection.Open(); + myCommand.ExecuteNonQuery(); + myConnection.Close(); + } + + + + + + Reset reader to null, to avoid "There is already an open data reader" + on the next ExecuteReader(). Used in error handling scenarios. + + + + + Reset SQL_SELECT_LIMIT that could have been modified by CommandBehavior. + + + + + Sends the to the Connection + and builds a . + + A object. + + + When the property is set to StoredProcedure, + the property should be set to the name of the stored + procedure. The command executes this stored procedure when you call + ExecuteReader. + + + While the is in use, the associated + is busy serving the MySqlDataReader. + While in this state, no other operations can be performed on the + MySqlConnection other than closing it. This is the case until the + method of the MySqlDataReader is called. + + + The following example creates a , then executes it by + passing a string that is a SQL SELECT statement, and a string to use to connect to the + data source. + + Public Sub CreateMySqlDataReader(mySelectQuery As String, myConnection As MySqlConnection) + Dim myCommand As New MySqlCommand(mySelectQuery, myConnection) + myConnection.Open() + Dim myReader As MySqlDataReader + myReader = myCommand.ExecuteReader() + Try + While myReader.Read() + Console.WriteLine(myReader.GetString(0)) + End While + Finally + myReader.Close + myConnection.Close + End Try + End Sub + + + public void CreateMySqlDataReader(string mySelectQuery, MySqlConnection myConnection) + { + MySqlCommand myCommand = new MySqlCommand(mySelectQuery, myConnection); + myConnection.Open(); + MMySqlDataReader myReader; + myReader = myCommand.ExecuteReader(); + try + { + while(myReader.Read()) + { + Console.WriteLine(myReader.GetString(0)); + } + } + finally + { + myReader.Close(); + myConnection.Close(); + } + } + + + + + + Sends the to the Connection, + and builds a using one of the values. + + One of the values. + + + When the property is set to StoredProcedure, + the property should be set to the name of the stored + procedure. The command executes this stored procedure when you call + ExecuteReader. + + + The supports a special mode that enables large binary + values to be read efficiently. For more information, see the SequentialAccess + setting for . + + + While the is in use, the associated + is busy serving the MySqlDataReader. + While in this state, no other operations can be performed on the + MySqlConnection other than closing it. This is the case until the + method of the MySqlDataReader is called. + If the MySqlDataReader is created with CommandBehavior set to + CloseConnection, closing the MySqlDataReader closes the connection + automatically. + + + When calling ExecuteReader with the SingleRow behavior, you should be aware that using a limit + clause in your SQL will cause all rows (up to the limit given) to be retrieved by the client. The + method will still return false after the first row but pulling all rows of data + into the client will have a performance impact. If the limit clause is not necessary, it should + be avoided. + + + A object. + + + + + Executes the query, and returns the first column of the first row in the + result set returned by the query. Extra columns or rows are ignored. + + The first column of the first row in the result set, or a null reference if the + result set is empty + + + Use the ExecuteScalar method to retrieve a single value (for example, + an aggregate value) from a database. This requires less code than using the + method, and then performing the operations necessary + to generate the single value using the data returned by a + + + The following example creates a and then + executes it using ExecuteScalar. The example is passed a string that is a + SQL statement that returns an aggregate result, and a string to use to + connect to the data source. + + + Public Sub CreateMySqlCommand(myScalarQuery As String, myConnection As MySqlConnection) + Dim myCommand As New MySqlCommand(myScalarQuery, myConnection) + myCommand.Connection.Open() + myCommand.ExecuteScalar() + myConnection.Close() + End Sub + + + public void CreateMySqlCommand(string myScalarQuery, MySqlConnection myConnection) + { + MySqlCommand myCommand = new MySqlCommand(myScalarQuery, myConnection); + myCommand.Connection.Open(); + myCommand.ExecuteScalar(); + myConnection.Close(); + } + + + public: + void CreateMySqlCommand(String* myScalarQuery, MySqlConnection* myConnection) + { + MySqlCommand* myCommand = new MySqlCommand(myScalarQuery, myConnection); + myCommand->Connection->Open(); + myCommand->ExecuteScalar(); + myConnection->Close(); + } + + + + + + + + + + Creates a prepared version of the command on an instance of MySQL Server. + + + Prepared statements are only supported on MySQL version 4.1 and higher. Calling + prepare while connected to earlier versions of MySQL will succeed but will execute + the statement in the same way as unprepared. + + + The following example demonstrates the use of the Prepare method. + + public sub PrepareExample() + Dim cmd as New MySqlCommand("INSERT INTO mytable VALUES (@val)", myConnection) + cmd.Parameters.Add( "@val", 10 ) + cmd.Prepare() + cmd.ExecuteNonQuery() + + cmd.Parameters(0).Value = 20 + cmd.ExecuteNonQuery() + end sub + + + private void PrepareExample() + { + MySqlCommand cmd = new MySqlCommand("INSERT INTO mytable VALUES (@val)", myConnection); + cmd.Parameters.Add( "@val", 10 ); + cmd.Prepare(); + cmd.ExecuteNonQuery(); + + cmd.Parameters[0].Value = 20; + cmd.ExecuteNonQuery(); + } + + + + + + Initiates the asynchronous execution of the SQL statement or stored procedure + that is described by this , and retrieves one or more + result sets from the server. + + An that can be used to poll, wait for results, + or both; this value is also needed when invoking EndExecuteReader, + which returns a instance that can be used to retrieve + the returned rows. + + + + Initiates the asynchronous execution of the SQL statement or stored procedure + that is described by this using one of the + CommandBehavior values. + + One of the values, indicating + options for statement execution and data retrieval. + An that can be used to poll, wait for results, + or both; this value is also needed when invoking EndExecuteReader, + which returns a instance that can be used to retrieve + the returned rows. + + + + Finishes asynchronous execution of a SQL statement, returning the requested + . + + The returned by the call to + . + A MySqlDataReader object that can be used to retrieve the requested rows. + + + + Initiates the asynchronous execution of the SQL statement or stored procedure + that is described by this . + + + An delegate that is invoked when the command's + execution has completed. Pass a null reference (Nothing in Visual Basic) + to indicate that no callback is required. + A user-defined state object that is passed to the + callback procedure. Retrieve this object from within the callback procedure + using the property. + An that can be used to poll or wait for results, + or both; this value is also needed when invoking , + which returns the number of affected rows. + + + + Initiates the asynchronous execution of the SQL statement or stored procedure + that is described by this . + + An that can be used to poll or wait for results, + or both; this value is also needed when invoking , + which returns the number of affected rows. + + + + Finishes asynchronous execution of a SQL statement. + + The returned by the call + to . + + + + + Verifies if a query is valid even if it has not spaces or is a stored procedure call + + Query to validate + If it is necessary to add call statement + + + + Creates a clone of this MySqlCommand object. CommandText, Connection, and Transaction properties + are included as well as the entire parameter list. + + The cloned MySqlCommand object + + + + Summary description for API. + + + + + Summary description for CompressedStream. + + + + + Represents an open connection to a MySQL Server database. This class cannot be inherited. + + + A MySqlConnection object represents a session to a MySQL Server + data source. When you create an instance of MySqlConnection, all + properties are set to their initial values. For a list of these values, see the + MySqlConnection constructor. + + + + If the MySqlConnection goes out of scope, it is not closed. Therefore, + you must explicitly close the connection by calling + or . + + + The following example creates a and + a MySqlConnection. The MySqlConnection is opened and set as the + for the MySqlCommand. The example then calls + , and closes the connection. To accomplish this, the ExecuteNonQuery is + passed a connection string and a query string that is a SQL INSERT + statement. + + + Public Sub InsertRow(myConnectionString As String) + ' If the connection string is null, use a default. + If myConnectionString = "" Then + myConnectionString = "Database=Test;Data Source=localhost;User Id=username;Password=pass" + End If + Dim myConnection As New MySqlConnection(myConnectionString) + Dim myInsertQuery As String = "INSERT INTO Orders (id, customerId, amount) Values(1001, 23, 30.66)" + Dim myCommand As New MySqlCommand(myInsertQuery) + myCommand.Connection = myConnection + myConnection.Open() + myCommand.ExecuteNonQuery() + myCommand.Connection.Close() + End Sub + + + + + public void InsertRow(string myConnectionString) + { + // If the connection string is null, use a default. + if(myConnectionString == "") + { + myConnectionString = "Database=Test;Data Source=localhost;User Id=username;Password=pass"; + } + MySqlConnection myConnection = new MySqlConnection(myConnectionString); + string myInsertQuery = "INSERT INTO Orders (id, customerId, amount) Values(1001, 23, 30.66)"; + MySqlCommand myCommand = new MySqlCommand(myInsertQuery); + myCommand.Connection = myConnection; + myConnection.Open(); + myCommand.ExecuteNonQuery(); + myCommand.Connection.Close(); + } + + + + + + Occurs when MySQL returns warnings as a result of executing a command or query. + + + + + Initializes a new instance of the class. + + When a new instance of is created, the read/write + properties are set to the following initial values unless they are specifically + set using their associated keywords in the property. + + + + Properties + Initial Value + + + + + + empty string ("") + + + + + + 15 + + + + + + empty string ("") + + + + + + empty string ("") + + + + + + empty string ("") + + + + You can change the value for these properties only by using the ConnectionString property. + + + + Initializes a new instance of the class. + + + + + + Initializes a new instance of the class when given a string containing the connection string. + + When a new instance of is created, the read/write + properties are set to the following initial values unless they are specifically + set using their associated keywords in the property. + + + + Properties + Initial Value + + + + + + empty string ("") + + + + + + 15 + + + + + + empty string ("") + + + + + + empty string ("") + + + + + + empty string ("") + + + + You can change the value for these properties only by using the ConnectionString property. + + The connection properties used to open the MySQL database. + + + + Returns the id of the server thread this connection is executing on + + + + + Gets the name of the MySQL server to which to connect. + + + + + Gets the time to wait while trying to establish a connection before terminating the attempt and generating an error. + The value set is less than 0. + A value of 0 indicates no limit, and should be avoided in a + because an attempt to connect + will wait indefinitely. + + The following example creates a MySqlConnection + and sets some of its properties in the connection string. + + Public Sub CreateSqlConnection() + Dim myConnection As New MySqlConnection() + myConnection.ConnectionString = "Persist Security Info=False;Username=user;Password=pass;database=test1;server=localhost;Connect Timeout=30" + myConnection.Open() + End Sub + + + public void CreateSqlConnection() + { + MySqlConnection myConnection = new MySqlConnection(); + myConnection.ConnectionString = "Persist Security Info=False;Username=user;Password=pass;database=test1;server=localhost;Connect Timeout=30"; + myConnection.Open(); + } + + + + + Gets the name of the current database or the database to be used after a connection is opened.The name of the current database or the name of the database to be used after a connection is opened. The default value is an empty string. + + The Database property does not update dynamically. + If you change the current database using a SQL statement, then this property + may reflect the wrong value. If you change the current database using the + method, this property is updated to reflect the new database. + + + The following example creates a and displays + some of its read-only properties. + + + Public Sub CreateMySqlConnection() + Dim myConnString As String = _ + "Persist Security Info=False;database=test;server=localhost;user id=joeuser;pwd=pass" + Dim myConnection As New MySqlConnection( myConnString ) + myConnection.Open() + MessageBox.Show( "Server Version: " + myConnection.ServerVersion _ + + ControlChars.NewLine + "Database: " + myConnection.Database ) + myConnection.ChangeDatabase( "test2" ) + MessageBox.Show( "ServerVersion: " + myConnection.ServerVersion _ + + ControlChars.NewLine + "Database: " + myConnection.Database ) + myConnection.Close() + End Sub + + + + public void CreateMySqlConnection() + { + string myConnString = + "Persist Security Info=False;database=test;server=localhost;user id=joeuser;pwd=pass"; + MySqlConnection myConnection = new MySqlConnection( myConnString ); + myConnection.Open(); + MessageBox.Show( "Server Version: " + myConnection.ServerVersion + + "\nDatabase: " + myConnection.Database ); + myConnection.ChangeDatabase( "test2" ); + MessageBox.Show( "ServerVersion: " + myConnection.ServerVersion + + "\nDatabase: " + myConnection.Database ); + myConnection.Close(); + } + + + + + + Indicates if this connection should use compression when communicating with the server. + + + + Gets the current state of the connection. + A bitwise combination of the values. The default is Closed. + + The allowed state changes are: + + + From Closed to Open, using the Open method of the connection object. + + + From Open to Closed, using either the Close method or the Dispose method of the connection object. + + + + The following example creates a , opens it, + displays some of its properties, then closes the connection. + + + Public Sub CreateMySqlConnection(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + MessageBox.Show("ServerVersion: " + myConnection.ServerVersion _ + + ControlChars.Cr + "State: " + myConnection.State.ToString()) + myConnection.Close() + End Sub + + + public void CreateMySqlConnection(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + MessageBox.Show("ServerVersion: " + myConnection.ServerVersion + + "\nState: " + myConnection.State.ToString()); + myConnection.Close(); + } + + + + + Gets a string containing the version of the MySQL server to which the client is connected.The version of the instance of MySQL.The connection is closed. + The following example creates a , opens it, + displays some of its properties, then closes the connection. + + + Public Sub CreateMySqlConnection(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + MessageBox.Show("ServerVersion: " + myConnection.ServerVersion _ + + ControlChars.Cr + "State: " + myConnection.State.ToString()) + myConnection.Close() + End Sub + + + public void CreateMySqlConnection(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + MessageBox.Show("ServerVersion: " + myConnection.ServerVersion + + "\nState: " + myConnection.State.ToString()); + myConnection.Close(); + } + + #if !NETSTANDARD1_6 + + + + Gets or sets the string used to connect to a MySQL Server database. + + + The ConnectionString returned may not be exactly like what was originally + set but will be indentical in terms of keyword/value pairs. Security information + will not be included unless the Persist Security Info value is set to true. + + + You can use the ConnectionString property to connect to a database. + The following example illustrates a typical connection string. + + "Persist Security Info=False;database=MyDB;server=MySqlServer;user id=myUser;Password=myPass" + + The ConnectionString property can be set only when the connection is + closed. Many of the connection string values have corresponding read-only + properties. When the connection string is set, all of these properties are + updated, except when an error is detected. In this case, none of the properties + are updated. properties return only those settings contained in the + ConnectionString. + + + To connect to a local machine, specify "localhost" for the server. If you do not + specify a server, localhost is assumed. + + + Resetting the ConnectionString on a closed connection resets all + connection string values (and related properties) including the password. For + example, if you set a connection string that includes "Database= MyDb", and + then reset the connection string to "Data Source=myserver;User Id=myUser;Password=myPass", + the property is no longer set to MyDb. + + + The connection string is parsed immediately after being set. If errors in + syntax are found when parsing, a runtime exception, such as , + is generated. Other errors can be found only when an attempt is made to open the + connection. + + + The basic format of a connection string consists of a series of keyword/value + pairs separated by semicolons. The equal sign (=) connects each keyword and its + value. To include values that contain a semicolon, single-quote character, or + double-quote character, the value must be enclosed in double quotes. If the + value contains both a semicolon and a double-quote character, the value can be + enclosed in single quotes. The single quote is also useful if the value begins + with a double-quote character. Conversely, the double quote can be used if the + value begins with a single quote. If the value contains both single-quote and + double-quote characters, the quote character used to enclose the value must be + doubled each time it occurs within the value. + + + To include preceding or trailing spaces in the string value, the value must + be enclosed in either single quotes or double quotes. Any leading or trailing + spaces around integer, Boolean, or enumerated values are ignored, even if + enclosed in quotes. However, spaces within a string literal keyword or value are + preserved. Using .NET Framework version 1.1, single or double quotes may be used + within a connection string without using delimiters (for example, Data Source= + my'Server or Data Source= my"Server), unless a quote character is the first or + last character in the value. + + + To include an equal sign (=) in a keyword or value, it must be preceded by + another equal sign. For example, in the hypothetical connection string + + "key==word=value" + + the keyword is "key=word" and the value is "value". + + If a specific keyword in a keyword= value pair occurs multiple times in a + connection string, the last occurrence listed is used in the value set. + + Keywords are not case sensitive. + + The following table lists the valid names for keyword values within the + ConnectionString. + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDefaultDescription
+ Connect Timeout -or- Connection Timeout + 15 + The length of time (in seconds) to wait for a connection to the server before + terminating the attempt and generating an error. +
+ Host -or- Server -or- Data Source -or- + DataSource -or- Address -or- Addr -or- + Network Address + localhost + + The name or network address of the instance of MySQL to which to connect. Multiple hosts can be + specified separated by &. This can be useful where multiple MySQL servers are configured for replication + and you are not concerned about the precise server you are connecting to. No attempt is made by the provider to + synchronize writes to the database so care should be taken when using this option. + + + In Unix environment with Mono, this can be a fully qualified path to MySQL socket filename. With this configuration, the Unix socket will be used instead of TCP/IP socket. + Currently only a single socket name can be given so accessing MySQL in a replicated environment using Unix sockets is not currently supported. + +
Port3306 + The port MySQL is using to listen for connections. This value is ignored if the connection protocol + is anything but socket. +
Protocolsocket + Specifies the type of connection to make to the server.Values can be: + socket or tcp for a socket connection
+ pipe for a named pipe connection
+ unix for a Unix socket connection
+ memory to use MySQL shared memory +
+ CharSet -or Character Set + + + Specifies the character set that should be used to encode all queries sent to the server. + Resultsets are still returned in the character set of the data returned. +
LoggingfalseWhen true, various pieces of information is output to any configured TraceListeners.
Allow Batchtrue + When true, multiple SQL statements can be sent with one command execution.

+ -Note-
+ Starting with MySQL 4.1.1, batch statements should be separated by the server-defined seperator character.
+ Commands sent to earlier versions of MySQL should be seperated with ';'. +
Encryptfalse + When true, SSL/TLS encryption is used for all data sent between the + client and server if the server has a certificate installed. Recognized values + are true, false, yes, and no. +
+ Initial Catalog -or- Database + mysqlThe name of the database to use intially
+ Password -or- pwd + + The password for the MySQL account being used.
Persist Security Infofalse + When set to false or no (strongly recommended), security-sensitive + information, such as the password, is not returned as part of the connection if + the connection is open or has ever been in an open state. Resetting the + connection string resets all connection string values including the password. + Recognized values are true, false, yes, and no. +
+ User Id -or- Username -or- Uid -or- User name + + The MySQL login account being used.
Shared Memory NameMYSQLThe name of the shared memory object to use for communication if the connection protocol is set to memory.
Allow Zero Datetimefalse + True to have MySqlDataReader.GetValue() return a MySqlDateTime for date or datetime columns that have illegal values. + False will cause a DateTime object to be returned for legal values and an exception will be thrown for illegal values. +
Convert Zero Datetimefalse + True to have MySqlDataReader.GetValue() and MySqlDataReader.GetDateTime() + return DateTime.MinValue for date or datetime columns that have illegal values. +
+ Pipe Name -or- Pipe + mysql + When set to the name of a named pipe, the MySqlConnection will attempt to connect to MySQL + on that named pipe.

This settings only applies to the Windows platform. +
+ Use Performance Monitor -or- UsePerformanceMonitor + false + Posts performance data that can be tracked using perfmon +
+ Procedure Cache Size + 25 + How many stored procedure definitions can be held in the cache +
+ Ignore Prepare + true + Instructs the provider to ignore any attempts to prepare commands. This option + was added to allow a user to disable prepared statements in an entire application + without modifying the code. A user might want to do this if errors or bugs are + encountered with MySQL prepared statements. +
Use Procedure Bodiestrue + Instructs the provider to attempt to call the procedure without first resolving the metadata. This + is useful in situations where the calling user does not have access to the mysql.proc table. To + use this mode, the parameters for the procedure must be added to the command in the same order + as they appear in the procedure definition and their types must be explicitly set. +
Auto Enlisttrue + Indicates whether the connection should automatically enlist in the current transaction, + if there is one. +
Respect Binary Flagstrue + Indicates whether the connection should respect all binary flags sent to the client + as part of column metadata. False will cause the connector to behave like + Connector/NET 5.0 and earlier. +
BlobAsUTF8IncludePatternnull + Pattern that should be used to indicate which blob columns should be treated as UTF-8. +
BlobAsUTF8ExcludePatternnull + Pattern that should be used to indicate which blob columns should not be treated as UTF-8. +
Default Command Timeout30 + The default timeout that new MySqlCommand objects will use unless changed. +
Allow User Variablesfalse + Should the provider expect user variables in the SQL. +
Interactive -or- Interactive Sessionfalse + Should this session be considered interactive? +
Functions Return Stringfalse + Set this option to true to force the return value of SQL functions to be string. +
Use Affected Rowsfalse + Set this option to true to cause the affected rows reported to reflect only the + rows that are actually changed. By default, the number of rows that are matched + is returned. +
+
+ + The following table lists the valid names for connection pooling values within + the ConnectionString. For more information about connection pooling, see + Connection Pooling for the MySql Data Provider. + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDefaultDescription
Connection Lifetime0 + When a connection is returned to the pool, its creation time is compared with + the current time, and the connection is destroyed if that time span (in seconds) + exceeds the value specified by Connection Lifetime. This is useful in + clustered configurations to force load balancing between a running server and a + server just brought online. + + A value of zero (0) causes pooled connections to have the maximum connection + timeout. + +
Max Pool Size100The maximum number of connections allowed in the pool.
Min Pool Size0The minimum number of connections allowed in the pool.
Poolingtrue + When true, the MySqlConnection object is drawn from the appropriate + pool, or if necessary, is created and added to the appropriate pool. Recognized + values are true, false, yes, and no. +
Connection Resetfalse + Specifies whether the database connection should be reset when being + drawn from the pool. Leaving this as false will yeild much faster + connection opens but the user should understand the side effects + of doing this such as temporary tables and user variables from the previous + session not being cleared out. +
Cache Server Propertiesfalse + Specifies whether the server variables are cached between pooled connections. + On systems where the variables change infrequently and there are lots of + connection attempts, this can speed up things dramatically. +
+
+ + When setting keyword or connection pooling values that require a Boolean + value, you can use 'yes' instead of 'true', and 'no' instead of 'false'. + + + Note The MySql Data Provider uses the native socket protocol to + communicate with MySQL. Therefore, it does not support the use of an ODBC data source name (DSN) when + connecting to MySQL because it does not add an ODBC layer. + + + CAUTION In this release, the application should use caution when constructing a + connection string based on user input (for example when retrieving user ID and password information from a + dialog box, and appending it to the connection string). The application should + ensure that a user cannot embed extra connection string parameters in these + values (for example, entering a password as "validpassword;database=somedb" in + an attempt to attach to a different database). + +
+ The following example creates a and sets some of its properties + + Public Sub CreateConnection() + Dim myConnection As New MySqlConnection() + myConnection.ConnectionString = "Persist Security Info=False;database=myDB;server=myHost;Connect Timeout=30;user id=myUser; pwd=myPass" + myConnection.Open() + End Sub 'CreateConnection + + + public void CreateConnection() + { + MySqlConnection myConnection = new MySqlConnection(); + myConnection.ConnectionString = "Persist Security Info=False;database=myDB;server=myHost;Connect Timeout=30;user id=myUser; pwd=myPass"; + myConnection.Open(); + } + + + The following example creates a in Unix environment with Mono installed. MySQL socket filename used in this example is "/var/lib/mysql/mysql.sock". The actual filename depends on your MySQL configuration. + + Public Sub CreateConnection() + Dim myConnection As New MySqlConnection() + myConnection.ConnectionString = "database=myDB;server=/var/lib/mysql/mysql.sock;user id=myUser; pwd=myPass" + myConnection.Open() + End Sub 'CreateConnection + + + public void CreateConnection() + { + MySqlConnection myConnection = new MySqlConnection(); + myConnection.ConnectionString = "database=myDB;server=/var/lib/mysql/mysql.sock;user id=myUser; pwd=myPass"; + myConnection.Open(); + } + + +
+ + + Gets a boolean value that indicates whether the password associated to the connection is expired. + + + + Begins a database transaction.An object representing the new transaction.Parallel transactions are not supported. + This command is equivalent to the MySQL BEGIN TRANSACTION command. + + You must explicitly commit or roll back the transaction using the or + method. + + If you do not specify an isolation level, the default isolation level is used. To specify an isolation + level with the method, use the overload that takes the iso parameter. Also + note that any attempt to begin a transaction while a transaction is in progress will throw an exception on MySQL 4.1 and higher. + On MySQL 4.0, an exception will not be thrown because servers 4.0 and earlier did not report their transacation status. + + + + The following example creates a and a + . It also demonstrates how to use the BeginTransaction, a + , and methods. + + Public Sub RunTransaction(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + + Dim myCommand As MySqlCommand = myConnection.CreateCommand() + Dim myTrans As MySqlTransaction + + ' Start a local transaction + myTrans = myConnection.BeginTransaction() + ' Must assign both transaction object and connection + ' to Command object for a pending local transaction + myCommand.Connection = myConnection + myCommand.Transaction = myTrans + + Try + myCommand.CommandText = "Insert into Test (id, desc) VALUES (100, 'Description')" + myCommand.ExecuteNonQuery() + myCommand.CommandText = "Insert into Test (id, desc) VALUES (101, 'Description')" + myCommand.ExecuteNonQuery() + myTrans.Commit() + Console.WriteLine("Both records are written to database.") + Catch e As Exception + Try + myTrans.Rollback() + Catch ex As MySqlException + If Not myTrans.Connection Is Nothing Then + Console.WriteLine("An exception of type " + ex.GetType().ToString() + _ + " was encountered while attempting to roll back the transaction.") + End If + End Try + + Console.WriteLine("An exception of type " + e.GetType().ToString() + _ + "was encountered while inserting the data.") + Console.WriteLine("Neither record was written to database.") + Finally + myConnection.Close() + End Try + End Sub + + + public void RunTransaction(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + + MySqlCommand myCommand = myConnection.CreateCommand(); + MySqlTransaction myTrans; + + // Start a local transaction + myTrans = myConnection.BeginTransaction(); + // Must assign both transaction object and connection + // to Command object for a pending local transaction + myCommand.Connection = myConnection; + myCommand.Transaction = myTrans; + + try + { + myCommand.CommandText = "insert into Test (id, desc) VALUES (100, 'Description')"; + myCommand.ExecuteNonQuery(); + myCommand.CommandText = "insert into Test (id, desc) VALUES (101, 'Description')"; + myCommand.ExecuteNonQuery(); + myTrans.Commit(); + Console.WriteLine("Both records are written to database."); + } + catch(Exception e) + { + try + { + myTrans.Rollback(); + } + catch (SqlException ex) + { + if (myTrans.Connection != null) + { + Console.WriteLine("An exception of type " + ex.GetType() + + " was encountered while attempting to roll back the transaction."); + } + } + + Console.WriteLine("An exception of type " + e.GetType() + + " was encountered while inserting the data."); + Console.WriteLine("Neither record was written to database."); + } + finally + { + myConnection.Close(); + } + } + + + + + Begins a database transaction with the specified isolation level.The isolation level under which the transaction should run. An object representing the new transaction.Parallel exceptions are not supported. + This command is equivalent to the MySQL BEGIN TRANSACTION command. + + You must explicitly commit or roll back the transaction using the or + method. + + If you do not specify an isolation level, the default isolation level is used. To specify an isolation + level with the method, use the overload that takes the iso parameter. + Also note that any attempt to begin a transaction while a transaction is in progress will throw an exception on MySQL 4.1 and higher. + On MySQL 4.0, an exception will not be thrown because servers 4.0 and earlier did not report their transacation status. + + + + The following example creates a and a + . It also demonstrates how to use the BeginTransaction, a + , and methods. + + Public Sub RunTransaction(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + + Dim myCommand As MySqlCommand = myConnection.CreateCommand() + Dim myTrans As MySqlTransaction + + ' Start a local transaction + myTrans = myConnection.BeginTransaction() + ' Must assign both transaction object and connection + ' to Command object for a pending local transaction + myCommand.Connection = myConnection + myCommand.Transaction = myTrans + + Try + myCommand.CommandText = "Insert into Test (id, desc) VALUES (100, 'Description')" + myCommand.ExecuteNonQuery() + myCommand.CommandText = "Insert into Test (id, desc) VALUES (101, 'Description')" + myCommand.ExecuteNonQuery() + myTrans.Commit() + Console.WriteLine("Both records are written to database.") + Catch e As Exception + Try + myTrans.Rollback() + Catch ex As MySqlException + If Not myTrans.Connection Is Nothing Then + Console.WriteLine("An exception of type " + ex.GetType().ToString() + _ + " was encountered while attempting to roll back the transaction.") + End If + End Try + + Console.WriteLine("An exception of type " + e.GetType().ToString() + _ + "was encountered while inserting the data.") + Console.WriteLine("Neither record was written to database.") + Finally + myConnection.Close() + End Try + End Sub + + + public void RunTransaction(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + + MySqlCommand myCommand = myConnection.CreateCommand(); + MySqlTransaction myTrans; + + // Start a local transaction + myTrans = myConnection.BeginTransaction(); + // Must assign both transaction object and connection + // to Command object for a pending local transaction + myCommand.Connection = myConnection; + myCommand.Transaction = myTrans; + + try + { + myCommand.CommandText = "insert into Test (id, desc) VALUES (100, 'Description')"; + myCommand.ExecuteNonQuery(); + myCommand.CommandText = "insert into Test (id, desc) VALUES (101, 'Description')"; + myCommand.ExecuteNonQuery(); + myTrans.Commit(); + Console.WriteLine("Both records are written to database."); + } + catch(Exception e) + { + try + { + myTrans.Rollback(); + } + catch (SqlException ex) + { + if (myTrans.Connection != null) + { + Console.WriteLine("An exception of type " + ex.GetType() + + " was encountered while attempting to roll back the transaction."); + } + } + + Console.WriteLine("An exception of type " + e.GetType() + + " was encountered while inserting the data."); + Console.WriteLine("Neither record was written to database."); + } + finally + { + myConnection.Close(); + } + } + + + + + Changes the current database for an open MySqlConnection.The name of the database to use. + + The value supplied in the database parameter must be a valid database + name. The database parameter cannot contain a null value, an empty + string, or a string with only blank characters. + + + + When you are using connection pooling against MySQL, and you close + the connection, it is returned to the connection pool. The next time the + connection is retrieved from the pool, the reset connection request + executes before the user performs any operations. + + The database name is not valid.The connection is not open.Cannot change the database. + The following example creates a and displays + some of its read-only properties. + + + Public Sub CreateMySqlConnection() + Dim myConnString As String = _ + "Persist Security Info=False;database=test;server=localhost;user id=joeuser;pwd=pass" + Dim myConnection As New MySqlConnection( myConnString ) + myConnection.Open() + MessageBox.Show( "Server Version: " + myConnection.ServerVersion _ + + ControlChars.NewLine + "Database: " + myConnection.Database ) + myConnection.ChangeDatabase( "test2" ) + MessageBox.Show( "ServerVersion: " + myConnection.ServerVersion _ + + ControlChars.NewLine + "Database: " + myConnection.Database ) + myConnection.Close() + End Sub + + + + public void CreateMySqlConnection() + { + string myConnString = + "Persist Security Info=False;database=test;server=localhost;user id=joeuser;pwd=pass"; + MySqlConnection myConnection = new MySqlConnection( myConnString ); + myConnection.Open(); + MessageBox.Show( "Server Version: " + myConnection.ServerVersion + + "\nDatabase: " + myConnection.Database ); + myConnection.ChangeDatabase( "test2" ); + MessageBox.Show( "ServerVersion: " + myConnection.ServerVersion + + "\nDatabase: " + myConnection.Database ); + myConnection.Close(); + } + + + + + + Ping + + + + + Opens a database connection with the property settings specified by the ConnectionString.Cannot open a connection without specifying a data source or server.A connection-level error occurred while opening the connection. + + The draws an open connection from the connection pool if one is available. + Otherwise, it establishes a new connection to an instance of MySQL. + + + The following example creates a , opens it, + displays some of its properties, then closes the connection. + + + Public Sub CreateMySqlConnection(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + MessageBox.Show("ServerVersion: " + myConnection.ServerVersion _ + + ControlChars.Cr + "State: " + myConnection.State.ToString()) + myConnection.Close() + End Sub + + + public void CreateMySqlConnection(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + MessageBox.Show("ServerVersion: " + myConnection.ServerVersion + + "\nState: " + myConnection.State.ToString()); + myConnection.Close(); + } + + + + + + Creates and returns a object associated with the . + + A object. + + + + Closes the connection to the database. This is the preferred method of closing any open connection. + + The Close method rolls back any pending transactions. It then releases + the connection to the connection pool, or closes the connection if connection + pooling is disabled. + + + An application can call Close more than one time. No exception is + generated. + + + The following example creates a , opens it, + displays some of its properties, then closes the connection. + + + Public Sub CreateMySqlConnection(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + MessageBox.Show("ServerVersion: " + myConnection.ServerVersion _ + + ControlChars.Cr + "State: " + myConnection.State.ToString()) + myConnection.Close() + End Sub + + + public void CreateMySqlConnection(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + MessageBox.Show("ServerVersion: " + myConnection.ServerVersion + + "\nState: " + myConnection.State.ToString()); + myConnection.Close(); + } + + + + + + Cancels the query after the specified time interval. + + The length of time (in seconds) to wait for the cancelation of the command execution. + + + + Sets query timeout. If timeout has been set prior and not + yet cleared ClearCommandTimeout(), it has no effect. + + timeout in seconds + true if + + + + Clears query timeout, allowing next SetCommandTimeout() to succeed. + + + + + Gets a schema collection based on the provided restriction values. + + The name of the collection. + The values to restrict. + A schema collection object. + + + Empties the connection pool associated with the specified connection. + The associated with the pool to be cleared. + + + ClearPool clears the connection pool that is associated with the connection. + If additional connections associated with connection are in use at the time of the call, + they are marked appropriately and are discarded (instead of being returned to the pool) + when Close is called on them. + + + + + Clears all connection pools. + + ClearAllPools essentially performs a on all current connection + pools. + + + + + + Initiates the asynchronous execution of a transaction. + + An object representing the new transaction. + + + + Asynchronous version of BeginTransaction. + + The cancellation token. + An object representing the new transaction. + + + + Async version of BeginTransaction + + The isolation level under which the transaction should run. + An object representing the new transaction. + + + + Asynchronous version of BeginTransaction. + + The isolation level under which the transaction should run. + The cancellation token. + An object representing the new transaction. + + + + Asynchronous version of the ChangeDataBase method. + + The name of the database to use. + + + + + Asynchronous version of the ChangeDataBase method. + + The name of the database to use. + The cancellation Token. + + + + + Asynchronous version of the Close method. + + + + + + Asynchronous version of the Close method. + + The cancellation token. + + + + + Asynchronous version of the ClearPool method. + + The connection associated with the pool to be cleared. + + + + + Asynchronous version of the ClearPool method. + + The connection associated with the pool to be cleared. + The cancellation token. + + + + + Async version of ClearAllPools + + + + + + Asynchronous version of the ClearAllPools method. + + The cancellation token. + + + + + Asynchronous version of the GetSchemaCollection method. + + The name of the collection. + The values to restrict. + A collection of schema objects. + + + + Asynchronous version of the GetSchemaCollection method. + + The name of the collection. + The values to restrict. + The cancellation token. + A collection of schema objects. + + + + Returns schema information for the data source of this . + + A that contains schema information. + + + + Returns schema information for the data source of this + using the specified string for the schema name. + + Specifies the name of the schema to return. + A that contains schema information. + + + + Returns schema information for the data source of this + using the specified string for the schema name and the specified string array + for the restriction values. + + Specifies the name of the schema to return. + Specifies a set of restriction values for the requested schema. + A that contains schema information. + + + + Enlists in the specified transaction. + + + A reference to an existing in which to enlist. + + + + + Creates a new MySqlConnection object with the exact same ConnectionString value + + A cloned MySqlConnection object + + + + Represents the method that will handle the event of a + . + + + + + Provides data for the InfoMessage event. This class cannot be inherited. + + + + + Gets or sets an array of MySqlError objects set with the errors found. + + + + + IDisposable wrapper around SetCommandTimeout and ClearCommandTimeout + functionality + + + + + Summary description for Crypt. + + + + + Simple XOR scramble + + Source array + Index inside source array + Destination array + Index inside destination array + Password used to xor the bits + Number of bytes to scramble + + + + Returns a byte array containing the proper encryption of the + given password/seed according to the new 4.1.1 authentication scheme. + + + + + + + + Encrypts a password using the MySql encryption scheme + + The password to encrypt + The encryption seed the server gave us + Indicates if we should use the old or new encryption scheme + + + + + Hashes a password using the algorithm from Monty's code. + The first element in the return is the result of the "old" hash. + The second element is the rest of the "new" hash. + + Password to be hashed + Two element array containing the hashed values + + + + Provides a means of reading a forward-only stream of rows from a MySQL database. This class cannot be inherited. + + + To create a MySQLDataReader, you must call the + method of the object, rather than directly using a constructor. + + + While the MySqlDataReader is in use, the associated + is busy serving the MySqlDataReader, and no other operations can be performed + on the MySqlConnection other than closing it. This is the case until the + method of the MySqlDataReader is called. + + + and + are the only properties that you can call after the MySqlDataReader is + closed. Though the RecordsAffected property may be accessed at any time + while the MySqlDataReader exists, always call Close before returning + the value of RecordsAffected to ensure an accurate return value. + + + For optimal performance, MySqlDataReader avoids creating + unnecessary objects or making unnecessary copies of data. As a result, multiple calls + to methods such as return a reference to the + same object. Use caution if you are modifying the underlying value of the objects + returned by methods such as GetValue. + + + The following example creates a , + a , and a MySqlDataReader. The example reads through + the data, writing it out to the console. Finally, the example closes the MySqlDataReader, then the + MySqlConnection. + + Public Sub ReadMyData(myConnString As String) + Dim mySelectQuery As String = "SELECT OrderID, CustomerID FROM Orders" + Dim myConnection As New MySqlConnection(myConnString) + Dim myCommand As New MySqlCommand(mySelectQuery, myConnection) + myConnection.Open() + Dim myReader As MySqlDataReader + myReader = myCommand.ExecuteReader() + ' Always call Read before accessing data. + While myReader.Read() + Console.WriteLine((myReader.GetInt32(0) & ", " & myReader.GetString(1))) + End While + ' always call Close when done reading. + myReader.Close() + ' Close the connection when done with it. + myConnection.Close() + End Sub 'ReadMyData + + + public void ReadMyData(string myConnString) { + string mySelectQuery = "SELECT OrderID, CustomerID FROM Orders"; + MySqlConnection myConnection = new MySqlConnection(myConnString); + MySqlCommand myCommand = new MySqlCommand(mySelectQuery,myConnection); + myConnection.Open(); + MySqlDataReader myReader; + myReader = myCommand.ExecuteReader(); + // Always call Read before accessing data. + while (myReader.Read()) { + Console.WriteLine(myReader.GetInt32(0) + ", " + myReader.GetString(1)); + } + // always call Close when done reading. + myReader.Close(); + // Close the connection when done with it. + myConnection.Close(); + } + + + + + + Gets the number of columns in the current row. + + + + + Gets a value indicating whether the MySqlDataReader contains one or more rows. + + + + + Gets a value indicating whether the data reader is closed. + + + + + Gets the number of rows changed, inserted, or deleted by execution of the SQL statement. + + + + + Overloaded. Gets the value of a column in its native format. + In C#, this property is the indexer for the MySqlDataReader class. + + + + + Gets the value of a column in its native format. + [C#] In C#, this property is the indexer for the MySqlDataReader class. + + + + + Gets a value indicating the depth of nesting for the current row. This method is not + supported currently and always returns 0. + + + + + Closes the MySqlDataReader object. + + + + + Gets the value of the specified column as a Boolean. + + + + + + + Gets the value of the specified column as a Boolean. + + + + + + + Gets the value of the specified column as a byte. + + + + + + + Gets the value of the specified column as a byte. + + + + + + + Gets the value of the specified column as a sbyte. + + + + + + + Gets the value of the specified column as a sbyte. + + + + + + + Reads a stream of bytes from the specified column offset into the buffer an array starting at the given buffer offset. + + The zero-based column ordinal. + The index within the field from which to begin the read operation. + The buffer into which to read the stream of bytes. + The index for buffer to begin the read operation. + The maximum length to copy into the buffer. + The actual number of bytes read. + + + + + Gets the value of the specified column as a single character. + + + + + + + Gets the value of the specified column as a single character. + + + + + + + Reads a stream of characters from the specified column offset into the buffer as an array starting at the given buffer offset. + + + + + + + + + + + Gets the name of the source data type. + + + + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a DateTime object. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a DateTime object. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a DateTime object. + + + Call IsDBNull to check for null values before calling this method. + + + + MySql allows date columns to contain the value '0000-00-00' and datetime + columns to contain the value '0000-00-00 00:00:00'. The DateTime structure cannot contain + or represent these values. To read a datetime value from a column that might + contain zero values, use . + + + The behavior of reading a zero datetime column using this method is defined by the + ZeroDateTimeBehavior connection string option. For more information on this option, + please refer to . + + + The column name.The value of the specified column. + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a DateTime object. + + + Call IsDBNull to check for null values before calling this method. + + + + MySql allows date columns to contain the value '0000-00-00' and datetime + columns to contain the value '0000-00-00 00:00:00'. The DateTime structure cannot contain + or represent these values. To read a datetime value from a column that might + contain zero values, use . + + + The behavior of reading a zero datetime column using this method is defined by the + ZeroDateTimeBehavior connection string option. For more information on this option, + please refer to . + + + The zero-based column ordinal.The value of the specified column. + + + + Gets the value of the specified column as a MySqlDecimal. + + The name of the colum. + The value of the specified column as a MySqlDecimal. + + + + Gets the value of the specified column as a MySqlDecimal. + + The index of the colum. + The value of the specified column as a MySqlDecimal. + + + + Gets the value of the specified column as a MySqlDecimal. + + The name of the colum. + The value of the specified column as a MySqlDecimal. + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a Decimal object. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinalThe value of the specified column. + + + Gets the value of the specified column as a double-precision floating point number. + + No conversions are performed; therefore, the data retrieved must already be a Double object. + + + Call IsDBNull to check for null values before calling this method. + + The column nameThe value of the specified column. + + + Gets the value of the specified column as a double-precision floating point number. + + No conversions are performed; therefore, the data retrieved must already be a Double object. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal.The value of the specified column. + + + + Gets the type of the field at the specified column. + + The column name. + The data type of the item. + + + + Gets the Type that is the data type of the object. + + + + + + + Gets the value of the specified column as a single-precision floating point number. + + + No conversions are performed; therefore, the data retrieved must already be a Float object. + + + Call IsDBNull to check for null values before calling this method. + + The column nameThe value of the specified column. + + + + Gets the value of the specified column as a single-precision floating point number. + + + No conversions are performed; therefore, the data retrieved must already be a Float object. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal.The value of the specified column. + + + + Gets the value of the specified column as a globally-unique identifier(GUID). + + + + + + + + + Gets the value of the specified column as a 16-bit signed integer. + + No conversions are performed; threfore, the data retrieved must already be a 16 bit integer value. + + + Call IsDBNull to check for null values before calling this method. + + The column nameThe value of the specified column. + + + Gets the value of the specified column as a 16-bit signed integer. + + No conversions are performed; therefore, the data retrieved must already be a 16 bit integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal.The value of the specified column. + + + Gets the value of the specified column as a 32-bit signed integer. + + No conversions are performed; therefore, the data retrieved must already be a 32 bit integer value. + + + Call IsDBNull to check for null values before calling this method. + + The column name.The value of the specified column. + + + Gets the value of the specified column as a 32-bit signed integer. + + No conversions are performed; therefore, the data retrieved must already be a 32 bit integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal.The value of the specified column. + + + Gets the value of the specified column as a 64-bit signed integer. + + No conversions are performed; therefore, the data retrieved must already be a 64 bit integer value. + + + Call IsDBNull to check for null values before calling this method. + + The column name.The value of the specified column. + + + Gets the value of the specified column as a 64-bit signed integer. + + No conversions are performed; therefore, the data retrieved must already be a 64 bit integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal.The value of the specified column. + + + + Gets the name of the specified column. + + + + + + + Gets the column ordinal, given the name of the column. + + + + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a String object. + + + Call IsDBNull to check for null values before calling this method. + + The column name.The value of the specified column. + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a String object. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal.The value of the specified column. + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a Time value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a Time value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + + Gets the value of the specified column in its native format. + + + + + + + Gets all attribute columns in the collection for the current row. + + + + + + Gets the value of the specified column as a 16-bit unsigned integer. + + No conversions are performed; therefore, the data retrieved must already be a 16 bit unsigned integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + Gets the value of the specified column as a 16-bit unsigned integer. + + No conversions are performed; therefore, the data retrieved must already be a 16 bit unsigned integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + Gets the value of the specified column as a 32-bit unsigned integer. + + No conversions are performed; therefore, the data retrieved must already be a 32 bit unsigned integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + Gets the value of the specified column as a 32-bit unsigned integer. + + No conversions are performed; therefore, the data retrieved must already be a 32 bit unsigned integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + Gets the value of the specified column as a 64-bit unsigned integer. + + No conversions are performed; therefore, the data retrieved must already be a 64 bit unsigned integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + Gets the value of the specified column as a 64-bit unsigned integer. + + No conversions are performed; therefore, the data retrieved must already be a 64 bit unsigned integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + + Gets a value indicating whether the column contains non-existent or missing values. + + + + + + + Advances the data reader to the next result, when reading the results of batch SQL statements. + + + + + + Advances the MySqlDataReader to the next record. + + + + + + Gets the value of the specified column as a MySqlGeometry. + + The index of the colum. + The value of the specified column as a MySqlGeometry. + + + + Gets the value of the specified column as a MySqlGeometry. + + The name of the column. + The value of the specified column as a MySqlGeometry. + + + + Returns an that iterates through the . + + + + + Returns a DataTable that describes the column metadata of the MySqlDataReader. + + + + + + Summary description for BaseDriver. + + + + + For pooled connections, time when the driver was + put into idle queue + + + + + Loads the properties from the connected server into a hashtable + + + + + + + Loads all the current character set names and ids for this server + into the charSets hashtable + + + + + The exception that is thrown when MySQL returns an error. This class cannot be inherited. + + + + This class is created whenever the MySql Data Provider encounters an error generated from the server. + + + Any open connections are not automatically closed when an exception is thrown. If + the client application determines that the exception is fatal, it should close any open + objects or objects. + + + The following example generates a MySqlException due to a missing server, + and then displays the exception. + + + Public Sub ShowException() + Dim mySelectQuery As String = "SELECT column1 FROM table1" + Dim myConnection As New MySqlConnection ("Data Source=localhost;Database=Sample;") + Dim myCommand As New MySqlCommand(mySelectQuery, myConnection) + + Try + myCommand.Connection.Open() + Catch e As MySqlException + MessageBox.Show( e.Message ) + End Try + End Sub + + + public void ShowException() + { + string mySelectQuery = "SELECT column1 FROM table1"; + MySqlConnection myConnection = + new MySqlConnection("Data Source=localhost;Database=Sample;"); + MySqlCommand myCommand = new MySqlCommand(mySelectQuery,myConnection); + + try + { + myCommand.Connection.Open(); + } + catch (MySqlException e) + { + MessageBox.Show( e.Message ); + } + } + + + + + + Gets a number that identifies the type of error. + + + + + True if this exception was fatal and cause the closing of the connection, false otherwise. + + + + + Gets the SQL state. + + + + + Gets the numeric code of the exception. + + + + + Summary description for Field. + + + + + We are adding a custom installer class to our assembly so our installer + can make proper changes to the machine.config file. + + + + + We override Install so we can add our assembly to the proper + machine.config files. + + + + + + We override Uninstall so we can remove out assembly from the + machine.config files. + + + + + + Automatically generates single-table commands used to reconcile changes made to a DataSet with the associated MySQL database. This class cannot be inherited. + + + The does not automatically generate the SQL statements required to + reconcile changes made to a DataSet with the associated instance of MySQL. + However, you can create a MySqlCommandBuilder object to automatically generate SQL statements for + single-table updates if you set the SelectCommand property + of the MySqlDataAdapter. Then, any additional SQL statements that you do not set are generated by the + MySqlCommandBuilder. + + + + The MySqlCommandBuilder registers itself as a listener for RowUpdating + events whenever you set the property. You can only associate one + MySqlDataAdapter or MySqlCommandBuilder object with each other at one time. + + + + To generate INSERT, UPDATE, or DELETE statements, the MySqlCommandBuilder uses the + SelectCommand property to retrieve a required set of metadata automatically. If you change + the SelectCommand after the metadata has is retrieved (for example, after the first update), you + should call the method to update the metadata. + + + + The SelectCommand must also return at least one primary key or unique + column. If none are present, an InvalidOperation exception is generated, + and the commands are not generated. + + + + The MySqlCommandBuilder also uses the Connection, + CommandTimeout, and Transaction + properties referenced by the SelectCommand. The user should call + RefreshSchema if any of these properties are modified, or if the + SelectCommand itself is replaced. Otherwise the InsertCommand, + UpdateCommand, and + DeleteCommand properties retain + their previous values. + + + + If you call Dispose, the MySqlCommandBuilder is disassociated + from the MySqlDataAdapter, and the generated commands are no longer used. + + + + Caution must be used when using MySqlCOmmandBuilder on MySql 4.0 systems. With MySql 4.0, + database/schema information is not provided to the connector for a query. This means that + a query that pulls columns from two identically named tables in two or more different databases + will not cause an exception to be thrown but will not work correctly. Even more dangerous + is the situation where your select statement references database X but is executed in + database Y and both databases have tables with similar layouts. This situation can cause + unwanted changes or deletes. + This note does not apply to MySQL versions 4.1 and later. + + + + The following example uses the , along + and , to + select rows from a data source. The example is passed an initialized + , a connection string, a + query string that is a SQL SELECT statement, and a string that is the + name of the database table. The example then creates a MySqlCommandBuilder. + + + Public Shared Function SelectRows(myConnection As String, mySelectQuery As String, myTableName As String) As DataSet + Dim myConn As New MySqlConnection(myConnection) + Dim myDataAdapter As New MySqlDataAdapter() + myDataAdapter.SelectCommand = New MySqlCommand(mySelectQuery, myConn) + Dim cb As SqlCommandBuilder = New MySqlCommandBuilder(myDataAdapter) + + myConn.Open() + + Dim ds As DataSet = New DataSet + myDataAdapter.Fill(ds, myTableName) + + ' Code to modify data in DataSet here + + ' Without the MySqlCommandBuilder this line would fail. + myDataAdapter.Update(ds, myTableName) + + myConn.Close() + End Function 'SelectRows + + + public static DataSet SelectRows(string myConnection, string mySelectQuery, string myTableName) + { + MySqlConnection myConn = new MySqlConnection(myConnection); + MySqlDataAdapter myDataAdapter = new MySqlDataAdapter(); + myDataAdapter.SelectCommand = new MySqlCommand(mySelectQuery, myConn); + MySqlCommandBuilder cb = new MySqlCommandBuilder(myDataAdapter); + + myConn.Open(); + + DataSet ds = new DataSet(); + myDataAdapter.Fill(ds, myTableName); + + //code to modify data in DataSet here + + //Without the MySqlCommandBuilder this line would fail + myDataAdapter.Update(ds, myTableName); + + myConn.Close(); + + return ds; + } + + + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with the associated object. + + The to use. + + + The registers itself as a listener for + events that are generated by the + specified in this property. + + + When you create a new instance MySqlCommandBuilder, any existing + MySqlCommandBuilder associated with this MySqlDataAdapter + is released. + + + + + + Gets or sets a object for which SQL statements are automatically generated. + + A object. + + + The registers itself as a listener for + events that are generated by the + specified in this property. + + + When you create a new instance MySqlCommandBuilder, any existing + MySqlCommandBuilder associated with this MySqlDataAdapter + is released. + + + + + + Retrieves parameter information from the stored procedure specified + in the MySqlCommand and populates the Parameters collection of the + specified MySqlCommand object. + This method is not currently supported since stored procedures are + not available in MySql. + + The MySqlCommand referencing the stored + procedure from which the parameter information is to be derived. + The derived parameters are added to the Parameters collection of the + MySqlCommand. + The command text is not + a valid stored procedure name. + + + + Gets the delete command. + + + + + + Gets the update command. + + + + + + Gets the insert command. + + + + + + + + + + + + + Represents a set of data commands and a database connection that are used to fill a dataset and update a MySQL database. This class cannot be inherited. + + + The MySQLDataAdapter, serves as a bridge between a + and MySQL for retrieving and saving data. The MySQLDataAdapter provides this + bridge by mapping , which changes the data in the + DataSet to match the data in the data source, and , + which changes the data in the data source to match the data in the DataSet, + using the appropriate SQL statements against the data source. + + + When the MySQLDataAdapter fills a DataSet, it will create the necessary + tables and columns for the returned data if they do not already exist. However, primary + key information will not be included in the implicitly created schema unless the + property is set to . + You may also have the MySQLDataAdapter create the schema of the DataSet, + including primary key information, before filling it with data using . + + + MySQLDataAdapter is used in conjunction with + and to increase performance when connecting to a MySQL database. + + + The MySQLDataAdapter also includes the , + , , + , and + properties to facilitate the loading and updating of data. + + + When an instance of MySQLDataAdapter is created, the read/write properties + are set to initial values. For a list of these values, see the MySQLDataAdapter + constructor. + + + Please be aware that the class allows only + Int16, Int32, and Int64 to have the AutoIncrement property set. + If you plan to use autoincremement columns with MySQL, you should consider + using signed integer columns. + + + The following example creates a and a . + The MySqlConnection is opened and set as the for the + MySqlCommand. The example then calls , and closes + the connection. To accomplish this, the ExecuteNonQuery is + passed a connection string and a query string that is a SQL INSERT + statement. + + Public Function SelectRows(dataSet As DataSet, connection As String, query As String) As DataSet + Dim conn As New MySqlConnection(connection) + Dim adapter As New MySqlDataAdapter() + adapter.SelectCommand = new MySqlCommand(query, conn) + adapter.Fill(dataset) + Return dataset + End Function + + + public DataSet SelectRows(DataSet dataset,string connection,string query) + { + MySqlConnection conn = new MySqlConnection(connection); + MySqlDataAdapter adapter = new MySqlDataAdapter(); + adapter.SelectCommand = new MySqlCommand(query, conn); + adapter.Fill(dataset); + return dataset; + } + + + + + + Occurs during Update before a command is executed against the data source. The attempt to update is made, so the event fires. + + + + + Occurs during Update after a command is executed against the data source. The attempt to update is made, so the event fires. + + + + + Initializes a new instance of the MySqlDataAdapter class. + + + When an instance of is created, + the following read/write properties are set to the following initial + values. + + + + Properties + Initial Value + + + + + + + MissingMappingAction.Passthrough + + + + + + + + MissingSchemaAction.Add + + + + + You can change the value of any of these properties through a separate call + to the property. + + + The following example creates a and sets some of + its properties. + + Public Sub CreateSqlDataAdapter() + Dim conn As MySqlConnection = New MySqlConnection("Data Source=localhost;" & _ + "database=test") + Dim da As MySqlDataAdapter = New MySqlDataAdapter + da.MissingSchemaAction = MissingSchemaAction.AddWithKey + + da.SelectCommand = New MySqlCommand("SELECT id, name FROM mytable", conn) + da.InsertCommand = New MySqlCommand("INSERT INTO mytable (id, name) " & _ + "VALUES (@id, @name)", conn) + da.UpdateCommand = New MySqlCommand("UPDATE mytable SET id=@id, name=@name " & _ + "WHERE id=@oldId", conn) + da.DeleteCommand = New MySqlCommand("DELETE FROM mytable WHERE id=@id", conn) + + da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name") + + da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name") + da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original + + da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original + End Sub + + + public static void CreateSqlDataAdapter() + { + MySqlConnection conn = new MySqlConnection("Data Source=localhost;database=test"); + MySqlDataAdapter da = new MySqlDataAdapter(); + da.MissingSchemaAction = MissingSchemaAction.AddWithKey; + + da.SelectCommand = new MySqlCommand("SELECT id, name FROM mytable", conn); + da.InsertCommand = new MySqlCommand("INSERT INTO mytable (id, name) " + + "VALUES (@id, @name)", conn); + da.UpdateCommand = new MySqlCommand("UPDATE mytable SET id=@id, name=@name " + + "WHERE id=@oldId", conn); + da.DeleteCommand = new MySqlCommand("DELETE FROM mytable WHERE id=@id", conn); + + da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name"); + + da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name"); + da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original; + + da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original; + } + + + + + + Initializes a new instance of the class with + the specified as the + property. + + that is a SQL SELECT statement or stored procedure and is set + as the property of the . + + + When an instance of is created, + the following read/write properties are set to the following initial + values. + + + + Properties + Initial Value + + + + + + + MissingMappingAction.Passthrough + + + + + + + + MissingSchemaAction.Add + + + + + You can change the value of any of these properties through a separate call + to the property. + + + When SelectCommand (or any of the other command properties) is assigned + to a previously created , the MySqlCommand is not cloned. + The SelectCommand maintains a reference to the previously created MySqlCommand + object. + + + The following example creates a and sets some of + its properties. + + Public Sub CreateSqlDataAdapter() + Dim conn As MySqlConnection = New MySqlConnection("Data Source=localhost;" & _ + "database=test") + Dim cmd as new MySqlCommand("SELECT id, name FROM mytable", conn) + Dim da As MySqlDataAdapter = New MySqlDataAdapter(cmd) + da.MissingSchemaAction = MissingSchemaAction.AddWithKey + + da.InsertCommand = New MySqlCommand("INSERT INTO mytable (id, name) " & _ + "VALUES (@id, @name)", conn) + da.UpdateCommand = New MySqlCommand("UPDATE mytable SET id=@id, name=@name " & _ + "WHERE id=@oldId", conn) + da.DeleteCommand = New MySqlCommand("DELETE FROM mytable WHERE id=@id", conn) + + da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name") + + da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name") + da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original + + da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original + End Sub + + + public static void CreateSqlDataAdapter() + { + MySqlConnection conn = new MySqlConnection("Data Source=localhost;database=test"); + MySqlCommand cmd = new MySqlCommand("SELECT id, name FROM mytable", conn); + MySqlDataAdapter da = new MySqlDataAdapter(cmd); + da.MissingSchemaAction = MissingSchemaAction.AddWithKey; + + da.InsertCommand = new MySqlCommand("INSERT INTO mytable (id, name) " + + "VALUES (@id, @name)", conn); + da.UpdateCommand = new MySqlCommand("UPDATE mytable SET id=@id, name=@name " + + "WHERE id=@oldId", conn); + da.DeleteCommand = new MySqlCommand("DELETE FROM mytable WHERE id=@id", conn); + + da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name"); + + da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name"); + da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original; + + da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original; + } + + + + + + Initializes a new instance of the class with + a and a object. + + A String that is a SQL SELECT statement or stored procedure to be used by + the property of the . + + A that represents the connection. + + + This implementation of the opens and closes a + if it is not already open. This can be useful in a an application that must call the + method for two or more MySqlDataAdapter objects. + If the MySqlConnection is already open, you must explicitly call + or to close it. + + + When an instance of is created, + the following read/write properties are set to the following initial + values. + + + + Properties + Initial Value + + + + + + + MissingMappingAction.Passthrough + + + + + + + + MissingSchemaAction.Add + + + + + You can change the value of any of these properties through a separate call + to the property. + + + The following example creates a and sets some of + its properties. + + Public Sub CreateSqlDataAdapter() + Dim conn As MySqlConnection = New MySqlConnection("Data Source=localhost;" & _ + "database=test") + Dim da As MySqlDataAdapter = New MySqlDataAdapter("SELECT id, name FROM mytable", conn) + da.MissingSchemaAction = MissingSchemaAction.AddWithKey + + da.InsertCommand = New MySqlCommand("INSERT INTO mytable (id, name) " & _ + "VALUES (@id, @name)", conn) + da.UpdateCommand = New MySqlCommand("UPDATE mytable SET id=@id, name=@name " & _ + "WHERE id=@oldId", conn) + da.DeleteCommand = New MySqlCommand("DELETE FROM mytable WHERE id=@id", conn) + + da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name") + + da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name") + da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original + + da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original + End Sub + + + public static void CreateSqlDataAdapter() + { + MySqlConnection conn = new MySqlConnection("Data Source=localhost;database=test"); + MySqlDataAdapter da = new MySqlDataAdapter("SELECT id, name FROM mytable", conn); + da.MissingSchemaAction = MissingSchemaAction.AddWithKey; + + da.InsertCommand = new MySqlCommand("INSERT INTO mytable (id, name) " + + "VALUES (@id, @name)", conn); + da.UpdateCommand = new MySqlCommand("UPDATE mytable SET id=@id, name=@name " + + "WHERE id=@oldId", conn); + da.DeleteCommand = new MySqlCommand("DELETE FROM mytable WHERE id=@id", conn); + + da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name"); + + da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name"); + da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original; + + da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original; + } + + + + + + Initializes a new instance of the class with + a and a connection string. + + A that is a SQL SELECT statement or stored procedure to + be used by the property of the . + The connection string + + When an instance of is created, + the following read/write properties are set to the following initial + values. + + + + Properties + Initial Value + + + + + + + MissingMappingAction.Passthrough + + + + + + + + MissingSchemaAction.Add + + + + + You can change the value of any of these properties through a separate call + to the property. + + + The following example creates a and sets some of + its properties. + + Public Sub CreateSqlDataAdapter() + Dim da As MySqlDataAdapter = New MySqlDataAdapter("SELECT id, name FROM mytable", "Data Source=localhost;database=test") + Dim conn As MySqlConnection = da.SelectCommand.Connection + da.MissingSchemaAction = MissingSchemaAction.AddWithKey + + da.InsertCommand = New MySqlCommand("INSERT INTO mytable (id, name) " & _ + "VALUES (@id, @name)", conn) + da.UpdateCommand = New MySqlCommand("UPDATE mytable SET id=@id, name=@name " & _ + "WHERE id=@oldId", conn) + da.DeleteCommand = New MySqlCommand("DELETE FROM mytable WHERE id=@id", conn) + + da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name") + + da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name") + da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original + + da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original + End Sub + + + public static void CreateSqlDataAdapter() + { + MySqlDataAdapter da = new MySqlDataAdapter("SELECT id, name FROM mytable", "Data Source=localhost;database=test"); + MySqlConnection conn = da.SelectCommand.Connection; + da.MissingSchemaAction = MissingSchemaAction.AddWithKey; + + da.InsertCommand = new MySqlCommand("INSERT INTO mytable (id, name) " + + "VALUES (@id, @name)", conn); + da.UpdateCommand = new MySqlCommand("UPDATE mytable SET id=@id, name=@name " + + "WHERE id=@oldId", conn); + da.DeleteCommand = new MySqlCommand("DELETE FROM mytable WHERE id=@id", conn); + + da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name"); + + da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name"); + da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original; + + da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original; + } + + + + + + Gets or sets a SQL statement or stored procedure used to delete records from the data set. + + A used during to delete records in the + database that correspond to deleted rows in the . + + + During , if this property is not set and primary key information + is present in the , the DeleteCommand can be generated + automatically if you set the property and use the + . Then, any additional commands that you do not set are + generated by the MySqlCommandBuilder. This generation logic requires key column + information to be present in the DataSet. + + + When DeleteCommand is assigned to a previously created , + the MySqlCommand is not cloned. The DeleteCommand maintains a reference + to the previously created MySqlCommand object. + + + The following example creates a and sets the + and DeleteCommand properties. It assumes you have already + created a object. + + Public Shared Function CreateCustomerAdapter(conn As MySqlConnection) As MySqlDataAdapter + + Dim da As MySqlDataAdapter = New MySqlDataAdapter() + Dim cmd As MySqlCommand + Dim parm As MySqlParameter + + ' Create the SelectCommand. + cmd = New MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn) + + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15) + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15) + + da.SelectCommand = cmd + + ' Create the DeleteCommand. + cmd = New MySqlCommand("DELETE FROM mytable WHERE id=@id", conn) + + parm = cmd.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + parm.SourceVersion = DataRowVersion.Original + + da.DeleteCommand = cmd + + Return da + End Function + + + public static MySqlDataAdapter CreateCustomerAdapter(MySqlConnection conn) + { + MySqlDataAdapter da = new MySqlDataAdapter(); + MySqlCommand cmd; + MySqlParameter parm; + + // Create the SelectCommand. + cmd = new MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn); + + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15); + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15); + + da.SelectCommand = cmd; + + // Create the DeleteCommand. + cmd = new MySqlCommand("DELETE FROM mytable WHERE id=@id", conn); + + parm = cmd.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + parm.SourceVersion = DataRowVersion.Original; + + da.DeleteCommand = cmd; + + return da; + } + + + + + + Gets or sets a SQL statement or stored procedure used to insert records into the data set. + + A used during to insert records into the + database that correspond to new rows in the . + + + During , if this property is not set and primary key information + is present in the , the InsertCommand can be generated + automatically if you set the property and use the + . Then, any additional commands that you do not set are + generated by the MySqlCommandBuilder. This generation logic requires key column + information to be present in the DataSet. + + + When InsertCommand is assigned to a previously created , + the MySqlCommand is not cloned. The InsertCommand maintains a reference + to the previously created MySqlCommand object. + + + If execution of this command returns rows, these rows may be added to the DataSet + depending on how you set the property of the MySqlCommand object. + + + The following example creates a and sets the + and InsertCommand properties. It assumes you have already + created a object. + + Public Shared Function CreateCustomerAdapter(conn As MySqlConnection) As MySqlDataAdapter + + Dim da As MySqlDataAdapter = New MySqlDataAdapter() + Dim cmd As MySqlCommand + Dim parm As MySqlParameter + + ' Create the SelectCommand. + cmd = New MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn) + + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15) + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15) + + da.SelectCommand = cmd + + ' Create the InsertCommand. + cmd = New MySqlCommand("INSERT INTO mytable (id,name) VALUES (@id, @name)", conn) + + cmd.Parameters.Add( "@id", MySqlDbType.VarChar, 15, "id" ) + cmd.Parameters.Add( "@name", MySqlDbType.VarChar, 15, "name" ) + da.InsertCommand = cmd + + Return da + End Function + + + public static MySqlDataAdapter CreateCustomerAdapter(MySqlConnection conn) + { + MySqlDataAdapter da = new MySqlDataAdapter(); + MySqlCommand cmd; + MySqlParameter parm; + + // Create the SelectCommand. + cmd = new MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn); + + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15); + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15); + + da.SelectCommand = cmd; + + // Create the InsertCommand. + cmd = new MySqlCommand("INSERT INTO mytable (id,name) VALUES (@id,@name)", conn); + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15, "id" ); + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15, "name" ); + + da.InsertCommand = cmd; + + return da; + } + + + + + + Gets or sets a SQL statement or stored procedure used to select records in the data source. + + A used during to select records from the + database for placement in the . + + + When SelectCommand is assigned to a previously created , + the MySqlCommand is not cloned. The SelectCommand maintains a reference to the + previously created MySqlCommand object. + + + If the SelectCommand does not return any rows, no tables are added to the + , and no exception is raised. + + + The following example creates a and sets the + and InsertCommand properties. It assumes you have already + created a object. + + Public Shared Function CreateCustomerAdapter(conn As MySqlConnection) As MySqlDataAdapter + + Dim da As MySqlDataAdapter = New MySqlDataAdapter() + Dim cmd As MySqlCommand + Dim parm As MySqlParameter + + ' Create the SelectCommand. + cmd = New MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn) + + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15) + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15) + + da.SelectCommand = cmd + + ' Create the InsertCommand. + cmd = New MySqlCommand("INSERT INTO mytable (id,name) VALUES (@id, @name)", conn) + + cmd.Parameters.Add( "@id", MySqlDbType.VarChar, 15, "id" ) + cmd.Parameters.Add( "@name", MySqlDbType.VarChar, 15, "name" ) + da.InsertCommand = cmd + + Return da + End Function + + + public static MySqlDataAdapter CreateCustomerAdapter(MySqlConnection conn) + { + MySqlDataAdapter da = new MySqlDataAdapter(); + MySqlCommand cmd; + MySqlParameter parm; + + // Create the SelectCommand. + cmd = new MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn); + + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15); + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15); + + da.SelectCommand = cmd; + + // Create the InsertCommand. + cmd = new MySqlCommand("INSERT INTO mytable (id,name) VALUES (@id,@name)", conn); + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15, "id" ); + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15, "name" ); + + da.InsertCommand = cmd; + + return da; + } + + + + + + Gets or sets a SQL statement or stored procedure used to updated records in the data source. + + A used during to update records in the + database with data from the . + + + During , if this property is not set and primary key information + is present in the , the UpdateCommand can be generated + automatically if you set the property and use the + . Then, any additional commands that you do not set are + generated by the MySqlCommandBuilder. This generation logic requires key column + information to be present in the DataSet. + + + When UpdateCommand is assigned to a previously created , + the MySqlCommand is not cloned. The UpdateCommand maintains a reference + to the previously created MySqlCommand object. + + + If execution of this command returns rows, these rows may be merged with the DataSet + depending on how you set the property of the MySqlCommand object. + + + The following example creates a and sets the + and UpdateCommand properties. It assumes you have already + created a object. + + Public Shared Function CreateCustomerAdapter(conn As MySqlConnection) As MySqlDataAdapter + + Dim da As MySqlDataAdapter = New MySqlDataAdapter() + Dim cmd As MySqlCommand + Dim parm As MySqlParameter + + ' Create the SelectCommand. + cmd = New MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn) + + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15) + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15) + + da.SelectCommand = cmd + + ' Create the UpdateCommand. + cmd = New MySqlCommand("UPDATE mytable SET id=@id, name=@name WHERE id=@oldId", conn) + + cmd.Parameters.Add( "@id", MySqlDbType.VarChar, 15, "id" ) + cmd.Parameters.Add( "@name", MySqlDbType.VarChar, 15, "name" ) + + parm = cmd.Parameters.Add("@oldId", MySqlDbType.VarChar, 15, "id") + parm.SourceVersion = DataRowVersion.Original + + da.UpdateCommand = cmd + + Return da + End Function + + + public static MySqlDataAdapter CreateCustomerAdapter(MySqlConnection conn) + { + MySqlDataAdapter da = new MySqlDataAdapter(); + MySqlCommand cmd; + MySqlParameter parm; + + // Create the SelectCommand. + cmd = new MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn); + + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15); + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15); + + da.SelectCommand = cmd; + + // Create the UpdateCommand. + cmd = new MySqlCommand("UPDATE mytable SET id=@id, name=@name WHERE id=@oldId", conn); + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15, "id" ); + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15, "name" ); + + parm = cmd.Parameters.Add( "@oldId", MySqlDbType.VarChar, 15, "id" ); + parm.SourceVersion = DataRowVersion.Original; + + da.UpdateCommand = cmd; + + return da; + } + + + + + + Open connection if it was closed. + Necessary to workaround "connection must be open and valid" error + with batched updates. + + Row state + list of opened connections + If connection is opened by this function, the list is updated + + true if connection was opened + + + + Overridden. See . + + + + + + + + + + Overridden. See . + + + + + + + + + + Overridden. Raises the RowUpdating event. + + A MySqlRowUpdatingEventArgs that contains the event data. + + + + Overridden. Raises the RowUpdated event. + + A MySqlRowUpdatedEventArgs that contains the event data. + + + + Async version of Fill + + Dataset to use + int + + + + Async version of Fill + + Datatable to use + int + + + + Async version of Fill + + DataSet to use + Source table + int + + + + Async version of Fill + + Datatable to use + DataReader to use + int + + + + Async version of Fill + + DataTable to use + DbCommand to use + Command Behavior + int + + + + Async version of Fill + + Start record + Max records + DataTable[] to use + int + + + + Async version of Fill + + DataSet to use + Start record + Max records + Source table + int + + + + Async version of Fill + + DataSet to use + Source table + DataReader to use + Start record + Max records + + + + + Async version of Fill + + DataTable[] to use + Start record + Max records + DbCommand to use + Command Behavior + + + + + Async version of Fill + + DataSet to use + Start record + Max records + Source table + DbCommand to use + Command Behavior + + + + + Async version of FillSchema + + DataSet to use + Schema Type + DataTable[] + + + + Async version of FillSchema + + DataSet to use + Schema Type + Source Table + DataTable[] + + + + Async version of FillSchema + + DataSet to use + Schema Type + Source Table + DataReader to use + DataTable[] + + + + Async version of FillSchema + + DataSet to use + Schema Type + DBCommand to use + Source Table + Command Behavior + DataTable[] + + + + Async version of FillSchema + + DataTable to use + Schema Type + DataTable + + + + Async version of FillSchema + + DataTable to use + Schema Type + DataReader to use + DataTable + + + + Async version of FillSchema + + DataTable to use + Schema Type + DBCommand to use + Command Behavior + DataTable + + + + Async version of Update + + DataRow[] to use + int + + + + Async version of Update + + DataSet to use + int + + + + Async version of Update + + DataTable to use + int + + + + Async version of Update + + DataRow[] to use + Data Table Mapping + int + + + + Async version of Update + + DataSet to use + Source Table + + + + + Represents the method that will handle the event of a . + + + + + Represents the method that will handle the event of a . + + + + + Provides data for the RowUpdating event. This class cannot be inherited. + + + + + Initializes a new instance of the MySqlRowUpdatingEventArgs class. + + The to + . + The to execute during . + One of the values that specifies the type of query executed. + The sent through an . + + + + Gets or sets the MySqlCommand to execute when performing the Update. + + + + + Provides data for the RowUpdated event. This class cannot be inherited. + + + + + Initializes a new instance of the MySqlRowUpdatedEventArgs class. + + The sent through an . + The executed when is called. + One of the values that specifies the type of query executed. + The sent through an . + + + + Gets or sets the MySqlCommand executed when Update is called. + + + + + Enables the provider to help ensure that a user has a security level adequate for accessing data. + + + + + Adds a new connection string with set of restricted keywords to the MySqlClientPermission object + + Settings to be used for the connection + Keywords to define the restrictions + KeyRestrictionBehavior to be used + + + + Returns MySqlClientPermission as an IPermission + + + + + + Associates a security action with a custom security attribute. + + + + + Represents a section within a configuration file. + + + + + Gets the MySQL configuations associated to the current configuration. + + + + + Gets a collection of the exception interceptors available in the current configuration. + + + + + Gets a collection of the command interceptors available in the current configuration. + + + + + Gets a collection of the authentication plugins available in the current configuration. + + + + + Gets or sets the replication configurations. + + + + + Defines the configurations allowed for an authentication plugin. + + + + + Gets or sets the name of the authentication plugin. + + + + + Gets or sets the type of the authentication plugin. + + + + + Defines the configurations allowed for an interceptor. + + + + + Gets or sets the name of the interceptor. + + + + + Gets or sets the type of the interceptor. + + + + + Represents a generic configuration element. + + + + + + Gets an enumerator that iterates through the returned list. + + An enumerator that iterates through the returned list. + + + + Helper class that makes it easier to work with the provider. + + + + + Async version of ExecuteDataRow + + Settings to be used for the connection + Command to execute + Parameters to use for the command + DataRow containing the first row of the resultset + + + + Executes a single SQL command and returns the first row of the resultset. A new MySqlConnection object + is created, opened, and closed during this method. + + Settings to be used for the connection + Command to execute + Parameters to use for the command + DataRow containing the first row of the resultset + + + + Executes a single SQL command and returns the resultset in a . + A new MySqlConnection object is created, opened, and closed during this method. + + Settings to be used for the connection + Command to execute + containing the resultset + + + + Executes a single SQL command and returns the resultset in a . + A new MySqlConnection object is created, opened, and closed during this method. + + Settings to be used for the connection + Command to execute + Parameters to use for the command + containing the resultset + + + + Executes a single SQL command and returns the resultset in a . + The state of the object remains unchanged after execution + of this method. + + object to use + Command to execute + containing the resultset + + + + Executes a single SQL command and returns the resultset in a . + The state of the object remains unchanged after execution + of this method. + + object to use + Command to execute + Parameters to use for the command + containing the resultset + + + + Updates the given table with data from the given + + Settings to use for the update + Command text to use for the update + containing the new data to use in the update + Tablename in the dataset to update + + + + Async version of ExecuteDataset + + Settings to be used for the connection + Command to execute + containing the resultset + + + + Async version of ExecuteDataset + + Settings to be used for the connection + Command to execute + Parameters to use for the command + containing the resultset + + + + Async version of ExecuteDataset + + object to use + Command to execute + containing the resultset + + + + Async version of ExecuteDataset + + object to use + Command to execute + Parameters to use for the command + containing the resultset + + + + Async version of UpdateDataset + + Settings to use for the update + Command text to use for the update + containing the new data to use in the update + Tablename in the dataset to update + + + + Executes a single command against a MySQL database. The is assumed to be + open when the method is called and remains open after the method completes. + + object to use + SQL command to be executed + Array of objects to use with the command. + + + + + Executes a single command against a MySQL database. A new is created + using the given. + + to use + SQL command to be executed + Array of objects to use with the command. + + + + + Executes a single command against a MySQL database, possibly inside an existing transaction. + + object to use for the command + object to use for the command + Command text to use + Array of objects to use with the command + True if the connection should be preserved, false if not + object ready to read the results of the command + + + + Executes a single command against a MySQL database. + + Settings to use for this command + Command text to use + object ready to read the results of the command + + + + Executes a single command against a MySQL database. + + object to use for the command + Command text to use + object ready to read the results of the command + + + + Executes a single command against a MySQL database. + + Settings to use for this command + Command text to use + Array of objects to use with the command + object ready to read the results of the command + + + + Executes a single command against a MySQL database. + + Connection to use for the command + Command text to use + Array of objects to use with the command + object ready to read the results of the command + + + + Execute a single command against a MySQL database. + + Settings to use for the update + Command text to use for the update + The first column of the first row in the result set, or a null reference if the result set is empty. + + + + Execute a single command against a MySQL database. + + Settings to use for the command + Command text to use for the command + Parameters to use for the command + The first column of the first row in the result set, or a null reference if the result set is empty. + + + + Execute a single command against a MySQL database. + + object to use + Command text to use for the command + The first column of the first row in the result set, or a null reference if the result set is empty. + + + + Execute a single command against a MySQL database. + + object to use + Command text to use for the command + Parameters to use for the command + The first column of the first row in the result set, or a null reference if the result set is empty. + + + + Escapes the string. + + The string to escape + The string with all quotes escaped. + + + + Async version of ExecuteNonQuery + + object to use + SQL command to be executed + Array of objects to use with the command. + Rows affected + + + + Async version of ExecuteNonQuery + + to use + SQL command to be executed + Array of objects to use with the command. + Rows affected + + + + Async version of ExecuteReader + + object to use for the command + object to use for the command + Command text to use + Array of objects to use with the command + True if the connection should be preserved, false if not + object ready to read the results of the command + + + + Async version of ExecuteReader + + Settings to use for this command + Command text to use + object ready to read the results of the command + + + + Async version of ExecuteReader + + object to use for the command + Command text to use + object ready to read the results of the command + + + + Async version of ExecuteReader + + Settings to use for this command + Command text to use + Array of objects to use with the command + object ready to read the results of the command + + + + Async version of ExecuteReader + + Connection to use for the command + Command text to use + Array of objects to use with the command + object ready to read the results of the command + + + + Async version of ExecuteScalar + + Settings to use for the update + Command text to use for the update + The first column of the first row in the result set, or a null reference if the result set is empty. + + + + Async version of ExecuteScalar + + Settings to use for the command + Command text to use for the command + Parameters to use for the command + The first column of the first row in the result set, or a null reference if the result set is empty. + + + + Async version of ExecuteScalar + + object to use + Command text to use for the command + The first column of the first row in the result set, or a null reference if the result set is empty. + + + + Async version of ExecuteScalar + + object to use + Command text to use for the command + Parameters to use for the command + The first column of the first row in the result set, or a null reference if the result set is empty. + + + + Represents a parameter to a , This class cannot be inherited. + + + + + Gets or sets the to use when loading . + + + + + Initializes a new instance of the class with the parameter name, the , the size, and the source column name. + + The name of the parameter to map. + One of the values. + The length of the parameter. + The name of the source column. + + + + Initializes a new instance of the class with the parameter name and a value of the new MySqlParameter. + + The name of the parameter to map. + An that is the value of the . + + + + Initializes a new instance of the class with the parameter name and the data type. + + The name of the parameter to map. + One of the values. + + + + Initializes a new instance of the class with the parameter name, the , and the size. + + The name of the parameter to map. + One of the values. + The length of the parameter. + + + + Initializes a new instance of the class with the parameter name, the type of the parameter, the size of the parameter, a , the precision of the parameter, the scale of the parameter, the source column, a to use, and the value of the parameter. + + The name of the parameter to map. + One of the values. + The length of the parameter. + One of the values. + true if the value of the field can be null, otherwise false. + The total number of digits to the left and right of the decimal point to which is resolved. + The total number of decimal places to which is resolved. + The name of the source column. + One of the values. + An that is the value of the . + + + + + Gets or sets a value indicating whether the parameter is input-only, output-only, bidirectional, or a stored procedure return value parameter. + As of MySql version 4.1 and earlier, input-only is the only valid choice. + + + + + Gets or sets a value indicating whether the parameter accepts null values. + + + + + Gets or sets the of the parameter. + + + + + Gets or sets the maximum number of digits used to represent the property. + + + + + Gets or sets the number of decimal places to which is resolved. + + + + + Gets or sets the maximum size, in bytes, of the data within the column. + + + + + Gets or sets the value of the parameter. + + + + + Returns the possible values for this parameter if this parameter is of type + SET or ENUM. Returns null otherwise. + + + + + Gets or sets the name of the source column that is mapped to the and used for loading or returning the . + + + + + Sets or gets a value which indicates whether the source column is nullable. + This allows to correctly generate Update statements + for nullable columns. + + + + + Gets or sets the of the parameter. + + + + + Overridden. Gets a string containing the . + + + + + + Resets the DbType property to its original settings. + + + + + Represents a collection of parameters relevant to a as well as their respective mappings to columns in a . This class cannot be inherited. + + + The number of the parameters in the collection must be equal to the number of + parameter placeholders within the command text, or an exception will be generated. + + The following example creates multiple instances of + through the MySqlParameterCollection collection within the . + These parameters are used to select data within the data source and place the data in + the . This code assumes that a DataSet and a MySqlDataAdapter + have already been created with the appropriate schema, commands, and connection. + + Public Sub AddParameters() + ' ... + ' create myDataSet and myDataAdapter + ' ... + myDataAdapter.SelectCommand.Parameters.Add("@CategoryName", MySqlDbType.VarChar, 80).Value = "toasters" + myDataAdapter.SelectCommand.Parameters.Add("@SerialNum", MySqlDbType.Long).Value = 239 + + myDataAdapter.Fill(myDataSet) + End Sub 'AddSqlParameters + + + public void AddSqlParameters() + { + // ... + // create myDataSet and myDataAdapter + // ... + + myDataAdapter.SelectCommand.Parameters.Add("@CategoryName", MySqlDbType.VarChar, 80).Value = "toasters"; + myDataAdapter.SelectCommand.Parameters.Add("@SerialNum", MySqlDbType.Long).Value = 239; + myDataAdapter.Fill(myDataSet); + + } + + + + + + Gets a value that indicates whether the + has a fixed size. + + + + + Gets a value that indicates whether the + is read-only. + + + + + Gets a value that indicates whether the + is synchronized. + + + + + Gets the number of MySqlParameter objects in the collection. + + + + + Gets the at the specified index. + + Gets the with a specified attribute. + [C#] In C#, this property is the indexer for the class. + + + + + Gets the with the specified name. + + + + + Adds a to the with the parameter name, the data type, the column length, and the source column name. + + The name of the parameter. + One of the values. + The length of the column. + The name of the source column. + The newly added object. + + + + Adds the specified object to the . + + The to add to the collection. + The newly added object. + + + + Adds a to the given the specified parameter name and value. + + The name of the parameter. + The of the to add to the collection. + The newly added object. + + + + Adds a parameter and its value. + + The name of the parameter. + The value of the parameter. + A MySqlParameter object representing the provided values. + + + + Adds a to the given the parameter name and the data type. + + The name of the parameter. + One of the values. + The newly added object. + + + + Adds a to the with the parameter name, the data type, and the column length. + + The name of the parameter. + One of the values. + The length of the column. + The newly added object. + + + + Removes all items from the collection. + + + + + Gets the location of the in the collection with a specific parameter name. + + The name of the object to retrieve. + The zero-based location of the in the collection. + + + + Gets the location of a in the collection. + + The object to locate. + The zero-based location of the in the collection. + Gets the location of a in the collection. + + + + This method will update all the items in the index hashes when + we insert a parameter somewhere in the middle + + + + + + + Adds an array of values to the end of the . + + + + + + Retrieve the parameter with the given name. + + + + + + + Adds the specified object to the . + + The to add to the collection. + The index of the new object. + + + + Gets a value indicating whether a with the specified parameter name exists in the collection. + + The name of the object to find. + true if the collection contains the parameter; otherwise, false. + + + + Gets a value indicating whether a MySqlParameter exists in the collection. + + The value of the object to find. + true if the collection contains the object; otherwise, false. + Gets a value indicating whether a exists in the collection. + + + + Copies MySqlParameter objects from the MySqlParameterCollection to the specified array. + + + + + + + Returns an enumerator that iterates through the . + + + + + + Inserts a MySqlParameter into the collection at the specified index. + + + + + + + Removes the specified MySqlParameter from the collection. + + + + + + Removes the specified from the collection using the parameter name. + + The name of the object to retrieve. + + + + Removes the specified from the collection using a specific index. + + The zero-based index of the parameter. + Removes the specified from the collection. + + + + Gets an object that can be used to synchronize access to the + . + + + + + Represents a single(not nested) TransactionScope + + + + + Defines security permissions assigned to a MySQL object. + + + + + Creates a set of permissions. + + A flag indicating if the reflection permission should be included. + A PermissionSet object representing a collection of permissions. + + + + BaseCommandInterceptor is the base class that should be used for all userland + command interceptors + + + + + Gets the active connection. + + + + + Executes an SQL statements that returns a scalar value such as a calculation. + + The SQL statement to execute. + A scalar value that represents the result returned by the execution of the SQL statement. + false. + This method is intended to be overriden. + + + + Executes an SQL statement that returns the number of affected rows. + + The SQL statement to execute. + The number of affected rows. + false. + + + + Executes an SQL statement that will return a resultset. + + The SQL statement to execute. + A value that describes the results of the query and its effect on the database. + A MySqlDataReader object containing the result of the statement execution. + + + + + Sets the active connection. + + The active connection. + + + + CommandInterceptor is the "manager" class that keeps the list of registered interceptors + for the given connection. + + + + + BaseExceptionInterceptor is the base class that should be used for all userland + exception interceptors + + + + + Returns the received exception. + + The exception to be returned. + The exception originally received. + + + + Gets the active connection. + + + + + Initilizes this object by setting the active connection. + + The connection to become active. + + + + StandardExceptionInterceptor is the standard interceptor that simply throws the exception. + It is the default action. + + + + + ExceptionInterceptor is the "manager" class that keeps the list of registered interceptors + for the given connection. + + + + + Interceptor is the base class for the "manager" classes such as ExceptionInterceptor, + CommandInterceptor, etc + + + + + Return schema information about procedures and functions + Restrictions supported are: + schema, name, type + + + + + + + Return schema information about parameters for procedures and functions + Restrictions supported are: + schema, name, type, parameter name + + + + + Initializes a new row for the procedure parameters table. + + + + + Parses out the elements of a procedure parameter data type. + + + + + Implementation of memcached binary client protocol. + + According to http://code.google.com/p/memcached/wiki/BinaryProtocolRevamped + + + + Sends an store command (add, replace, set). + + + + + + + + + + + Sends a get command. + + + + + + + + + Sends a delete command. + + + + + + + + Sends a command without args (like flush). + + + + + + + + Sends a command with amount (INCR/DECR) + + + + + + + + + Encodes in the binary protocol the a command of the kind set, add or replace. + + + + + + + If true applies to set, add or replace commands; if false applies to append and prepend commands. + + + + + An interface of the client memcached protocol. This class is abstract for + implementation of the Memcached client interface see for the + text protocol version and for the binary protocol version. + + + + + The port used by the connection. + + + + + The server DNS or IP address used by the connection. + + + + + The network stream used by the connecition. + + + + + Factory method for creating instances of that implement a connection with the requested features. + The connection object returned must be explicitely opened see method . + + The Memcached server DNS or IP address. + The port for the Memcached server + A set of flags indicating characterestics requested. + An instance of a client connection ready to be used. + + + + Opens the client connection. + + + + + Closes the client connection. + + + + + Adds a new key/value pair with the given TimeSpan expiration. + + The key for identifying the entry. + The data to associate with the key. + The interval of timespan, use TimeSpan.Zero for no expiration. + + + + Appens the data to the existing data for the associated key. + + The key for identifying the entry. + The data to append with the data associated with the key. + + + + Executes the Check-and-set Memcached operation. + + The key for identifying the entry. + The data to use in the CAS. + The interval of timespan, use TimeSpan.Zero for no expiration. + The CAS unique value to use. + + + + + Decrements the value associated with a key by the given amount. + + The key associated with the value to decrement. + The amount to decrement the value. + + + + Removes they pair key/value given the specified key. + + + + + + Removes all entries from the storage, effectively invalidating the whole cache. + + The interval after which the cache will be cleaned. Can be TimeSpan.Zero for immediately. + + + + Get the key/value pair associated with a given key. + + The key for which to returm the key/value. + The key/value associated with the key or a MemcachedException if it does not exists. + + + + Increments the value associated with a key by the given amount. + + The key associated with the value to increment. + The amount to increment the value. + + + + Prepends the data to the existing data for the associated key. + + The key for identifying the entry. + The data to append with the data associated with the key. + + + + Replaces the value associated with the given key with another value. + + The key for identifying the entry. + The data to replace the value associated with the key. + The interval of timespan, use TimeSpan.Zero for no expiration. + + + + Set the value of a given key. + + The key for identifying the entry. + The data to associate with the given key. + The interval of timespan, use TimeSpan.Zero for no expiration. + + + + A set of flags for requesting new instances of connections + + + + + Requests a connection implememting the text protocol. + + + + + Requests a connection implementing the binary protocol. + + + + + Requests a TCP connection. Currently UDP is not supported. + + + + + The base exception class for all Memcached exceptions. + + + + + Implementation of the Memcached text client protocol. + + + + + Sends a command to the memcached server. + + + + + + + This version is for commands that take a key, data, expiration and casUnique. + + + + Sends a command to the memcached server. + + + + + + This version is for commands that take a key, data and expiration + + + + Send a command to memcached server. + + + + + This version is for commands that don't need flags neither expiration fields. + + + + Sends a command to the server. + + + + This version is for commands that only require a key + + + + Sends a command to the server. + + + + + This version is for commands that only require a key and an integer value. + + + + Sends a command to the server. + + + + This version is for commands that only require a key and expiration. + + + + Abstract class that provides common functionality for connection options that apply for all protocols. + + + + + Gets or sets the name of the server. + + The server. + + + + Gets or sets the name of the database for the initial connection. + + + + + Gets or sets the protocol that should be used for communicating + with MySQL. + + + + + Gets or sets the port number that is used when the socket + protocol is being used. + + + + + Gets or sets the connection timeout. + + + + + Gets or sets the user ID that should be used to connect with. + + + + + Gets or sets the password that should be used to make a connection. + + + + + Gets or sets the path to a certificate in PKCS#12 format (.pfx). + + + + + Gets or sets the password associated to the certificate file. + + + + + Gets or sets the certificate store location for client certificates. + + + + + Gets or sets a certificate thumbprint that can be used together with a certificate to ensure correct identification. + + + + + Indicates whether to use SSL connections and how to handle server certificate errors. + + + + + Gets or sets the idle connection time measured in seconds. + + + + + Gets or sets the character set that should be used for sending queries to the server. + + + + + Gets or sets the authentication mechanism to use with X Protocol connections. + + + + + Gets or sets the path to a local file that contains a list of trusted Certificate Authorities. + + + + + Gets or sets the path to a local file that contains certificate revocation lists. + + + + + Gets the connection string with or without the password. + + Flag to indicate if the password should be included in the connection string. + The connection string associated to this object. + + + + Analyzes the connection string for potential duplicated or invalid connection options. + + Connection string. + + + + Represents a set of methods for creating instances of the MySQL client implementation of the data source classes. + + + + + Gets an instance of the . + This can be used to retrieve strongly typed data objects. + + + + + Returns a strongly typed instance. + + A new strongly typed instance of DbCommand. + + + + Returns a strongly typed instance. + + A new strongly typed instance of DbConnection. + + + + Returns a strongly typed instance. + + A new strongly typed instance of DbParameter. + + + + Returns a strongly typed instance. + + A new strongly typed instance of DbConnectionStringBuilder. + + + + Provide a simple caching layer + + + + + Aids in the creation of connection strings by exposing the connection options as properties. + Contains connection options specific to the Classic protocol. + + + + + Gets or sets the name of the named pipe that should be used + for communicating with MySQL. + + + + + Gets or sets a boolean value that indicates whether this connection + should use compression. + + + + + Gets or sets a boolean value that indicates whether this connection will allow + commands to send multiple SQL statements in one execution. + + + + + Gets or sets a boolean value that indicates whether logging is enabled. + + + + + Gets or sets the base name of the shared memory objects used to + communicate with MySQL when the shared memory protocol is being used. + + + + + Gets or sets the default command timeout. + + + + + Gets or sets a boolean value that indicates if the password should be persisted + in the connection string. + + + + + Gets or sets a boolean value that indicates if Windows authentication should be used. + + + + + Gets or sets a boolean value that indicates whether the RSA public key should be retrieved from the server. + + + + + Gets or sets a boolean value that indicates if zero date time values are supported. + + + + + Gets or sets a boolean value indicating if zero datetime values should be + converted to DateTime.MinValue. + + + + + Gets or sets a boolean value indicating if the Usage Advisor should be enabled. + + + + + Gets or sets the size of the stored procedure cache. + + + + + Gets or sets a boolean value indicating if the permon hooks should be enabled. + + + + + Gets or sets a boolean value indicating if calls to Prepare() should be ignored. + + + + + Gets or sets a boolean value that indicates if an opened connection should particiapte in the current scope. + + + + + Gets or sets a boolean value that indicates if security asserts must be included. + + + + + Gets or sets a boolean value that indicates if column binary flags set by the server are ignored. + + + + + Gets or sets a boolean value that indicates if TINYINT(1) shound be treated as a BOOLEAN. + + + + + Gets or sets a boolean value that indicates if the provider expects user variables in the SQL. + + + + + Gets or sets a boolean value that indicates if the session should be interactive. + + + + + Gets or sets a boolean value that indicates if server functions should be treated as returning a string. + + + + + Gets or sets a boolean value that indicates if the server should report affected rows instead of found rows. + + + + + + + + + + Gets or sets a boolean value that indicates if items of data type BINARY(16) should be treated as guids. + + + + + Gets or sets a boolean value that indicates if caching of TableDirect commands is enabled. + + + + + Gets or sets the seconds for how long a TableDirect result should be cached. + + + + + Gets or sets a boolean value that indicates if stored routine parameters should be checked against the server. + + + + + Gets or sets a boolean value that indicates if this connection will use replication. + + + + + Gets or sets the list of interceptors that can triage thrown MySqlExceptions. + + + + + Gets or sets the list of interceptors that can intercept command operations. + + + + + Gets or sets the lifetime of a pooled connection. + + + + + Gets or sets a boolean value indicating if connection pooling is enabled. + + + + + Gets the minimum connection pool size. + + + + + Gets or sets the maximum connection pool setting. + + + + + Gets or sets a boolean value indicating if the connection should be reset when retrieved + from the pool. + + + + + Gets or sets a boolean value that indicates whether the server variable settings are updated by a SHOW VARIABLES command each time a pooled connection is returned. + + + + + Indicates whether the driver should treat binary blobs as UTF8 + + + + + Gets or sets the pattern that matches the columns that should be treated as UTF8 + + + + + Gets or sets the pattern that matches the columns that should not be treated as UTF8 + + + + + Gets or sets a boolean value that indicates if the command timeout of EFMySqlCommand should be enforced to the value provided in the DefaultCommandTimeout property. + + + + + Summary description for ClientParam. + + + + + DB Operations Code + + + + + Specifies MySQL specific data type of a field, property, for use in a . + + + + + + A fixed precision and scale numeric value between -1038 + -1 and 10 38 -1. + + + + + The signed range is -128 to 127. The unsigned + range is 0 to 255. + + + + + A 16-bit signed integer. The signed range is + -32768 to 32767. The unsigned range is 0 to 65535 + + + + + Specifies a 24 (3 byte) signed or unsigned value. + + + + + A 32-bit signed integer + + + + + A 64-bit signed integer. + + + + + A small (single-precision) floating-point + number. Allowable values are -3.402823466E+38 to -1.175494351E-38, + 0, and 1.175494351E-38 to 3.402823466E+38. + + + + + A normal-size (double-precision) + floating-point number. Allowable values are -1.7976931348623157E+308 + to -2.2250738585072014E-308, 0, and 2.2250738585072014E-308 to + 1.7976931348623157E+308. + + + + + A timestamp. The range is '1970-01-01 00:00:00' to sometime in the + year 2037 + + + + + Date The supported range is '1000-01-01' to '9999-12-31'. + + + + + Time The range is '-838:59:59' to '838:59:59'. + + + + + DateTime The supported range is '1000-01-01 00:00:00' to + '9999-12-31 23:59:59'. + + + + + Datetime The supported range is '1000-01-01 00:00:00' to + '9999-12-31 23:59:59'. + + + + + A year in 2- or 4-digit format (default is 4-digit). The + allowable values are 1901 to 2155, 0000 in the 4-digit year + format, and 1970-2069 if you use the 2-digit format (70-69). + + + + + Obsolete Use Datetime or Date type + + + + + A variable-length string containing 0 to 65535 characters + + + + + Bit-field data type + + + + + JSON + + + + + New Decimal + + + + + An enumeration. A string object that can have only one value, + chosen from the list of values 'value1', 'value2', ..., NULL + or the special "" error value. An ENUM can have a maximum of + 65535 distinct values + + + + + A set. A string object that can have zero or more values, each + of which must be chosen from the list of values 'value1', 'value2', + ... A SET can have a maximum of 64 members. + + + + + A binary column with a maximum length of 255 (2^8 - 1) + characters + + + + + A binary column with a maximum length of 16777215 (2^24 - 1) bytes. + + + + + A binary column with a maximum length of 4294967295 or + 4G (2^32 - 1) bytes. + + + + + A binary column with a maximum length of 65535 (2^16 - 1) bytes. + + + + + A variable-length string containing 0 to 255 bytes. + + + + + A fixed-length string. + + + + + Geometric (GIS) data type. + + + + + Unsigned 8-bit value. + + + + + Unsigned 16-bit value. + + + + + Unsigned 24-bit value. + + + + + Unsigned 32-bit value. + + + + + Unsigned 64-bit value. + + + + + Fixed length binary string. + + + + + Variable length binary string. + + + + + A text column with a maximum length of 255 (2^8 - 1) characters. + + + + + A text column with a maximum length of 16777215 (2^24 - 1) characters. + + + + + A text column with a maximum length of 4294967295 or + 4G (2^32 - 1) characters. + + + + + A text column with a maximum length of 65535 (2^16 - 1) characters. + + + + + A guid column + + + + + Allows the user to specify the type of connection that should + be used. + + + + + TCP/IP style connection. Works everywhere. + + + + + Named pipe connection. Works only on Windows systems. + + + + + Unix domain socket connection. Works only with Unix systems. + + + + + Shared memory connection. Currently works only with Windows systems. + + + + + SSL options for connection. + + + + + Do not use SSL. + + + + + Always use SSL. Deny connection if server does not support SSL. + Do not perform server certificate validation. + This is the default SSL mode when the same isn't specified as part of the connection string. + + + + + Always use SSL. Validate server SSL certificate, but different host name mismatch. + + + + + Always use SSL and perform full certificate validation. + + + + + Specifies the connection types supported + + + + + Use TCP/IP sockets. + + + + + Use client library. + + + + + Use MySQL embedded server. + + + + + Defines the location of the certificate store. + + + + + Do not use certificate store. + + + + + Use certificate store for the current user. + + + + + User certificate store for the machine. + + + + + Specifies the authentication mechanism that should be used. + + + + + If SSL is enabled or Unix sockets are being used, sets PLAIN as the authentication mechanism; + otherwise, it tries to use MYSQL41 and then SHA256_MEMORY. + + + + + Authenticate using PLAIN. + + + + + Authenticate using MYSQL41. + + + + + Authenticate using EXTERNAL. + + + + + Authenticate using SHA256_MEMORY. + + + + + Defines waiting options that may be used with row locking options. + + + + + Waits until the blocking transaction releases the row lock. + + + + + Never waits to acquire a row lock. The query executes immediately, + failing with an error if a requested row is locked. + + + + + Never waits to acquire a row lock. The query executes immediately, + removing locked rows from the result set. + + + + + Collection of error codes that can be returned by the server + + + + + + + + + + + Error level + + + + + Error code + + + + + Error message + + + + + Provides a reference to error codes returned by MySQL. + + + + + ER_HASHCHK + + + + ER_NISAMCHK + + + + ER_NO + + + + ER_YES + + + The file couldn't be created. + ER_CANT_CREATE_FILE + + + The table couldn't be created. + ER_CANT_CREATE_TABLE + + + The database couldn't be created. + ER_CANT_CREATE_DB + + + The database couldn't be created, it already exists. + ER_DB_CREATE_EXISTS + + + The database couldn't be dropped, it doesn't exist. + ER_DB_DROP_EXISTS + + + The database couldn't be dropped, the file can't be deleted. + ER_DB_DROP_DELETE + + + The database couldn't be dropped, the directory can't be deleted. + ER_DB_DROP_RMDIR + + + The file couldn't be deleted. + ER_CANT_DELETE_FILE + + + The record couldn't be read from the system table. + ER_CANT_FIND_SYSTEM_REC + + + The status couldn't be retrieved. + ER_CANT_GET_STAT + + + The working directory couldn't be retrieved. + ER_CANT_GET_WD + + + The file couldn't be locked. + ER_CANT_LOCK + + + The file couldn't be opened. + ER_CANT_OPEN_FILE + + + The file couldn't be found. + ER_FILE_NOT_FOUND + + + The directory couldn't be read. + ER_CANT_READ_DIR + + + The working directory couldn't be entered. + ER_CANT_SET_WD + + + The record changed since it was last read. + ER_CHECKREAD + + + The disk is full. + ER_DISK_FULL + + + + There is already a key with the given values. + + + + An error occurred when closing the file. + ER_ERROR_ON_CLOSE + + + An error occurred when reading from the file. + ER_ERROR_ON_READ + + + An error occurred when renaming then file. + ER_ERROR_ON_RENAME + + + An error occurred when writing to the file. + ER_ERROR_ON_WRITE + + + The file is in use. + ER_FILE_USED + + + Sorting has been aborted. + ER_FILSORT_ABORT + + + The view doesn't exist. + ER_FORM_NOT_FOUND + + + Got the specified error from the table storage engine. + ER_GET_ERRNO + + + The table storage engine doesn't support the specified option. + ER_ILLEGAL_HA + + + + The specified key was not found. + + + + The file contains incorrect information. + ER_NOT_FORM_FILE + + + The key file is incorrect for the table, it should be repaired. + ER_NOT_KEYFILE + + + The key file is old for the table, it should be repaired. + ER_OLD_KEYFILE + + + The table is read-only + ER_OPEN_AS_READONLY + + + The server is out of memory, it should be restarted. + ER_OUTOFMEMORY + + + The server is out of sort-memory, the sort buffer size should be increased. + ER_OUT_OF_SORTMEMORY + + + An unexpected EOF was found when reading from the file. + ER_UNEXPECTED_EOF + + + Too many connections are open. + ER_CON_COUNT_ERROR + + + The server is out of resources, check if MySql or some other process is using all available memory. + ER_OUT_OF_RESOURCES + + + + Given when the connection is unable to successfully connect to host. + + + + The handshake was invalid. + ER_HANDSHAKE_ERROR + + + Access was denied for the specified user using the specified database. + ER_DBACCESS_DENIED_ERROR + + + + Normally returned when an incorrect password is given + + + + No database has been selected. + ER_NO_DB_ERROR + + + The command is unknown. + ER_UNKNOWN_COM_ERROR + + + The specified column cannot be NULL. + ER_BAD_NULL_ERROR + + + The specified database is not known. + + + The specified table already exists. + ER_TABLE_EXISTS_ERROR + + + The specified table is unknown. + ER_BAD_TABLE_ERROR + + + The specified column is ambiguous. + ER_NON_UNIQ_ERROR + + + The server is currently being shutdown. + ER_SERVER_SHUTDOWN + + + The specified columns is unknown. + ER_BAD_FIELD_ERROR + + + The specified column isn't in GROUP BY. + ER_WRONG_FIELD_WITH_GROUP + + + The specified columns cannot be grouped on. + ER_WRONG_GROUP_FIELD + + + There are sum functions and columns in the same statement. + ER_WRONG_SUM_SELECT + + + The column count doesn't match the value count. + ER_WRONG_VALUE_COUNT + + + The identifier name is too long. + ER_TOO_LONG_IDENT + + + The column name is duplicated. + ER_DUP_FIELDNAME + + + + Duplicate Key Name + + + + + Duplicate Key Entry + + + + The column specifier is incorrect. + ER_WRONG_FIELD_SPEC + + + An error occurred when parsing the statement. + ER_PARSE_ERROR + + + The statement is empty. + ER_EMPTY_QUERY + + + The table alias isn't unique. + ER_NONUNIQ_TABLE + + + The default value is invalid for the specified field. + ER_INVALID_DEFAULT + + + The table has multiple primary keys defined. + ER_MULTIPLE_PRI_KEY + + + Too many keys were defined for the table. + ER_TOO_MANY_KEYS + + + Too many parts to the keys were defined for the table. + ER_TOO_MANY_KEY_PARTS + + + The specified key is too long + ER_TOO_LONG_KEY + + + The specified key column doesn't exist in the table. + ER_KEY_COLUMN_DOES_NOT_EXITS + + + The BLOB column was used as a key, this can't be done. + ER_BLOB_USED_AS_KEY + + + The column length is too big for the specified column type. + ER_TOO_BIG_FIELDLENGTH + + + There can only be one auto-column, and it must be defined as a PK. + ER_WRONG_AUTO_KEY + + + The server is ready to accept connections. + ER_READY + + + + ER_NORMAL_SHUTDOWN + + + The server received the specified signal and is aborting. + ER_GOT_SIGNAL + + + The server shutdown is complete. + ER_SHUTDOWN_COMPLETE + + + The server is forcing close of the specified thread. + ER_FORCING_CLOSE + + + An error occurred when creating the IP socket. + ER_IPSOCK_ERROR + + + The table has no index like the one used in CREATE INDEX. + ER_NO_SUCH_INDEX + + + The field separator argument is not what is expected, check the manual. + ER_WRONG_FIELD_TERMINATORS + + + The BLOB columns must terminated, fixed row lengths cannot be used. + ER_BLOBS_AND_NO_TERMINATED + + + The text file cannot be read. + ER_TEXTFILE_NOT_READABLE + + + The specified file already exists. + ER_FILE_EXISTS_ERROR + + + Information returned by the LOAD statement. + ER_LOAD_INFO + + + Information returned by an UPDATE statement. + ER_ALTER_INFO + + + The prefix key is incorrect. + ER_WRONG_SUB_KEY + + + All columns cannot be removed from a table, use DROP TABLE instead. + ER_CANT_REMOVE_ALL_FIELDS + + + Cannot DROP, check that the column or key exists. + ER_CANT_DROP_FIELD_OR_KEY + + + Information returned by an INSERT statement. + ER_INSERT_INFO + + + The target table cannot be specified for update in FROM clause. + ER_UPDATE_TABLE_USED + + + The specified thread ID is unknown. + ER_NO_SUCH_THREAD + + + The thread cannot be killed, the current user is not the owner. + ER_KILL_DENIED_ERROR + + + No tables used in the statement. + ER_NO_TABLES_USED + + + Too many string have been used for the specified column and SET. + ER_TOO_BIG_SET + + + A unique filename couldn't be generated. + ER_NO_UNIQUE_LOGFILE + + + The specified table was locked with a READ lock, and can't be updated. + ER_TABLE_NOT_LOCKED_FOR_WRITE + + + The specified table was not locked with LOCK TABLES. + ER_TABLE_NOT_LOCKED + + + BLOB and Text columns cannot have a default value. + ER_BLOB_CANT_HAVE_DEFAULT + + + The specified database name is incorrect. + ER_WRONG_DB_NAME + + + The specified table name is incorrect. + ER_WRONG_TABLE_NAME + + + The SELECT command would examine more than MAX_JOIN_SIZE rows, check the WHERE clause and use SET SQL_BIG_SELECTS=1 or SET SQL_MAX_JOIN_SIZE=# if the SELECT is ok. + ER_TOO_BIG_SELECT + + + An unknown error occurred. + ER_UNKNOWN_ERROR + + + The specified procedure is unknown. + ER_UNKNOWN_PROCEDURE + + + The number of parameters provided for the specified procedure is incorrect. + ER_WRONG_PARAMCOUNT_TO_PROCEDURE + + + The parameters provided for the specified procedure are incorrect. + ER_WRONG_PARAMETERS_TO_PROCEDURE + + + The specified table is unknown. + ER_UNKNOWN_TABLE + + + The specified column has been specified twice. + ER_FIELD_SPECIFIED_TWICE + + + The group function has been incorrectly used. + ER_INVALID_GROUP_FUNC_USE + + + The specified table uses an extension that doesn't exist in this MySQL version. + ER_UNSUPPORTED_EXTENSION + + + The table must have at least one column. + ER_TABLE_MUST_HAVE_COLUMNS + + + The specified table is full. + ER_RECORD_FILE_FULL + + + The specified character set is unknown. + ER_UNKNOWN_CHARACTER_SET + + + Too many tables, MySQL can only use the specified number of tables in a JOIN. + ER_TOO_MANY_TABLES + + + Too many columns + ER_TOO_MANY_FIELDS + + + The row size is too large, the maximum row size for the used tables (not counting BLOBS) is specified, change some columns or BLOBS. + ER_TOO_BIG_ROWSIZE + + + A thread stack overrun occurred. Stack statistics are specified. + ER_STACK_OVERRUN + + + A cross dependency was found in the OUTER JOIN, examine the ON conditions. + ER_WRONG_OUTER_JOIN + + + The table handler doesn't support NULL in the given index, change specified column to be NOT NULL or use another handler. + ER_NULL_COLUMN_IN_INDEX + + + The specified user defined function cannot be loaded. + ER_CANT_FIND_UDF + + + The specified user defined function cannot be initialised. + ER_CANT_INITIALIZE_UDF + + + No paths are allowed for the shared library. + ER_UDF_NO_PATHS + + + The specified user defined function already exists. + ER_UDF_EXISTS + + + The specified shared library cannot be opened. + ER_CANT_OPEN_LIBRARY + + + The specified symbol cannot be found in the library. + ER_CANT_FIND_DL_ENTRY + + + The specified function is not defined. + ER_FUNCTION_NOT_DEFINED + + + The specified host is blocked because of too many connection errors, unblock with 'mysqladmin flush-hosts'. + ER_HOST_IS_BLOCKED + + + + The given host is not allowed to connect + + + + + The anonymous user is not allowed to connect + + + + + The given password is not allowed + + + + + The given password does not match + + + + Information returned by an UPDATE statement. + ER_UPDATE_INFO + + + A new thread couldn't be created. + ER_CANT_CREATE_THREAD + + + The column count doesn't match the value count. + ER_WRONG_VALUE_COUNT_ON_ROW + + + The specified table can't be re-opened. + ER_CANT_REOPEN_TABLE + + + The NULL value has been used incorrectly. + ER_INVALID_USE_OF_NULL + + + The regular expression contains an error. + ER_REGEXP_ERROR + + + GROUP columns (MIN(), MAX(), COUNT(), ...) cannot be mixes with no GROUP columns if there is not GROUP BY clause. + ER_MIX_OF_GROUP_FUNC_AND_FIELDS + + + + ER_NONEXISTING_GRANT + + + + ER_TABLEACCESS_DENIED_ERROR + + + + ER_COLUMNACCESS_DENIED_ERROR + + + + ER_ILLEGAL_GRANT_FOR_TABLE + + + + ER_GRANT_WRONG_HOST_OR_USER + + + + ER_NO_SUCH_TABLE + + + + ER_NONEXISTING_TABLE_GRANT + + + + ER_NOT_ALLOWED_COMMAND + + + + ER_SYNTAX_ERROR + + + + ER_DELAYED_CANT_CHANGE_LOCK + + + + ER_TOO_MANY_DELAYED_THREADS + + + + ER_ABORTING_CONNECTION + + + + An attempt was made to send or receive a packet larger than + max_allowed_packet_size + + + + + ER_NET_READ_ERROR_FROM_PIPE + + + + ER_NET_FCNTL_ERROR + + + + ER_NET_PACKETS_OUT_OF_ORDER + + + + ER_NET_UNCOMPRESS_ERROR + + + + ER_NET_READ_ERROR + + + + ER_NET_READ_INTERRUPTED + + + + ER_NET_ERROR_ON_WRITE + + + + ER_NET_WRITE_INTERRUPTED + + + + ER_TOO_LONG_STRING + + + + ER_TABLE_CANT_HANDLE_BLOB + + + + ER_TABLE_CANT_HANDLE_AUTO_INCREMENT + + + + ER_DELAYED_INSERT_TABLE_LOCKED + + + + ER_WRONG_COLUMN_NAME + + + + ER_WRONG_KEY_COLUMN + + + + ER_WRONG_MRG_TABLE + + + + ER_DUP_UNIQUE + + + + ER_BLOB_KEY_WITHOUT_LENGTH + + + + ER_PRIMARY_CANT_HAVE_NULL + + + + ER_TOO_MANY_ROWS + + + + ER_REQUIRES_PRIMARY_KEY + + + + ER_NO_RAID_COMPILED + + + + ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE + + + + ER_KEY_DOES_NOT_EXITS + + + + ER_CHECK_NO_SUCH_TABLE + + + + ER_CHECK_NOT_IMPLEMENTED + + + + ER_CANT_DO_THIS_DURING_AN_TRANSACTION + + + + ER_ERROR_DURING_COMMIT + + + + ER_ERROR_DURING_ROLLBACK + + + + ER_ERROR_DURING_FLUSH_LOGS + + + + ER_ERROR_DURING_CHECKPOINT + + + + ER_NEW_ABORTING_CONNECTION + + + + ER_DUMP_NOT_IMPLEMENTED + + + + ER_FLUSH_MASTER_BINLOG_CLOSED + + + + ER_INDEX_REBUILD + + + + ER_MASTER + + + + ER_MASTER_NET_READ + + + + ER_MASTER_NET_WRITE + + + + ER_FT_MATCHING_KEY_NOT_FOUND + + + + ER_LOCK_OR_ACTIVE_TRANSACTION + + + + ER_UNKNOWN_SYSTEM_VARIABLE + + + + ER_CRASHED_ON_USAGE + + + + ER_CRASHED_ON_REPAIR + + + + ER_WARNING_NOT_COMPLETE_ROLLBACK + + + + ER_TRANS_CACHE_FULL + + + + ER_SLAVE_MUST_STOP + + + + ER_SLAVE_NOT_RUNNING + + + + ER_BAD_SLAVE + + + + ER_MASTER_INFO + + + + ER_SLAVE_THREAD + + + + ER_TOO_MANY_USER_CONNECTIONS + + + + ER_SET_CONSTANTS_ONLY + + + + ER_LOCK_WAIT_TIMEOUT + + + + ER_LOCK_TABLE_FULL + + + + ER_READ_ONLY_TRANSACTION + + + + ER_DROP_DB_WITH_READ_LOCK + + + + ER_CREATE_DB_WITH_READ_LOCK + + + + ER_WRONG_ARGUMENTS + + + + ER_NO_PERMISSION_TO_CREATE_USER + + + + ER_UNION_TABLES_IN_DIFFERENT_DIR + + + + ER_LOCK_DEADLOCK + + + + ER_TABLE_CANT_HANDLE_FT + + + + ER_CANNOT_ADD_FOREIGN + + + + ER_NO_REFERENCED_ROW + + + + ER_ROW_IS_REFERENCED + + + + ER_CONNECT_TO_MASTER + + + + ER_QUERY_ON_MASTER + + + + ER_ERROR_WHEN_EXECUTING_COMMAND + + + + ER_WRONG_USAGE + + + + ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT + + + + ER_CANT_UPDATE_WITH_READLOCK + + + + ER_MIXING_NOT_ALLOWED + + + + ER_DUP_ARGUMENT + + + + ER_USER_LIMIT_REACHED + + + + ER_SPECIFIC_ACCESS_DENIED_ERROR + + + + ER_LOCAL_VARIABLE + + + + ER_GLOBAL_VARIABLE + + + + ER_NO_DEFAULT + + + + ER_WRONG_VALUE_FOR_VAR + + + + ER_WRONG_TYPE_FOR_VAR + + + + ER_VAR_CANT_BE_READ + + + + ER_CANT_USE_OPTION_HERE + + + + ER_NOT_SUPPORTED_YET + + + + ER_MASTER_FATAL_ERROR_READING_BINLOG + + + + ER_SLAVE_IGNORED_TABLE + + + + ER_INCORRECT_GLOBAL_LOCAL_VAR + + + + ER_WRONG_FK_DEF + + + + ER_KEY_REF_DO_NOT_MATCH_TABLE_REF + + + + ER_OPERAND_COLUMNS + + + + ER_SUBQUERY_NO_1_ROW + + + + ER_UNKNOWN_STMT_HANDLER + + + + ER_CORRUPT_HELP_DB + + + + ER_CYCLIC_REFERENCE + + + + ER_AUTO_CONVERT + + + + ER_ILLEGAL_REFERENCE + + + + ER_DERIVED_MUST_HAVE_ALIAS + + + + ER_SELECT_REDUCED + + + + ER_TABLENAME_NOT_ALLOWED_HERE + + + + ER_NOT_SUPPORTED_AUTH_MODE + + + + ER_SPATIAL_CANT_HAVE_NULL + + + + ER_COLLATION_CHARSET_MISMATCH + + + + ER_SLAVE_WAS_RUNNING + + + + ER_SLAVE_WAS_NOT_RUNNING + + + + ER_TOO_BIG_FOR_UNCOMPRESS + + + + ER_ZLIB_Z_MEM_ERROR + + + + ER_ZLIB_Z_BUF_ERROR + + + + ER_ZLIB_Z_DATA_ERROR + + + + ER_CUT_VALUE_GROUP_CONCAT + + + + ER_WARN_TOO_FEW_RECORDS + + + + ER_WARN_TOO_MANY_RECORDS + + + + ER_WARN_NULL_TO_NOTNULL + + + + ER_WARN_DATA_OUT_OF_RANGE + + + + WARN_DATA_TRUNCATED + + + + ER_WARN_USING_OTHER_HANDLER + + + + ER_CANT_AGGREGATE_2COLLATIONS + + + + ER_DROP_USER + + + + ER_REVOKE_GRANTS + + + + ER_CANT_AGGREGATE_3COLLATIONS + + + + ER_CANT_AGGREGATE_NCOLLATIONS + + + + ER_VARIABLE_IS_NOT_STRUCT + + + + ER_UNKNOWN_COLLATION + + + + ER_SLAVE_IGNORED_SSL_PARAMS + + + + ER_SERVER_IS_IN_SECURE_AUTH_MODE + + + + ER_WARN_FIELD_RESOLVED + + + + ER_BAD_SLAVE_UNTIL_COND + + + + ER_MISSING_SKIP_SLAVE + + + + ER_UNTIL_COND_IGNORED + + + + ER_WRONG_NAME_FOR_INDEX + + + + ER_WRONG_NAME_FOR_CATALOG + + + + ER_WARN_QC_RESIZE + + + + ER_BAD_FT_COLUMN + + + + ER_UNKNOWN_KEY_CACHE + + + + ER_WARN_HOSTNAME_WONT_WORK + + + + ER_UNKNOWN_STORAGE_ENGINE + + + + ER_WARN_DEPRECATED_SYNTAX + + + + ER_NON_UPDATABLE_TABLE + + + + ER_FEATURE_DISABLED + + + + ER_OPTION_PREVENTS_STATEMENT + + + + ER_DUPLICATED_VALUE_IN_TYPE + + + + ER_TRUNCATED_WRONG_VALUE + + + + ER_TOO_MUCH_AUTO_TIMESTAMP_COLS + + + + ER_INVALID_ON_UPDATE + + + + ER_UNSUPPORTED_PS + + + + ER_GET_ERRMSG + + + + ER_GET_TEMPORARY_ERRMSG + + + + ER_UNKNOWN_TIME_ZONE + + + + ER_WARN_INVALID_TIMESTAMP + + + + ER_INVALID_CHARACTER_STRING + + + + ER_WARN_ALLOWED_PACKET_OVERFLOWED + + + + ER_CONFLICTING_DECLARATIONS + + + + ER_SP_NO_RECURSIVE_CREATE + + + + ER_SP_ALREADY_EXISTS + + + + ER_SP_DOES_NOT_EXIST + + + + ER_SP_DROP_FAILED + + + + ER_SP_STORE_FAILED + + + + ER_SP_LILABEL_MISMATCH + + + + ER_SP_LABEL_REDEFINE + + + + ER_SP_LABEL_MISMATCH + + + + ER_SP_UNINIT_VAR + + + + ER_SP_BADSELECT + + + + ER_SP_BADRETURN + + + + ER_SP_BADSTATEMENT + + + + ER_UPDATE_LOG_DEPRECATED_IGNORED + + + + ER_UPDATE_LOG_DEPRECATED_TRANSLATED + + + + ER_QUERY_INTERRUPTED + + + + ER_SP_WRONG_NO_OF_ARGS + + + + ER_SP_COND_MISMATCH + + + + ER_SP_NORETURN + + + + ER_SP_NORETURNEND + + + + ER_SP_BAD_CURSOR_QUERY + + + + ER_SP_BAD_CURSOR_SELECT + + + + ER_SP_CURSOR_MISMATCH + + + + ER_SP_CURSOR_ALREADY_OPEN + + + + ER_SP_CURSOR_NOT_OPEN + + + + ER_SP_UNDECLARED_VAR + + + + ER_SP_WRONG_NO_OF_FETCH_ARGS + + + + ER_SP_FETCH_NO_DATA + + + + ER_SP_DUP_PARAM + + + + ER_SP_DUP_VAR + + + + ER_SP_DUP_COND + + + + ER_SP_DUP_CURS + + + + ER_SP_CANT_ALTER + + + + ER_SP_SUBSELECT_NYI + + + + ER_STMT_NOT_ALLOWED_IN_SF_OR_TRG + + + + ER_SP_VARCOND_AFTER_CURSHNDLR + + + + ER_SP_CURSOR_AFTER_HANDLER + + + + ER_SP_CASE_NOT_FOUND + + + + ER_FPARSER_TOO_BIG_FILE + + + + ER_FPARSER_BAD_HEADER + + + + ER_FPARSER_EOF_IN_COMMENT + + + + ER_FPARSER_ERROR_IN_PARAMETER + + + + ER_FPARSER_EOF_IN_UNKNOWN_PARAMETER + + + + ER_VIEW_NO_EXPLAIN + + + + ER_FRM_UNKNOWN_TYPE + + + + ER_WRONG_OBJECT + + + + ER_NONUPDATEABLE_COLUMN + + + + ER_VIEW_SELECT_DERIVED + + + + ER_VIEW_SELECT_CLAUSE + + + + ER_VIEW_SELECT_VARIABLE + + + + ER_VIEW_SELECT_TMPTABLE + + + + ER_VIEW_WRONG_LIST + + + + ER_WARN_VIEW_MERGE + + + + ER_WARN_VIEW_WITHOUT_KEY + + + + ER_VIEW_INVALID + + + + ER_SP_NO_DROP_SP + + + + ER_SP_GOTO_IN_HNDLR + + + + ER_TRG_ALREADY_EXISTS + + + + ER_TRG_DOES_NOT_EXIST + + + + ER_TRG_ON_VIEW_OR_TEMP_TABLE + + + + ER_TRG_CANT_CHANGE_ROW + + + + ER_TRG_NO_SUCH_ROW_IN_TRG + + + + ER_NO_DEFAULT_FOR_FIELD + + + + ER_DIVISION_BY_ZERO + + + + ER_TRUNCATED_WRONG_VALUE_FOR_FIELD + + + + ER_ILLEGAL_VALUE_FOR_TYPE + + + + ER_VIEW_NONUPD_CHECK + + + + ER_VIEW_CHECK_FAILED + + + + ER_PROCACCESS_DENIED_ERROR + + + + ER_RELAY_LOG_FAIL + + + + ER_PASSWD_LENGTH + + + + ER_UNKNOWN_TARGET_BINLOG + + + + ER_IO_ERR_LOG_INDEX_READ + + + + ER_BINLOG_PURGE_PROHIBITED + + + + ER_FSEEK_FAIL + + + + ER_BINLOG_PURGE_FATAL_ERR + + + + ER_LOG_IN_USE + + + + ER_LOG_PURGE_UNKNOWN_ERR + + + + ER_RELAY_LOG_INIT + + + + ER_NO_BINARY_LOGGING + + + + ER_RESERVED_SYNTAX + + + + ER_WSAS_FAILED + + + + ER_DIFF_GROUPS_PROC + + + + ER_NO_GROUP_FOR_PROC + + + + ER_ORDER_WITH_PROC + + + + ER_LOGGING_PROHIBIT_CHANGING_OF + + + + ER_NO_FILE_MAPPING + + + + ER_WRONG_MAGIC + + + + ER_PS_MANY_PARAM + + + + ER_KEY_PART_0 + + + + ER_VIEW_CHECKSUM + + + + ER_VIEW_MULTIUPDATE + + + + ER_VIEW_NO_INSERT_FIELD_LIST + + + + ER_VIEW_DELETE_MERGE_VIEW + + + + ER_CANNOT_USER + + + + ER_XAER_NOTA + + + + ER_XAER_INVAL + + + + ER_XAER_RMFAIL + + + + ER_XAER_OUTSIDE + + + + ER_XAER_RMERR + + + + ER_XA_RBROLLBACK + + + + ER_NONEXISTING_PROC_GRANT + + + + ER_PROC_AUTO_GRANT_FAIL + + + + ER_PROC_AUTO_REVOKE_FAIL + + + + ER_DATA_TOO_LONG + + + + ER_SP_BAD_SQLSTATE + + + + ER_STARTUP + + + + ER_LOAD_FROM_FIXED_SIZE_ROWS_TO_VAR + + + + ER_CANT_CREATE_USER_WITH_GRANT + + + + ER_WRONG_VALUE_FOR_TYPE + + + + ER_TABLE_DEF_CHANGED + + + + ER_SP_DUP_HANDLER + + + + ER_SP_NOT_VAR_ARG + + + + ER_SP_NO_RETSET + + + + ER_CANT_CREATE_GEOMETRY_OBJECT + + + + ER_FAILED_ROUTINE_BREAK_BINLOG + + + + ER_BINLOG_UNSAFE_ROUTINE + + + + ER_BINLOG_CREATE_ROUTINE_NEED_SUPER + + + + ER_EXEC_STMT_WITH_OPEN_CURSOR + + + + ER_STMT_HAS_NO_OPEN_CURSOR + + + + ER_COMMIT_NOT_ALLOWED_IN_SF_OR_TRG + + + + ER_NO_DEFAULT_FOR_VIEW_FIELD + + + + ER_SP_NO_RECURSION + + + + ER_TOO_BIG_SCALE + + + + ER_TOO_BIG_PRECISION + + + + ER_M_BIGGER_THAN_D + + + + ER_WRONG_LOCK_OF_SYSTEM_TABLE + + + + ER_CONNECT_TO_FOREIGN_DATA_SOURCE + + + + ER_QUERY_ON_FOREIGN_DATA_SOURCE + + + + ER_FOREIGN_DATA_SOURCE_DOESNT_EXIST + + + + ER_FOREIGN_DATA_STRING_INVALID_CANT_CREATE + + + + ER_FOREIGN_DATA_STRING_INVALID + + + + ER_CANT_CREATE_FEDERATED_TABLE + + + + ER_TRG_IN_WRONG_SCHEMA + + + + ER_STACK_OVERRUN_NEED_MORE + + + + ER_TOO_LONG_BODY + + + + ER_WARN_CANT_DROP_DEFAULT_KEYCACHE + + + + ER_TOO_BIG_DISPLAYWIDTH + + + + ER_XAER_DUPID + + + + ER_DATETIME_FUNCTION_OVERFLOW + + + + ER_CANT_UPDATE_USED_TABLE_IN_SF_OR_TRG + + + + ER_VIEW_PREVENT_UPDATE + + + + ER_PS_NO_RECURSION + + + + ER_SP_CANT_SET_AUTOCOMMIT + + + + ER_MALFORMED_DEFINER + + + + ER_VIEW_FRM_NO_USER + + + + ER_VIEW_OTHER_USER + + + + ER_NO_SUCH_USER + + + + ER_FORBID_SCHEMA_CHANGE + + + + ER_ROW_IS_REFERENCED_2 + + + + ER_NO_REFERENCED_ROW_2 + + + + ER_SP_BAD_VAR_SHADOW + + + + ER_TRG_NO_DEFINER + + + + ER_OLD_FILE_FORMAT + + + + ER_SP_RECURSION_LIMIT + + + + ER_SP_PROC_TABLE_CORRUPT + + + + ER_SP_WRONG_NAME + + + + ER_TABLE_NEEDS_UPGRADE + + + + ER_SP_NO_AGGREGATE + + + + ER_MAX_PREPARED_STMT_COUNT_REACHED + + + + ER_VIEW_RECURSIVE + + + + ER_NON_GROUPING_FIELD_USED + + + + ER_TABLE_CANT_HANDLE_SPKEYS + + + + ER_NO_TRIGGERS_ON_SYSTEM_SCHEMA + + + + ER_REMOVED_SPACES + + + + ER_AUTOINC_READ_FAILED + + + + ER_USERNAME + + + + ER_HOSTNAME + + + + ER_WRONG_STRING_LENGTH + + + + ER_NON_INSERTABLE_TABLE + + + + ER_ADMIN_WRONG_MRG_TABLE + + + + ER_TOO_HIGH_LEVEL_OF_NESTING_FOR_SELECT + + + + ER_NAME_BECOMES_EMPTY + + + + ER_AMBIGUOUS_FIELD_TERM + + + + ER_FOREIGN_SERVER_EXISTS + + + + ER_FOREIGN_SERVER_DOESNT_EXIST + + + + ER_ILLEGAL_HA_CREATE_OPTION + + + + ER_PARTITION_REQUIRES_VALUES_ERROR + + + + ER_PARTITION_WRONG_VALUES_ERROR + + + + ER_PARTITION_MAXVALUE_ERROR + + + + ER_PARTITION_SUBPARTITION_ERROR + + + + ER_PARTITION_SUBPART_MIX_ERROR + + + + ER_PARTITION_WRONG_NO_PART_ERROR + + + + ER_PARTITION_WRONG_NO_SUBPART_ERROR + + + + ER_WRONG_EXPR_IN_PARTITION_FUNC_ERROR + + + + ER_NO_CONST_EXPR_IN_RANGE_OR_LIST_ERROR + + + + ER_FIELD_NOT_FOUND_PART_ERROR + + + + ER_LIST_OF_FIELDS_ONLY_IN_HASH_ERROR + + + + ER_INCONSISTENT_PARTITION_INFO_ERROR + + + + ER_PARTITION_FUNC_NOT_ALLOWED_ERROR + + + + ER_PARTITIONS_MUST_BE_DEFINED_ERROR + + + + ER_RANGE_NOT_INCREASING_ERROR + + + + ER_INCONSISTENT_TYPE_OF_FUNCTIONS_ERROR + + + + ER_MULTIPLE_DEF_CONST_IN_LIST_PART_ERROR + + + + ER_PARTITION_ENTRY_ERROR + + + + ER_MIX_HANDLER_ERROR + + + + ER_PARTITION_NOT_DEFINED_ERROR + + + + ER_TOO_MANY_PARTITIONS_ERROR + + + + ER_SUBPARTITION_ERROR + + + + ER_CANT_CREATE_HANDLER_FILE + + + + ER_BLOB_FIELD_IN_PART_FUNC_ERROR + + + + ER_UNIQUE_KEY_NEED_ALL_FIELDS_IN_PF + + + + ER_NO_PARTS_ERROR + + + + ER_PARTITION_MGMT_ON_NONPARTITIONED + + + + ER_FOREIGN_KEY_ON_PARTITIONED + + + + ER_DROP_PARTITION_NON_EXISTENT + + + + ER_DROP_LAST_PARTITION + + + + ER_COALESCE_ONLY_ON_HASH_PARTITION + + + + ER_REORG_HASH_ONLY_ON_SAME_NO + + + + ER_REORG_NO_PARAM_ERROR + + + + ER_ONLY_ON_RANGE_LIST_PARTITION + + + + ER_ADD_PARTITION_SUBPART_ERROR + + + + ER_ADD_PARTITION_NO_NEW_PARTITION + + + + ER_COALESCE_PARTITION_NO_PARTITION + + + + ER_REORG_PARTITION_NOT_EXIST + + + + ER_SAME_NAME_PARTITION + + + + ER_NO_BINLOG_ERROR + + + + ER_CONSECUTIVE_REORG_PARTITIONS + + + + ER_REORG_OUTSIDE_RANGE + + + + ER_PARTITION_FUNCTION_FAILURE + + + + ER_PART_STATE_ERROR + + + + ER_LIMITED_PART_RANGE + + + + ER_PLUGIN_IS_NOT_LOADED + + + + ER_WRONG_VALUE + + + + ER_NO_PARTITION_FOR_GIVEN_VALUE + + + + ER_FILEGROUP_OPTION_ONLY_ONCE + + + + ER_CREATE_FILEGROUP_FAILED + + + + ER_DROP_FILEGROUP_FAILED + + + + ER_TABLESPACE_AUTO_EXTEND_ERROR + + + + ER_WRONG_SIZE_NUMBER + + + + ER_SIZE_OVERFLOW_ERROR + + + + ER_ALTER_FILEGROUP_FAILED + + + + ER_BINLOG_ROW_LOGGING_FAILED + + + + ER_BINLOG_ROW_WRONG_TABLE_DEF + + + + ER_BINLOG_ROW_RBR_TO_SBR + + + + ER_EVENT_ALREADY_EXISTS + + + + ER_EVENT_STORE_FAILED + + + + ER_EVENT_DOES_NOT_EXIST + + + + ER_EVENT_CANT_ALTER + + + + ER_EVENT_DROP_FAILED + + + + ER_EVENT_INTERVAL_NOT_POSITIVE_OR_TOO_BIG + + + + ER_EVENT_ENDS_BEFORE_STARTS + + + + ER_EVENT_EXEC_TIME_IN_THE_PAST + + + + ER_EVENT_OPEN_TABLE_FAILED + + + + ER_EVENT_NEITHER_M_EXPR_NOR_M_AT + + + + ER_COL_COUNT_DOESNT_MATCH_CORRUPTED + + + + ER_CANNOT_LOAD_FROM_TABLE + + + + ER_EVENT_CANNOT_DELETE + + + + ER_EVENT_COMPILE_ERROR + + + + ER_EVENT_SAME_NAME + + + + ER_EVENT_DATA_TOO_LONG + + + + ER_DROP_INDEX_FK + + + + ER_WARN_DEPRECATED_SYNTAX_WITH_VER + + + + ER_CANT_WRITE_LOCK_LOG_TABLE + + + + ER_CANT_LOCK_LOG_TABLE + + + + ER_FOREIGN_DUPLICATE_KEY + + + + ER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE + + + + ER_TEMP_TABLE_PREVENTS_SWITCH_OUT_OF_RBR + + + + ER_STORED_FUNCTION_PREVENTS_SWITCH_BINLOG_FORMAT + + + + ER_NDB_CANT_SWITCH_BINLOG_FORMAT + + + + ER_PARTITION_NO_TEMPORARY + + + + ER_PARTITION_CONST_DOMAIN_ERROR + + + + ER_PARTITION_FUNCTION_IS_NOT_ALLOWED + + + + ER_DDL_LOG_ERROR + + + + ER_NULL_IN_VALUES_LESS_THAN + + + + ER_WRONG_PARTITION_NAME + + + + ER_CANT_CHANGE_TRANSACTION_ISOLATION + + + + ER_DUP_ENTRY_AUTOINCREMENT_CASE + + + + ER_EVENT_MODIFY_QUEUE_ERROR + + + + ER_EVENT_SET_VAR_ERROR + + + + ER_PARTITION_MERGE_ERROR + + + + ER_CANT_ACTIVATE_LOG + + + + ER_RBR_NOT_AVAILABLE + + + + ER_BASE64_DECODE_ERROR + + + + ER_EVENT_RECURSION_FORBIDDEN + + + + ER_EVENTS_DB_ERROR + + + + ER_ONLY_INTEGERS_ALLOWED + + + + ER_UNSUPORTED_LOG_ENGINE + + + + ER_BAD_LOG_STATEMENT + + + + ER_CANT_RENAME_LOG_TABLE + + + + ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT + + + + ER_WRONG_PARAMETERS_TO_NATIVE_FCT + + + + ER_WRONG_PARAMETERS_TO_STORED_FCT + + + + ER_NATIVE_FCT_NAME_COLLISION + + + + ER_DUP_ENTRY_WITH_KEY_NAME + + + + ER_BINLOG_PURGE_EMFILE + + + + ER_EVENT_CANNOT_CREATE_IN_THE_PAST + + + + ER_EVENT_CANNOT_ALTER_IN_THE_PAST + + + + ER_SLAVE_INCIDENT + + + + ER_NO_PARTITION_FOR_GIVEN_VALUE_SILENT + + + + ER_BINLOG_UNSAFE_STATEMENT + + + + ER_SLAVE_FATAL_ERROR + + + + ER_SLAVE_RELAY_LOG_READ_FAILURE + + + + ER_SLAVE_RELAY_LOG_WRITE_FAILURE + + + + ER_SLAVE_CREATE_EVENT_FAILURE + + + + ER_SLAVE_MASTER_COM_FAILURE + + + + ER_BINLOG_LOGGING_IMPOSSIBLE + + + + ER_VIEW_NO_CREATION_CTX + + + + ER_VIEW_INVALID_CREATION_CTX + + + + ER_SR_INVALID_CREATION_CTX + + + + ER_TRG_CORRUPTED_FILE + + + + ER_TRG_NO_CREATION_CTX + + + + ER_TRG_INVALID_CREATION_CTX + + + + ER_EVENT_INVALID_CREATION_CTX + + + + ER_TRG_CANT_OPEN_TABLE + + + + ER_CANT_CREATE_SROUTINE + + + + ER_SLAVE_AMBIGOUS_EXEC_MODE + + + + ER_NO_FORMAT_DESCRIPTION_EVENT_BEFORE_BINLOG_STATEMENT + + + + ER_SLAVE_CORRUPT_EVENT + + + + ER_LOAD_DATA_INVALID_COLUMN + + + + ER_LOG_PURGE_NO_FILE + + + + ER_XA_RBTIMEOUT + + + + ER_XA_RBDEADLOCK + + + + ER_NEED_REPREPARE + + + + ER_DELAYED_NOT_SUPPORTED + + + + WARN_NO_MASTER_INFO + + + + WARN_OPTION_IGNORED + + + + WARN_PLUGIN_DELETE_BUILTIN + + + + WARN_PLUGIN_BUSY + + + + ER_VARIABLE_IS_READONLY + + + + ER_WARN_ENGINE_TRANSACTION_ROLLBACK + + + + ER_SLAVE_HEARTBEAT_FAILURE + + + + ER_SLAVE_HEARTBEAT_VALUE_OUT_OF_RANGE + + + + ER_NDB_REPLICATION_SCHEMA_ERROR + + + + ER_CONFLICT_FN_PARSE_ERROR + + + + ER_EXCEPTIONS_WRITE_ERROR + + + + ER_TOO_LONG_TABLE_COMMENT + + + + ER_TOO_LONG_FIELD_COMMENT + + + + ER_FUNC_INEXISTENT_NAME_COLLISION + + + + ER_DATABASE_NAME + + + + ER_TABLE_NAME + + + + ER_PARTITION_NAME + + + + ER_SUBPARTITION_NAME + + + + ER_TEMPORARY_NAME + + + + ER_RENAMED_NAME + + + + ER_TOO_MANY_CONCURRENT_TRXS + + + + WARN_NON_ASCII_SEPARATOR_NOT_IMPLEMENTED + + + + ER_DEBUG_SYNC_TIMEOUT + + + + ER_DEBUG_SYNC_HIT_LIMIT + + + + ER_ERROR_LAST + + + + WriteInteger + + + + + + + Summary description for MySqlPool. + + + + + It is assumed that this property will only be used from inside an active + lock. + + + + + Indicates whether this pool is being cleared. + + + + + It is assumed that this method is only called from inside an active lock. + + + + + It is assumed that this method is only called from inside an active lock. + + + + + Removes a connection from the in use pool. The only situations where this method + would be called are when a connection that is in use gets some type of fatal exception + or when the connection is being returned to the pool and it's too old to be + returned. + + + + + + Clears this pool of all idle connections and marks this pool and being cleared + so all other connections are closed when they are returned. + + + + + Remove expired drivers from the idle pool + + + + Closing driver is a potentially lengthy operation involving network + IO. Therefore we do not close expired drivers while holding + idlePool.SyncRoot lock. We just remove the old drivers from the idle + queue and return them to the caller. The caller will need to close + them (or let GC close them) + + + + + Summary description for MySqlPoolManager. + + + + + Remove drivers that have been idle for too long. + + + + + Provides a class capable of executing a SQL script containing + multiple SQL statements including CREATE PROCEDURE statements + that require changing the delimiter + + + + + Handles the event raised whenever a statement is executed. + + + + + Handles the event raised whenever an error is raised by the execution of a script. + + + + + Handles the event raised whenever a script execution is finished. + + + + + Initializes a new instance of the + class. + + + + + Initializes a new instance of the + class. + + The connection. + + + + Initializes a new instance of the + class. + + The query. + + + + Initializes a new instance of the + class. + + The connection. + The query. + + + + Gets or sets the connection. + + The connection. + + + + Gets or sets the query. + + The query. + + + + Gets or sets the delimiter. + + The delimiter. + + + + Executes this instance. + + The number of statements executed as part of the script. + + + + Initiates the asynchronous execution of SQL statements. + + The number of statements executed as part of the script inside. + + + + Initiates the asynchronous execution of SQL statements. + + The cancellation token. + The number of statements executed as part of the script inside. + + + + Represents the method that will handle errors when executing MySQL statements. + + + + + Represents the method that will handle errors when executing MySQL scripts. + + + + + Sets the arguments associated to MySQL scripts. + + + + + Gets the statement text. + + The statement text. + + + + Gets the line. + + The line. + + + + Gets the position. + + The position. + + + + Sets the arguments associated to MySQL script errors. + + + + + Initializes a new instance of the class. + + The exception. + + + + Gets the exception. + + The exception. + + + + Gets or sets a value indicating whether this is ignore. + + true if ignore; otherwise, false. + + + + Summary description for MySqlStream. + + + + + ReadPacket is called by NativeDriver to start reading the next + packet on the stream. + + + + + Reads the specified number of bytes from the stream and stores them at given + offset in the buffer. + Throws EndOfStreamException if not all bytes can be read. + + Stream to read from + Array to store bytes read from the stream + The offset in buffer at which to begin storing the data read from the current stream. + Number of bytes to read + + + + LoadPacket loads up and decodes the header of the incoming packet. + + + + + Traces information about the client execution. + + + + + Gets the list of trace listeners. + + + + + Gets or sets the switch to control tracing and debugging. + + + + + Gets or sets a flag indicating if query analysis is enabled. + + + + + Enables query analysis. + + The host on which to enable query analysis. + The interval of time for logging trace information. + + + + Disables query analysis. + + + + + Specifies the types of warning flags. + + + + + No index exists. + + + + + Bad index exists. + + + + + Rows have been excluded from the result. + + + + + Columns have been excluded from the result. + + + + + Type conversions took place. + + + + + Specifies the event that triggered the trace. + + + + + A connection has been opened. + + + + + A connection has been closed. + + + + + A query has been executed. + + + + + Data has been retrieved from the resultset. + + + + + Data retrieval has ended. + + + + + Query execution has ended. + + + + + The statement to be executed has been created. + + + + + The statement has been executed. + + + + + The statement is no longer required. + + + + + The query provided is of a nonquery type. + + + + + Usage advisor warnings have been requested. + + + + + Noncritical problem. + + + + + An error has been raised during data retrieval. + + + + + The query has been normalized. + + + + + Summary description for Driver. + + + + + Sets the current database for the this connection + + + + + + Return the appropriate set of connection flags for our + server capabilities and our user requested options. + + + + + Query is the method that is called to send all queries to the server + + + + + Sends the specified file to the server. + This supports the LOAD DATA LOCAL INFILE + + + + + + FetchDataRow is the method that the data reader calls to see if there is another + row to fetch. In the non-prepared mode, it will simply read the next data packet. + In the prepared mode (statementId > 0), it will + + + + + Execution timeout, in milliseconds. When the accumulated time for network IO exceeds this value + TimeoutException is thrown. This timeout needs to be reset for every new command + + + + + + Summary description for PreparedStatement. + + + + + Prepares CommandText for use with the Prepare method + + Command text stripped of all paramter names + + Takes the output of TokenizeSql and creates a single string of SQL + that only contains '?' markers for each parameter. It also creates + the parameterMap array list that includes all the paramter names in the + order they appeared in the SQL + + + + + Used to define a Replication configurarion element in configuration file. + + + + + Gets a collection of ReplicationServerGroupConfigurationElement objects representing the server groups. + + + + + Used to define a Replication server group in configuration file. + + + + + Gets or sets the name of the replication server group configuration. + + + + + Gets or sets the group type of the replication server group configuration. + + + + + Gets or sets the number of seconds to wait for retry. + + + + + Gets a collection of ReplicationServerConfigurationElement objects representing the server configurations associated to this group configuration. + + + + + Defines a Replication server in configuration file. + + + + + Gets or sets the name of the replication server configuration. + + + + + Gets or sets whether the replication server is configured as master. + + + + + Gets or sets the connection string associated to this replication server. + + + + + Manager for Replication and Load Balancing features + + + + + Returns Replication Server Group List + + + + + Adds a Default Server Group to the list + + Group name + Time between reconnections for failed servers + Replication Server Group added + + + + Adds a Server Group to the list + + Group name + ServerGroup type reference + Time between reconnections for failed servers + Server Group added + + + + Gets the next server from a replication group + + Group name + True if the server to return must be a master + Replication Server defined by the Load Balancing plugin + + + + Gets a Server Group by name + + Group name + Server Group if found, otherwise throws an MySqlException + + + + Validates if the replication group name exists + + Group name to validate + True if replication group name is found, otherwise false + + + + Assigns a new server driver to the connection object + + Group name + True if the server connection to assign must be a master + MySqlConnection object where the new driver will be assigned + + + + Class that implements Round Robing Load Balancing technique + + + + + Gets an available server based on Round Robin load balancing + + True if the server to return must be a master + Next available server + + + + Represents a server in Replication environment + + + + + Server name + + + + + Defines if the server is master (True) or slave + + + + + Connection string used to connect to the server + + + + + Defines if the server is available to be considered in load balancing + + + + + Base class used to implement load balancing features. + + + + + List of servers available for replication. + + + + Group name + + + + + The name of the group. + + + + + The retry time between connections to failed servers. + + + + + The server list in the group. + + + + + Adds a server into the group. + + The server name. + true if the server to add is master; otherwise false for slave server. + The connection string used by this server. + + + + + Removes a server from a group. + + The server name. + + + + Gets a server by name. + + The server name + A replication server. + + + + Must be implemented. Defines the next server for a custom load balancing implementation. + + Defines if the server to return is a master or any. + Next server based on the load balancing implementation. + null if no available server is found. + + + + + Defines the next server for a custom load balancing implementation. + + Defines if the server to return is a master or any. + Currently not being used. + The next server based on the load balancing implementation. Null if no available server is found. + + + + Handles a failed connection to a server. + This method can be overriden to implement a custom failover handling + + The failed server. + + + + Handles a failed connection to a server. + + The failed server. + The exception that caused the failover. + + + + return the ordinal for the given column name + + + + + + + Retrieve the value as the given column index + + The column value to retrieve + The value as the given column + + + + Closes the current resultset, dumping any data still on the wire + + + + + Loads the column metadata for the current resultset + + + + + Represents a schema and its contents. + + + + + Gets or sets the name of the schema. + + + + + Gets the list of columns in the schema. + + + + + Gets the list of rows in the schema. + + + + + Represents a row within a schema. + + + + + Represents a column within a schema. + + + + + The name of the column. + + + + + The type of the column. + + + + + GetForeignKeysOnTable retrieves the foreign keys on the given table. + Since MySQL supports foreign keys on versions prior to 5.0, we can't use + information schema. MySQL also does not include any type of SHOW command + for foreign keys so we have to resort to use SHOW CREATE TABLE and parsing + the output. + + The table to store the key info in. + The table to get the foeign key info for. + Only get foreign keys that match this name. + Should column information be included in the table. + + + + Serializes the given parameter to the given memory stream + + + This method is called by PrepareSqlBuffers to convert the given + parameter to bytes and write those bytes to the given memory stream. + + + True if the parameter was successfully serialized, false otherwise. + + + + Summary description for StoredProcedure. + + + + + Defines the basic operations to be performed on the table cache. + + + + + The max allowed age for the cache entry. + + + + + Adds the given command and result set to the cache. + + The command to store in the cache. + The resultset associated to the stored command. + + + + Retrieves the specified command from the cache. + + The command to retrieve. + The allowed age for the cache entry. + + + + + Removes the specified command from the cache. + + The command to remove from the cache. + + + + Clears the cache. + + + + + Removes cache entries older than the value defined by MaxCacheAge. + + + + + Stream that supports timeout of IO operations. + This class is used is used to support timeouts for SQL command, where a + typical operation involves several network reads/writes. + Timeout here is defined as the accumulated duration of all IO operations. + + + + + Construct a TimedStream + + Undelying stream + + + + Figure out whether it is necessary to reset timeout on stream. + We track the current value of timeout and try to avoid + changing it too often, because setting Read/WriteTimeout property + on network stream maybe a slow operation that involves a system call + (setsockopt). Therefore, we allow a small difference, and do not + reset timeout if current value is slightly greater than the requested + one (within 0.1 second). + + + + + Common handler for IO exceptions. + Resets timeout to infinity if timeout exception is + detected and stops the times. + + original exception + + + + Represents a SQL transaction to be made in a MySQL database. This class cannot be inherited. + + The application creates a MySqlTransaction object by calling + on the object. All subsequent operations associated with the + transaction (for example, committing or aborting the transaction), are performed on the + MySqlTransaction object. + + The following example creates a and a MySqlTransaction. + It also demonstrates how to use the , + , and methods. + + Public Sub RunTransaction(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + + Dim myCommand As MySqlCommand = myConnection.CreateCommand() + Dim myTrans As MySqlTransaction + + ' Start a local transaction + myTrans = myConnection.BeginTransaction() + ' Must assign both transaction object and connection + ' to Command object for a pending local transaction + myCommand.Connection = myConnection + myCommand.Transaction = myTrans + + Try + myCommand.CommandText = "Insert into Region (RegionID, RegionDescription) VALUES (100, 'Description')" + myCommand.ExecuteNonQuery() + myCommand.CommandText = "Insert into Region (RegionID, RegionDescription) VALUES (101, 'Description')" + myCommand.ExecuteNonQuery() + myTrans.Commit() + Console.WriteLine("Both records are written to database.") + Catch e As Exception + Try + myTrans.Rollback() + Catch ex As MySqlException + If Not myTrans.Connection Is Nothing Then + Console.WriteLine("An exception of type " & ex.GetType().ToString() & _ + " was encountered while attempting to roll back the transaction.") + End If + End Try + + Console.WriteLine("An exception of type " & e.GetType().ToString() & _ + "was encountered while inserting the data.") + Console.WriteLine("Neither record was written to database.") + Finally + myConnection.Close() + End Try + End Sub 'RunTransaction + + + public void RunTransaction(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + + MySqlCommand myCommand = myConnection.CreateCommand(); + MySqlTransaction myTrans; + + // Start a local transaction + myTrans = myConnection.BeginTransaction(); + // Must assign both transaction object and connection + // to Command object for a pending local transaction + myCommand.Connection = myConnection; + myCommand.Transaction = myTrans; + + try + { + myCommand.CommandText = "Insert into Region (RegionID, RegionDescription) VALUES (100, 'Description')"; + myCommand.ExecuteNonQuery(); + myCommand.CommandText = "Insert into Region (RegionID, RegionDescription) VALUES (101, 'Description')"; + myCommand.ExecuteNonQuery(); + myTrans.Commit(); + Console.WriteLine("Both records are written to database."); + } + catch(Exception e) + { + try + { + myTrans.Rollback(); + } + catch (MySqlException ex) + { + if (myTrans.Connection != null) + { + Console.WriteLine("An exception of type " + ex.GetType() + + " was encountered while attempting to roll back the transaction."); + } + } + + Console.WriteLine("An exception of type " + e.GetType() + + " was encountered while inserting the data."); + Console.WriteLine("Neither record was written to database."); + } + finally + { + myConnection.Close(); + } + } + + + + + + Gets the object associated with the transaction, or a null reference (Nothing in Visual Basic) if the transaction is no longer valid. + + The object associated with this transaction. + + A single application may have multiple database connections, each + with zero or more transactions. This property enables you to + determine the connection object associated with a particular + transaction created by . + + + + + Specifies the for this transaction. + + + The for this transaction. The default is ReadCommitted. + + + Parallel transactions are not supported. Therefore, the IsolationLevel + applies to the entire transaction. + + + + + Commits the database transaction. + + The Commit method is equivalent to the MySQL SQL statement + COMMIT. + + The following example creates a and a + . It also demonstrates how to use the + , , and Rollback + methods. + + Public Sub RunSqlTransaction(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + + Dim myCommand As MySqlCommand = myConnection.CreateCommand() + Dim myTrans As MySqlTransaction + + ' Start a local transaction + myTrans = myConnection.BeginTransaction() + + ' Must assign both transaction object and connection + ' to Command object for a pending local transaction + myCommand.Connection = myConnection + myCommand.Transaction = myTrans + + Try + myCommand.CommandText = "Insert into mytable (id, desc) VALUES (100, 'Description')" + myCommand.ExecuteNonQuery() + myCommand.CommandText = "Insert into mytable (id, desc) VALUES (101, 'Description')" + myCommand.ExecuteNonQuery() + myTrans.Commit() + Console.WriteLine("Success.") + Catch e As Exception + Try + myTrans.Rollback() + Catch ex As MySqlException + If Not myTrans.Connection Is Nothing Then + Console.WriteLine("An exception of type " & ex.GetType().ToString() & _ + " was encountered while attempting to roll back the transaction.") + End If + End Try + + Console.WriteLine("An exception of type " & e.GetType().ToString() & _ + "was encountered while inserting the data.") + Console.WriteLine("Neither record was written to database.") + Finally + myConnection.Close() + End Try + End Sub + + + public void RunSqlTransaction(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + + MySqlCommand myCommand = myConnection.CreateCommand(); + MySqlTransaction myTrans; + + // Start a local transaction + myTrans = myConnection.BeginTransaction(); + // Must assign both transaction object and connection + // to Command object for a pending local transaction + myCommand.Connection = myConnection; + myCommand.Transaction = myTrans; + + try + { + myCommand.CommandText = "Insert into mytable (id, desc) VALUES (100, 'Description')"; + myCommand.ExecuteNonQuery(); + myCommand.CommandText = "Insert into mytable (id, desc) VALUES (101, 'Description')"; + myCommand.ExecuteNonQuery(); + myTrans.Commit(); + Console.WriteLine("Both records are written to database."); + } + catch(Exception e) + { + try + { + myTrans.Rollback(); + } + catch (MySqlException ex) + { + if (myTrans.Connection != null) + { + Console.WriteLine("An exception of type " + ex.GetType() + + " was encountered while attempting to roll back the transaction."); + } + } + + Console.WriteLine("An exception of type " + e.GetType() + + " was encountered while inserting the data."); + Console.WriteLine("Neither record was written to database."); + } + finally + { + myConnection.Close(); + } + } + + + + + + Rolls back a transaction from a pending state. + + The Rollback method is equivalent to the MySQL statement ROLLBACK. + The transaction can only be rolled back from a pending state + (after BeginTransaction has been called, but before Commit is + called). + + The following example creates a and a + . It also demonstrates how to use the + , , and Rollback + methods. + + Public Sub RunSqlTransaction(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + + Dim myCommand As MySqlCommand = myConnection.CreateCommand() + Dim myTrans As MySqlTransaction + + ' Start a local transaction + myTrans = myConnection.BeginTransaction() + + ' Must assign both transaction object and connection + ' to Command object for a pending local transaction + myCommand.Connection = myConnection + myCommand.Transaction = myTrans + + Try + myCommand.CommandText = "Insert into mytable (id, desc) VALUES (100, 'Description')" + myCommand.ExecuteNonQuery() + myCommand.CommandText = "Insert into mytable (id, desc) VALUES (101, 'Description')" + myCommand.ExecuteNonQuery() + myTrans.Commit() + Console.WriteLine("Success.") + Catch e As Exception + Try + myTrans.Rollback() + Catch ex As MySqlException + If Not myTrans.Connection Is Nothing Then + Console.WriteLine("An exception of type " & ex.GetType().ToString() & _ + " was encountered while attempting to roll back the transaction.") + End If + End Try + + Console.WriteLine("An exception of type " & e.GetType().ToString() & _ + "was encountered while inserting the data.") + Console.WriteLine("Neither record was written to database.") + Finally + myConnection.Close() + End Try + End Sub + + + public void RunSqlTransaction(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + + MySqlCommand myCommand = myConnection.CreateCommand(); + MySqlTransaction myTrans; + + // Start a local transaction + myTrans = myConnection.BeginTransaction(); + // Must assign both transaction object and connection + // to Command object for a pending local transaction + myCommand.Connection = myConnection; + myCommand.Transaction = myTrans; + + try + { + myCommand.CommandText = "Insert into mytable (id, desc) VALUES (100, 'Description')"; + myCommand.ExecuteNonQuery(); + myCommand.CommandText = "Insert into mytable (id, desc) VALUES (101, 'Description')"; + myCommand.ExecuteNonQuery(); + myTrans.Commit(); + Console.WriteLine("Both records are written to database."); + } + catch(Exception e) + { + try + { + myTrans.Rollback(); + } + catch (MySqlException ex) + { + if (myTrans.Connection != null) + { + Console.WriteLine("An exception of type " + ex.GetType() + + " was encountered while attempting to roll back the transaction."); + } + } + + Console.WriteLine("An exception of type " + e.GetType() + + " was encountered while inserting the data."); + Console.WriteLine("Neither record was written to database."); + } + finally + { + myConnection.Close(); + } + } + + + + + + Defines the data type associated with a column. + + + + + This class is modeled after .NET Stopwatch. It provides better + performance (no system calls).It is however less precise than + .NET Stopwatch, measuring in milliseconds. It is adequate to use + when high-precision is not required (e.g for measuring IO timeouts), + but not for other tasks. + + + + + Wrapper around NetworkStream. + + MyNetworkStream is equivalent to NetworkStream, except + 1. It throws TimeoutException if read or write timeout occurs, instead + of IOException, to match behavior of other streams (named pipe and + shared memory). This property comes handy in TimedStream. + + 2. It implements workarounds for WSAEWOULDBLOCK errors, that can start + occuring after stream has times out. For a discussion about the CLR bug, + refer to http://tinyurl.com/lhgpyf. This error should never occur, as + we're not using asynchronous operations, but apparerntly it does occur + directly after timeout has expired. + The workaround is hinted in the URL above and implemented like this: + For each IO operation, if it throws WSAEWOULDBLOCK, we explicitely set + the socket to Blocking and retry the operation once again. + + + + + Set keepalive + timeout on socket. + + socket + keepalive timeout, in seconds + + + + Read a single quoted identifier from the stream + + + + + + + Helper class to encapsulate shared memory functionality + Also cares of proper cleanup of file mapping object and cew + + + + + Summary description for SharedMemoryStream. + + + + + By creating a private ctor, we keep the compiler from creating a default ctor + + + + + Mark - or + signs that are unary ops as no output + + + + + + Retrieve client SSL certificates. Dependent on connection string + settings we use either file or store based certificates. + + + + + Summary description for StreamCreator. + + + + + Set the keepalive timeout on the socket. + + The socket object. + The keepalive timeout, in seconds. + + + + Summary description for Version. + + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + + Looks up a localized string similar to Improper MySqlCommandBuilder state: adapter is null. + + + + + Looks up a localized string similar to Improper MySqlCommandBuilder state: adapter's SelectCommand is null. + + + + + Looks up a localized string similar to Invalid attempt to access a field before calling Read(). + + + + + Looks up a localized string similar to Authentication to host '{0}' for user '{1}' using method '{2}' failed with message: {3}. + + + + + Looks up a localized string similar to Authentication method '{0}' not supported by any of the available plugins.. + + + + + Looks up a localized string similar to Version string not in acceptable format. + + + + + Looks up a localized string similar to The buffer cannot be null. + + + + + Looks up a localized string similar to Buffer is not large enough. + + + + + Looks up a localized string similar to Canceling an executing query requires MySQL 5.0 or higher.. + + + + + Looks up a localized string similar to Canceling an active query is only supported on MySQL 5.0.0 and above. . + + + + + Looks up a localized string similar to Parameters can only be derived for commands using the StoredProcedure command type.. + + + + + Looks up a localized string similar to MySqlCommandBuilder does not support multi-table statements. + + + + + Looks up a localized string similar to MySqlCommandBuilder cannot operate on tables with no unique or key columns. + + + + + Looks up a localized string similar to Chaos isolation level is not supported . + + + + + Looks up a localized string similar to The CommandText property has not been properly initialized.. + + + + + Looks up a localized string similar to Compression is not supported.. + + + + + Looks up a localized string similar to The connection is already open.. + + + + + Looks up a localized string similar to Connection unexpectedly terminated.. + + + + + Looks up a localized string similar to Connection must be valid and open. + + + + + Looks up a localized string similar to The connection is not open.. + + + + + Looks up a localized string similar to The connection property has not been set or is null.. + + + + + Looks up a localized string similar to Could not find specified column in results: {0}. + + + + + Looks up a localized string similar to Count cannot be negative. + + + + + Looks up a localized string similar to SetLength is not a valid operation on CompressedStream. + + + + + Looks up a localized string similar to The given value was not in a supported format.. + + + + + Looks up a localized string similar to There is already an open DataReader associated with this Connection which must be closed first.. + + + + + Looks up a localized string similar to The default connection encoding was not found. Please report this as a bug along with your connection string and system details.. + + + + + Looks up a localized string similar to MySQL Connector/NET does not currently support distributed transactions.. + + + + + Looks up a localized string similar to SSL connection option '{0}' is duplicated.. + + + + + Looks up a localized string similar to Error creating socket connection. + + + + + Looks up a localized string similar to Fatal error encountered during command execution.. + + + + + Looks up a localized string similar to Fatal error encountered during data read.. + + + + + Looks up a localized string similar to Fatal error encountered attempting to read the resultset.. + + + + + Looks up a localized string similar to File based certificates are only supported when connecting to MySQL Server 5.1 or greater.. + + + + + Looks up a localized string similar to From index and length use more bytes than from contains. + + + + + Looks up a localized string similar to From index must be a valid index inside the from buffer. + + + + + Looks up a localized string similar to Call to GetHostEntry failed after {0} while querying for hostname '{1}': SocketErrorCode={2}, ErrorCode={3}, NativeErrorCode={4}.. + + + + + Looks up a localized string similar to Retrieving procedure metadata for {0} from server.. + + + + + Looks up a localized string similar to Value has an unsupported format.. + + + + + Looks up a localized string similar to An incorrect response was received from the server.. + + + + + Looks up a localized string similar to Index and length use more bytes than to has room for. + + + + + Looks up a localized string similar to Index must be a valid position in the buffer. + + + + + Looks up a localized string similar to You have specified an invalid column ordinal.. + + + + + Looks up a localized string similar to The requested value '{0}' is invalid for the given keyword '{1}'.. + + + + + Looks up a localized string similar to Microsecond must be a value between 0 and 999999.. + + + + + Looks up a localized string similar to Millisecond must be a value between 0 and 999. For more precision use Microsecond.. + + + + + Looks up a localized string similar to No other SSL options are accepted when SSL Mode is set to None.. + + + + + Looks up a localized string similar to Procedure or function '{0}' cannot be found in database '{1}'.. + + + + + Looks up a localized string similar to '{0}' is an illegal value for a boolean option.. + + + + + Looks up a localized string similar to Keyword does not allow null values.. + + + + + Looks up a localized string similar to Option not supported.. + + + + + Looks up a localized string similar to ACCESSIBLE + ADD + ALL + ALTER + ANALYZE + AND + AS + ASC + ASENSITIVE + BEFORE + BEGIN + BETWEEN + BIGINT + BINARY + BLOB + BOTH + BY + CALL + CASCADE + CASE + CHANGE + CHAR + CHARACTER + CHECK + COLLATE + COLUMN + COMMIT + CONDITION + CONNECTION + CONSTRAINT + CONTINUE + CONVERT + CREATE + CROSS + CURRENT_DATE + CURRENT_TIME + CURRENT_TIMESTAMP + CURRENT_USER + CURSOR + DATABASE + DATABASES + DAY_HOUR + DAY_MICROSECOND + DAY_MINUTE + DAY_SECOND + DEC + DECIMAL + DECLARE + DEFAULT + DELAYED + DELETE + DESC + DESCRIBE + DETERMINISTIC + DISTINCT + DISTINCTROW + D [rest of string was truncated]";. + + + + + Looks up a localized string similar to Mixing named and unnamed parameters is not allowed.. + + + + + Looks up a localized string similar to INTERNAL ERROR: More than one output parameter row detected.. + + + + + Looks up a localized string similar to Multiple simultaneous connections or connections with different connection strings inside the same transaction are not currently supported.. + + + + + Looks up a localized string similar to NamedPipeStream does not support seeking. + + + + + Looks up a localized string similar to NamedPipeStream doesn't support SetLength. + + + + + Looks up a localized string similar to The new value must be a MySqlParameter object.. + + + + + Looks up a localized string similar to Invalid attempt to call NextResult when the reader is closed.. + + + + + Looks up a localized string similar to When calling stored procedures and 'Use Procedure Bodies' is false, all parameters must have their type explicitly set.. + + + + + Looks up a localized string similar to Nested transactions are not supported.. + + + + + Looks up a localized string similar to The host {0} does not support SSL connections.. + + + + + Looks up a localized string similar to Unix sockets are not supported on Windows.. + + + + + Looks up a localized string similar to Cannot retrieve Windows identity for current user. Connections that use IntegratedSecurity cannot be pooled. Use either 'ConnectionReset=true' or 'Pooling=false' in the connection string to fix.. + + + + + Looks up a localized string similar to The object is not open or has been disposed.. + + + + + Looks up a localized string similar to Offset cannot be negative. + + + + + Looks up a localized string similar to Offset must be a valid position in buffer. + + + + + Looks up a localized string similar to Authentication with old password no longer supported, use 4.1 style passwords.. + + + + + Looks up a localized string similar to The option '{0}' is not currently supported.. + + + + + Looks up a localized string similar to Parameter '{0}' has already been defined.. + + + + + Looks up a localized string similar to Parameter cannot have a negative value. + + + + + Looks up a localized string similar to Parameter cannot be null. + + + + + Looks up a localized string similar to Parameter index was not found in Parameter Collection.. + + + + + Looks up a localized string similar to Parameter is invalid.. + + + + + Looks up a localized string similar to Parameter '{0}' must be defined.. + + + + + Looks up a localized string similar to Parameter '{0}' was not found during prepare.. + + + + + Looks up a localized string similar to Parameter can't be null or empty.. + + + + + Looks up a localized string similar to Password must be valid and contain length characters. + + + + + Looks up a localized string similar to This category includes a series of counters for MySQL. + + + + + Looks up a localized string similar to .NET Data Provider for MySQL. + + + + + Looks up a localized string similar to The number of times a procedures metadata had to be queried from the server.. + + + + + Looks up a localized string similar to Hard Procedure Queries. + + + + + Looks up a localized string similar to The number of times a procedures metadata was retrieved from the client-side cache.. + + + + + Looks up a localized string similar to Soft Procedure Queries. + + + + + Looks up a localized string similar to same name are not supported.. + + + + + Looks up a localized string similar to Packets larger than max_allowed_packet are not allowed.. + + + + + Looks up a localized string similar to Reading from the stream has failed.. + + + + + Looks up a localized string similar to Invalid attempt to read a prior column using SequentialAccess. + + + + + Looks up a localized string similar to Replicated connections allow only readonly statements.. + + + + + Looks up a localized string similar to Attempt to connect to '{0}' server failed.. + + + + + Looks up a localized string similar to No available server found.. + + + + + Looks up a localized string similar to Replication group '{0}' not found.. + + + + + Looks up a localized string similar to Replicated server not found: '{0}'. + + + + + Looks up a localized string similar to Routine '{0}' cannot be found. Either check the spelling or make sure you have sufficient rights to execute the routine.. + + + + + Looks up a localized string similar to Attempt to call stored function '{0}' without specifying a return parameter. + + + + + Looks up a localized string similar to Retrieval of the RSA public key is not enabled for insecure connections.. + + + + + Looks up a localized string similar to Connector/NET no longer supports server versions prior to 5.0. + + + + + Looks up a localized string similar to Snapshot isolation level is not supported.. + + + + + Looks up a localized string similar to Socket streams do not support seeking. + + + + + Looks up a localized string similar to Retrieving procedure metadata for {0} from procedure cache.. + + + + + Looks up a localized string similar to Stored procedures are not supported on this version of MySQL. + + + + + Looks up a localized string similar to SSL Connection error.. + + + + + Looks up a localized string similar to The stream has already been closed. + + + + + Looks up a localized string similar to The stream does not support reading. + + + + + Looks up a localized string similar to The stream does not support writing. + + + + + Looks up a localized string similar to String can't be empty.. + + + + + Looks up a localized string similar to Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.. + + + + + Looks up a localized string similar to error connecting: Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached.. + + + + + Looks up a localized string similar to {0}: Connection Closed. + + + + + Looks up a localized string similar to Unable to trace. There are more than Int32.MaxValue connections in use.. + + + + + Looks up a localized string similar to {0}: Error encountered during row fetch. Number = {1}, Message={2}. + + + + + Looks up a localized string similar to {0}: Connection Opened: connection string = '{1}'. + + + + + Looks up a localized string similar to {0}: Error encountered attempting to open result: Number={1}, Message={2}. + + + + + Looks up a localized string similar to {0}: Query Closed. + + + + + Looks up a localized string similar to {0}: Query Normalized: {2}. + + + + + Looks up a localized string similar to {0}: Query Opened: {2}. + + + + + Looks up a localized string similar to {0}: Resultset Opened: field(s) = {1}, affected rows = {2}, inserted id = {3}. + + + + + Looks up a localized string similar to {0}: Resultset Closed. Total rows={1}, skipped rows={2}, size (bytes)={3}. + + + + + Looks up a localized string similar to {0}: Set Database: {1}. + + + + + Looks up a localized string similar to {0}: Statement closed: statement id = {1}. + + + + + Looks up a localized string similar to {0}: Statement executed: statement id = {1}. + + + + + Looks up a localized string similar to {0}: Statement prepared: sql='{1}', statement id={2}. + + + + + Looks up a localized string similar to {0}: Usage Advisor Warning: Query is using a bad index. + + + + + Looks up a localized string similar to {0}: Usage Advisor Warning: The field '{2}' was converted to the following types: {3}. + + + + + Looks up a localized string similar to {0}: Usage Advisor Warning: Query does not use an index. + + + + + Looks up a localized string similar to {0}: Usage Advisor Warning: The following columns were not accessed: {2}. + + + + + Looks up a localized string similar to {0}: Usage Advisor Warning: Skipped {2} rows. Consider a more focused query.. + + + + + Looks up a localized string similar to {0}: MySql Warning: Level={1}, Code={2}, Message={3}. + + + + + Looks up a localized string similar to Type '{0}' is not derived from BaseCommandInterceptor. + + + + + Looks up a localized string similar to Type '{0}' is not derived from BaseExceptionInterceptor. + + + + + Looks up a localized string similar to Unable to connect to any of the specified MySQL hosts.. + + + + + Looks up a localized string similar to Unable to create plugin for authentication method '{0}'. Please see inner exception for details.. + + + + + Looks up a localized string similar to Unable to derive stored routine parameters. The 'Parameters' information schema table is not available and access to the stored procedure body has been disabled.. + + + + + Looks up a localized string similar to Unable to enable query analysis. Be sure the MySql.Data.EMTrace assembly is properly located and registered.. + + + + + Looks up a localized string similar to An error occured attempting to enumerate the user-defined functions. Do you have SELECT privileges on the mysql.func table?. + + + + + Looks up a localized string similar to Unable to execute stored procedure '{0}'.. + + + + + Looks up a localized string similar to There was an error parsing the foreign key definition.. + + + + + Looks up a localized string similar to Error encountered reading the RSA public key.. + + + + + Looks up a localized string similar to Unable to retrieve stored procedure metadata for routine '{0}'. Either grant SELECT privilege to mysql.proc for this user or use "check parameters=false" with your connection string.. + + + + + Looks up a localized string similar to Unable to start a second async operation while one is running.. + + + + + Looks up a localized string similar to Unix sockets are not supported on Windows. + + + + + Looks up a localized string similar to Unknown authentication method '{0}' was requested.. + + + + + Looks up a localized string similar to Unknown connection protocol. + + + + + Looks up a localized string similar to Value '{0}' is not of the correct type.. + + + + + Looks up a localized string similar to The requested column value could not be treated as or conveted to a Guid.. + + + + + Looks up a localized string similar to Windows authentication connections are not supported on {0}. + + + + + Looks up a localized string similar to Writing to the stream failed.. + + + + + Looks up a localized string similar to Parameter '{0}' is not found but a parameter with the name '{1}' is found. Parameter names must include the leading parameter marker.. + + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + + Looks up a localized string similar to Appdata path is not defined.. + + + + + Looks up a localized string similar to Authentication failed using MYSQL41 and SHA256_MEMORY. Check the user name and password or try using a secure connection.. + + + + + Looks up a localized string similar to This feature is currently not supported.. + + + + + Looks up a localized string similar to This functionality is only supported in MySQL {0} and higher.. + + + + + Looks up a localized string similar to Collation with id '{0}' not found.. + + + + + Looks up a localized string similar to Connection Data is incorrect.. + + + + + Looks up a localized string similar to The connection string is invalid.. + + + + + Looks up a localized string similar to '{0}' is not a valid connection string attribute.. + + + + + Looks up a localized string similar to Decimal (BCD) format is invalid.. + + + + + Looks up a localized string similar to Field type with name '{0}' not found.. + + + + + Looks up a localized string similar to Index type with name '{0}' not found.. + + + + + Looks up a localized string similar to {0} is not a valid column name in the row.. + + + + + Looks up a localized string similar to {0} is not a valid index for the row.. + + + + + Looks up a localized string similar to Invalid Uri . + + + + + Looks up a localized string similar to Invalid uri query value. + + + + + Looks up a localized string similar to Json configuration must contain 'uri' or 'host' but not both.. + + + + + Looks up a localized string similar to Keyword '{0}' not found.. + + + + + Looks up a localized string similar to Keyword not supported.. + + + + + Looks up a localized string similar to Field '{0}' is mandatory.. + + + + + Looks up a localized string similar to More than one document id was generated. Please use the DocumentIds property instead.. + + + + + Looks up a localized string similar to There is no data at index {0}. + + + + + Looks up a localized string similar to No 'host' has been specified.. + + + + + Looks up a localized string similar to No more data in resultset.. + + + + + Looks up a localized string similar to Object '{0}' not found. + + + + + Looks up a localized string similar to No placeholders.. + + + + + Looks up a localized string similar to {0} must be a value greater than 0.. + + + + + Looks up a localized string similar to Path not found '{0}'.. + + + + + Looks up a localized string similar to Providing a port number as part of the host address isn't supported when using connection strings in basic format or anonymous objects. Use URI format instead.. + + + + + Looks up a localized string similar to You must either assign no priority to any of the hosts or give a priority for every host.. + + + + + Looks up a localized string similar to The priority must be between 0 and 100.. + + + + + Looks up a localized string similar to ProgramData path is not defined.. + + + + + Looks up a localized string similar to Removing a document from a collection requires an _id property.. + + + + + Looks up a localized string similar to The process of closing the resultset and resulted in results being lost.. + + + + + Looks up a localized string similar to Unable to connect to any specified host.. + + + + + Looks up a localized string similar to Unable to read or decode data value.. + + + + + Looks up a localized string similar to Unexpected end of packet found while reading data values. + + + + + Looks up a localized string similar to Field name '{0}' is not allowed.. + + + + + Looks up a localized string similar to Unknown placeholder :{0}. + + + + + Looks up a localized string similar to Value '{0}' is not of the correct type.. + + + + + Summary description for MySqlUInt64. + + + + + An exception thrown by MySQL when a type conversion does not succeed. + + + + Initializes a new instance of the class with a specified error message. + Message describing the error. + + + + Represents a datetime data type object in a MySql database. + + + + + Defines whether the UTF or local timezone will be used. + + + + + Constructs a new MySqlDateTime object by setting the individual time properties to + the given values. + + The year to use. + The month to use. + The day to use. + The hour to use. + The minute to use. + The second to use. + The microsecond to use. + + + + Constructs a new MySqlDateTime object by using values from the given object. + + The object to copy. + + + + Constructs a new MySqlDateTime object by copying the current value of the given object. + + The MySqlDateTime object to copy. + + + + Enables the contruction of a MySqlDateTime object by parsing a string. + + + + + Indicates if this object contains a value that can be represented as a DateTime + + + + Returns the year portion of this datetime + + + Returns the month portion of this datetime + + + Returns the day portion of this datetime + + + Returns the hour portion of this datetime + + + Returns the minute portion of this datetime + + + Returns the second portion of this datetime + + + + Returns the milliseconds portion of this datetime + expressed as a value between 0 and 999 + + + + + Returns the microseconds portion of this datetime (6 digit precision) + + + + + Returns true if this datetime object has a null value + + + + + Retrieves the value of this as a DateTime object. + + + + Returns this value as a DateTime + + + Returns a MySQL specific string representation of this value + + + + + + + + + Represents a decimal data type object in a MySql database. + + + + + Gets a boolean value signaling if the type is null. + + + + + Gets or sets the decimal precision of the type. + + + + + Gets or sets the scale of the type. + + + + + Gets the decimal value associated to this type. + + + + + Converts this decimal value to a double value. + + The value of this type converted to a dobule value. + + + + Represents a geometry data type object in a MySql database. + + + + + Gets the x coordinate. + + + + + Gets the y coordinate. + + + + + Gets the SRID value. + + + + + Gets a boolean value that signals if the type is null. + + + + + Gets the value associated to this type. + + + + Returns the Well-Known Text representation of this value + POINT({0} {1})", longitude, latitude + http://dev.mysql.com/doc/refman/4.1/en/gis-wkt-format.html + + + + Get value from WKT format + SRID=0;POINT (x y) or POINT (x y) + + WKT string format + + + + Try to get value from WKT format + SRID=0;POINT (x y) or POINT (x y) + + WKT string format + Out mysqlGeometryValue + + + + Sets the DSInfo when GetSchema is called for the DataSourceInformation collection. + + The schema collection. + + + + Gets the well-known text representation of the geomtry object. + + A string representation of the WKT. + + + + Implementation of EXTERNAL authentication type. + + + + + Implementation of MySQL41 authentication type. + + + + + Implementation of PLAIN authentication type. + + + + + Compares two Guids in string format. + + The first string to compare. + The first string to compare. + An integer that indicates the lexical relationship between the two comparands, similar to + + + + Compares two objects. + + The first to compare. + The second to compare. + An integer that indicates the lexical relationship between the two comparands, similar to + + + + Gets and sets the host list. + + + + + Gets the active host. + + + + + Active host. + + + + + Sets the initial active host. + + + + + Determines the next host. + + object that represents the next available host. + + + + Implements common elements that allow to manage the hosts available for client side failover. + + + + + Gets and sets the failover group which consists of a host list. + + + + + Resets the manager. + + + + + Sets the host list to be used during failover operations. + + The host list. + The failover method. + + + + Attempts to establish a connection to a host specified from the list. + + The original connection string set by the user. + An out parameter that stores the updated connection string. + An instance if the connection was succesfully established, a exception is thrown otherwise. + + + + Attempts the next host in the list. Moves to the first element if the end of the list is reached. + + + + + Determines the next host on which to attempt a connection by checking the value of the Priority property in descending order. + + + + + Manages the hosts available for client side failover using the Sequential Failover method. + The Sequential Failover method attempts to connect to the hosts specified in the list one after another until the initial host is reached. + + + + + The index of the current host. + + + + + Sets the initial active host. + + + + + Determines the next host. + + A object that represents the next available host. + + + + Depicts a host which can be failed over to. + + + + + Gets and sets the name or address of the host. + + + + + Gets and sets the port number. + + + + + Gets a value between 0 and 100 which represents the priority of the host. + + + + + Flag to indicate if this host is currently being used. + + + + + Abstract class for the protocol base operations in client/server communication. + + + + + + Reads a row from the base result. + + The base result to be queried. + A list containing a byte representation of the value for each field found in the row. + + + + Executes an SQL statement. + + The statement to be executed. + The arguments associated to the SQL statement. + + + + Determines if the base result contains retrievable items. + + The base result to be queried. + true if the base result contains data; otherwise, false. + + + + Loads metadata associated to the retrieved columns. + + A list of Column objects containing metadata for each column. + + + + Closes the base result preventing the retrieval of data. + + The base result to close. + + + Expression parser for MySQL-X protocol. + + + string being parsed. + + + Token stream produced by lexer. + + + Parser's position in token stream. + + + Mapping of names to positions for named placeholders. Used for both string values ":arg" and numeric values ":2". + + + Number of positional placeholders. + + + Are relational columns identifiers allowed? + + + Token types used by the lexer. + + + Token. Includes type and string value of the token. + + + Mapping of reserved words to token types. + + + Does the next character equal the given character? (respects bounds) + + + Helper function to match integer or floating point numbers. This function should be called when the position is on the first character of the number (a + digit or '.'). + + @param i The current position in the string + @return the next position in the string after the number. + + + Lexer for MySQL-X expression language. + + + Assert that the token at pos is of type type. + + + Does the current token have type `t'? + + + Does the next token have type `t'? + + + Does the token at position `pos' have type `t'? + + + Consume token. + + @return the string value of the consumed token + + + Parse a paren-enclosed expression list. This is used for function params or IN params. + + @return a List of expressions + + + Parse a function call of the form: IDENTIFIER PAREN_EXPR_LIST. + + @return an Expr representing the function call. + + + Parse an identifier for a function call: [schema.]name + + + Parse a document path member. + + + Parse a document path array index. + + + Parse a JSON-style document path, like WL#7909, but prefix by @. instead of $. + + + Parse a document field. + + + Parse a column identifier (which may optionally include a JSON document path). + + + Build a unary operator expression. + + + Parse an atomic expression. (c.f. grammar at top) + + + Parse a left-associated binary operator. + + @param types + The token types that denote this operator. + @param innerParser + The inner parser that should be called to parse operands. + @return an expression tree of the binary operator or a single operand + + + Parse the entire string as an expression. + + @return an X-protocol expression tree + + + + Parse an ORDER BY specification which is a comma-separated list of expressions, each may be optionally suffixed by ASC/DESC. + + + Parse a SELECT projection which is a comma-separated list of expressions, each optionally suffixed with a target alias. + + + Parse an INSERT field name. + @todo unit test + + + Parse an UPDATE field which can include can document paths. + + + Parse a document projection which is similar to SELECT but with document paths as the target alias. + + + Parse a list of expressions used for GROUP BY. + + + @return the number of positional placeholders in the expression. + + + @return a mapping of parameter names to positions. + + + Proto-buf helper to build a LITERAL Expr with a Scalar NULL type. + + + Proto-buf helper to build a LITERAL Expr with a Scalar DOUBLE type (wrapped in Any). + + + Proto-buf helper to build a LITERAL Expr with a Scalar SINT (signed int) type (wrapped in Any). + + + Proto-buf helper to build a LITERAL Expr with a Scalar UINT (unsigned int) type (wrapped in Any). + + + Proto-buf helper to build a LITERAL Expr with a Scalar STRING type (wrapped in Any). + + + Proto-buf helper to build a LITERAL Expr with a Scalar OCTETS type (wrapped in Any). + + + Proto-buf helper to build a LITERAL Expr with a Scalar BOOL type (wrapped in Any). + + + Wrap an Any value in a LITERAL expression. + + + Build an Any with a string value. + + + + Parses an anonymous object into a dictionary. + + The object to parse. + A dictionary if the provided object is an anonymous object; otherwise, null. + + + List of operators which will be serialized as infix operators. + + + Scalar to string. + + + JSON document path to string. + + + Column identifier (or JSON path) to string. + + + Function call to string. + + + Create a string from a list of (already stringified) parameters. Surround by parens and separate by commas. + + + Convert an operator to a string. Includes special cases for chosen infix operators (AND, OR) and special forms such as LIKE and BETWEEN. + + + Escape a string literal. + + + Quote a named identifer. + + + Serialize an expression to a string. + + + + Sends the delete documents message + + + + + Sends the CRUD modify message + + + + + Class implementation for a default communication kind. + + + + + Constructor method for the communication routing service + + A MySqlXConnectionStringBuilder setted with the information to use in the connection + + + + Gets the current connection base on the connection mode + + One of the values of ConnectionMode Offline, ReadOnly, WriteOnly, ReadWrite + + + + + Abstract class used to define the kind of server in environments with multiple types of distributed systems. + + + + + Main class for parsing json strings. + + + + + Initializes a new instance of the JsonParser class. + + + + + Parses the received string into a dictionary. + + The string to parse. + A object that represents the parsed string. + + + + Abstract class to manage and encapsulate one or more actual connections. + + + + + Creates a new session object with the values of the settings parameter. + + Settings to be used in the session object + + + + Sets the connection's charset default collation. + + The opened session. + The character set. + + + + Gets the version of the server. + + An instance of containing the server version. + + + + Implementation class for object that manages low-level work of queuing tasks onto threads. + + + + + Implementation class of InternalSession to manage connections using the Xprotocol type object. + + + + + Represents a base class for a Session. + + + + + Gets the connection settings for this session. + + + + + Gets the currently active schema. + + + + + Gets the default schema provided when creating the session. + + + + + Gets the connection uri representation of the connection options provided during the creation of the session. + + + + + Initializes a new instance of the BaseSession class based on the specified connection string. + + The connection used to create the session. + is null. + Unable to parse the when + in URI format. + + When using Unix sockets the protocol=unix or protocol=unixsocket connection option is required. + This will enable elements passed in the server connection option to be treated as Unix sockets. The user is also required + to explicitly set sslmode to none since X Plugin does not support SSL when using Unix sockets. Note that + protocol=unix and protocol=unixsocket are synonyms. +   + Multiple hosts can be specified as part of the , + which will enable client side failover when trying to establish a connection. +   + Connection string examples (in URI format): + - mysqlx://test:test@[192.1.10.10,localhost] + - mysqlx://test:test@[192.1.10.10,127.0.0.1] + - mysqlx://root:@[../tmp/mysqlx.sock,/tmp/mysqld.sock]?protocol=unix&sslmode=none + - mysqlx://test:test@[192.1.10.10:33060,127.0.0.1:33060] + - mysqlx://test:test@[192.1.10.10,120.0.0.2:22000,[::1]:33060]/test?connectiontimeout=10 + - mysqlx://test:test@[(address=server.example,priority=20),(address=127.0.0.1,priority=100)] + - mysqlx://test:test@[(address=server.example,priority=100),(address=127.0.0.1,priority=75),(address=192.0.10.56,priority=25)] + +   + Connection string examples (in basic format): + - server=10.10.10.10,localhost;port=33060;uid=test;password=test; + - host=10.10.10.10,192.101.10.2,localhost;port=5202;uid=test;password=test; + - host=./tmp/mysqld.sock,/var/run/mysqldx.sock;port=5202;uid=root;protocol=unix;sslmode=none; + - server=(address=server.example,priority=20),(address=127.0.0.1,priority=100);port=33060;uid=test;password=test; + - server=(address=server.example,priority=100),(address=127.0.0.1,priority=75),(address=192.0.10.56,priority=25);port=33060;uid=test;password=test; + +   + Failover methods + - Sequential: Connection attempts will be performed in a sequential order, that is, one after another until + a connection is successful or all the elements from the list have been tried. + + - Priority based: If a priority is provided, the connection attemps will be performed in descending order, starting + with the host with the highest priority. Priority must be a value between 0 and 100. Additionally, it is required to either + give a priority for every host or no priority to any host. + + + + + + Initializes a new instance of the BaseSession class based on the specified anonymous type object. + + The connection data as an anonymous type used to create the session. + is null. + + Multiple hosts can be specified as part of the , which will enable client-side failover when trying to + establish a connection. +   + To assign multiple hosts create a property similar to the connection string examples (in basic format) shown in + . Note that the value of the property must be a string. + + + + + + Drops the database/schema with the given name. + + The name of the schema. + is null. + + + + Creates a schema/database with the given name. + + The name of the schema/database. + A object that matches the recently created schema/database. + + + + Gets the schema with the given name. + + The name of the schema. + A object set with the provided schema name. + + + + Gets a list of schemas/databases in this session. + + A list containing all existing schemas/databases. + + + + Starts a new transaction. + + + + + Commits the current transaction. + + A object containing the results of the commit operation. + + + + Rolls back the current transaction. + + + + + Closes this session. + + + + + Sets a transaction savepoint with an autogenerated name. + + The autogenerated name of the transaction savepoint. + + + + Sets a named transaction savepoint. + + The name of the transaction savepoint. + The name of the transaction savepoint. + + + + Removes the named savepoint from the set of savepoints within the current transaction. + + The name of the transaction savepoint. + + + + Rolls back a transaction to the named savepoint without terminating the transaction. + + The name of the transaction savepoint. + + + + Parses the connection string. + + The connection string in basic or URI format. + An updated connection string in basic format. + The format (basic or URI) of the connection string is determined as well as the + prescence of multiple hosts. + + + + Parses a connection string in URI format. + + The connection string to parse. + A connection string in basic format. + + + + Validates if the string provided is a Unix socket. + + The Unix socket to evaluate. + true if is a valid Unix socket; otherwise, false. + + + + Converts the URI object into a connection string in basic format. + + An instance with the values for the provided connection options. + The path of the Unix socket. + if true the will replace the value for the server connection option; otherwise, false + A connection string in basic format. + + + + Parses a connection string in basic format. + + The connection string to parse. + The parsed connection string. + + + + Initializes the if more than one host is found. + + A string containing an unparsed host list. + True if the connection string is in URI format, false otherwise. + The number of hosts found, -1 if an error was raised during parsing. + + + + Creates a object based on the provided parameters. + + The host string which can be a simple host name or a host name and port. + True if the connection string is in URI format, false otherwise. + The priority of the host. + The port number of the host. + + + + + Normalizes the Unix socket by removing leading and ending parenthesis as well as removing special characters. + + The Unix socket to normalize. + A normalized Unix socket. + + + + Disposes the current object. Disposes of the managed state if the flag is set to true. + + Flag to indicate if the managed state is to be disposed. + + + + Disposes the current object. Code added to correctly implement the disposable pattern. + + + + + Describes the state of the session. + + + + + The session is closed. + + + + + The session is open. + + + + + The session object is connecting to the data source. + + + + + The session object is executing a command. + + + + + Represents a collection of documents. + + + + + Creates an containing the provided objects that can be used to add + one or more items to a collection. + + The objects to add. + An object containing the objects to add. + is null. + This method can take anonymous objects, domain objects, or just plain JSON strings. + The statement can be further modified before execution. + + + + Creates a with the given condition that can be used to remove + one or more documents from a collection.The statement can then be further modified before execution. + + The condition to match documents. + A object set with the given condition. + is null or white space. + The statement can then be further modified before execution. + + + + Creates a with the given identifier that can be used to remove a single + document from a collection. + + The identifier to match the document. + A object set with the given identifier. + The statement can then be further modified before execution. + + + + Creates a containing the identifier of the provided document that can + be used to remove a single document from a collection. + + The representing the document to remove. + A object set with the given document's identifier. + No identifier for the document was provided. + The remove statement can then be further modified before execution. + + + + Removes the document with the given identifier. + + The unique identifier of the document to replace. + A object containing the results of the execution. + is null or white space. + This is a direct execution method. + + + + Creates a with the given condition that can be used to modify one or more + documents from a collection. + + The condition to match documents. + A object set with the given condition. + is null or white space. + The statement can then be further modified before execution. + + + + Replaces the document matching the given identifier. + + The unique identifier of the document to replace. + The document to replace the matching document. + A object containing the results of the execution. + is null or whitespace. + is null. + This is a direct execution method. Operation succeeds even if no matching document was found; + in which case, the Result.RecordsAffected property is zero. If the new document contains an identifier, the value + is ignored. + + + + Adds the given document to the collection unless the identifier or any other field that has a unique index + already exists, in which case it will update the matching document. + + The unique identifier of the document to replace. + The document to replace the matching document. + A object containing the results of the execution. + The server version is lower than 8.0.3. + is null or white space. + is null. + The is different from the one in . + This is a direct execution method. + + + + Returns the number of documents in this collection on the server. + + The number of documents found. + + + + Creates a with the given condition which can be used to find documents in a + collection. + + An optional condition to match documents. + A object set with the given condition. + The statement can then be further modified before execution. + + + + Creates an index based on the properties provided in the JSON document. + + The index name. + JSON document describing the index to be created. + + is a JSON document with the following fields: + + - fields: array of IndexField objects, each describing a single document member to be + included in the index (see below). + - type: string, (optional) the type of index. One of INDEX or SPATIAL. Default is INDEX and may + be omitted. + +   + A single IndexField description consists of the following fields: + + - field: string, the full document path to the document member or field to be indexed. + - type: string, one of the supported SQL column types to map the field into (see the following list). + For numeric types, the optional UNSIGNED keyword may follow. For the TEXT type, the length to consider for + indexing may be added. + - required: bool, (optional) true if the field is required to exist in the document. defaults to + false, except for GEOJSON where it defaults to true. + - options: int, (optional) special option flags for use when decoding GEOJSON data. + - srid: int, (optional) srid value for use when decoding GEOJSON data. + +   + Supported SQL column types: + + - INT [UNSIGNED] + - TINYINT [UNSIGNED] + - SMALLINT [UNSIGNED] + - MEDIUMINT [UNSIGNED] + - INTEGER [UNSIGNED] + - BIGINT [UNSIGNED] + - REAL [UNSIGNED] + - FLOAT [UNSIGNED] + - DOUBLE [UNSIGNED] + - DECIMAL [UNSIGNED] + - NUMERIC [UNSIGNED] + - DATE + - TIME + - TIMESTAMP + - DATETIME + - TEXT[(length)] + - GEOJSON (extra options: options, srid) + + + + + + Drops a collection index. + + The index name. + is null or white space. + + + + Verifies if the current collection exists in the server schema. + + true if the collection exists; otherwise, false. + + + + Returns the document with the given identifier. + + The unique identifier of the document to replace. + A object if a document matching given identifier exists; otherwise, null. + is null or white space. + This is a direct execution method. + + + + Base abstract class that defines elements inherited by all result types. + + + + + Gets the number of records affected by the statement that generated this result. + + + + + Gets the object of the session. + + + + + Gets a read-only collection of objects derived from statement execution. + + + + + Gets the number of warnings in the collection derived from statement execution. + + + + + Gets the number of warnings in the collection derived from statement execution. + + + + + No action is performed by this method. It is intended to be overriden by child classes if required. + + + + + Base abstract class for API statement. + + + + + + Initializes a new instance of the BaseStatement class based on the specified session. + + The session where the statement will be executed. + + + + Gets the that owns the statement. + + + + + Executes the base statements. This method is intended to be defined by child classes. + + A result object containing the details of the execution. + + + + Executes a statement asynchronously. + + A result object containing the details of the execution. + + + + Abstract class for buffered results. + + Generic result type. + + + + Index of the current item. + + + + + List of generic items in this buffered result. + + + + + Flag that indicates if all items have been read. + + + + + Gets a dictionary containing the column names and their index. + + + + + Gets the page size set for this buffered result. + + + + + Loads the column data into the field. + + + + + Retrieves a read-only list of the generic items associated to this buffered result. + + A generic list representing items in this buffered result. + + + + Retrieves one element from the generic items associated to this buffered result. + + A generic object that corresponds to the current or default item. + + + + Determines if all items have already been read. + + True if all items have been retrived, false otherwise. + + + + Gets the current item. + + All items have already been read. + + + + Determines if all items have already been read. + + True if all items have been retrived, false otherwise. + + + + Resets the value of the field to zero. + + + + + Gets an representation of this object. + + An representation of this object. + + + + Gets an representation of this object. + + An representation of this object. + + + + Retrieves a read-only list of the generic items associated to this buffered result. + + A generic list representing items in this buffered result. + + + + No body has been defined for this method. + + + + + Class to represent an error in this result. + + + + + Numeric code. + + + + + Return code indicating the outcome of the executed SQL statement. + + + + + Error message. + + + + + Initializes a new instance of the ErrorInfo class. + + + + + Abstract class for filterable statements. + + The filterable statement. + The database object. + The type of result. + + + + Initializes a new instance of the FiltarableStatement class based on the target and condition. + + The database object. + The optional filter condition. + + + + Allows the user to set the where condition for this operation. + + The Where condition. + The implementing statement type. + + + + Sets the number of items to be returned by the operation. + + The number of items to be returned. + The implementing statement type. + is equal or lower than 0. + + + + Sets the number of items to be skipped before including them into the result. + + The number of items to be skipped. + The implementing statement type. + + + + Binds the parameter values in filter expression. + + The parameter name. + The value of the parameter. + A generic object representing the implementing statement type. + + + + Binds the parameter values in filter expression. + + The parameters as a DbDoc object. + A generic object representing the implementing statement type. + + + + Binds the parameter values in filter expression. + + The parameters as a JSON string. + The implementing statement type. + + + + Binds the parameter values in filter expression. + + The parameters as an anonymous object: new { param1 = value1, param2 = value2, ... }. + The implementing statement type. + + + + Executes the statement. + + The function to execute. + The generic object to use. + A generic result object containing the results of the execution. + + + + Clones the filterable data but Session and Target remain the + same. + + A clone of this filterable statement. + + + + Represents a general statement result. + + + + + Gets the number of records affected by the statement that generated this result. + + + + + Gets the last inserted identifier (if there is one) by the statement that generated this result. + + + + + Gets the list of generated identifiers in the order of the Add() calls. + + + + + Abstract class to select a database object target. + + The database object. + The execution result. + + + + Initializes a new instance of the TargetedBaseStatement class based on the provided target. + + The database object. + + + + Gets the database target. + + + + + Represents a warning in this result. + + + + + Numeric value associated to the warning message. + + + + + Error message. + + + + + Strict level for the warning. + + + + + Initializes a new instance of the WarningInfo class based on the code and msg. + + The code for the warning. + The error message for the warning. + + + + Represents a chaining collection insert statement. + + + + + Adds documents to the collection. + + The documents to add. + This object. + The array is null. + + + + Executes the Add statement. + + A object containing the results of the execution. + + + + Implementation class for CRUD statements with collections using an index. + + + + + Executes this statement. + + A object containing the results of the execution. + + + + Represents a collection statement. + + + + + + Converts base s into objects. + + Array of objects to be converted to objects. + An enumerable collection of objects. + + + + Represents the result of an operation that includes a collection of documents. + + + + + Represents a chaining collection find statement. + + + + + List of column projections that shall be returned. + + List of columns. + This object set with the specified columns or fields. + + + + Executes the Find statement. + + A object containing the results of execution and data. + + + + Allows the user to set the limit and offset for the operation. + + Number of items to be returned. + Number of items to be skipped. + This same object set with the specified limit. + + + + Locks matching rows against updates. + + Optional row lock option to use. + This same object set with the lock shared option. + The server version is lower than 8.0.3. + + + + Locks matching rows so no other transaction can read or write to it. + + Optional row lock option to use. + This same object set with the lock exclusive option. + The server version is lower than 8.0.3. + + + + Sets the collection aggregation. + + The field list for aggregation. + This same object set with the specified group-by criteria. + + + + Filters criteria for aggregated groups. + + The filter criteria for aggregated groups. + This same object set with the specified filter criteria. + + + + Sets user-defined sorting criteria for the operation. The strings use normal SQL syntax like + "order ASC" or "pages DESC, age ASC". + + The order criteria. + A generic object representing the implementing statement type. + + + + Represents a chaining collection modify statement. + + + + + Sets key and value. + + The document path key. + The new value. + This object. + + + + Changes value for a key. + + The document path key. + The new value. + This object. + + + + Removes keys or values from a document. + + An array of document paths representing the keys to be removed. + This object. + + + + Creates a object set with the changes to be applied to all matching documents. + + The JSON-formatted object describing the set of changes. + A object set with the changes described in . + can be a object, an anonymous object, or a JSON string. + is null. + is null or white space. + + + + Inserts an item into the specified array. + + The document path key including the index on which the item will be inserted. + The value to insert into the array. + A object containing the updated array. + + + + Appends an item to the specified array. + + The document path key. + The value to append to the array. + A object containing the updated array. + + + + Allows the user to set the sorting criteria for the operation. The strings use normal SQL syntax like + "order ASC" or "pages DESC, age ASC". + + The order criteria. + A generic object representing the implementing statement type. + + + + Executes the modify statement. + + A object containing the results of the execution. + + + + Represents a chaining collection remove statement. + + + + + Sets user-defined sorting criteria for the operation. The strings use normal SQL syntax like + "order ASC" or "pages DESC, age ASC". + + The order criteria. + A generic object representing the implementing statement type. + + + + Executes the remove statement. + + A object containing the results of the execution. + + + + Represents a database object. + + + + + Gets the session that owns the database object. + + + + + Gets the schema that owns the database object. + + + + + Gets the database object name. + + + + + Verifies that the database object exists in the database. + + True if the object exists in database, false otherwise. + + + + Represents a generic document in JSON format. + + + + + Initializes a new instance of the DbDoc class based on the object provided. The value can be a domain object, anonymous object, or JSON string. + + The value for this DbDoc. + + + + Gets the value of a document property. + + The key path for the property. + + + + + Gets the identifier of the document. + + + + + Gets a value indicating if this document has an identifier (property named _id with a value). + + + + + Sets a property on this document. + + The key of the property. + The new property value. + + + + Returns this document in Json format. + + A Json formatted string. + + + + Compares this DbDoc with another one. + + The DbDoc to compare to. + True if they are equal, false otherwise. + + + + Gets a value that serves as a hash function for a particular type. + + A hash code for the current object. + + + + Represents a collection of documents with a generic type. + + + + + Initializes a new instance of the generic Collection class based on the specified schema + and name. + + The object associated to this collection. + The name of the collection. + + + + Creates an containing the provided generic object. The add + statement can be further modified before execution. + + The generic object to add. + An object containing the object to add. + + + + Defines elements that allow to iterate through the contents of various items. + + + + + Initializes a new instance of the Iterator class. + + + + + This method is not yet implemented. + + + + Exception is always thrown since the body of the method is not yet implemented. + + + + Encapsulates a string that is meant to be a MySQL expression. + + + + + Gets the string representation of the MySQL expression. + + + + + Main class for session operations related to Connector/NET implementation of the X DevAPI. + + + + + Opens a session to the server given or to the first available server if multiple servers were specified. + + The connection string in basic or URI format. + A object representing the established session. + Multiple hosts can be specified as part of the which + will enable client side failover when trying to establish a connection. For additional details and syntax + examples refer to the remarks section. + + + + Opens a session to the server given. + + The connection data for the server. + A object representing the established session. + + + + Enables the creation of connection strings by exposing the connection options as properties. + Contains connection options specific to the X protocol. + + + + + Gets or sets the authentication mechanism to use with X Protocol connections. + + + + + Gets or sets the path to a local file that contains a list of trusted Certificate Authorities. + + + + + Gets or sets the path to a local file that contains certificate revocation lists. + + + + + Represents a table column. + + + + + Gets the original column name. + + + + + Gets the alias of the column name. + + + + + Gets the table name the column orginates from. + + + + + Gets the alias of the table name . + + + + + Gets the schema name the column originates from. + + + + + Gets the catalog the schema originates from. + In MySQL protocol this is `def` by default. + + + + + Gets the collation used for this column. + + + + + Gets the character set used for this column. + + + + + Gets the column length. + + + + + Gets the fractional decimal digits for floating point and fixed point numbers. + + + + + Gets the Mysql data type. + + + + + Gets the .NET Clr data type. + + + + + True if it's a signed number. + + + + + True if column is UINT zerofill or BYTES rightpad. + + + + + Initializes a new instance of the Column class. + + + + + Represents a resultset that contains rows of data. + + + + + Gets the columns in this resultset. + + + + + Gets the number of columns in this resultset. + + + + + Gets a list containing the column names in this resultset. + + + + + Gets the rows of this resultset. This collection will be incomplete unless all the rows have been read + either by using the Next method or the Buffer method. + + + + + Gets the value of the column value at the current index. + + The column index. + The CLR value at the column index. + + + + Allows getting the value of the column value at the current index. + + The column index. + The CLR value at the column index. + + + + Returns the index of the given column name. + + The name of the column to find. + The numeric index of column. + + + + Represents a single row of data in a table. + + + + + Gets the value of the row at the given index. + + The column index to retrieve the value. + The value at the index. + + + + Gets the value of the column as a string. + + The name of the column. + The value of the column as a string. + + + + Gets a string based indexer into the row. Returns the value as a CLR type. + + The column index to get. + The CLR value for the column. + + + + Inherits from . Creates a resultset that contains rows of data. + + + + + Represents a resultset that contains rows of data for relational operations. + + + + + Gets a boolean value indicating if this result has data. + + + + + Gets the number of records affected by the statement that generated this result. + + + + + Gets the last inserted identifier (if there is one) by the statement that generated this result. + + + + + Moves to next resultset. + + True if there is a new resultset, false otherwise. + + + + Represents a sql statement. + + + + + Initializes a new instance of the SqlStament class bassed on the session and sql statement. + + The session the Sql statement belongs to. + The Sql statement. + + + + Gets the current Sql statement. + + + + + Gets the list of parameters associated to this Sql statement. + + + + + Executes the current Sql statement. + + A object with the resultset and execution status. + + + + Binds the parameters values by position. + + The parameter values. + This set with the binded parameters. + + + + Represents a server Table or View. + + + + + Gets a value indicating whether the object is + a View (True) or a Table (False). + + + + + Creates a set with the columns to select. The table select + statement can be further modified before execution. This method is intended to select a set + of table rows. + + The optional column names to select. + A object for select chain operations. + + + + Creates a set with the fileds to insert to. The table + insert statement can be further modified before exeuction. This method is intended to + insert one or multiple rows into a table. + + The list of fields to insert. + A object for insert chain operations. + + + + Creates a . This method is intended to update table rows + values. + + A object for update chain operations. + + + + Creates a . This method is intended to delete rows from a + table. + + A object for delete chain operations. + + + + Returns the number of rows in the table on the server. + + The number of rows. + + + + Verifies if the table exists in the database. + + true if the table exists; otherwise, false. + + + + Represents a chaining table delete statement. + + + + + Sets user-defined sorting criteria for the operation. The strings use normal SQL syntax like + "order ASC" or "pages DESC, age ASC". + + The order criteria. + A generic object representing the implementing statement type. + + + + Executes the delete statement. + + A object containing the results of the delete execution. + + + + Represents a chaining table insert statement. + + + + + Executes the insert statement. + + A object containing the results of the insert statement. + + + + Values to be inserted. + Multiple rows supported. + + The values to be inserted. + This same object. + + + + Represents a chaining table select statement. + + + + + Executes the select statement. + + A object containing the results of the execution and data. + + + + Sets user-defined limit and offset for the operation. + + The number of items to be returned. + The number of items to be skipped. + This same object set with the specified limit. + + + + Locks matching rows against updates. + + Optional row lock option to use. + This same object set with lock shared option. + The server version is lower than 8.0.3. + + + + Locks matching rows so no other transaction can read or write to it. + + Optional row lock option to use. + This same object set with the lock exclusive option. + The server version is lower than 8.0.3. + + + + Sets the table aggregation. + + The column list for aggregation. + This same object set with the specified group-by criteria. + + + + Filters criteria for aggregated groups. + + The filter criteria for aggregated groups. + This same object set with the specified filter criteria. + + + + Sets user-defined sorting criteria for the operation. The strings use normal SQL syntax like + "order ASC" or "pages DESC, age ASC". + + The order criteria. + A generic object that represents the implementing statement type. + + + + Represents a chaining table update statement. + + + + + Executes the update statement. + + A object ocntaining the results of the update statement execution. + + + + Column and value to be updated. + + Column name. + Value to be updated. + This same object. + + + + Sets user-defined sorting criteria for the operation. The strings use normal SQL syntax like + "order ASC" or "pages DESC, age ASC". + + The order criteria. + A generic object that represents the implementing statement type. + + + + Represents a schema or database. + + + + + Session related to current schema. + + + + + Returns a list of all collections in this schema. + + A list representing all found collections. + + + + Returns a list of all tables in this schema. + + A list representing all found tables. + + + + Gets a collection by name. + + The name of the collection to get. + Ensures the collection exists in the schema. + A object matching the given name. + + + + Gets a typed collection object. This is useful for using domain objects. + + The type of collection returned. + The name of collection to get. + A generic object set with the given name. + + + + Gets the given collection as a table. + + The name of the collection. + A object set with the given name. + + + + Gets a table object. Upon return the object may or may not be valid. + + The name of the table object. + A object set with the given name. + + + + Creates a collection. + + The name of the collection to create. + If false, it will throw an exception if collection exists. + Collection referente. + + + + Drops the given collection. + + The name of the collection to drop. + is null. + + + + Determines if this schema actually exists. + + True if exists, false otherwise. + + + + Represents a single server session. + + + + + Returns a object that can be used to execute the given SQL. + + The SQL to execute. + A object set with the provided SQL. + + + + Sets the schema in the database. + + The schema name to be set. + + + + Executes a query in the database to get the current schema. + + Current database object or null if no schema is selected. + + + Holder for reflection information generated from mysqlx.proto + + + File descriptor for mysqlx.proto + + + + IDs of messages that can be sent from client to the server + + .. note:: + this message is never sent on the wire. It is only used to let ``protoc`` + + * generate constants + * check for uniqueness + + + + Container for nested types declared in the ClientMessages message type. + + + + IDs of messages that can be sent from server to client + + .. note:: + this message is never sent on the wire. It is only used to let ``protoc`` + + * generate constants + * check for uniqueness + + + + Container for nested types declared in the ServerMessages message type. + + + + NOTICE has to stay at 11 forever + + + + + generic Ok message + + + + Field number for the "msg" field. + + + + optional + + + + + generic Error message + + A ``severity`` of ``ERROR`` indicates the current message sequence is + aborted for the given error and the session is ready for more. + + In case of a ``FATAL`` error message the client should not expect + the server to continue handling any further messages and should + close the connection. + + :param severity: severity of the error message + :param code: error-code + :param sql_state: SQL state + :param msg: human readable error message + + + + Field number for the "severity" field. + + + + optional [ default = ERROR ] + + + + Field number for the "code" field. + + + + required + + + + Field number for the "sql_state" field. + + + + required + + + + Field number for the "msg" field. + + + + required + + + + Container for nested types declared in the Error message type. + + + Holder for reflection information generated from mysqlx_connection.proto + + + File descriptor for mysqlx_connection.proto + + + + a Capability + + a tuple of a ``name`` and a :protobuf:msg:`Mysqlx.Datatypes::Any` + + + + Field number for the "name" field. + + + + required + + + + Field number for the "value" field. + + + + required + + + + + Capabilities + + + + Field number for the "capabilities" field. + + + + get supported connection capabilities and their current state + + :returns: :protobuf:msg:`Mysqlx.Connection::Capabilities` or :protobuf:msg:`Mysqlx::Error` + + + + + sets connection capabilities atomically + + only provided values are changed, other values are left unchanged. + If any of the changes fails, all changes are discarded. + + :precond: active sessions == 0 + :returns: :protobuf:msg:`Mysqlx::Ok` or :protobuf:msg:`Mysqlx::Error` + + + + Field number for the "capabilities" field. + + + + required + + + + + announce to the server that the client wants to close the connection + + it discards any session state of the server + + :Returns: :protobuf:msg:`Mysqlx::Ok` + + + + Holder for reflection information generated from mysqlx_crud.proto + + + File descriptor for mysqlx_crud.proto + + + + DataModel to use for filters, names, ... + + + + + ViewAlgorithm defines how MySQL Server processes the view + + + + + MySQL chooses which algorithm to use + + + + + the text of a statement that refers to the view and the view definition are merged + + + + + the view are retrieved into a temporary table + + + + + ViewSqlSecurity defines the security context in which the view is going to be + executed, this means that VIEW can be executed with current user permissions or + with permissions of the uses who defined the VIEW + + + + + ViewCheckOption limits the write operations done on a `VIEW` + (`INSERT`, `UPDATE`, `DELETE`) to rows in which the `WHERE` clause is `TRUE` + + + + + the view WHERE clause is checked, but no underlying views are checked + + + + + the view WHERE clause is checked, then checking recurses to underlying views + + + + + column definition + + + + Field number for the "name" field. + + + + optional + + + + Field number for the "alias" field. + + + + optional + + + + Field number for the "document_path" field. + + + + a projection + + :param source: the expression identifying an element from the source data + which can include a column identifier or any expression + :param alias: optional alias. Required for DOCUMENTs (clients may use + the source string as default) + + + + Field number for the "source" field. + + + + required + + + + Field number for the "alias" field. + + + + optional + + + + + collection + + + + Field number for the "name" field. + + + + required + + + + Field number for the "schema" field. + + + + optional + + + + + limit + + :param row_count: maximum rows to filter + :param offset: maximum rows to skip before applying the row_count + + + + Field number for the "row_count" field. + + + + required + + + + Field number for the "offset" field. + + + + optional + + + + + sort order + + + + Field number for the "expr" field. + + + + required + + + + Field number for the "direction" field. + + + + optional//[ default=ASC ] + + + + Container for nested types declared in the Order message type. + + + + update operations + + :param source: specification of the value to be updated + if data_model is TABLE, a column name may be specified and also a document path, if the column has type JSON + if data_model is DOCUMENT, only document paths are allowed + in both cases, schema and table must be not set + :param operation: the type of operation to be performed + :param value: an expression to be computed as the new value for the operation + + + + Field number for the "source" field. + + + + required + + + + Field number for the "operation" field. + + + + required + + + + Field number for the "value" field. + + + + optional + + + + Container for nested types declared in the UpdateOperation message type. + + + + only allowed for TABLE + + + + + no value (removes the identified path from a object or array) + + + + + sets the new value on the identified path + + + + + replaces a value if the path exists + + + + + source and value must be documents + + + + + insert the value in the array at the index identified in the source path + + + + + append the value on the array at the identified path + + + + + merge JSON object value with the provided patch expression + + + + + Find Documents/Rows in a Collection/Table + + .. uml:: + + client -> server: Find + ... one or more Resultset ... + + :param collection: collection to insert into + :param data_model: datamodel that the operations refer to + :param projection: list of column projections that shall be returned + :param args: values for parameters used in filter expression + :param criteria: filter criteria + :param limit: numbers of rows that shall be skipped and returned + :param order: sort-order in which the rows/document shall be returned in + :param grouping: column expression list for aggregation (GROUP BY) + :param grouping_criteria: filter criteria for aggregated groups + :param locking: perform row locking on matches + :param locking_options: additional options how to handle locked rows + :Returns: :protobuf:msg:`Mysqlx.Resultset::` + + + + Field number for the "collection" field. + + + + required + + + + Field number for the "data_model" field. + + + + optional + + + + Field number for the "projection" field. + + + Field number for the "criteria" field. + + + + optional + + + + Field number for the "args" field. + + + Field number for the "limit" field. + + + + optional + + + + Field number for the "order" field. + + + Field number for the "grouping" field. + + + Field number for the "grouping_criteria" field. + + + + optional + + + + Field number for the "locking" field. + + + + optional + + + + Field number for the "locking_options" field. + + + + optional + + + + Container for nested types declared in the Find message type. + + + + Lock matching rows against updates + + + + + Lock matching rows so no other transaction can read or write to it + + + + + Do not wait to acquire row lock, fail with an error if a requested row is locked + + + + + Do not wait to acquire a row lock, remove locked rows from the result set + + + + + Insert documents/rows into a collection/table + + :param collection: collection to insert into + :param data_model: datamodel that the operations refer to + :param projection: name of the columns to insert data into (empty if data_model is DOCUMENT) + :param row: set of rows to insert into the collection/table (a single expression with a JSON document literal or an OBJECT expression) + :param args: values for parameters used in row expressions + :param upsert: true if this should be treated as an Upsert (that is, update on duplicate key) + :Returns: :protobuf:msg:`Mysqlx.Resultset::` + + + + Field number for the "collection" field. + + + + required + + + + Field number for the "data_model" field. + + + + optional + + + + Field number for the "projection" field. + + + Field number for the "row" field. + + + Field number for the "args" field. + + + Field number for the "upsert" field. + + + + optional//[default = false] + + + + Container for nested types declared in the Insert message type. + + + Field number for the "field" field. + + + + Update documents/rows in a collection/table + + :param collection: collection to change + :param data_model: datamodel that the operations refer to + :param criteria: filter expression to match rows that the operations will apply on + :param args: values for parameters used in filter expression + :param limit: limits the number of rows to match + :param order: specifies order of matched rows + :param operation: list of operations to be applied. Valid operations will depend on the data_model. + :Returns: :protobuf:msg:`Mysqlx.Resultset::` + + + + Field number for the "collection" field. + + + + required + + + + Field number for the "data_model" field. + + + + optional + + + + Field number for the "criteria" field. + + + + optional + + + + Field number for the "args" field. + + + Field number for the "limit" field. + + + + optional + + + + Field number for the "order" field. + + + Field number for the "operation" field. + + + + Delete documents/rows from a Collection/Table + + :param collection: collection to change + :param data_model: datamodel that the operations refer to + :param criteria: filter expression to match rows that the operations will apply on + :param args: values for parameters used in filter expression + :param limit: limits the number of rows to match + :param order: specifies order of matched rows + :Returns: :protobuf:msg:`Mysqlx.Resultset::` + + + + Field number for the "collection" field. + + + + required + + + + Field number for the "data_model" field. + + + + optional + + + + Field number for the "criteria" field. + + + + optional + + + + Field number for the "args" field. + + + Field number for the "limit" field. + + + + optional + + + + Field number for the "order" field. + + + Field number for the "collection" field. + + + + required + + + + Field number for the "definer" field. + + + + optional + + + + Field number for the "algorithm" field. + + + + optional//[default = UNDEFINED] + + + + Field number for the "security" field. + + + + optional//[default = DEFINER] + + + + Field number for the "check" field. + + + + optional + + + + Field number for the "column" field. + + + Field number for the "stmt" field. + + + + required + + + + Field number for the "replace_existing" field. + + + + optional//[default = false] + + + + Field number for the "collection" field. + + + + required + + + + Field number for the "definer" field. + + + + optional + + + + Field number for the "algorithm" field. + + + + optional + + + + Field number for the "security" field. + + + + optional + + + + Field number for the "check" field. + + + + optional + + + + Field number for the "column" field. + + + Field number for the "stmt" field. + + + + optional + + + + Field number for the "collection" field. + + + + required + + + + Field number for the "if_exists" field. + + + + optional//[ default = false ] + + + + Holder for reflection information generated from mysqlx_datatypes.proto + + + File descriptor for mysqlx_datatypes.proto + + + + a scalar + + + + Field number for the "type" field. + + + + required + + + + Field number for the "v_signed_int" field. + + + + optional + + + + Field number for the "v_unsigned_int" field. + + + + optional + + + + Field number for the "v_octets" field. + + + + 4 is unused, was Null which doesn't have a storage anymore + + + + Field number for the "v_double" field. + + + + optional + + + + Field number for the "v_float" field. + + + + optional + + + + Field number for the "v_bool" field. + + + + optional + + + + Field number for the "v_string" field. + + + + optional + + + + Enum of possible cases for the "default_oneof" oneof. + + + Container for nested types declared in the Scalar message type. + + + + a string with a charset/collation + + + + Field number for the "value" field. + + + + required + + + + Field number for the "collation" field. + + + + optional + + + + + an opaque octet sequence, with an optional content_type + See ``Mysqlx.Resultset.ContentType_BYTES`` for list of known values. + + + + Field number for the "value" field. + + + + required + + + + Field number for the "content_type" field. + + + + optional + + + + + a object + + + + Field number for the "fld" field. + + + Container for nested types declared in the Object message type. + + + Field number for the "key" field. + + + + required + + + + Field number for the "value" field. + + + + required + + + + + a Array + + + + Field number for the "value" field. + + + + a helper to allow all field types + + + + Field number for the "type" field. + + + + required + + + + Field number for the "scalar" field. + + + + optional + + + + Field number for the "obj" field. + + + + optional + + + + Field number for the "array" field. + + + + optional + + + + Container for nested types declared in the Any message type. + + + Holder for reflection information generated from mysqlx_expect.proto + + + File descriptor for mysqlx_expect.proto + + + + open an Expect block and set/unset the conditions that have to be fulfilled + + if any of the conditions fail, all enclosed messages will fail with + a Mysqlx.Error message. + + :returns: :protobuf:msg:`Mysqlx::Ok` on success, :protobuf:msg:`Mysqlx::Error` on error + + + + Field number for the "op" field. + + + + [ default = EXPECT_CTX_COPY_PREV ];//optional + + + + Field number for the "cond" field. + + + Container for nested types declared in the Open message type. + + + + copy the operations from the parent Expect-block + + + + + start with a empty set of operations + + + + Field number for the "condition_key" field. + + + + required + + + + Field number for the "condition_value" field. + + + + optional + + + + Field number for the "op" field. + + + + [ default = EXPECT_OP_SET ];//optional + + + + Container for nested types declared in the Condition message type. + + + + Change error propagation behaviour + + + + + Check if X Protocol field exists + + + + + Check if X Protocol support document _id generation + + + + + set the condition + + set, if not set + overwrite, if set + + + + + unset the condition + + + + + close a Expect block + + closing a Expect block restores the state of the previous Expect block + for the following messages + + :returns: :protobuf:msg:`Mysqlx::Ok` on success, :protobuf:msg:`Mysqlx::Error` on error + + + + Holder for reflection information generated from mysqlx_expr.proto + + + File descriptor for mysqlx_expr.proto + + + + Expressions + + the "root" of the expression tree + + .. productionlist:: + expr: `operator` | + : `identifier` | + : `function_call` | + : variable | + : `literal` | + : placeholder + + If expression type is PLACEHOLDER then it refers to the value of a parameter + specified when executing a statement (see `args` field of `StmtExecute` command). + Field `position` (which must be present for such an expression) gives 0-based + position of the parameter in the parameter list. + + + + Field number for the "type" field. + + + + required + + + + Field number for the "identifier" field. + + + + optional + + + + Field number for the "variable" field. + + + + optional + + + + Field number for the "literal" field. + + + + optional + + + + Field number for the "function_call" field. + + + + optional + + + + Field number for the "operator" field. + + + + optional + + + + Field number for the "position" field. + + + + optional + + + + Field number for the "object" field. + + + + optional + + + + Field number for the "array" field. + + + + optional + + + + Container for nested types declared in the Expr message type. + + + + identifier: name, schame.name + + .. productionlist:: + identifier: string "." string | + : string + + + + Field number for the "name" field. + + + + required + + + + Field number for the "schema_name" field. + + + + optional + + + + + DocumentPathItem + + .. productionlist:: + document_path: path_item | path_item document_path + path_item : member | array_index | "**" + member : "." string | "." "*" + array_index : "[" number "]" | "[" "*" "]" + + + + Field number for the "type" field. + + + + required + + + + Field number for the "value" field. + + + + optional + + + + Field number for the "index" field. + + + + optional + + + + Container for nested types declared in the DocumentPathItem message type. + + + + .member + + + + + .* + + + + + [index] + + + + + [*] + + + + + ** + + + + + col_identifier (table): col@doc_path, tbl.col@doc_path col, tbl.col, schema.tbl.col + col_identifier (document): doc_path + + .. productionlist:: + col_identifier: string "." string "." string | + : string "." string | + : string | + : string "." string "." string "@" document_path | + : string "." string "@" document_path | + : string "@" document_path | + : document_path + document_path: member | arrayLocation | doubleAsterisk + member = "." string | "." "*" + arrayLocation = "[" index "]" | "[" "*" "]" + doubleAsterisk = "**" + + + + Field number for the "document_path" field. + + + Field number for the "name" field. + + + + optional + + + + Field number for the "table_name" field. + + + + optional + + + + Field number for the "schema_name" field. + + + + optional + + + + + function call: ``func(a, b, "1", 3)`` + + .. productionlist:: + function_call: `identifier` "(" [ `expr` ["," `expr` ]* ] ")" + + + + Field number for the "name" field. + + + + required + + + + Field number for the "param" field. + + + + operator: ``<<(a, b)`` + + .. note:: + + Non-authoritative list of operators implemented (case sensitive): + + Nullary + * ``*`` + * ``default`` + + Unary + * ``!`` + * ``sign_plus`` + * ``sign_minus`` + * ``~`` + + Binary + * ``&&`` + * ``||`` + * ``xor`` + * ``==`` + * ``!=`` + * ``>`` + * ``>=`` + * ``<`` + * ``<=`` + * ``&`` + * ``|`` + * ``^`` + * ``<<`` + * ``>>`` + * ``+`` + * ``-`` + * ``*`` + * ``/`` + * ``div`` + * ``%`` + * ``is`` + * ``is_not`` + * ``regexp`` + * ``not_regexp`` + * ``like`` + * ``not_like`` + * ``cast`` + * ``cont_in`` + * ``not_cont_in`` + + Using special representation, with more than 2 params + * ``in`` (param[0] IN (param[1], param[2], ...)) + * ``not_in`` (param[0] NOT IN (param[1], param[2], ...)) + + Ternary + * ``between`` + * ``between_not`` + * ``date_add`` + * ``date_sub`` + + Units for date_add/date_sub + * ``MICROSECOND`` + * ``SECOND`` + * ``MINUTE`` + * ``HOUR`` + * ``DAY`` + * ``WEEK`` + * ``MONTH`` + * ``QUARTER`` + * ``YEAR`` + * ``SECOND_MICROSECOND`` + * ``MINUTE_MICROSECOND`` + * ``MINUTE_SECOND`` + * ``HOUR_MICROSECOND`` + * ``HOUR_SECOND`` + * ``HOUR_MINUTE`` + * ``DAY_MICROSECOND`` + * ``DAY_SECOND`` + * ``DAY_MINUTE`` + * ``DAY_HOUR`` + + Types for cast + * ``BINARY[(N)]`` + * ``CHAR[(N)]`` + * ``DATE`` + * ``DATETIME`` + * ``DECIMAL[(M[,D])]`` + * ``JSON`` + * ``SIGNED [INTEGER]`` + * ``TIME`` + * ``UNSIGNED [INTEGER]`` + + .. productionlist:: + operator: `name` "(" [ `expr` ["," `expr` ]* ] ")" + + + + Field number for the "name" field. + + + + required + + + + Field number for the "param" field. + + + + an object (with expression values) + + + + Field number for the "fld" field. + + + Container for nested types declared in the Object message type. + + + Field number for the "key" field. + + + + required + + + + Field number for the "value" field. + + + + required + + + + + a Array of expressions + + + + Field number for the "value" field. + + + Holder for reflection information generated from mysqlx_notice.proto + + + File descriptor for mysqlx_notice.proto + + + + Common Frame for all Notices + + ===================================================== ===== + .type value + ===================================================== ===== + :protobuf:msg:`Mysqlx.Notice::Warning` 1 + :protobuf:msg:`Mysqlx.Notice::SessionVariableChanged` 2 + :protobuf:msg:`Mysqlx.Notice::SessionStateChanged` 3 + ===================================================== ===== + + :param type: the type of the payload + :param payload: the payload of the notification + :param scope: global or local notification + + + + Field number for the "type" field. + + + + required + + + + Field number for the "scope" field. + + + + [ default = GLOBAL ];//optional + + + + Field number for the "payload" field. + + + + optional + + + + Container for nested types declared in the Frame message type. + + + + Server-side warnings and notes + + ``.scope`` == ``local`` + ``.level``, ``.code`` and ``.msg`` map the content of + + .. code-block:: sql + + SHOW WARNINGS + + ``.scope`` == ``global`` + (undefined) will be used for global, unstructured messages like: + + * server is shutting down + * a node disconnected from group + * schema or table dropped + + ========================================== ======================= + :protobuf:msg:`Mysqlx.Notice::Frame` field value + ========================================== ======================= + ``.type`` 1 + ``.scope`` ``local`` or ``global`` + ========================================== ======================= + + :param level: warning level: Note or Warning + :param code: warning code + :param msg: warning message + + + + Field number for the "level" field. + + + + [ default = WARNING ];//optional + + + + Field number for the "code" field. + + + + required + + + + Field number for the "msg" field. + + + + required + + + + Container for nested types declared in the Warning message type. + + + + Notify clients about changes to the current session variables + + Every change to a variable that is accessible through: + + .. code-block:: sql + + SHOW SESSION VARIABLES + + ========================================== ========= + :protobuf:msg:`Mysqlx.Notice::Frame` field value + ========================================== ========= + ``.type`` 2 + ``.scope`` ``local`` + ========================================== ========= + + :param namespace: namespace that param belongs to + :param param: name of the variable + :param value: the changed value of param + + + + Field number for the "param" field. + + + + required + + + + Field number for the "value" field. + + + + optional + + + + + Notify clients about changes to the internal session state + + ========================================== ========= + :protobuf:msg:`Mysqlx.Notice::Frame` field value + ========================================== ========= + ``.type`` 3 + ``.scope`` ``local`` + ========================================== ========= + + :param param: parameter key + :param value: updated value + + + + Field number for the "param" field. + + + + required + + + + Field number for the "value" field. + + + Container for nested types declared in the SessionStateChanged message type. + + + + .. more to be added + + + + Holder for reflection information generated from mysqlx_resultset.proto + + + File descriptor for mysqlx_resultset.proto + + + + a hint about the higher-level encoding of a BYTES field + + ====== ====== =========== + type value description + ====== ====== =========== + BYTES 0x0001 GEOMETRY (WKB encoding) + BYTES 0x0002 JSON (text encoding) + BYTES 0x0003 XML (text encoding) + ====== ====== =========== + + .. note:: + this list isn't comprehensive. As guideline: the field's value is expected + to pass a validator check on client and server if this field is set. + If the server adds more internal datatypes that rely on BLOB storage + like image manipulation, seeking into complex types in BLOBs, ... more + types will be added. + + + + + a hint about the higher-level encoding of a DATETIME field + + ====== ====== =========== + type value description + ======== ====== =========== + DATE 0x0001 DATETIME contains only date part + DATETIME 0x0002 DATETIME contains both date and time parts + ====== ====== =========== + + + + + resultsets are finished, OUT paramset is next + + + + + resultset and out-params are finished, but more resultsets available + + + + + all resultsets are finished + + + + + meta data of a Column + + .. note:: the encoding used for the different ``bytes`` fields in the meta data is externally + controlled. + .. seealso:: https://dev.mysql.com/doc/refman/8.0/en/charset-connection.html + + .. note:: + The server may not set the ``original_{table|name}`` fields if they are equal to the plain + ``{table|name}`` field. + + A client has to reconstruct it like:: + + if .original_name is empty and .name is not empty: + .original_name = .name + + if .original_table is empty and .table is not empty: + .original_table = .table + + .. note:: + ``compact metadata format`` can be requested by the client. In that case only ``.type`` is set and + all other fields are empty. + + :param type: + .. table:: Expected Datatype of Mysqlx.Resultset.Row per SQL Type for non NULL values + + ================= ============ ======= ========== ====== ======== + SQL Type .type .length .frac_dig .flags .charset + ================= ============ ======= ========== ====== ======== + TINY SINT x + TINY UNSIGNED UINT x x + SHORT SINT x + SHORT UNSIGNED UINT x x + INT24 SINT x + INT24 UNSIGNED UINT x x + INT SINT x + INT UNSIGNED UINT x x + LONGLONG SINT x + LONGLONG UNSIGNED UINT x x + DOUBLE DOUBLE x x x + FLOAT FLOAT x x x + DECIMAL DECIMAL x x x + VARCHAR,CHAR,... BYTES x x x + GEOMETRY BYTES + TIME TIME x + DATE DATETIME x + DATETIME DATETIME x + YEAR UINT x x + TIMESTAMP DATETIME x + SET SET x + ENUM ENUM x + NULL BYTES + BIT BIT x + ================= ============ ======= ========== ====== ======== + + .. note:: the SQL "NULL" value is sent as an empty field value in :protobuf:msg:`Mysqlx.Resultset::Row` + .. seealso:: protobuf encoding of primitive datatypes are decribed in https://developers.google.com/protocol-buffers/docs/encoding + + SINT + + ``.length`` + maximum number of displayable decimal digits (including minus sign) of the type + + .. note:: + valid range is 0-255, but usually you'll see 1-20 + + =============== == + SQL Type max digits per type + =============== == + TINY SIGNED 4 + SHORT SIGNED 6 + INT24 SIGNED 8 + INT SIGNED 11 + LONGLONG SIGNED 20 + =============== == + + .. seealso:: definition of ``M`` in https://dev.mysql.com/doc/refman/8.0/en/numeric-type-overview.html + + ``value`` + variable length encoded signed 64 integer + + UINT + + ``.flags & 1`` (zerofill) + the client has to left pad with 0's up to .length + + ``.length`` + maximum number of displayable decimal digits of the type + + .. note:: + valid range is 0-255, but usually you'll see 1-20 + + ================= == + SQL Type max digits per type + ================= == + TINY UNSIGNED 3 + SHORT UNSIGNED 5 + INT24 UNSIGNED 8 + INT UNSIGNED 10 + LONGLONG UNSIGNED 20 + ================= == + + .. seealso:: definition of ``M`` in https://dev.mysql.com/doc/refman/8.0/en/numeric-type-overview.html + + ``value`` + variable length encoded unsigned 64 integer + + BIT + + ``.length`` + maximum number of displayable binary digits + + .. note:: valid range for M of the ``BIT`` type is 1 - 64 + .. seealso:: https://dev.mysql.com/doc/refman/8.0/en/numeric-type-overview.html + + ``value`` + variable length encoded unsigned 64 integer + + DOUBLE + + ``.length`` + maximum number of displayable decimal digits (including the decimal point and ``.fractional_digits``) + + ``.fractional_digits`` + maximum number of displayable decimal digits following the decimal point + + ``value`` + encoded as Protobuf's 'double' + + FLOAT + + ``.length`` + maximum number of displayable decimal digits (including the decimal point and ``.fractional_digits``) + + ``.fractional_digits`` + maximum number of displayable decimal digits following the decimal point + + ``value`` + encoded as Protobuf's 'float' + + BYTES, ENUM + BYTES is used for all opaque byte strings that may have a charset + + * TINYBLOB, BLOB, MEDIUMBLOB, LONGBLOB + * TINYTEXT, TEXT, MEDIUMTEXT, LONGTEXT + * VARCHAR, VARBINARY + * CHAR, BINARY + * ENUM + + ``.length`` + the maximum length of characters of the underlying type + + ``.flags & 1`` (rightpad) + if the length of the field is less than ``.length``, the receiver is + supposed to add padding characters to the right end of the string. + If the ``.charset`` is "binary", the padding character is ``0x00``, + otherwise it is a space character as defined by that character set. + + ============= ======= ======== ======= + SQL Type .length .charset .flags + ============= ======= ======== ======= + TINYBLOB 256 binary + BLOB 65535 binary + VARCHAR(32) 32 utf8 + VARBINARY(32) 32 utf8_bin + BINARY(32) 32 binary rightpad + CHAR(32) 32 utf8 rightpad + ============= ======= ======== ======= + + ``value`` + sequence of bytes with added one extra '\0' byte at the end. To obtain the + original string, the extra '\0' should be removed. + .. note:: the length of the string can be acquired with protobuf's field length() method + length of sequence-of-bytes = length-of-field - 1 + .. note:: the extra byte allows to distinguish between a NULL and empty byte sequence + + TIME + A time value. + + ``value`` + the following bytes sequence: + + ``| negate [ | hour | [ | minutes | [ | seconds | [ | useconds | ]]]]`` + + * negate - one byte, should be one of: 0x00 for "+", 0x01 for "-" + * hour - optional variable length encoded unsigned64 value for the hour + * minutes - optional variable length encoded unsigned64 value for the minutes + * seconds - optional variable length encoded unsigned64 value for the seconds + * useconds - optional variable length encoded unsigned64 value for the microseconds + + .. seealso:: protobuf encoding in https://developers.google.com/protocol-buffers/docs/encoding + .. note:: hour, minutes, seconds, useconds are optional if all the values to the right are 0 + + Example: 0x00 -> +00:00:00.000000 + + DATETIME + A date or date and time value. + + ``value`` + a sequence of variants, arranged as follows: + + ``| year | month | day | [ | hour | [ | minutes | [ | seconds | [ | useconds | ]]]]`` + + * year - variable length encoded unsigned64 value for the year + * month - variable length encoded unsigned64 value for the month + * day - variable length encoded unsigned64 value for the day + * hour - optional variable length encoded unsigned64 value for the hour + * minutes - optional variable length encoded unsigned64 value for the minutes + * seconds - optional variable length encoded unsigned64 value for the seconds + * useconds - optional variable length encoded unsigned64 value for the microseconds + + .. note:: hour, minutes, seconds, useconds are optional if all the values to the right are 0 + + ``.flags & 1`` (timestamp) + + ============= ======= + SQL Type .flags + ============= ======= + DATETIME + TIMESTAMP 1 + + DECIMAL + An arbitrary length number. The number is encoded as a single byte + indicating the position of the decimal point followed by the Packed BCD + encoded number. Packed BCD is used to simplify conversion to and + from strings and other native arbitrary precision math datatypes. + .. seealso:: packed BCD in https://en.wikipedia.org/wiki/Binary-coded_decimal + + ``.length`` + maximum number of displayable decimal digits (*excluding* the decimal point and sign, but including ``.fractional_digits``) + + .. note:: should be in the range of 1 - 65 + + ``.fractional_digits`` + is the decimal digits to display out of length + + .. note:: should be in the range of 0 - 30 + + ``value`` + the following bytes sequence: + + ``| scale | BCD | sign | [0x0] |`` + + * scale - 8bit scale value (number of decimal digit after the '.') + * BCD - BCD encoded digits (4 bits for each digit) + * sign - sign encoded on 4 bits (0xc = "+", 0xd = "-") + * 0x0 - last 4bits if length(digits) % 2 == 0 + + Example: x04 0x12 0x34 0x01 0xd0 -> -12.3401 + + SET + A list of strings representing a SET of values. + + ``value`` + A sequence of 0 or more of protobuf's bytes (length prepended octets) or one of + the special sequences with a predefined meaning listed below. + + Example (length of the bytes array shown in brackets): + * ``[0]`` - the NULL value + * ``[1] 0x00`` - a set containing a blank string '' + * ``[1] 0x01`` - this would be an invalid value, but is to be treated as the empty set + * ``[2] 0x01 0x00`` - a set with a single item, which is the '\0' character + * ``[8] 0x03 F O O 0x03 B A R`` - a set with 2 items: FOO,BAR + + :param name: name of the column + :param original_name: name of the column before an alias was applied + :param table: name of the table the column orginates from + :param original_table: name of the table the column orginates from before an alias was applied + :param schema: schema the column originates from + :param catalog: + catalog the schema originates from + + .. note:: + as there is current no support for catalogs in MySQL, don't expect this field to be set. + In the MySQL C/S protocol the field had the value ``def`` all the time. + + :param fractional_digits: displayed factional decimal digits for floating point and fixed point numbers + :param length: maximum count of displayable characters of .type + :param flags: + ``.type`` specific flags + + ======= ====== =========== + type value description + ======= ====== =========== + UINT 0x0001 zerofill + DOUBLE 0x0001 unsigned + FLOAT 0x0001 unsigned + DECIMAL 0x0001 unsigned + BYTES 0x0001 rightpad + ======= ====== =========== + + ====== ================ + value description + ====== ================ + 0x0010 NOT_NULL + 0x0020 PRIMARY_KEY + 0x0040 UNIQUE_KEY + 0x0080 MULTIPLE_KEY + 0x0100 AUTO_INCREMENT + ====== ================ + + default: 0 + :param content_type: + a hint about the higher-level encoding of a BYTES field, for more informations + please refer to Mysqlx.Resultset.ContentType_BYTES enum. + + + + Field number for the "type" field. + + + + datatype of the field in a row + + + + Field number for the "name" field. + + + + optional + + + + Field number for the "original_name" field. + + + + optional + + + + Field number for the "table" field. + + + + optional + + + + Field number for the "original_table" field. + + + + optional + + + + Field number for the "schema" field. + + + + optional + + + + Field number for the "catalog" field. + + + + optional + + + + Field number for the "collation" field. + + + + optional + + + + Field number for the "fractional_digits" field. + + + + optional + + + + Field number for the "length" field. + + + + optional + + + + Field number for the "flags" field. + + + + optional + + + + Field number for the "content_type" field. + + + + optional + + + + Container for nested types declared in the ColumnMetaData message type. + + + + Row in a Resultset + + a row is represented as a list of fields encoded as byte blobs. + Blob of size 0 represents the NULL value. Otherwise, if it contains at least + one byte, it encodes a non-null value of the field using encoding appropriate for the + type of the value given by ``ColumnMetadata``, as specified + in the :protobuf:msg:`Mysqlx.Resultset::ColumnMetaData` description. + + + + Field number for the "field" field. + + + Holder for reflection information generated from mysqlx_session.proto + + + File descriptor for mysqlx_session.proto + + + + the initial message send from the client to the server to start the + authentication proccess + + :param mech_name: authentication mechanism name + :param auth_data: authentication data + :param initial_response: initial response + :Returns: :protobuf:msg:`Mysqlx.Session::AuthenticateContinue` + + + + Field number for the "mech_name" field. + + + + required + + + + Field number for the "auth_data" field. + + + + optional + + + + Field number for the "initial_response" field. + + + + optional + + + + + send by client or server after a :protobuf:msg:`Mysqlx.Session::AuthenticateStart` to + exchange more auth data + + :param auth_data: authentication data + :Returns: :protobuf:msg:`Mysqlx.Session::AuthenticateContinue` + + + + Field number for the "auth_data" field. + + + + required + + + + + sent by the server after successful authentication + + :param auth_data: authentication data + + + + Field number for the "auth_data" field. + + + + optional + + + + + reset the current session + + :Returns: :protobuf:msg:`Mysqlx::Ok` + + + + + close the current session + + :Returns: :protobuf:msg:`Mysqlx::Ok` + + + + Holder for reflection information generated from mysqlx_sql.proto + + + File descriptor for mysqlx_sql.proto + + + + execute a statement in the given namespace + + .. uml:: + + client -> server: StmtExecute + ... zero or more Resultsets ... + server --> client: StmtExecuteOk + + Notices: + This message may generate a notice containing WARNINGs generated by its execution. + This message may generate a notice containing INFO messages generated by its execution. + + :param namespace: namespace of the statement to be executed + :param stmt: statement that shall be executed. + :param args: values for wildcard replacements + :param compact_metadata: send only type information for :protobuf:msg:`Mysqlx.Resultset::ColumnMetadata`, skipping names and others + :returns: + * zero or one :protobuf:msg:`Mysqlx.Resultset::` followed by :protobuf:msg:`Mysqlx.Sql::StmtExecuteOk` + + + + Field number for the "namespace" field. + + + + optional [ default = "sql" ] + + + + Field number for the "stmt" field. + + + + required + + + + Field number for the "args" field. + + + Field number for the "compact_metadata" field. + + + + optional [ default = false ] + + + + + statement executed successful + + +
+
diff --git a/bin/Debug/net461/PCSC.Iso7816.dll b/bin/Debug/net461/PCSC.Iso7816.dll new file mode 100644 index 0000000..eb2b19a Binary files /dev/null and b/bin/Debug/net461/PCSC.Iso7816.dll differ diff --git a/bin/Debug/net461/PCSC.Iso7816.xml b/bin/Debug/net461/PCSC.Iso7816.xml new file mode 100644 index 0000000..7dea6ad --- /dev/null +++ b/bin/Debug/net461/PCSC.Iso7816.xml @@ -0,0 +1,1192 @@ + + + + PCSC.Iso7816 + + + + Application Protocol Data Unit (APDU), defined by the ISO/IEC 7816 standards + + + The currently used ISO case. + + + The currently used protocol. + + + Converts the APDU structure to a transmittable byte array. + A byte array containing the APDU parameters and data in the correct order. + + + Indicates if the APDU is valid. + if the APDU is valid. + + + Converts the APDU structure to a transmittable byte array. + The APDU. + The supplied APDU as byte array. + + + + Coding and meaning of the class byte + + + + The structure and coding of command and response are as described in ISO/IEC 7816. 'x' contains the options for secure messaging and the logical channel. + + + Reserved for future use. + + + Reserved for future use. + + + Reserved for future use. + + + Reserved for future use. + + + Reserved for future use. + + + Reserved for future use. + + + Reserved for future use. + + + The structure of command and response are as described in ISO/IEC 7816. 'x' contains the options for secure messaging and the logical channel. + The coding (and meaning) of command and response are proprietary. + + + The structure of command and response are as described in ISO/IEC 7816. 'x' contains the options for secure messaging and the logical channel. + The coding (and meaning) of command and response are proprietary. + + + If not specified by the application context, structure and coding of command and response are as described in ISO/IEC 7816. 'x' contains the options for secure messaging and the logical channel. + + + The structure of command and response are as described in ISO/IEC 7816. + + + The structure of command and response are as described in ISO/IEC 7816. + + + The structure of command and response are proprietary. + + + The structure of command and response are proprietary. + + + The structure of command and response are proprietary. + + + A class the can be used to build or parse the CLA (Class byte) of a APDU. + + + Initializes a new instance of the class. + The CLA as byte that will be parsed. + + + Initializes a new instance of the class. + The high part of the CLA + The secure messaging format. + The logical channel number. + logicalChannelNumber;Logical channels must be in the range between 0 and 3. + + + Returns the CLA as byte. + + + Gets or sets the high part of the CLA + The high part of the CLA. + + + Gets or sets the secure messaging (SM) format. + + + Gets or sets the logical channel number. + The logical channel number. + value;Logical channels must be in the range between 0 and 3. + + + Implicitly converts a to a . + + The CLA as byte + + + Implicitly converts a to an instance. + CLA as byte. + The parsed CLA. + + + A Command Application Protocol Data Unit (APDU), defined by the ISO/IEC 7816 standards + + A can be build using one of the following : + + CaseAPDU structure + 1CLA INS P1 P2 + 2CLA INS P1 P2 Le + 3CLA INS P1 P2 Lc Data + 4CLA INS P1 P2 Lc Data Le + + See the documentation for for more information. + + + + Initializes a new instance of the class. + The ISO case to use. + The protocol. + + + Gets or sets the CLA byte. + You can use the class to build a well formed CLA byte. + + + Gets the CLA. + The as instance. + + + Gets the instruction byte info. + The as instance. + + + Gets or sets the instruction. + + + Sets the instruction. + + + The first parameter (P1) + + + The second parameter (P2) + + + A combination of parameter P1 and P2 + + + Command APDU data to be transmitted. + You can only set data if you created the with ISO case 3 or 4. + + + Length command + + + The third parameter (P3 or Le) + + + Length expected. + This is the expected number of response data bytes. Do not take account of the status word (SW1 and SW2) here! + + + The expected response size (Le + SW1SW2) + + + Calculates the APDU size in bytes. + The APDU size in bytes depending on the currently selected ISO case. + + + Converts the command APDU to a transmittable byte array. + The command APDU as byte array. + If the command APDU is in an invalid state. + + + Indicates if the command APDU is valid. + if the APDU is valid. + + + Creates a clone of the current instance. The data is NOT copied. + A clone of the current instance. + + + + Creates a GET RESPONSE command after receiving SW1=0x61 (More data available) + + The initial command that has been sent to the card + The received response + The expected size + A GET RESPONSE APDU + + + Category of file types + + + Working elementary file (Working EF) that is intended for storing data not interpreted by the card. + + + Internal elementary file (Internal EF) that is intended for storing data interpreted and/or analyzed by the card and for control purposes. + + + Proprietary file type. + + + Dedicated file (DF) that is used for logical organization of data in a card. + + + A file descriptor. See ISO/IEC7816-4 File control information (FCI) for more information. + + + File type bit mask. + + + Dedicated file (DF) bit. + + + Working elementary file (EF) bit. + + + Internal elementary file (EF) bit. + + + Sharemode bit mask. + + + Shareable bit. + + + Non shareable bit. + + + The file descriptor as single byte structure. + + + Gets the file type. + + + Gets the extended file type. + + + Gets the file sharing mode. + + + Gets file structure information. + + + Initializes a new instance of the class. + The file descriptor byte that shall be parsed. + + + Determines whether the specified bits are set. + The a bit mask. + The bits to check for. + + true if the specified bits are set; otherwise, false. + + + Implicitly converts a to a single byte. + The file descriptor. + A file descriptor as byte. + + + Implicitly converts a single byte to a . + The file descriptor as byte. + A instance as parsed result. + + + + File share mode + + + + Shareable file that supports at least concurrent access on different logical channels. + + + Non shareable file. + + + File structure information for elementary file (EF). + + + File structure mask bits. + + + File has not structure information bit. + + + Transparent bit. + + + Linear fixed bit. + + + Linear fixed TLV bit. + + + Linear variable bit. + + + Linear variable TLV bit. + + + Cyclic bit. + + + Cyclic TLV bit. + + + Initializes a new instance of the class. + The file descriptor containing the file structure information. + + + Gets the file structure type. + + + Gets a value indicating whether the structuring method is a transparent EF. + + + Gets the record information. + Returns a instance if the file structuring method is a record EF. Otherwise . + + + Gets the file descriptor. + The file descriptor as byte. + + + Gets a value indicating whether the structuring method is a record EF. + + true if the EF is record; otherwise, false. + + + File structure types + The following structures of elementary files are defined: + + Transparent structure; the EF contains a sequence of data units. + Record structure; the EF contains a sequence of individually identifiable records. + + When using a record structure, the size of the particular records is either fixed or variable. Furthermore records are organized as a sequence (linear) or as a ring (cyclic). + + + + No information about file structure given + + + Transparent. The EF has a sequence of data units + + + Linear fixed, no further info + + + Linear fixed SIMPLE-TLV (Type-length-value) + + + Linear variable, no further info + + + Linear variable SIMPLE-TLV (Type-length-value) + + + Cyclic, no further info + + + Cyclic, SIMPLE-TLV (Type-length-value) + + + File type + + + Dedicated file (DF) that is used for logical organization of data in the card. + + + Elementary file (EF) that is used for storing data. + The data may or may not be interpreted/analyzed by the card. You need to check the extended file type . + + + A ISO/IEC 7816 compliant reader. + + + Gets the name of the reader. + + + Gets the active protocol. + + + Gets the current share mode. + + + Gets or sets the wait time in milliseconds that is used if an APDU needs to be retransmitted. + + + Gets the maximum number of bytes that can be received. + + + Constructs a command APDU using the active protocol of the reader. + The ISO case that shall be used for this command. + An empty command APDU. + + + Connects the specified reader. + Name of the reader. + The share mode. + The communication protocol. + + + Disconnects the currently connected reader. + The action that shall be executed after disconnect. + + + Transmits the specified command APDU. + The command APDU. + A response containing one ore more . + + + A class that describes the instruction of a command APDU. + + + Initializes a new instance of the class. + The instruction code. + + + Initializes a new instance of the class. + The instruction as byte. + + + Gets or sets the instruction code. + + + Gets or sets the instruction as value. + + + Implicitly converts a to a single INS byte. + A byte containing INS. + + + Implicitly converts a byte to a instance. + The instruction as byte. + A class + + + Implicitly converts a to a instance. + The instruction code. + A instance + + + + Basic instruction codes defined in ISO/IEC 7816-4 + + + + Erase binary + + + Verify + + + Manage channel + + + External authenticate + + + Get challenge + + + Internal authenticate + + + Select file + + + Read binary + + + Read record(s) + + + Get response + + + Envelope + + + Get data + + + Write binary + + + Write record + + + Update binary + + + Put data + + + Update data + + + Append record + + + Decrement value + + + Increment value + + + The APDU is invalid. + + + + APDU bytes + + + + + APDU + + + + Initializes a new instance of the class. + The error message. + + + Initializes a new instance of the class. + The error message. + The inner exception. + + + Initializes a new instance of the class. + The error message. + The APDU. + The inner exception. + + + + Initializes a new instance of the class. + + + + + + APDU message structure for the command-response pair. + + + ISO caseCommand data, Expected response data + 1Command: no data, Expected response: no data + 2Command: no data, Expected response: data + 3Command: data, Expected response: no data + 4Command: data, Expected response: data + + In the card capabilities, the card states that the Lc and the Le field should either be short or extended. A short command has one byte for each length field, an extended command has two bytes for each length field. + + + + No command data. No response data. + + + Lc is valued to 0. + Le is valued to 0. + No data byte is present. + + + + + No command data. Expected response data. + + + Lc is valued to 0. + Le is valued from 1 to 256. + No data byte is present. + + + + + Command data. No response data. + + + Lc is valued from 1 to 255. + Le is valued to 0. + Lc data bytes are present. + + + + + Command data. Expected response data. + + + Lc is valued from 1 to 255. + Le is valued from 1 to 256. + Lc data bytes are present. + + + + + No command data. Expected response data. + + + Lc is valued to 0. + Le is valued from 1 to 65536. + No data byte is present. + + + + + Command data. No response data. + + + Lc is valued from 1 to 65536. + Le is valued to 0. + Lc data bytes are present. + + + + + Command data. Expected response data. + + + Lc is valued from 1 to 65535. + Le is valued from 1 to 65536. + Lc data bytes are present. + + + + + A ISO/IEC 7816 compliant reader. + + + Gets the name of the reader. + + + Gets the active protocol. + + + Gets the current share mode. + + + Gets or sets the wait time in milliseconds that is used if an APDU needs to be retransmitted. + Default is 0 ms + + + Gets the maximum number of bytes that can be received (le) when using a command. + Default is 128 bytes. + + + Finalizes an instance of the class. + + + Initializes a new instance of the class. + The supplied reader will be used for communication with the smart card. + if set to true the supplied will be disconnected on . + If reader is + + + Initializes a new instance of the class and immediately connects to the reader. + The supplied reader will be used for communication with the smart card. + Name of the reader to connect with. + The share mode. + The communication protocol. + if set to true the supplied will be disconnected on . + + + Initializes a new instance of the class that will create its own instance of a . + A context to the PC/SC Resource Manager. + if set to true the will be released on . + If is + + + Initializes a new instance of the class that will create its own instance of a and immediately connect. + A context to the PC/SC Resource Manager. + Name of the reader to connect with. + The share mode. + The communication protocol. + if set to true the will be released on . + + + Initializes a new instance of the class that will create its own instance of a and immediately connect. + A context to the PC/SC Resource Manager. + Name of the reader to connect with. + The share mode. + The communication protocol. + if set to true the will be released on . + Sets the maximum number of bytes that can be received (Le) when using a command. + + + Constructs a command APDU using the active protocol of the reader. + The ISO case that shall be used for this command. + An empty command APDU. + + + Connects the specified reader. + Name of the reader. + The share mode. + The communication protocol. + + + Disconnects the currently connected reader. + The action that shall be executed after disconnect. + + + Transmits the specified command APDU. + The command APDU. + A response containing one ore more . + + + Transmits the specified command APDU. + The command APDU. + A method that will be called if the card signals more data available (SW1=0x61) + A response containing one ore more . + + + + Creates a GET RESPONSE command after receiving SW1=0x61 (More data available) + + The initial command that has been sent to the card + The received response + The expected size + A GET RESPONSE APDU + + + + Releases unmanaged and managed resources. + + + + + Releases unmanaged and - optionally - managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + Record structure information. + Elementary files (EF) that have a sequence of individually identifiable records should use one of the following methods for structuring: + + Linear elementary file (EF) with records of variable size. + Linear elementary file (EF) with records of fixed size. + Cyclic elementary file (EF) with records of fixed size. + + + + + File structuring mask bits. + + + Linear fixed bit. + + + Linear variable bit. + + + Cyclic bit. + + + Initializes a new instance of the class. + The file descriptor. + + + Gets a value indicating whether the EF has cyclic records. + true if the EF is cyclic; otherwise, false. + + + Gets a value indicating whether the EF has linear records. + true if the EF is linear; otherwise, false. + + + Gets a value indicating whether the EF's record size is fixed. + true if the record's size is fixed; otherwise, false. + + + Gets a value indicating whether the EF's record size is variable. + true if the record's size is variable; otherwise, false. + + + Gets a value indicating whether the EF contains simple TLV records. + true if the EF contains simple TLV records; otherwise, false. + + + Gets the file descriptor. + The file descriptor as byte. + + + An aggregation of instances. + When using the result can consist of one or more . If the receives a SW1=0x61 status word, it will automatically transmit a GET RESPONSE command to reader (after waiting ms) to catch all remaining . + + + Gets the at the specified index. + The . + The index. + The at the specified index. + + + The SW1 status of the last received . + + + The SW2 status of the last received . + + + Gets the number of received . + + + Gets the number of received . + + + A combination of SW1 and SW2 as 16bit status word. + It contains the status word of the last received . + + + + if at least one contains data bytes. + + + Initializes a new instance of the class. + + + + Creates a new instance. + + The s in correct order. + The in correct order. + + + Adds the specified response APDU. + The response APDU. + + + Adds the specified PCI. + The PCI. + + + An aggregation of all data bytes in receive order. + An aggregation of all data bytes from all . + + + Gets the of the specified index. + The index. + The of the specified index. + + + Gets the of the specified index. + The index. + The of the specified index. + + + + + + + + + A response APDU + + + Initializes a new instance of the class. + The response as byte array that shall be parsed. + The ISO case that was used when sending the . + The communication protocol. + + + Initializes a new instance of the class. + The response as byte array that shall be parsed. + The ISO case that was used when sending the . + The communication protocol. + If the bytes of the supplied response will be copied. + + + Initializes a new instance of the class. + The response as byte array that shall be parsed. + The size of the response. + The ISO case that was used when sending the . + The communication protocol. + If is greater than the size. + + + Initializes a new instance of the class. + The response as byte array that shall be parsed. + The size of the response. + The ISO case that was used when sending the . + The communication protocol. + If the bytes of the supplied response will be copied. + If is greater than the size. + + + Gets a value indicating whether this response has data. + + true if this response has data; otherwise, false. + + + Indicates if the response APDU is valid. + + if the response APDU is valid. + + + Gets the SW1 status byte. + The response APDU is invalid. + + + Gets the SW1 status byte. + The response APDU is invalid. + + + Gets the combination of SW1 and SW2 as 16bit status word. + The response APDU is invalid. + + + + Gets the length of the response APDU + + + + + Gets the size of the data. + + + + + Gets the full response APDU. + + + The full APDU as byte array. + + + + + Gets the data. + + The data. + The response APDU is invalid. + + + Converts the APDU structure to a transmittable byte array. + A byte array containing the APDU parameters and data in the correct order. + + + + Creates a clone. + + A clone of the current instance. + + + + A enumerator. + + + + + Returns the current element. + + The current element. + if the enumerator reaches the end and therefore is invalid. + + + + Returns the current element. + + The current element. + if the enumerator reaches the end and therefore is invalid. + + + + Initializes a new instance of the class. + + A list of . + + + + Initializes a new instance of the class. + + An enumeration of . + + + + Initializes a new instance of the class. + + An array of . + + + + Returns an enumerator. + + + A objekt, that can be used to enumerate through all . + + + + + Returns an enumerator. + + + A objekt, that can be used to enumerate through all . + + + + + Sets the enumerator the the next element. + + true if there exists another element. Otherwise false. + + + + Resets the enumerator to the beginning. + + + + + Disposes the enumerator and releases all managed resources. + + + + + Releases unmanaged and - optionally - managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Secure messaging (SM) format + + + + No secure messaging + + + Proprietary secure messaging format + + + Command header not authenticated + + + Command header authenticated + + + Meaning for the first status word SW1 (ISO7816-4). + + + Normal data response. SW2 indicates the number of remaining response bytes. + + + Warning. The state of non-volatile memory has not been changed. + SW2 could have one of the following values: + + SW2Meaning + 0x00No information. + 0x81Returned data may be corrupted. + 0x82End of file or end of record reached. The number of bytes read is less than specified in + 0x83The selected file invalidated. + 0x84FCI is not correctly formatted. + + + + + Warning. The state of non-volatile memory has been changed. + SW2 could have one of the following values: + + SW2Meaning + 0x00No information. + 0x81File filled up. + + + + + An error occurred. The state of non-volatile memory has not been changed. + SW2 should be 0x00. + + + An error occurred. The state of non-volatile memory has been changed. + SW2 could have one of the following values: + + SW2Meaning + 0x00No information. + 0x81Memory failure. + + + + + An security error occurred. + + + Error wrong length. + + + The function defined in CLA is not supported. + SW2 could have one of the following values: + + SW2Meaning + 0x00No information. + 0x81Logical channel not supported + 0x82Secure messaging not supported + + + + + Error command not allowed + SW2 could have one of the following values: + + SW2Meaning + 0x00No information. + 0x81The command is not compatible with the file structure. + 0x82The security status is not satisfied. + 0x83The authentication method is blocked. + 0x84The referenced data has been invalidated. + 0x85The conditions are not satisfied. + 0x86The command is not allowed. No current elementary file (EF). + 0x87Expected secure messaging data objects are missing. + 0x88Secure messaging data objects are incorrect. + + + + + Error wrong parameters P1 and P2 + SW2 could have one of the following values: + + SW2Meaning + 0x00No information. + 0x80The parameters in the data field are incorrect. + 0x81The requested function is not supported. + 0x82File not found. + 0x83Record not found. + 0x84The file has not enough free space. + 0x85The parameter is inconsistent with the TLV structure. + 0x86The parameters and are incorrect. + 0x87 is not consistent with . + 0x88The referenced data was not found. + + + + + Error wrong parameters P1 and P2 + + + has the wrong length. + SW2 contains the exact length. + + + The instruction code is invalid or not supported. + + + The Class is not supported. + + + No precise diagnosis available. + + + Normal data response. + + + Error purse balance. + + + Memory error. + + + File error. + + + Error authorization. + + + Normal GET response + + + TLV (tag-length-value) type. + + + Simple + + + ASN.1 (abstract syntax notation) structured using basic encoding rules defined in ISO/IEC8825. + + + diff --git a/bin/Debug/net461/PCSC.dll b/bin/Debug/net461/PCSC.dll new file mode 100644 index 0000000..3f20c09 Binary files /dev/null and b/bin/Debug/net461/PCSC.dll differ diff --git a/bin/Debug/net461/PCSC.xml b/bin/Debug/net461/PCSC.xml new file mode 100644 index 0000000..33c75b8 --- /dev/null +++ b/bin/Debug/net461/PCSC.xml @@ -0,0 +1,5507 @@ + + + + PCSC + + + + + + + + + + + + + + + + + + + + + + + + + + Creates a new instance + + The application context to the PC/SC Resource Manager that will be used for and + + + + + + + + + + + + + + + + Dispose this instance + + true if the user called otherwise false if called from GC finalizer. + + + + + + + + + + + + + + + + + + + + + + + + + Creates a instance + + A connected card/reader handle + + + + Creates a instance + + A connected card/reader handle + If set to true, the reader will destroy the on + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dispose this instance + + If true, all managed resources will be disposed. + + + + Smart card context factory + + + + + Default factory instance. + + + + + Create and establish a new smart card context. + + Scope of the establishment. This can either be a local or remote connection. + A new established smart card context + + + + A communication error occurred. + + + + + Creates a new instance. + + Error number. + + + + Creates a new instance. + + System's error code + Error message + + + + Creates a new instance. + + System's error code + Error message + Inner exception. + + + + Serialization constructor + + + + + + + A supplied buffer is insufficient. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + An internal error occurred. + + + + + Creates a new instance. + + System's error code + + + + Creates a new instance. + + System's error code + Error message + + + + Creates a new instance. + + System's error code + Error message + Inner exception + + + + Serialization constructor + + + + + + + Invalid PC/SC context exception. + + + + + Creates a new instance. + + System's error code + + + + Creates a new instance. + + System's error code + Error message + + + + Creates a new instance. + + System's error code + Error message + Inner exception + + + + Serialization constructor + + + + + + + One or more arguments contain invalid parameters. + + + + + Creates a new instance. + + System's error code + + + + Creates a new instance. + + System's error code + Error message + + + + Creates a new instance. + + System's error code + Error message + Inner exception + + + + Serialization constructor + + + + + + + An invalid protocol has been requested. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + Invalid PC/SC scope exception. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + The share mode is invalid. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + One or more arguments contain invalid values. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + The group does not contain any reader + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + The PC/SC service is not running. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + No smart card is currently inserted. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + The reader or the smart card is not ready. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + A general PC/SC exception. + + + + + Serialization name for property + + + + + The system's error code. + + + + + Creates a new instance. + + System's error code + + + + Creates a new instance. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + Gets data for serialization + + + + + + + The requested reader is unavailable. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + A smart card has been removed. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + A sharing violation occurred. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + Operation exited successfully + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + The requested reader name is unknown. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + The smart card is unpowered. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + The smart card is unresponsive. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + The requested feature is unsupported. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + A supplied buffer is insufficient. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + CardError extensions methods + + + + + Throws an exception if is not . + + error code to check + + + + Throws a specific exception + + error code to check + + + + Extension methods for + + + + + Checks if a card is absent + + State to check + true if the card is absent + + + + Checks if a card is present + + State to check + true if a card is present + + + + Encapsulates a handle to a connected card / or a directly connected reader + + + + + The card handle + + + + The connected reader's friendly name. + A human readable string of the reader name or if the reader object is currently not connected. + + + The current mode of connection type: exclusive, shared or direct. + + + The currently used protocol to communicate with the card. + + if not connected. + + + The current connection state of the reader. + if the reader is connected. Otherwise . + + + Establishes a connection to the Smart Card reader. + Reader name to connect to. + Mode of connection type: exclusive or shared. + + ValueDescription + This application will allow others to share the reader. (SCARD_SHARE_SHARED) + This application will NOT allow others to share the reader. (SCARD_SHARE_EXCLUSIVE) + + + Desired protocol use. + + + is a bit mask of acceptable protocols for the connection. You can use ( | ) if you do not have a preferred protocol. + This method calls the API function SCardConnect(). + + + + Terminates a connection made through . + Reader function to execute. + + This method calls the API function SCardDisconnect(). + + + + Reestablishes a connection to a reader that was previously connected to using + + . + Mode of connection type: exclusive/shared. + + + ValueDescription + + + + + + This application will allow others to share the reader. (SCARD_SHARE_SHARED) + + + + + + This application will NOT allow others to share the reader. (SCARD_SHARE_EXCLUSIVE) + + + + Desired protocol use. + Desired action taken on the card/reader before reconnect. + + + is a bit mask of acceptable protocols for the connection. You can use ( | ) if you do not have a preferred protocol. The protocol used with this connection will be stored in . + This method calls the API function SCardReconnect(). + + + + A reader class that implements the most basic PC/SC functions to operate on smart cards, RFID tags and so on. + + + The connected reader's friendly name. + A human readable string of the reader name. + + + The current mode of connection type: exclusive, shared or direct. + + + The currently used protocol to communicate with the card. + + + + Card or reader handle. can be used for C API calls + + + + Connection state of the reader. + if the reader is connected. Otherwise . + + + Reestablishes a connection to a reader that was previously connected to using + + . + Mode of connection type: exclusive/shared. + + + ValueDescription + + + + + + This application will allow others to share the reader. (SCARD_SHARE_SHARED) + + + + + + This application will NOT allow others to share the reader. (SCARD_SHARE_EXCLUSIVE) + + + + + + Direct connection to the reader. (SCARD_SHARE_DIRECT) + + + + Desired protocol use. + Desired action taken on the card/reader before reconnect. + + + is a bit mask of acceptable protocols for the connection. You can use ( | ) if you do not have a preferred protocol. The protocol used with this connection will be stored in . + This method calls the API function SCardReconnect(). + + + + Establishes a temporary exclusive access mode for doing a serie of commands in a transaction. + Action to be taken on the reader if the user ends the transaction. + + You might want to use this when you are selecting a few files and then writing a large file so you can make sure that another application will not change the current file. If another application has a lock on this reader or this application is in + there will be no action taken. + This method calls the API function SCardBeginTransaction(). SCardEndTransaction() will be called when you dispose the returned value + + An anonymous instance implementing that must be disposed to end the transaction. + + + Sends an APDU to the smart card. + APDU to send to the card. + Response from the card. + + + This method will only work if the reader has been connected with one of the following protocols: + + ProtocolDescription + T=0 active protocol. + T=1 active protocol. + Raw active protocol. + + + + + The number of bytes written to the + + + Sends an APDU to the smart card. + A pointer to the protocol header structure for the instruction. This buffer is in the format of an SCARD_IO_REQUEST structure, followed by the specific protocol control information (PCI). You can use one of the following: + + + Protocol Control Information + Description + + + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + + + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + + + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + + + + APDU to send to the card. + Response from the card. + The number of bytes written to the + + + Sends an APDU to the smart card. + Protocol Control Information in the format of an SCARD_IO_REQUEST structure, followed by the specific protocol control information (PCI) + APDU to send to the card. + Response from the card. + The number of bytes written to the + + + Sends an APDU to the smart card. + A pointer to the protocol header structure for the instruction. This buffer is in the format of an SCARD_IO_REQUEST structure, followed by the specific protocol control information (PCI). You can use one of the following: + + + Protocol Control Information + Description + + + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + + + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + + + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + + + + APDU to send to the card. + The buffer size of in bytes. + Pointer to the protocol header structure for the instruction, followed by a buffer in which to receive any returned protocol control information (PCI) specific to the protocol in use. This parameter can be NULL if no PCI is returned. + Response from the card. + The buffer size of in bytes. + The number of bytes written to the + + + Sends an APDU to the smart card. + A pointer to the protocol header structure for the instruction. This buffer is in the format of an SCARD_IO_REQUEST structure, followed by the specific protocol control information (PCI). You can use one of the following: + + + Protocol Control Information + Description + + + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + + + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + + + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + + + + APDU to send to the card. + The buffer size of in bytes. + Response from the card. + The buffer size of in bytes. + The number of bytes written to the + + + Sends an APDU to the smart card. + A pointer to the protocol header structure for the instruction. This buffer is in the format of an SCARD_IO_REQUEST structure, followed by the specific protocol control information (PCI). You can use one of the following: + + + Protocol Control Information + Description + + + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + + + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + + + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + + + + APDU to send to the card. + The buffer size of in bytes. + Structure of Protocol Header Information followed by a buffer in which to receive any returned protocol control information (PCI) specific to the protocol in use. This parameter can be null if no PCI is returned. + Response from the card. + The buffer size of in bytes. + The number of bytes written to the + + + Sends an APDU to the smart card. + Protocol Control Information in the format of an SCARD_IO_REQUEST structure, followed by the specific protocol control information (PCI) + APDU to send to the card. + The buffer size of in bytes. + Structure of Protocol Header Information followed by a buffer in which to receive any returned protocol control information (PCI) specific to the protocol in use. This parameter can be null if no PCI is returned. + Response from the card. + The buffer size of in bytes. + The number of bytes written to the + + + Sends an APDU to the smart card. + Protocol Control Information in the format of an SCARD_IO_REQUEST structure, followed by the specific protocol control information (PCI) + APDU to send to the card. + The buffer size of in bytes. + Response from the card. + The buffer size of in bytes. + The number of bytes written to the + + + Sends a command directly to the IFD Handler (reader driver) to be processed by the reader. + Control code for the operation. + Command to send to the reader. + size + Response from the reader. + size + + This method is useful for creating client side reader drivers for functions like PIN pads, biometrics, or other extensions to the normal smart card reader that are not normally handled by PC/SC. + This method calls the API function SCardControl(). + + The number of bytes written to the + + + Sends a command directly to the IFD Handler (reader driver) to be processed by the reader. + Control code for the operation. + Command to send to the reader. + Response from the reader. + + This method is useful for creating client side reader drivers for functions like PIN pads, biometrics, or other extensions to the normal smart card reader that are not normally handled by PC/SC. + This method calls the API function SCardControl(). + + The number of bytes written to the + + + Returns the current status of the reader and the connected card. + A reader status instance + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + A buffer that receives the attribute. + size. + This method calls the API function SCardGetAttrib(). + The number of bytes written to the attributebuffer OR the required buffer size if is null. + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + A buffer that receives the attribute. + This method calls the API function SCardGetAttrib(). + The number of bytes written to the attributebuffer OR the required buffer size if is null. + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + A buffer that receives the attribute. + size. + This method calls the API function SCardGetAttrib(). + The number of bytes written to the attributebuffer OR the required buffer size if is null. + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + A buffer that receives the attribute. + This method calls the API function SCardGetAttrib(). + The number of bytes written to the attributebuffer OR the required buffer size if is null. + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + This method calls the API function SCardGetAttrib(). + The attribute bytes + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + This method calls the API function SCardGetAttrib(). + The attribute bytes + + + Set an attribute of the IFD Handler. + Identifier for the attribute to set. + Buffer that contains the new value of the attribute. + Length of the buffer in bytes. + + The list of attributes you can set depends on the IFD handler you are using. + This method calls the API function SCardSetAttrib(). + + + + Set an attribute of the IFD Handler. + Identifier for the attribute to set. + Buffer that contains the new value of the attribute. + + The list of attributes you can set depends on the IFD handler you are using. + This method calls the API function SCardSetAttrib(). + + + + Set an attribute of the IFD Handler. + Identifier for the attribute to set. + Buffer that contains the new value of the attribute. + Length of the buffer in bytes. + + The list of attributes you can set depends on the IFD handler you are using. + This method calls the API function SCardSetAttrib(). + + + + Set an attribute of the IFD Handler. + Identifier for the attribute to set. + Buffer that contains the new value of the attribute. + + The list of attributes you can set depends on the IFD handler you are using. + This method calls the API function SCardSetAttrib(). + + + + Terminates a connection and invalidates the card handle." />. + Reader function to execute. + + This method calls the API function SCardDisconnect(). You cannot Reconnect after calling this method. + + + + + Smart card context factory + + + + + Create and establish a new smart card context. + + Scope of the establishment. This can either be a local or remote connection. + A new established smart card context + + + + Gives access to the system's smart card API + + + + + PC/SC API for Linux (x86/x64) + + + + + PC/SC API for MacOS X + + + + + Platform selector (Windows or UNIX) + + + + + Returns true if the operation system runs on Windows. false otherwise. + + + + + Platform smart card library. + + + + State of the smart card in the reader. + Is a bit mask that represents the current reader status. + + + Unknown status. + + + There is no card in the reader. + + + There is a card in the reader, but it has not been moved into position for use. + + + There is a card in the reader in position for use. The card is not powered. + + + Power is being provided to the card, but the reader driver is unaware of the mode of the card. + + + The card has been reset and is awaiting PTS negotiation. + + + The card has been reset and specific communication protocols have been established. + + + + PC/SC API for Microsoft Win32/Win64 (x86/x64/IA64) + + + + An application context to the PC/SC Resource Manager. + Each thread of an application shall use its own context. + + + A pointer (Application Context) that can be used for C API calls. + The returned Application Context handle. Is if not context has been established. + This is the Application Context handle that is returned when calling the C API function SCardEstablishContext(). + + + Maximum ATR size. + + + PlatformMaximum ATR size + + Windows (Winscard.dll) + 36 + + + UNIX/Linux (PC/SClite) + 33 + + + + Attention: Size depends on platform. + + + Infinite timeout. + 0xFFFFFFFF + + + Creates an Application Context to the PC/SC Resource Manager. + Scope of the establishment. This can either be a local or remote connection. + + Creates an Application Context for a client. This must be the first WinSCard function called in a PC/SC application. Each thread of an application shall use its own . + This method calls the API function SCardEstablishContext(). + + + + Destroys a communication context to the PC/SC Resource Manager and frees unmanaged resources. + + This must be the last method called in a PC/SC application. calls this method silently. + This method calls the API function SCardReleaseContext(). + + + + Checks the validity of the current context. + + + + Return value + Description + + + + + + The context is valid. (SCARD_S_SUCCESS) + + + + + + The context is invalid. (SCARD_E_INVALID_HANDLE) + + + + + Call this function to determine whether a smart card context handle is still valid. After a smart card context handle has been set by , it may become not valid if the resource manager service has been shut down. + This method calls the API function SCardIsValidContext(). + + + + Checks the validity of the current context. + if the context is valid. + Call this function to determine whether a smart card context handle is still valid. After a smart card context handle has been set by , it may become not valid if the resource manager service has been shut down. + + + + Returns a list of currently available readers. + List of groups to list readers. + An array of s containing all Smart Card readers found by the PC/SC Resource Manager. + + Groups are not used on Linux/UNIX machines using the PC/SC Lite daemon. + This method calls the API function SCardListReaders(). + + + + Returns a list of currently available readers. + An array of s containing all Smart Card readers found by the PC/SC Resource Manager. + + This method calls the API function SCardListReaders(). + + + + Returns a list of currently available reader groups. + An array of s containing all Smart Card reader groups found by the PC/SC Resource Manager. + + This method calls the API function SCardListReaderGroups(). + + + + Establishes a connection to the Smart Card reader and returns a handle + Reader name to connect to. + Mode of connection type: exclusive or shared. + + ValueDescription + This application will allow others to share the reader. (SCARD_SHARE_SHARED) + This application will NOT allow others to share the reader. (SCARD_SHARE_EXCLUSIVE) + Direct connection to the reader. (SCARD_SHARE_DIRECT) + + + Desired protocol use. + + + is a bit mask of acceptable protocols for the connection. You can use ( | ) if you do not have a preferred protocol. + This method calls the API function SCardConnect(). + + A handle to the smartcard or reader + + + Establishes a connection to the Smart Card reader and returns a reader instance + Reader name to connect to. + Mode of connection type: exclusive or shared. + + ValueDescription + This application will allow others to share the reader. (SCARD_SHARE_SHARED) + This application will NOT allow others to share the reader. (SCARD_SHARE_EXCLUSIVE) + Direct connection to the reader. (SCARD_SHARE_DIRECT) + + + Desired protocol use. + + + is a bit mask of acceptable protocols for the connection. You can use ( | ) if you do not have a preferred protocol. + This method calls the API function SCardConnect(). + + A reader instance + + + Returns the current reader status. + The requested reader. + A that contains the current reader status. + + This method uses the method with a timeout of zero. + + + + Returns the current reader status of all requested readers. + Requested reader names. + An array of s that contains the current reader status of each requested reader. + + This method uses the method with a timeout of zero. + + + + Blocks execution until the current availability of the cards in a specific set of readers changes. + Maximum waiting time (in milliseconds) for status change, zero or for infinite. + Structures of readers with current states. + + A indicating an error or the success.The caller receives status changes through the array. + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + Server is not running (SCARD_E_NO_SERVICE) + + + + + + + is invalid or (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid States, reader name, etc (SCARD_E_INVALID_VALUE) + + + + + + Invalid context (SCARD_E_INVALID_HANDLE) + + + + + + The reader is unavailable (SCARD_E_READER_UNAVAILABLE) + + + + + + The user-specified timeout value has expired (SCARD_E_TIMEOUT) + + + + + This method receives a structure or list of structures containing reader names. It then blocks for a change in state to occur for a maximum blocking time of or forever if is used. + The new event state will be contained in . A status change might be a card insertion or removal event, a change in ATR, etc. + To wait for a reader event (reader added or removed) you may use the special reader name "\\?PnP?\Notification". If a reader event occurs the state of this reader will change and the bit will be set. + This method calls the API function SCardGetStatusChange(). + + + + Cancels all pending blocking requests on the method. + + + Return valueDescription + Successful (SCARD_S_SUCCESS) + Invalid context (SCARD_E_INVALID_HANDLE) + Server is not running (SCARD_E_NO_SERVICE) + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + This method calls the API function SCardCancel(). + + + Common functions that are needed to operate on Smart Card readers. + See . + + + Establishes a connection to the Smart Card reader. + Reader name to connect to. + Mode of connection type: exclusive or shared. + + ValueDescription + This application will allow others to share the reader. (SCARD_SHARE_SHARED) + This application will NOT allow others to share the reader. (SCARD_SHARE_EXCLUSIVE) + + + Desired protocol use. + An error code / return value: + + + Error codeDescription + Successful (SCARD_S_SUCCESS) + Invalid context handle (SCARD_E_INVALID_HANDLE) + is invalid or (SCARD_E_INVALID_PARAMETER) + Invalid sharing mode, requested protocol, or reader name (SCARD_E_INVALID_VALUE) + The server is not runing (SCARD_E_NO_SERVICE) + No smart card present (SCARD_E_NO_SMARTCARD) + Could not allocate the desired port (SCARD_E_NOT_READY) + Requested protocol is unknown (SCARD_E_PROTO_MISMATCH) + Could not power up the reader or card (SCARD_E_READER_UNAVAILABLE) + Someone else has exclusive rights (SCARD_E_SHARING_VIOLATION) + The reader name is (SCARD_E_UNKNOWN_READER) + Protocol not supported (SCARD_E_UNSUPPORTED_FEATURE) + An internal communications error has been detected (SCARD_F_COMM_ERROR) + An internal consistency check failed (SCARD_F_INTERNAL_ERROR) + Card is not powered (SCARD_W_UNPOWERED_CARD) + Card is mute (SCARD_W_UNRESPONSIVE_CARD) + + + + + + is a bit mask of acceptable protocols for the connection. You can use ( | ) if you do not have a preferred protocol. The protocol used with this connection will be stored in . + This method calls the API function SCardConnect(). + + + + Terminates a connection made through . + Reader function to execute. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + Invalid (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + No smart card present (SCARD_E_NO_SMARTCARD) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + This method calls the API function SCardDisconnect(). + + + + Reestablishes a connection to a reader that was previously connected to using + + . + Mode of connection type: exclusive/shared. + + + ValueDescription + + + + + + This application will allow others to share the reader. (SCARD_SHARE_SHARED) + + + + + + This application will NOT allow others to share the reader. (SCARD_SHARE_EXCLUSIVE) + + + + Desired protocol use. + Desired action taken on the card/reader before reconnect. + An error code / return value: + + + Error codeDescription + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + Invalid context handle (SCARD_E_INVALID_HANDLE) + + + + + + + is invalid or (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid sharing mode, requested protocol, or reader name (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + No smart card present (SCARD_E_NO_SMARTCARD) + + + + + + Could not allocate the desired port (SCARD_E_NOT_READY) + + + + + + Requested protocol is unknown (SCARD_E_PROTO_MISMATCH) + + + + + + Could not power up the reader or card (SCARD_E_READER_UNAVAILABLE) + + + + + + Someone else has exclusive rights (SCARD_E_SHARING_VIOLATION) + + + + + + Protocol not supported (SCARD_E_UNSUPPORTED_FEATURE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + An internal consistency check failed (SCARD_F_INTERNAL_ERROR) + + + + + + The smart card has been removed (SCARD_W_REMOVED_CARD) + + + + + + Card is mute (SCARD_W_UNRESPONSIVE_CARD) + + + + + + is a bit mask of acceptable protocols for the connection. You can use ( | ) if you do not have a preferred protocol. The protocol used with this connection will be stored in . + This method calls the API function SCardReconnect(). + + + + Establishes a temporary exclusive access mode for doing a serie of commands in a transaction. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + Someone else has exclusive rights (SCARD_E_SHARING_VIOLATION) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + You might want to use this when you are selecting a few files and then writing a large file so you can make sure that another application will not change the current file. If another application has a lock on this reader or this application is in + there will be no action taken. + This method calls the API function SCardBeginTransaction(). + + + + Ends a previously begun transaction. + Action to be taken on the reader. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + Invalid value for (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + Someone else has exclusive rights (SCARD_E_SHARING_VIOLATION) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + The calling application must be the owner of the previously begun transaction or an error will occur. + This method calls the API function SCardEndTransaction(). + + The disposition action is not currently used in PC/SC Lite on UNIX/Linux machines. + + + + + Sends an APDU to the smart card that was previously connected by . + A pointer to a pre-defined Structure of Protocol Control Information. You can use one of the following: + Protocol Control InformationDescriptionPre-defined T=0 PCI structure. (SCARD_PCI_T0)Pre-defined T=1 PCI structure. (SCARD_PCI_T1)Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + APDU to send to the card. + The buffer size of in bytes. + Structure of protocol information. + Response from the card. + The buffer size of in bytes. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + or are too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + + or or is (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid Protocol, reader name, etc (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + APDU exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + Connect protocol is different than desired (SCARD_E_PROTO_MISMATCH) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + The card has been reset by another application (SCARD_W_RESET_CARD) + + + + + + The card has been removed from the reader (SCARD_W_REMOVED_CARD) + + + + + The card responds from the APDU and stores this response in . The size of the returned data will be stored in . This method will return with error code if the buffer size of is too small for the result. If one of the parameters or is invalid, the method will throw an . + This method calls the API function SCardTransmit(). The pointers to the pre-defined / built-in PCI structures are determinated with dlsym() on UNIX/Linux hosts and GetProcAddress() on Windows hosts. + + + + Sends an APDU to the smart card that was previously connected by . + A pointer to a pre-defined Structure of Protocol Control Information. You can use one of the following: + Protocol Control InformationDescriptionPre-defined T=0 PCI structure. (SCARD_PCI_T0)Pre-defined T=1 PCI structure. (SCARD_PCI_T1)Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + APDU to send to the card. + Structure of protocol information. + Response from the card. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + or are too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + + or or is (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid Protocol, reader name, etc (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + APDU exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + Connect protocol is different than desired (SCARD_E_PROTO_MISMATCH) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + The card has been reset by another application (SCARD_W_RESET_CARD) + + + + + + The card has been removed from the reader (SCARD_W_REMOVED_CARD) + + + + + The card responds from the APDU and stores this response in . is a structure containing the following (implemented in ) + + + + Sends an APDU to the smart card that was previously connected by . + A pointer to a pre-defined Structure of Protocol Control Information. You can use one of the following: + + Protocol Control InformationDescription + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + + APDU to send to the card. + Response from the card. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + or are too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + + or or is (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid Protocol, reader name, etc (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + APDU exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + Connect protocol is different than desired (SCARD_E_PROTO_MISMATCH) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + The card has been reset by another application (SCARD_W_RESET_CARD) + + + + + + The card has been removed from the reader (SCARD_W_REMOVED_CARD) + + + + + The card responds from the APDU and stores this response in . + This method calls the API function SCardTransmit(). The pointers to the pre-defined / built-in PCI structures are determinated with dlsym() on UNIX/Linux hosts and GetProcAddress() on Windows hosts. + + + + Sends an APDU to the smart card that was previously connected by . + Structure of Protocol Control Information. + APDU to send to the card. + Structure of protocol information. + Response from the card. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + or are too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + + or or is (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid Protocol, reader name, etc (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + APDU exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + Connect protocol is different than desired (SCARD_E_PROTO_MISMATCH) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + The card has been reset by another application (SCARD_W_RESET_CARD) + + + + + + The card has been removed from the reader (SCARD_W_REMOVED_CARD) + + + + + The card responds from the APDU and stores this response in . and are structures containing the following (implemented in ): + + typedef struct { + DWORD dwProtocol; // SCARD_PROTOCOL_T0 or SCARD_PROTOCOL_T1 + DWORD cbPciLength; // Length of this structure - not used + } SCARD_IO_REQUEST; + + + It is recommended to use pre-defined / built-in PCI structures by calling one of the following methods: + + + + This method calls the API function SCardTransmit(). The pointers to the pre-defined / built-in PCI structures are determinated with dlsym() on UNIX/Linux hosts and GetProcAddress() on Windows hosts. + + + + Sends an APDU to the smart card that was previously connected by . + APDU to send to the card. + The buffer size of in bytes. + Response from the card. + The buffer size of in bytes. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + or are too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + + or is (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid Protocol, reader name, etc (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + APDU exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + Connect protocol is different than desired (SCARD_E_PROTO_MISMATCH) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + The card has been reset by another application (SCARD_W_RESET_CARD) + + + + + + The card has been removed from the reader (SCARD_W_REMOVED_CARD) + + + + + The card responds from the APDU and stores this response in . The buffer must be initialized. The size of the returned data will be stored in . This method will return with error code if the buffer size of is too small for the result. If one of the parameters or is invalid, the method will throw an . + This method calls the API function SCardTransmit(). + + This method will only work if the reader has been connected with one of the following protocols: + + ProtocolDescription + T=0 active protocol. + T=1 active protocol. + Raw active protocol. + + + + + + Sends an APDU to the smart card that was previously connected by . + APDU to send to the card. + Response from the card. + The buffer size of in bytes. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + or are too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + + or is (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid Protocol, reader name, etc (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + APDU exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + Connect protocol is different than desired (SCARD_E_PROTO_MISMATCH) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + The card has been reset by another application (SCARD_W_RESET_CARD) + + + + + + The card has been removed from the reader (SCARD_W_REMOVED_CARD) + + + + + The card responds from the APDU and stores this response in . The buffer must be initialized. The size of the returned data will be stored in . This method will return with error code if the buffer size of is too small for the result. If the parameter is invalid, the method will throw an . + This method calls the API function SCardTransmit(). + + This method will only work if the reader has been connected with one of the following protocols: + ProtocolDescriptionT=0 active protocol.T=1 active protocol.Raw active protocol. + + + + + Sends an APDU to the smart card that was previously connected by . + APDU to send to the card. + Response from the card. + + Return valueDescription + Successful (SCARD_S_SUCCESS) + or are too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + + or is (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid Protocol, reader name, etc (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + APDU exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + Connect protocol is different than desired (SCARD_E_PROTO_MISMATCH) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + The card has been reset by another application (SCARD_W_RESET_CARD) + + + + + + The card has been removed from the reader (SCARD_W_REMOVED_CARD) + + + + + The card responds from the APDU and stores this response in . The buffer must be initialized and will be resized, if the buffer was too big. + This method calls the API function SCardTransmit(). + + This method will only work if the reader has been connected with one of the following protocols: + + ProtocolDescription + T=0 active protocol. + T=1 active protocol. + Raw active protocol. + + + + + + Sends a command directly to the IFD Handler (reader driver) to be processed by the reader. + Control code for the operation. + Command to send to the reader. + Response from the reader. + + + + Return code + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + or are too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + + is and the IFDHandler is version 2.0 (without + + ) (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid value was presented (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed(SCARD_E_READER_UNAVAILABLE) + + + + + + Driver does not support (SCARD_E_UNSUPPORTED_FEATURE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + The card has been removed from the reader(SCARD_W_REMOVED_CARD) + + + + + + The card has been reset by another application (SCARD_W_RESET_CARD) + + + + + This method is useful for creating client side reader drivers for functions like PIN pads, biometrics, or other extensions to the normal smart card reader that are not normally handled by PC/SC. + This method calls the API function SCardControl(). + + The API of this function changed. In pcsc-lite 1.2.0 and before the API was not Windows(R) PC/SC compatible. This has been corrected. + + + + + Returns the current status of the reader and the connected card. + The connected readers's friendly name. + The current state. + The card's currently used protocol. + The card's ATR. + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + The reader object did not allocate enough memory for or for (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + The reader object got invalid. Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + The reader object passed a size of null for or (SCARD_E_INVALID_PARAMETER) + + + + + + Memory allocation failed (SCARD_E_NO_MEMORY) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + An internal consistency check failed (SCARD_F_INTERNAL_ERROR) + + + + + + The smart card has been removed (SCARD_W_REMOVED_CARD) + + + + + + The smart card has been reset (SCARD_W_RESET_CARD) + + + + + The connected readers's friendly name will be stored in . The card's ATR will be stored in . The current state, and protocol will be stored in and respectively. + This method calls the API function SCardStatus(). + + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + A buffer that receives the attribute. + Size of the result contained in attribute (in bytes). + + + + Return code + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + is too big - indicates an error in the PC/SC class library. (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Reader buffer not large enough - indicates an error in the PC/SC class library. (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + A parameter is and should not (SCARD_E_INVALID_PARAMETER) + + + + + + Memory allocation failed (SCARD_E_NO_MEMORY) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + The method will return if is + or if the buffer size is not sufficient. + contains the required amount of bytes (size). + If the method returned with then contains the exact size of the result in + + . + For an example please see . + + This method calls the API function SCardGetAttrib(). + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + A buffer that receives the attribute. + + + + Return code + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + is too big - indicates an error in the PC/SC class library. (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Reader buffer not large enough - indicates an error in the PC/SC class library. (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + A parameter is and should not (SCARD_E_INVALID_PARAMETER) + + + + + + Memory allocation failed (SCARD_E_NO_MEMORY) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + This method calls the API function SCardGetAttrib(). + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + A buffer that receives the attribute. + Size of the result contained in attribute (in bytes). + + + + Return code + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + is too big - indicates an error in the PC/SC class library. (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Reader buffer not large enough - indicates an error in the PC/SC class library. (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + A parameter is and should not (SCARD_E_INVALID_PARAMETER) + + + + + + Memory allocation failed (SCARD_E_NO_MEMORY) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + The method will return if is + or if the buffer size is not sufficient. + contains the required amount of bytes (size). + If the method returned with then contains the exact size of the result in + + . + For an example please see . + + This method calls the API function SCardGetAttrib(). + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + A buffer that receives the attribute. + + + + Return code + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + is too big - indicates an error in the PC/SC class library. (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Reader buffer not large enough - indicates an error in the PC/SC class library. (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + A parameter is and should not (SCARD_E_INVALID_PARAMETER) + + + + + + Memory allocation failed (SCARD_E_NO_MEMORY) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + This method calls the API function SCardGetAttrib(). + + + Set an attribute of the IFD Handler. + Identifier for the attribute to set. + Buffer that contains the new value of the attribute. + Length of the buffer in bytes. + + + + Column + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + attribute is too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + A parameter is and should not (SCARD_E_INVALID_PARAMETER) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + The list of attributes you can set depends on the IFD handler you are using. + This method calls the API function SCardSetAttrib(). + + + + Set an attribute of the IFD Handler. + Identifier for the attribute to set. + Buffer that contains the new value of the attribute. + + + + Column + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + attribute is too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + A parameter is and should not (SCARD_E_INVALID_PARAMETER) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + The list of attributes you can set depends on the IFD handler you are using. + This method calls the API function SCardSetAttrib(). + + + + Set an attribute of the IFD Handler. + Identifier for the attribute to set. + Buffer that contains the new value of the attribute. + Length of the buffer in bytes. + + + Column + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + attribute is too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + A parameter is and should not (SCARD_E_INVALID_PARAMETER) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + The list of attributes you can set depends on the IFD handler you are using. + This method calls the API function SCardSetAttrib(). + + + + Set an attribute of the IFD Handler. + Identifier for the attribute to set. + Buffer that contains the new value of the attribute. + + + + Value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + attribute is too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + A parameter is and should not (SCARD_E_INVALID_PARAMETER) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + The list of attributes you can set depends on the IFD handler you are using. + This method calls the API function SCardSetAttrib(). + + + + The connected reader's friendly name. + A human readable string of the reader name or if the reader object is currently not connected. + + + The Smart Card context that will be used for this connection. + + if the reader is not connected. + + + The current mode of connection type: exclusive or shared. + + + The currently used protocol to communicate with the card. + + if not connected. + + + A pointer (Card Handle) that can be used for C API calls. + 0 if not connected. + + This is the card handle that is returned when calling the C API function SCardConnect(). + + + + The current connection state of the reader. + if the reader is connected. Otherwise . + + + + Smart card event. + + + + + Name of the reader that has raised the event. + + A human readable string of the reader name. + + + + The card's ATR (if present), otherwise null. + + + + + Creates a new instance. + + + + + Creates a new instance. + + Name of the reader that has raised the event. + The card's ATR (if present), otherwise null. + + + The reader has been Initialized. + The sender object. + Reader status information. + + + + // Create a monitor object with its own PC/SC context. + SCardMonitor monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System); + + // Point the callback function(s) to the pre-defined method MyCardInitializedMethod. + monitor.Initialized += new CardInitializedEvent(MyCardInitializedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + A new card has been inserted. + The sender object + Reader status information. + + + + // Create a monitor object with its own PC/SC context. + SCardMonitor monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System); + + // Point the callback function(s) to the pre-defined method MyCardInsertedMethod. + monitor.CardInserted += new CardInsertedEvent(MyCardInsertedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + A card has been removed. + The sender object. + Reader status information. + + + + // Create a monitor object with its own PC/SC context. + SCardMonitor monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System); + + // Point the callback function(s) to the pre-defined method MyCardRemovedMethod. + monitor.CardRemoved += new CardRemovedEvent(MyCardRemovedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + + Information about a smart card reader status. + + + + The current reader status. + + + Is a bit mask containing one or more of the following values: + + + + State + Description + + + + + + The application is unaware of the current state, and would like to know. The use of this value results in an immediate return from state transition monitoring services. This is represented by all bits set to zero. + + + + + + This reader should be ignored + + + + + + There is a difference between the state believed by the application, and the state known by the resource manager. When this bit is set, the application may assume a significant state change has occurred on this reader. + + + + + + + The given reader name is not recognized by the resource manager. If this bit is set, then + + and + + will also be set + + + + + + + The actual state of this reader is not available. If this bit is set, then all the following bits are clear. + + + + + + There is no card in the reader. If this bit is set, all the following bits will be clear + + + + + + There is a card in the reader + + + + + + + The card in the reader is allocated for exclusive use by another application. If this bit is set, + + will also be set. + + + + + + + + The card in the reader is in use by one or more other applications, but may be connected to in shared mode. If this bit is set, + + will also be set. + + + + + + + There is an unresponsive card in the reader. + + + + + + + Creates a new instance. + + + + + Creates a new instance. + + Name of the smard card reader + The reader's state + The card's ATR. + + + + A smartcard device status change + + The sender object. + Reader device changes. + + + Information about attached and detached smart card reader devices. + + + + All connected smartcard reader devices + + + + + Recently attached (added) smartcard reader devices + + + + + Recently detached (removed) smartcard reader devices + + + + + Creates a new instance + + All connected smartcard reader devices + Attached/added smartcard reader devices + Detached/removed smartcard reader devices + + + Monitors for attached and detached smartcard reader devices. + + + + The monitor object has been initialized. + + + + + New reader(s) have been attached and/or detached. + + + + An PC/SC error occurred during monitoring. + + + + Creates a new instance + + + + + + Creates a new instance + + Context factory used for this monitor + Scope of the establishment. This can either be a local or remote connection. + + + + Finalizer + + + + + Starts monitoring for device status changes + + + + Cancels the monitoring. + This will end the monitoring. The method calls the method of its Application Context to the PC/SC Resource Manager. + + + Disposes the object. + Dispose will call in order to stop the background thread. The application context will be disposed if you configured the monitor to do so at construction time. + + + An PC/SC error occurred during device monitoring. + The sender object. + Argument that contains the exception. + + + + Information about a device monitor exception + + + + + Exception that occurred in device monitor thread + + + + + Creates an instance + + Exception that occurred in monitoring thread + + + + Smartcard reader device monitoring factory + + + + + Default factory instance. Uses for context creation. + + + + + Creates a monitor instance + + Context factory to use + + + + + + + + + Monitors for attached and detached smartcard reader devices. + + + + The monitor object has been initialized. + + + + + New reader(s) have been attached and/or detached. + + + + An PC/SC error occurred during monitoring. + + + + Starts monitoring for device status changes + + + + Cancels the monitoring. + This will end the monitoring. The method calls the method of its Application Context to the PC/SC Resource Manager. + + + + Smartcard reader device monitoring factory + + + + + Creates a device monitor + + Scope of the establishment. This can either be a local or remote connection. + A + + + + Releases the smartcard device monitor and its dependencies using the method. + + Smartcard device monitor that shall be stopped and disposed. + + + + Smart card monitor factory + + + + + Creates a smart card event monitor + + Scope of the establishment. This can either be a local or remote connection. + A + + + + Releases the smart card monitor and its dependencies using the method. + + Smart card monitor that shall be stopped and disposed. + + + Monitors a Smart Card reader and triggers events on status changes. + + + A general reader status change. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + // Point the callback function(s) to the pre-defined method MyStatusChangedMethod. + monitor.StatusChanged += new StatusChangeEvent(MyStatusChangedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + A new card has been inserted. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + monitor.CardInserted += new CardInsertedEvent(MyCardInsertedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + A card has been removed. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + monitor.CardRemoved += new CardRemovedEvent(MyCardRemovedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + The monitor object has been initialized. + + This event appears only once for each reader after calling or . + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + monitor.Initialized += new CardInitializedEvent(MyCardInitializedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + An PC/SC error occurred during monitoring. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + monitor.MonitorException += new MonitorExceptionEvent(MyMonitorExceptionMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + All readers that are currently being monitored. + A array of reader names. if no readers is being monitored. + + + Indicates if there are readers currently monitored. + + + + Value + Description + + + + + + Monitoring process ongoing. + + + + + + No monitoring. + + + + + + The number of readers that currently being monitored. + Return 0 if no reader is being monitored. + + + Returns the current state of a reader that is currently being monitored. + The number of the desired reader. The index must be between 0 and ( - 1). + The current state of reader with index number . + This method will throw an if the specified is invalid. You can enumerate all readers currently monitored with the property. + If the specified is invalid. + + + Returns the current state of a reader that is currently being monitored. + The number of the desired reader. The index must be between 0 and ( - 1). + The current state of reader with index number . + This method will throw an if the specified is invalid. You can enumerate all readers currently monitored with the property. + If the specified is invalid. + + + Returns the reader name of a given . + The number of the desired reader. The index must be between 0 and ( - 1). + A reader name. + This method will throw an if the specified is invalid. You can enumerate all readers currently monitored with the property. + If the specified is invalid. + + + Cancels the monitoring of all readers that are currently being monitored. + This will end the monitoring. The method calls the method of its Application Context to the PC/SC Resource Manager. + + + The Smart Card reader that shall be monitored. + Starts to monitor a single Smart Card reader for status changes. + + + + // Create a new monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + // Start to monitor a single reader. + monitor.Start("OMNIKEY CardMan 5x21 00 00"); + + + Do not forget to register for at least one event: + + EventDescription + A new card has been inserted. + A card has been removed. + Initial status. + A general status change. + An error occurred. + + + + + A array of reader names that shall be monitored. + Starts to monitor a range Smart Card readers for status changes. + + + + string [] readerNames; + using (var ctx = new SCardContext()) { + ctx.Establish(SCardScope.System); + // Retrieve the names of all installed readers. + readerNames = ctx.GetReaders(); + ctx.Release(); + } + + // Create a new monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + foreach (string reader in readerNames) { + Console.WriteLine("Start monitoring for reader {0}.", reader); + } + + // Start monitoring multiple readers. + monitor.Start(readerNames); + + + Do not forget to register for at least one event: + + EventDescription + A new card has been inserted. + A card has been removed. + Initial status. + A general status change. + An error occurred. + + + + + An PC/SC error occurred during monitoring. + The sender object. + An exception containting the PC/SC error code returned from the native library. + + + + Smart card monitor factory + + + + + Default factory instance. Uses for context creation. + + + + + Creates a new monitor factory. + + Context factory that creates for the new instances. + + + + + + + + + Monitors a Smart Card reader and triggers events on status changes. + Creates a new thread and calls the of the given object. + + + A general reader status change. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + // Point the callback function(s) to the pre-defined method MyStatusChangedMethod. + monitor.StatusChanged += new StatusChangeEvent(MyStatusChangedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + A new card has been inserted. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + monitor.CardInserted += new CardInsertedEvent(MyCardInsertedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + A card has been removed. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + monitor.CardRemoved += new CardRemovedEvent(MyCardRemovedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + The monitor object has been initialized. + + This event appears only once for each reader after calling or . + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + monitor.Initialized += new CardInitializedEvent(MyCardInitializedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + An PC/SC error occurred during monitoring. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + monitor.MonitorException += new MonitorExceptionEvent(MyMonitorExceptionMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + All readers that are currently being monitored. + A array of reader names. if no readers is being monitored. + + + Indicates if there are readers currently monitored. + + + + Value + Description + + + + + + Monitoring process ongoing. + + + + + + No monitoring. + + + + + + + Releases unmanaged resources and stops the background thread (if running). + + + + Creates a new SCardMonitor object that is able to listen for certain smart card / reader changes. + A smartcard context factory + Scope of the establishment. This can either be a local or remote connection. + + + Returns the current state of a reader that is currently being monitored. + The number of the desired reader. The index must be between 0 and ( - 1). + The current state of reader with index number . + This method will throw an if the specified is invalid. You can enumerate all readers currently monitored with the property. + If the specified is invalid. + + + Returns the current state of a reader that is currently being monitored. + The number of the desired reader. The index must be between 0 and ( - 1). + The current state of reader with index number . + This method will throw an if the specified is invalid. You can enumerate all readers currently monitored with the property. + If the specified is invalid. + + + Returns the reader name of a given . + The number of the desired reader. The index must be between 0 and ( - 1). + A reader name. + This method will throw an if the specified is invalid. You can enumerate all readers currently monitored with the property. + If the specified is invalid. + + + The number of readers that currently being monitored. + Return 0 if no reader is being monitored. + + + Disposes the object. + Dispose will call in order to stop the background thread. The application context will be disposed if you configured the monitor to do so at construction time. + + + Disposes the object. + Ignored. It will call in order to stop the background thread. The application context will be disposed if the user configured the monitor to do so at construction time. + + + Cancels the monitoring of all readers that are currently being monitored. + This will end the monitoring. The method calls the method of its Application Context to the PC/SC Resource Manager. + + + The Smart Card reader that shall be monitored. + Starts to monitor a single Smart Card reader for status changes. + + + + // Create a new monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + // Start to monitor a single reader. + monitor.Start("OMNIKEY CardMan 5x21 00 00"); + + + Do not forget to register for at least one event: + + EventDescription + A new card has been inserted. + A card has been removed. + Initial status. + A general status change. + An error occurred. + + + + + A array of reader names that shall be monitored. + Starts to monitor a range Smart Card readers for status changes. + + + + string [] readerNames; + using (var ctx = new SCardContext()) { + ctx.Establish(SCardScope.System); + // Retrieve the names of all installed readers. + readerNames = ctx.GetReaders(); + ctx.Release(); + } + + // Create a new monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + foreach (string reader in readerNames) { + Console.WriteLine("Start monitoring for reader {0}.", reader); + } + + // Start monitoring multiple readers. + monitor.Start(readerNames); + + + Do not forget to register for at least one event: + + EventDescription + A new card has been inserted. + A card has been removed. + Initial status. + A general status change. + An error occurred. + + + + + A general reader status change. + The sender object. + Reader status information. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + // Point the callback function(s) to the pre-defined method MyStatusChangedMethod. + monitor.StatusChanged += new StatusChangeEvent(MyStatusChangedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + Information about a smart card reader status change. + + + The reader's status before this event. + + Is a bit mask containing one or more of the following values: + + StateDescription + The application is unaware of the current state, and would like to know. The use of this value results in an immediate return from state transition monitoring services. This is represented by all bits set to zero. + This reader should be ignored + There is a difference between the state believed by the application, and the state known by the resource manager. When this bit is set, the application may assume a significant state change has occurred on this reader. + The given reader name is not recognized by the resource manager. If this bit is set, then and will also be set + The actual state of this reader is not available. If this bit is set, then all the following bits are clear. + There is no card in the reader. If this bit is set, all the following bits will be clear + There is a card in the reader + The card in the reader is allocated for exclusive use by another application. If this bit is set, will also be set. + The card in the reader is in use by one or more other applications, but may be connected to in shared mode. If this bit is set, will also be set. + There is an unresponsive card in the reader. + + + + + The new status of this reader. + + Is a bit mask containing one or more of the following values: + + StateDescription + The application is unaware of the current state, and would like to know. The use of this value results in an immediate return from state transition monitoring services. This is represented by all bits set to zero. + This reader should be ignored + There is a difference between the state believed by the application, and the state known by the resource manager. When this bit is set, the application may assume a significant state change has occurred on this reader. + The given reader name is not recognized by the resource manager. If this bit is set, then and will also be set + The actual state of this reader is not available. If this bit is set, then all the following bits are clear. + There is no card in the reader. If this bit is set, all the following bits will be clear + There is a card in the reader + The card in the reader is allocated for exclusive use by another application. If this bit is set, will also be set. + The card in the reader is in use by one or more other applications, but may be connected to in shared mode. If this bit is set, will also be set. + There is an unresponsive card in the reader. + + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + Name of the reader. + The last state. + The new state. + The card's ATR. + + + + Holds information about the reader status. + + + + + A bit mask that represents the reader status + + + + + The reader's currently used protocol. + + + + + A list of the reader's friendly names + + + + + Gets the card's ATR. + + A byte array containing the ATR or null if no card connected. + + + + Creates a new instance + + The reader's friendly names + A bit mask that represents the reader status + The reader's currently used protocol. + The card's ATR if available + + + Smart card reader attribute enumeration. + Can be used as parameter for the following methods: + + + + + + + + + + Vendor name. (SCARD_ATTR_VENDOR_NAME) + + + + + Vendor-supplied interface device type (model designation of reader). (SCARD_ATTR_VENDOR_IFD_TYPE) + + + + + Vendor-supplied interface device version (DWORD in the form 0xMMmmbbbb where MM = major version, mm = minor version, and bbbb = build number). (SCARD_ATTR_VENDOR_IFD_VERSION) + + + + + Vendor-supplied interface device serial number. (SCARD_ATTR_VENDOR_IFD_SERIAL_NO) + + + + + DWORD encoded as 0xDDDDCCCC, where DDDD = data channel type and CCCC = channel number (SCARD_ATTR_CHANNEL_ID) + + + + + Asynchronous protocol types (SCARD_ATTR_ASYNC_PROTOCOL_TYPES) + + + + + Default clock rate, in kHz. (SCARD_ATTR_DEFAULT_CLK) + + + + + Maximum clock rate, in kHz. (SCARD_ATTR_MAX_CLK) + + + + + Default data rate, in bps. (SCARD_ATTR_DEFAULT_DATA_RATE) + + + + + Maximum data rate, in bps. (SCARD_ATTR_MAX_DATA_RATE) + + + + + Maximum bytes for information file size device. (SCARD_ATTR_MAX_IFSD) + + + + + Synchronous protocol types (SCARD_ATTR_SYNC_PROTOCOL_TYPES) + + + + + Zero if device does not support power down while smart card is inserted. Nonzero otherwise. (SCARD_ATTR_POWER_MGMT_SUPPORT) + + + + + User to card authentication device (SCARD_ATTR_USER_TO_CARD_AUTH_DEVICE) + + + + + User authentication input device (SCARD_ATTR_USER_AUTH_INPUT_DEVICE) + + + + + DWORD indicating which mechanical characteristics are supported. If zero, no special characteristics are supported. Note that multiple bits can be set (SCARD_ATTR_CHARACTERISTICS) + + + + + Current protocol type (SCARD_ATTR_CURRENT_PROTOCOL_TYPE) + + + + + Current clock rate, in kHz. (SCARD_ATTR_CURRENT_CLK) + + + + + Clock conversion factor. (SCARD_ATTR_CURRENT_F) + + + + + Bit rate conversion factor. (SCARD_ATTR_CURRENT_D) + + + + + Current guard time. (SCARD_ATTR_CURRENT_N) + + + + + Current work waiting time. (SCARD_ATTR_CURRENT_W) + + + + + Current byte size for information field size card. (SCARD_ATTR_CURRENT_IFSC) + + + + + Current byte size for information field size device. (SCARD_ATTR_CURRENT_IFSD) + + + + + Current block waiting time. (SCARD_ATTR_CURRENT_BWT) + + + + + Current character waiting time. (SCARD_ATTR_CURRENT_CWT) + + + + + Current error block control encoding. (SCARD_ATTR_CURRENT_EBC_ENCODING) + + + + + Extended block wait time. (SCARD_ATTR_EXTENDED_BWT) + + + + + Single byte indicating smart card presence(SCARD_ATTR_ICC_PRESENCE) + + + + + Single byte. Zero if smart card electrical contact is not active; nonzero if contact is active. (SCARD_ATTR_ICC_INTERFACE_STATUS) + + + + + Current IO state (SCARD_ATTR_CURRENT_IO_STATE) + + + + + Answer to reset (ATR) string. (SCARD_ATTR_ATR_STRING) + + + + + Answer to reset (ATR) string. (SCARD_ATTR_ATR_STRING) + + + + + Single byte indicating smart card type (SCARD_ATTR_ICC_TYPE_PER_ATR) + + + + + Esc reset (SCARD_ATTR_ESC_RESET) + + + + + Esc cancel (SCARD_ATTR_ESC_CANCEL) + + + + + Esc authentication request (SCARD_ATTR_ESC_AUTHREQUEST) + + + + + Maximum input (SCARD_ATTR_MAXINPUT) + + + + + Instance of this vendor's reader attached to the computer. The first instance will be device unit 0, the next will be unit 1 (if it is the same brand of reader) and so on. Two different brands of readers will both have zero for this value. (SCARD_ATTR_DEVICE_UNIT) + + + + + Reserved for future use. (SCARD_ATTR_DEVICE_IN_USE) + + + + + Device friendly name ASCII (SCARD_ATTR_DEVICE_FRIENDLY_NAME_A) + + + + + Device system name ASCII (SCARD_ATTR_DEVICE_SYSTEM_NAME_A) + + + + + Device friendly name UNICODE (SCARD_ATTR_DEVICE_FRIENDLY_NAME_W) + + + + + Device system name UNICODE (SCARD_ATTR_DEVICE_SYSTEM_NAME_W) + + + + + Supress T1 information file size request (SCARD_ATTR_SUPRESS_T1_IFS_REQUEST) + + + + + Device friendly name (SCARD_ATTR_DEVICE_FRIENDLY_NAME) + + + + + Device system name (SCARD_ATTR_DEVICE_SYSTEM_NAME) + + + + + Smart card class + + + + Vendor information definitions + + + Communication definitions + + + Protocol definitions + + + Power Management definitions + + + Security Assurance definitions + + + Mechanical characteristic definitions + + + Vendor specific definitions + + + Interface Device Protocol options + + + ICC State specific definitions + + + System-specific definitions + + + Manages an application context to the PC/SC Resource Manager. + Each thread of an application shall use its own SCardContext. + + + + + + + + + + + + Maximum ATR size. + + + PlatformMaximum ATR size + + Windows (Winscard.dll) + 36 + + + UNIX/Linux (PC/SClite) + 33 + + + + Attention: Size depends on platform. + + + Infinite timeout. + 0xFFFFFFFF + + + + Destroys application context to the PC/SC Resource Manager. + + + + + Creates a new context instance + + + + + + + + + + + + + + + + + + + + + + + + + Disposes a PC/SC application context. + Ignored. If an application context to the PC/SC Resource Manager has been established it will call the method. + + + + + + + + + + + + + + + + + + + + + + + + Error and return codes. + + + No error. (SCARD_S_SUCCESS) + + + An internal consistency check failed. (SCARD_F_INTERNAL_ERROR) + + + The action was cancelled by an request. (SCARD_E_CANCELLED) + + + The supplied handle was invalid. (SCARD_E_INVALID_HANDLE) + + + The supplied handle was invalid. (ERROR_INVALID_HANDLE) + + + One or more of the supplied parameters could not be properly interpreted. (SCARD_E_INVALID_PARAMETER) + + + Registry startup information is missing or invalid. (SCARD_E_INVALID_TARGET) + + + Not enough memory available to complete this command. (SCARD_E_NO_MEMORY) + + + An internal consistency timer has expired. (SCARD_F_WAITED_TOO_LONG) + + + The data buffer to receive returned data is too small for the returned data. (SCARD_E_INSUFFICIENT_BUFFER) + + + Windows error ERROR_INSUFFICIENT_BUFFER: The data area passed to a system call is too small. + + + The specified reader name is not recognized. (SCARD_E_UNKNOWN_READER) + + + The user-specified timeout value has expired. (SCARD_E_TIMEOUT) + + + The smart card cannot be accessed because of other connections outstanding. (SCARD_E_SHARING_VIOLATION) + + + The operation requires a Smart Card, but no Smart Card is currently in the device. (SCARD_E_NO_SMARTCARD) + + + The specified smart card name is not recognized. (SCARD_E_UNKNOWN_CARD) + + + The system could not dispose of the media in the requested manner. (SCARD_E_CANT_DISPOSE) + + + The requested protocols are incompatible with the protocol currently in use with the smart card. (SCARD_E_PROTO_MISMATCH) + + + The reader or smart card is not ready to accept commands. (SCARD_E_NOT_READY) + + + One or more of the supplied parameters values could not be properly interpreted. (SCARD_E_INVALID_VALUE) + + + The action was cancelled by the system, presumably to log off or shut down. (SCARD_E_SYSTEM_CANCELLED) + + + An internal communications error has been detected. (SCARD_F_COMM_ERROR) + + + An internal error has been detected, but the source is unknown. (SCARD_F_UNKNOWN_ERROR) + + + An ATR obtained from the registry is not a valid ATR string. (SCARD_E_INVALID_ATR) + + + An attempt was made to end a non-existent transaction. (SCARD_E_NOT_TRANSACTED) + + + The specified reader is not currently available for use. (SCARD_E_READER_UNAVAILABLE) + + + The operation has been aborted to allow the server application to exit. (SCARD_P_SHUTDOWN) + + + The reader cannot communicate with the card, due to ATR string configuration conflicts. (SCARD_W_UNSUPPORTED_CARD) + + + The smart card is not responding to a reset. (SCARD_W_UNRESPONSIVE_CARD) + + + Power has been removed from the smart card, so that further communication is not possible. (SCARD_W_UNPOWERED_CARD) + + + The smart card has been reset, so any shared state information is invalid. (SCARD_W_RESET_CARD) + + + The smart card has been removed, so further communication is not possible. (SCARD_W_REMOVED_CARD) + + + The PCI Receive buffer was too small. (SCARD_E_PCI_TOO_SMALL) + + + The reader driver does not meet minimal requirements for support. (SCARD_E_READER_UNSUPPORTED) + + + The reader driver did not produce a unique reader name. (SCARD_E_DUPLICATE_READER) + + + The smart card does not meet minimal requirements for support. (SCARD_E_CARD_UNSUPPORTED) + + + The Smart card resource manager is not running. (SCARD_E_NO_SERVICE) + + + The Smart card resource manager has shut down. (SCARD_E_SERVICE_STOPPED) + + + An unexpected card error has occurred. (SCARD_E_UNEXPECTED) + + + Cannot find a smart card reader. (SCARD_E_NO_READERS_AVAILABLE) + + + PC/SC Lite specific extensions + Feature not supported. (SCARD_E_UNSUPPORTED_FEATURE) + + + No primary provider can be found for the smart card. (SCARD_E_ICC_INSTALLATION) + + + The requested order of object creation is not supported. (SCARD_E_ICC_CREATEORDER) + + + The identified directory does not exist in the smart card. (SCARD_E_DIR_NOT_FOUND) + + + The identified file does not exist in the smart card. (SCARD_E_FILE_NOT_FOUND) + + + The supplied path does not represent a smart card directory. (SCARD_E_NO_DIR) + + + The supplied path does not represent a smart card file. (SCARD_E_NO_FILE) + + + Access is denied to this file. (SCARD_E_NO_ACCESS) + + + The smart card does not have enough memory to store the information. (SCARD_E_WRITE_TOO_MANY) + + + There was an error trying to set the smart card file object pointer. (SCARD_E_BAD_SEEK) + + + The supplied PIN is incorrect. (SCARD_E_INVALID_CHV) + + + An unrecognized error code was returned from a layered component. (SCARD_E_UNKNOWN_RES_MNG) + + + The requested certificate does not exist. (SCARD_E_NO_SUCH_CERTIFICATE) + + + The requested certificate could not be obtained. (SCARD_E_CERTIFICATE_UNAVAILABLE) + + + A communications error with the smart card has been detected. (SCARD_E_COMM_DATA_LOST) + + + The requested key container does not exist on the smart card. (SCARD_E_NO_KEY_CONTAINER) + + + The Smart Card Resource Manager is too busy to complete this operation. (SCARD_E_SERVER_TOO_BUSY) + + + Access was denied because of a security violation. (SCARD_W_SECURITY_VIOLATION) + + + The card cannot be accessed because the wrong PIN was presented. (SCARD_W_WRONG_CHV) + + + The card cannot be accessed because the maximum number of PIN entry attempts has been reached. (SCARD_W_CHV_BLOCKED) + + + The end of the smart card file has been reached. (SCARD_W_EOF) + + + The user pressed "Cancel" on a Smart Card Selection Dialog. (SCARD_W_CANCELLED_BY_USER) + + + No PIN was presented to the smart card. (SCARD_W_CARD_NOT_AUTHENTICATED) + + + Structure of protocol control information. + + Is a structure containing the following: + + + + typedef struct { + DWORD dwProtocol; // SCARD_PROTOCOL_T0 or SCARD_PROTOCOL_T1 + DWORD cbPciLength; // Length of this structure - not used + } SCARD_IO_REQUEST; + + + + The pointers to the pre-defined / built-in PCI structures are determinated with dlsym() on UNIX/Linux hosts and GetProcAddress() on Windows hosts. + + + + Destroys the object and frees unmanaged memory. + + + Initializes a new instance of the class. + + + Creates a new SCardPCI object. + + Protocol Control InformationDescription + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + + + Size of this structure in bytes. + + + Creates a new SCardPCI object. + + + Protocol Control InformationDescription + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + + + User data. + + + Disposes the instance and frees unmanaged memory. + + + + Disposes the instance and frees unmanaged memory. + + Ignored + + + Protocol + + + Protocol Control InformationDescription + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + + + + + Size of this structure in bytes. + + + User data. + + + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + A pointer to the C structure in the system library. + This pointer to the pre-defined / built-in PCI structure is determinated with dlsym() on UNIX/Linux hosts and GetProcAddress() on Windows hosts. + + + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + A pointer to the C structure in the system library. + This pointer to the pre-defined / built-in PCI structure is determinated with dlsym() on UNIX/Linux hosts and GetProcAddress() on Windows hosts. + + + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + A pointer to the C structure in the system library. + This pointer to the pre-defined / built-in PCI structure is determinated with dlsym() on UNIX/Linux hosts and GetProcAddress() on Windows hosts. + + + Receives a PCI pointer to a given protocol. + The desired protocol. + A pointer to the PCI structure in the native system library. + + + Communication protocol use with the Smart Card. + This is a bit mask of acceptable protocols for the connection. You can use ( | ) if you do not have a preferred protocol. + + + + Protocol not defined. + + + + T=0 active protocol. + + + T=1 active protocol. + + + Raw active protocol. Use with memory type cards. + + + T=15 protocol. + + + ( | ). IFD (Interface device) determines protocol. + + + A reader class that implements the most basic PC/SC functions to operate on smart cards, RFID tags and so on. + It will use the system's native PC/SC API. + + + + + + + + + + + + + + + + + + + + + Unmanaged resources (card handle) are released! + + + Creates a new smart card reader object. + Connection context to the PC/SC Resource Manager. + + + + // Create PC/SC context + var ctx = new SCardContext(); + ctx.Establish(SCardScope.System); + + // Create reader object and connect to the Smart Card + var myReader = new SCardReader(ctx); + var rc = myReader.Connect( + "OMNIKEY CardMan 5321", + SCardShareMode.Shared, + SCardProtocol.T1); + + + + If is + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This will disconnect the reader if it is currently connected using . + Ignored. The reader will be disconnected. + + + Action to be taken on the reader. + The disposition action is not currently used in PC/SC Lite. + + + Do nothing. (SCARD_LEAVE_CARD) + + + Reset the card. (SCARD_RESET_CARD) + + + Unpower the card. (SCARD_UNPOWER_CARD) + + + Eject the card. (SCARD_EJECT_CARD) + + + A structures that contains the old and the new Smart Card reader status. + + Is used as parameter in . + The new event state will be contained in . A status change might be a card insertion or removal event, a change in ATR, etc. To wait for a reader event (reader added or removed) you may use the special reader name "\\?PnP?\Notification". If a reader event occurs the state of this reader will change and the bit will be set. + + + + + Frees unmanaged resources. + + + + + Frees unmanaged resources. + + + + + Frees unmanaged resources. + + Ignored. + + + + Initializes a new instance of the class. + + + + + User defined data. + + + + + User defined data. + + + + + Current state of reader. + + + + + Current state of reader. + + + + + Reader state after a state change. + + + + + Reader state after a state change. + + + + + Number of change events. + + + + + The reader's name. + + + + + Answer To Reset (ATR) + + + + Scope of the establishment. + The following scopes are not used on Linux/UNIX machines using the PC/SC Lite daemon: + + + + + + + + Scope in user space. + + + Scope in terminal. + + + Scope in system. Service on the local machine. + + + PC/SC Lite specific extensions + Scope is global. + + + Mode of connection type: exclusive or shared. + + can be used before using to send control commands to the reader even if a card is not present in the reader. Contrary to Windows winscard behavior, the reader is accessed in shared mode and not exclusive mode. + + + This application will NOT allow others to share the reader. (SCARD_SHARE_EXCLUSIVE) + + + This application will allow others to share the reader. (SCARD_SHARE_SHARED) + + + Direct control of the reader, even without a card. (SCARD_SHARE_DIRECT) + + + State of the smart card in the reader. + Is a bit mask that represents the current reader status. + + + Unknown status. + + + There is no card in the reader. + + + There is a card in the reader, but it has not been moved into position for use. + + + There is a card in the reader in position for use. The card is not powered. + + + Power is being provided to the card, but the reader driver is unaware of the mode of the card. + + + The card has been reset and is awaiting PTS negotiation. + + + The card has been reset and specific communication protocols have been established. + + + Reader state. + + + The application is unaware of the current state, and would like to know. The use of this value results in an immediate return from state transition monitoring services. This is represented by all bits set to zero. (SCARD_STATE_UNAWARE) + + + This reader should be ignored. (SCARD_STATE_IGNORE) + + + There is a difference between the state believed by the application, and the state known by the resource manager. When this bit is set, the application may assume a significant state change has occurred on this reader. (SCARD_STATE_CHANGED) + + + The given reader name is not recognized by the resource manager. If this bit is set, then and will also be set. (SCARD_STATE_UNKNOWN) + + + The actual state of this reader is not available. If this bit is set, then all the following bits are clear. (SCARD_STATE_UNAVAILABLE) + + + There is no card in the reader. If this bit is set, all the following bits will be clear. (SCARD_STATE_EMPTY) + + + There is a card in the reader. (SCARD_STATE_PRESENT) + + + There is a card in the reader with an ATR matching one of the target cards. If this bit is set, will also be set. This bit is only returned on the SCardLocateCards() function. (SCARD_STATE_ATRMATCH) + + + The card in the reader is allocated for exclusive use by another application. If this bit is set, will also be set. (SCARD_STATE_EXCLUSIVE) + + + The card in the reader is in use by one or more other applications, but may be connected to in shared mode. If this bit is set, will also be set. (SCARD_STATE_INUSE) + + + There is an unresponsive card in the reader. (SCARD_STATE_MUTE) + + + The card is unpowered. (SCARD_STATE_UNPOWERED) + + + + Helper class that offers methods to convert various values into strings. + + + + + Returns a human readable text for the given PC/SC error code. + + Error or return code. + A human readable string. + Warning! This method behaves differently compared to the original PC/SC-Lite pcsc_stringify_error function. Instead of the (const) variable name it returns a short text description. + + + + Returns a description string of an enumeration attribute. + + attribute type + attribute + If available: a description string of the specified attribute. Otherwise null. + + + diff --git a/bin/Debug/net461/QRkakuninn.png b/bin/Debug/net461/QRkakuninn.png new file mode 100644 index 0000000..032ca20 Binary files /dev/null and b/bin/Debug/net461/QRkakuninn.png differ diff --git a/bin/Debug/net461/SOM_config.dat b/bin/Debug/net461/SOM_config.dat new file mode 100644 index 0000000..266e789 --- /dev/null +++ b/bin/Debug/net461/SOM_config.dat @@ -0,0 +1,34 @@ +127.0.0.1 +root +root +so-manager +3306 +0 +34 +用紙の残量が少なくなりました。交換してください。 +C:\SoM_PrnControl\log\ +SOM_LOG +0 +60 +https://so-manager.com/api/getgip.php +稼働中 +停止中 +0 +COM3 +https://rrmt.kessai.info/KessaiTest/Yoyaku.asmx +192.168.0.179 +SRJ00001 +vuOIM66.6B +41226 +SRJ +00001 +SRJ +SRI00001 +vuNIM66.6B +41225 +SRI +00001 +SRI +So-Manager駐輪場 +03-5856-4720(受付時間12:00-22:00) +TYPE-OTHER \ No newline at end of file diff --git a/bin/Debug/net461/SoM_PrnControl.exe.1 b/bin/Debug/net461/SoM_PrnControl.exe.1 new file mode 100644 index 0000000..96f4f91 Binary files /dev/null and b/bin/Debug/net461/SoM_PrnControl.exe.1 differ diff --git a/bin/Debug/net461/SoM_PrnControl.exe.config b/bin/Debug/net461/SoM_PrnControl.exe.config new file mode 100644 index 0000000..0cbb707 --- /dev/null +++ b/bin/Debug/net461/SoM_PrnControl.exe.config @@ -0,0 +1,339 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/bin/Debug/net461/System.AppContext.dll b/bin/Debug/net461/System.AppContext.dll new file mode 100644 index 0000000..4ccc058 Binary files /dev/null and b/bin/Debug/net461/System.AppContext.dll differ diff --git a/bin/Debug/net461/System.Collections.Concurrent.dll b/bin/Debug/net461/System.Collections.Concurrent.dll new file mode 100644 index 0000000..26f10d1 Binary files /dev/null and b/bin/Debug/net461/System.Collections.Concurrent.dll differ diff --git a/bin/Debug/net461/System.Collections.NonGeneric.dll b/bin/Debug/net461/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..9da235a Binary files /dev/null and b/bin/Debug/net461/System.Collections.NonGeneric.dll differ diff --git a/bin/Debug/net461/System.Collections.Specialized.dll b/bin/Debug/net461/System.Collections.Specialized.dll new file mode 100644 index 0000000..fbd4fc7 Binary files /dev/null and b/bin/Debug/net461/System.Collections.Specialized.dll differ diff --git a/bin/Debug/net461/System.Collections.dll b/bin/Debug/net461/System.Collections.dll new file mode 100644 index 0000000..72ac205 Binary files /dev/null and b/bin/Debug/net461/System.Collections.dll differ diff --git a/bin/Debug/net461/System.ComponentModel.EventBasedAsync.dll b/bin/Debug/net461/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..37742d4 Binary files /dev/null and b/bin/Debug/net461/System.ComponentModel.EventBasedAsync.dll differ diff --git a/bin/Debug/net461/System.ComponentModel.Primitives.dll b/bin/Debug/net461/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..b0c4b68 Binary files /dev/null and b/bin/Debug/net461/System.ComponentModel.Primitives.dll differ diff --git a/bin/Debug/net461/System.ComponentModel.TypeConverter.dll b/bin/Debug/net461/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..fb42b44 Binary files /dev/null and b/bin/Debug/net461/System.ComponentModel.TypeConverter.dll differ diff --git a/bin/Debug/net461/System.ComponentModel.dll b/bin/Debug/net461/System.ComponentModel.dll new file mode 100644 index 0000000..8e2d829 Binary files /dev/null and b/bin/Debug/net461/System.ComponentModel.dll differ diff --git a/bin/Debug/net461/System.Console.dll b/bin/Debug/net461/System.Console.dll new file mode 100644 index 0000000..fe61bcc Binary files /dev/null and b/bin/Debug/net461/System.Console.dll differ diff --git a/bin/Debug/net461/System.Data.Common.dll b/bin/Debug/net461/System.Data.Common.dll new file mode 100644 index 0000000..05e3481 Binary files /dev/null and b/bin/Debug/net461/System.Data.Common.dll differ diff --git a/bin/Debug/net461/System.Diagnostics.Contracts.dll b/bin/Debug/net461/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..98f40eb Binary files /dev/null and b/bin/Debug/net461/System.Diagnostics.Contracts.dll differ diff --git a/bin/Debug/net461/System.Diagnostics.Debug.dll b/bin/Debug/net461/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..a51c0cf Binary files /dev/null and b/bin/Debug/net461/System.Diagnostics.Debug.dll differ diff --git a/bin/Debug/net461/System.Diagnostics.FileVersionInfo.dll b/bin/Debug/net461/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..3c203b0 Binary files /dev/null and b/bin/Debug/net461/System.Diagnostics.FileVersionInfo.dll differ diff --git a/bin/Debug/net461/System.Diagnostics.Process.dll b/bin/Debug/net461/System.Diagnostics.Process.dll new file mode 100644 index 0000000..b537e62 Binary files /dev/null and b/bin/Debug/net461/System.Diagnostics.Process.dll differ diff --git a/bin/Debug/net461/System.Diagnostics.StackTrace.dll b/bin/Debug/net461/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..5dfaad6 Binary files /dev/null and b/bin/Debug/net461/System.Diagnostics.StackTrace.dll differ diff --git a/bin/Debug/net461/System.Diagnostics.TextWriterTraceListener.dll b/bin/Debug/net461/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..a5720da Binary files /dev/null and b/bin/Debug/net461/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/bin/Debug/net461/System.Diagnostics.Tools.dll b/bin/Debug/net461/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..bd9deae Binary files /dev/null and b/bin/Debug/net461/System.Diagnostics.Tools.dll differ diff --git a/bin/Debug/net461/System.Diagnostics.TraceSource.dll b/bin/Debug/net461/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..5474eb2 Binary files /dev/null and b/bin/Debug/net461/System.Diagnostics.TraceSource.dll differ diff --git a/bin/Debug/net461/System.Diagnostics.Tracing.dll b/bin/Debug/net461/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..5b8b2b4 Binary files /dev/null and b/bin/Debug/net461/System.Diagnostics.Tracing.dll differ diff --git a/bin/Debug/net461/System.Drawing.Primitives.dll b/bin/Debug/net461/System.Drawing.Primitives.dll new file mode 100644 index 0000000..1eeacc4 Binary files /dev/null and b/bin/Debug/net461/System.Drawing.Primitives.dll differ diff --git a/bin/Debug/net461/System.Dynamic.Runtime.dll b/bin/Debug/net461/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..d34b388 Binary files /dev/null and b/bin/Debug/net461/System.Dynamic.Runtime.dll differ diff --git a/bin/Debug/net461/System.Globalization.Calendars.dll b/bin/Debug/net461/System.Globalization.Calendars.dll new file mode 100644 index 0000000..4a198bc Binary files /dev/null and b/bin/Debug/net461/System.Globalization.Calendars.dll differ diff --git a/bin/Debug/net461/System.Globalization.Extensions.dll b/bin/Debug/net461/System.Globalization.Extensions.dll new file mode 100644 index 0000000..99f9e4a Binary files /dev/null and b/bin/Debug/net461/System.Globalization.Extensions.dll differ diff --git a/bin/Debug/net461/System.Globalization.dll b/bin/Debug/net461/System.Globalization.dll new file mode 100644 index 0000000..dd3d2e3 Binary files /dev/null and b/bin/Debug/net461/System.Globalization.dll differ diff --git a/bin/Debug/net461/System.IO.Compression.ZipFile.dll b/bin/Debug/net461/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..345acbd Binary files /dev/null and b/bin/Debug/net461/System.IO.Compression.ZipFile.dll differ diff --git a/bin/Debug/net461/System.IO.Compression.dll b/bin/Debug/net461/System.IO.Compression.dll new file mode 100644 index 0000000..ebbb503 Binary files /dev/null and b/bin/Debug/net461/System.IO.Compression.dll differ diff --git a/bin/Debug/net461/System.IO.FileSystem.DriveInfo.dll b/bin/Debug/net461/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..5c59398 Binary files /dev/null and b/bin/Debug/net461/System.IO.FileSystem.DriveInfo.dll differ diff --git a/bin/Debug/net461/System.IO.FileSystem.Primitives.dll b/bin/Debug/net461/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..de4c49f Binary files /dev/null and b/bin/Debug/net461/System.IO.FileSystem.Primitives.dll differ diff --git a/bin/Debug/net461/System.IO.FileSystem.Watcher.dll b/bin/Debug/net461/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..228d60b Binary files /dev/null and b/bin/Debug/net461/System.IO.FileSystem.Watcher.dll differ diff --git a/bin/Debug/net461/System.IO.FileSystem.dll b/bin/Debug/net461/System.IO.FileSystem.dll new file mode 100644 index 0000000..6934080 Binary files /dev/null and b/bin/Debug/net461/System.IO.FileSystem.dll differ diff --git a/bin/Debug/net461/System.IO.IsolatedStorage.dll b/bin/Debug/net461/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..356e123 Binary files /dev/null and b/bin/Debug/net461/System.IO.IsolatedStorage.dll differ diff --git a/bin/Debug/net461/System.IO.MemoryMappedFiles.dll b/bin/Debug/net461/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..add3b29 Binary files /dev/null and b/bin/Debug/net461/System.IO.MemoryMappedFiles.dll differ diff --git a/bin/Debug/net461/System.IO.Pipes.dll b/bin/Debug/net461/System.IO.Pipes.dll new file mode 100644 index 0000000..e5690c4 Binary files /dev/null and b/bin/Debug/net461/System.IO.Pipes.dll differ diff --git a/bin/Debug/net461/System.IO.UnmanagedMemoryStream.dll b/bin/Debug/net461/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..cdd7427 Binary files /dev/null and b/bin/Debug/net461/System.IO.UnmanagedMemoryStream.dll differ diff --git a/bin/Debug/net461/System.IO.dll b/bin/Debug/net461/System.IO.dll new file mode 100644 index 0000000..e9eb534 Binary files /dev/null and b/bin/Debug/net461/System.IO.dll differ diff --git a/bin/Debug/net461/System.Linq.Expressions.dll b/bin/Debug/net461/System.Linq.Expressions.dll new file mode 100644 index 0000000..63b570c Binary files /dev/null and b/bin/Debug/net461/System.Linq.Expressions.dll differ diff --git a/bin/Debug/net461/System.Linq.Parallel.dll b/bin/Debug/net461/System.Linq.Parallel.dll new file mode 100644 index 0000000..d8d097e Binary files /dev/null and b/bin/Debug/net461/System.Linq.Parallel.dll differ diff --git a/bin/Debug/net461/System.Linq.Queryable.dll b/bin/Debug/net461/System.Linq.Queryable.dll new file mode 100644 index 0000000..404bbe2 Binary files /dev/null and b/bin/Debug/net461/System.Linq.Queryable.dll differ diff --git a/bin/Debug/net461/System.Linq.dll b/bin/Debug/net461/System.Linq.dll new file mode 100644 index 0000000..42cd93b Binary files /dev/null and b/bin/Debug/net461/System.Linq.dll differ diff --git a/bin/Debug/net461/System.Net.Http.dll b/bin/Debug/net461/System.Net.Http.dll new file mode 100644 index 0000000..1c5c6fd Binary files /dev/null and b/bin/Debug/net461/System.Net.Http.dll differ diff --git a/bin/Debug/net461/System.Net.NameResolution.dll b/bin/Debug/net461/System.Net.NameResolution.dll new file mode 100644 index 0000000..e8a65c0 Binary files /dev/null and b/bin/Debug/net461/System.Net.NameResolution.dll differ diff --git a/bin/Debug/net461/System.Net.NetworkInformation.dll b/bin/Debug/net461/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..543a6cf Binary files /dev/null and b/bin/Debug/net461/System.Net.NetworkInformation.dll differ diff --git a/bin/Debug/net461/System.Net.Ping.dll b/bin/Debug/net461/System.Net.Ping.dll new file mode 100644 index 0000000..eeb4666 Binary files /dev/null and b/bin/Debug/net461/System.Net.Ping.dll differ diff --git a/bin/Debug/net461/System.Net.Primitives.dll b/bin/Debug/net461/System.Net.Primitives.dll new file mode 100644 index 0000000..8a929ae Binary files /dev/null and b/bin/Debug/net461/System.Net.Primitives.dll differ diff --git a/bin/Debug/net461/System.Net.Requests.dll b/bin/Debug/net461/System.Net.Requests.dll new file mode 100644 index 0000000..5cf38f8 Binary files /dev/null and b/bin/Debug/net461/System.Net.Requests.dll differ diff --git a/bin/Debug/net461/System.Net.Security.dll b/bin/Debug/net461/System.Net.Security.dll new file mode 100644 index 0000000..eacb8a1 Binary files /dev/null and b/bin/Debug/net461/System.Net.Security.dll differ diff --git a/bin/Debug/net461/System.Net.Sockets.dll b/bin/Debug/net461/System.Net.Sockets.dll new file mode 100644 index 0000000..9716795 Binary files /dev/null and b/bin/Debug/net461/System.Net.Sockets.dll differ diff --git a/bin/Debug/net461/System.Net.WebHeaderCollection.dll b/bin/Debug/net461/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..0238e69 Binary files /dev/null and b/bin/Debug/net461/System.Net.WebHeaderCollection.dll differ diff --git a/bin/Debug/net461/System.Net.WebSockets.Client.dll b/bin/Debug/net461/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..3275912 Binary files /dev/null and b/bin/Debug/net461/System.Net.WebSockets.Client.dll differ diff --git a/bin/Debug/net461/System.Net.WebSockets.dll b/bin/Debug/net461/System.Net.WebSockets.dll new file mode 100644 index 0000000..7a74189 Binary files /dev/null and b/bin/Debug/net461/System.Net.WebSockets.dll differ diff --git a/bin/Debug/net461/System.ObjectModel.dll b/bin/Debug/net461/System.ObjectModel.dll new file mode 100644 index 0000000..37e1189 Binary files /dev/null and b/bin/Debug/net461/System.ObjectModel.dll differ diff --git a/bin/Debug/net461/System.Reflection.Extensions.dll b/bin/Debug/net461/System.Reflection.Extensions.dll new file mode 100644 index 0000000..6d12687 Binary files /dev/null and b/bin/Debug/net461/System.Reflection.Extensions.dll differ diff --git a/bin/Debug/net461/System.Reflection.Primitives.dll b/bin/Debug/net461/System.Reflection.Primitives.dll new file mode 100644 index 0000000..2c160e9 Binary files /dev/null and b/bin/Debug/net461/System.Reflection.Primitives.dll differ diff --git a/bin/Debug/net461/System.Reflection.dll b/bin/Debug/net461/System.Reflection.dll new file mode 100644 index 0000000..ec0b3d2 Binary files /dev/null and b/bin/Debug/net461/System.Reflection.dll differ diff --git a/bin/Debug/net461/System.Resources.Reader.dll b/bin/Debug/net461/System.Resources.Reader.dll new file mode 100644 index 0000000..a34c693 Binary files /dev/null and b/bin/Debug/net461/System.Resources.Reader.dll differ diff --git a/bin/Debug/net461/System.Resources.ResourceManager.dll b/bin/Debug/net461/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..c4a14ce Binary files /dev/null and b/bin/Debug/net461/System.Resources.ResourceManager.dll differ diff --git a/bin/Debug/net461/System.Resources.Writer.dll b/bin/Debug/net461/System.Resources.Writer.dll new file mode 100644 index 0000000..0ce2946 Binary files /dev/null and b/bin/Debug/net461/System.Resources.Writer.dll differ diff --git a/bin/Debug/net461/System.Runtime.CompilerServices.VisualC.dll b/bin/Debug/net461/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..30a2f81 Binary files /dev/null and b/bin/Debug/net461/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/bin/Debug/net461/System.Runtime.Extensions.dll b/bin/Debug/net461/System.Runtime.Extensions.dll new file mode 100644 index 0000000..eb0e80b Binary files /dev/null and b/bin/Debug/net461/System.Runtime.Extensions.dll differ diff --git a/bin/Debug/net461/System.Runtime.Handles.dll b/bin/Debug/net461/System.Runtime.Handles.dll new file mode 100644 index 0000000..37f15ff Binary files /dev/null and b/bin/Debug/net461/System.Runtime.Handles.dll differ diff --git a/bin/Debug/net461/System.Runtime.InteropServices.RuntimeInformation.dll b/bin/Debug/net461/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..c3e0c71 Binary files /dev/null and b/bin/Debug/net461/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/bin/Debug/net461/System.Runtime.InteropServices.dll b/bin/Debug/net461/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..ab54429 Binary files /dev/null and b/bin/Debug/net461/System.Runtime.InteropServices.dll differ diff --git a/bin/Debug/net461/System.Runtime.Numerics.dll b/bin/Debug/net461/System.Runtime.Numerics.dll new file mode 100644 index 0000000..3202cd9 Binary files /dev/null and b/bin/Debug/net461/System.Runtime.Numerics.dll differ diff --git a/bin/Debug/net461/System.Runtime.Serialization.Formatters.dll b/bin/Debug/net461/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..06b5480 Binary files /dev/null and b/bin/Debug/net461/System.Runtime.Serialization.Formatters.dll differ diff --git a/bin/Debug/net461/System.Runtime.Serialization.Json.dll b/bin/Debug/net461/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..1f30098 Binary files /dev/null and b/bin/Debug/net461/System.Runtime.Serialization.Json.dll differ diff --git a/bin/Debug/net461/System.Runtime.Serialization.Primitives.dll b/bin/Debug/net461/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..19a6dd2 Binary files /dev/null and b/bin/Debug/net461/System.Runtime.Serialization.Primitives.dll differ diff --git a/bin/Debug/net461/System.Runtime.Serialization.Xml.dll b/bin/Debug/net461/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..3a839e2 Binary files /dev/null and b/bin/Debug/net461/System.Runtime.Serialization.Xml.dll differ diff --git a/bin/Debug/net461/System.Runtime.dll b/bin/Debug/net461/System.Runtime.dll new file mode 100644 index 0000000..344ee77 Binary files /dev/null and b/bin/Debug/net461/System.Runtime.dll differ diff --git a/bin/Debug/net461/System.Security.Claims.dll b/bin/Debug/net461/System.Security.Claims.dll new file mode 100644 index 0000000..9cb6423 Binary files /dev/null and b/bin/Debug/net461/System.Security.Claims.dll differ diff --git a/bin/Debug/net461/System.Security.Cryptography.Algorithms.dll b/bin/Debug/net461/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..01b7bb5 Binary files /dev/null and b/bin/Debug/net461/System.Security.Cryptography.Algorithms.dll differ diff --git a/bin/Debug/net461/System.Security.Cryptography.Csp.dll b/bin/Debug/net461/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..d7721e7 Binary files /dev/null and b/bin/Debug/net461/System.Security.Cryptography.Csp.dll differ diff --git a/bin/Debug/net461/System.Security.Cryptography.Encoding.dll b/bin/Debug/net461/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..f588614 Binary files /dev/null and b/bin/Debug/net461/System.Security.Cryptography.Encoding.dll differ diff --git a/bin/Debug/net461/System.Security.Cryptography.Primitives.dll b/bin/Debug/net461/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..35a21ef Binary files /dev/null and b/bin/Debug/net461/System.Security.Cryptography.Primitives.dll differ diff --git a/bin/Debug/net461/System.Security.Cryptography.X509Certificates.dll b/bin/Debug/net461/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..53d05b2 Binary files /dev/null and b/bin/Debug/net461/System.Security.Cryptography.X509Certificates.dll differ diff --git a/bin/Debug/net461/System.Security.Principal.dll b/bin/Debug/net461/System.Security.Principal.dll new file mode 100644 index 0000000..6d7c2ba Binary files /dev/null and b/bin/Debug/net461/System.Security.Principal.dll differ diff --git a/bin/Debug/net461/System.Security.SecureString.dll b/bin/Debug/net461/System.Security.SecureString.dll new file mode 100644 index 0000000..355a050 Binary files /dev/null and b/bin/Debug/net461/System.Security.SecureString.dll differ diff --git a/bin/Debug/net461/System.Text.Encoding.Extensions.dll b/bin/Debug/net461/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..4f2b83d Binary files /dev/null and b/bin/Debug/net461/System.Text.Encoding.Extensions.dll differ diff --git a/bin/Debug/net461/System.Text.Encoding.dll b/bin/Debug/net461/System.Text.Encoding.dll new file mode 100644 index 0000000..557551f Binary files /dev/null and b/bin/Debug/net461/System.Text.Encoding.dll differ diff --git a/bin/Debug/net461/System.Text.RegularExpressions.dll b/bin/Debug/net461/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..1a64a17 Binary files /dev/null and b/bin/Debug/net461/System.Text.RegularExpressions.dll differ diff --git a/bin/Debug/net461/System.Threading.Overlapped.dll b/bin/Debug/net461/System.Threading.Overlapped.dll new file mode 100644 index 0000000..5d7e7b7 Binary files /dev/null and b/bin/Debug/net461/System.Threading.Overlapped.dll differ diff --git a/bin/Debug/net461/System.Threading.Tasks.Parallel.dll b/bin/Debug/net461/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..c4df330 Binary files /dev/null and b/bin/Debug/net461/System.Threading.Tasks.Parallel.dll differ diff --git a/bin/Debug/net461/System.Threading.Tasks.dll b/bin/Debug/net461/System.Threading.Tasks.dll new file mode 100644 index 0000000..25999be Binary files /dev/null and b/bin/Debug/net461/System.Threading.Tasks.dll differ diff --git a/bin/Debug/net461/System.Threading.Thread.dll b/bin/Debug/net461/System.Threading.Thread.dll new file mode 100644 index 0000000..9b7da65 Binary files /dev/null and b/bin/Debug/net461/System.Threading.Thread.dll differ diff --git a/bin/Debug/net461/System.Threading.ThreadPool.dll b/bin/Debug/net461/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..9405b8f Binary files /dev/null and b/bin/Debug/net461/System.Threading.ThreadPool.dll differ diff --git a/bin/Debug/net461/System.Threading.Timer.dll b/bin/Debug/net461/System.Threading.Timer.dll new file mode 100644 index 0000000..c9eae71 Binary files /dev/null and b/bin/Debug/net461/System.Threading.Timer.dll differ diff --git a/bin/Debug/net461/System.Threading.dll b/bin/Debug/net461/System.Threading.dll new file mode 100644 index 0000000..deae2be Binary files /dev/null and b/bin/Debug/net461/System.Threading.dll differ diff --git a/bin/Debug/net461/System.ValueTuple.dll b/bin/Debug/net461/System.ValueTuple.dll new file mode 100644 index 0000000..502f8cd Binary files /dev/null and b/bin/Debug/net461/System.ValueTuple.dll differ diff --git a/bin/Debug/net461/System.Xml.ReaderWriter.dll b/bin/Debug/net461/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..24df9a0 Binary files /dev/null and b/bin/Debug/net461/System.Xml.ReaderWriter.dll differ diff --git a/bin/Debug/net461/System.Xml.XDocument.dll b/bin/Debug/net461/System.Xml.XDocument.dll new file mode 100644 index 0000000..cbbc4f0 Binary files /dev/null and b/bin/Debug/net461/System.Xml.XDocument.dll differ diff --git a/bin/Debug/net461/System.Xml.XPath.XDocument.dll b/bin/Debug/net461/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..0830ed1 Binary files /dev/null and b/bin/Debug/net461/System.Xml.XPath.XDocument.dll differ diff --git a/bin/Debug/net461/System.Xml.XPath.dll b/bin/Debug/net461/System.Xml.XPath.dll new file mode 100644 index 0000000..8327f2e Binary files /dev/null and b/bin/Debug/net461/System.Xml.XPath.dll differ diff --git a/bin/Debug/net461/System.Xml.XmlDocument.dll b/bin/Debug/net461/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..4f044b1 Binary files /dev/null and b/bin/Debug/net461/System.Xml.XmlDocument.dll differ diff --git a/bin/Debug/net461/System.Xml.XmlSerializer.dll b/bin/Debug/net461/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..7b47de8 Binary files /dev/null and b/bin/Debug/net461/System.Xml.XmlSerializer.dll differ diff --git a/bin/Debug/net461/adachiku.CLF b/bin/Debug/net461/adachiku.CLF new file mode 100644 index 0000000..2f83514 --- /dev/null +++ b/bin/Debug/net461/adachiku.CLF @@ -0,0 +1,7480 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +iVBORw0KGgoAAAANSUhEUgAAAG4AAADICAYAAAAJHtQIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAACJISURBVHhe7d0HlCxFFQZgzAkDZgwIIuaAGAAVAyIoipgVA/GBWcScAUUxgoigBEHFLKCoCIpPERFQgigq5ow559yer5i71hY9PT2zM/um3+v/nHt2Zrqnt6f/qltVN9VaVY9Ooieuo+iJ6yh64jqKnriOoieuo+iJ6yh64jqKnriOoieuo5gKcZ/73Oeqddddt/rNb34z+GQxfL7++utXf/7zn6tXvepV1S677FL94Ac/qB74wAcukn/84x+Db1TVBz/4weq2t73t4F1VnX766dVpp522IF/96lcHR6rq17/+dXWXu9yl+u1vfzv4pKq23HLL6l3vetfg3f/x7ne/O91DiP8DT33qU6vHPe5x1Z/+9Kf0fhg23njj6vDDDx+8uyT++Mc/Vs94xjPSb3XP17rWtdJn/s/b3va26r///e/gzKVhIuL8+Lvd7W4L4gFf7nKXW/QZ+eQnP5lu1ANE7AknnFA95jGPqbbYYovqpJNOqi51qUtVr3nNa6rnPe951VprrVX97W9/SyT47u1ud7tqnXXWSa8POOCA6hGPeER1jWtco7rjHe9Y3frWt6623XbbdC/f+ta30vcf9ahHVa997WsTqRqF63lwGg35+9//ns6/z33uU22//fbpOhrQcccdlz6/6KKLqnvc4x7V6173uvQePPD895ArXvGK1a1udatFnz396U8ffONibLXVVtWBBx5YvfGNb0yvkXjLW96yestb3jI4Y+mYiDg/Dlla3jC58Y1vnAj+z3/+Uz360Y+urnrVq1Y77rhjdfvb3z71vsMOOywRB9/5zncWiPvXv/5VnXzyyYmEq1zlKtVHP/rRdPzf//53tcEGGyQyHAviHvawh1WXucxlqk996lPVta997eqcc86pnvjEJ6br5XLkkUem8xF3/etfv7r61a9erbfeetUb3vCG1BCI+4rXn/nMZxLZ5e+6znWuk3pn/tnHPvaxdG1A5HWve910jatd7Wrpnm50oxule7j5zW9e3fnOdx6cuTRMTNwDHvCA6jnPeU71yEc+8hLih1EpiAO9yA846KCDqm222SYRecEFF6Qf43zX8hpx8OAHP7i6xS1ukQi5053ulHouwq585StXv/rVrxYR94tf/CI1hpvc5CbVk5/85OrUU0+trnCFK6Se99Of/jTJJptssog4xN773veu9t577+rrX/969YEPfCAJrUEDeO178Lvf/a662c1uljQGcU/XvOY1F97f7373S+cFfv7zn6fvfvjDH073e+6556aGEtf82c9+NjhzaZiIOL3CeHTooYemH//Sl740PfinPe1p6f0rX/nK1Fr1EkCcH+vYve51rwXi9DikvOMd71ggTg/13Xe+851JLe2zzz5JEPiCF7wg9SwqzfgUoJY0FJ/tvvvu1fHHH19997vfHRytqs0222wRcRqFh+k773//+9PngHAPugSCXvGKV6Te77Xf6/X973//pHIDe+yxR3WlK10pyeUvf/nq0pe+dHrtr/dxbKeddhp8Y3IsaXLykpe8JI1biPTgv/nNb1b//Oc/U6vLgTgPhZq4wQ1usIg4yFUlVaelUivOQ8pb3/rW1Eu0fg9qo402qn784x+n71K/1B7VbOy54Q1vWH35y19Oava8885L55TE6W3GHGOdz/fff//qmc98ZupNj33sY9Prv/71r+l8QJZx2TjrutSh1ze96U0XEfe9732v+vznP5+GEaqSljj77LOT6Jn+56c//elFjWpSTEycnqHlfuhDH1ogzphBn6+99tqDsy4G4qiyb3/726lX5qqSGnIsiNPbPvvZz1YXXnjhglzveter3vzmNy/67Ec/+lG6toezcuXKpC5NBvQM6ugJT3hCdc973jP1+jvc4Q4LxFHfb3rTm9KE4ilPeUpSy3rQihUrEnEPechD0uu//OUv6XwN0bi29dZbp55irL7vfe+bXvv9OXFIoxn0qjg/xHBgjHatI444YvCNyTExccYGD/uoo45aIO6ss85KJOXLAtN2N62lauF+rF7xwhe+MLVK52uRQZz3m2+++YIg1jHqJv/8Wc96Vrr+e97znvTw73rXu6Yxjvozk/3a175WHX300enB+75ZLHjoT3rSk6rtttsu9T7fDdSpSjNC41UIFfviF7944b1JTGCvvfaq9txzz9TzqGCTE8OD82ga4xwNoocvFRMRpxVbd3mAfohJh4dDVZb4/e9/n34c9XTIIYekh6WXaoXx0HJVmYOqQ5z1VZCNiBwvf/nLU49BnEakRf/yl78cHK3Sa9f+xje+ke6bynvQgx6UiEe0yUigJM44phfmEo0o/0wPg1ij+bvvvvum5QyVaz7g/o2908JExFF3xpUf/vCHC2rKD9KbvA4x5UeG9RKVYkZozbXDDjsklWMCouf6kQZvapIKtW5DqgdEpSGLenRNY5kJyHvf+97UG8xgP/7xjy8Q94lPfCJ9bganN+oBFsHGRw3kRS96UXXiiScmlarHa0Bxv8Zc46fX1O4f/vCHNF7m4v9TtflnX/nKVwZPpkrrQhrGZOwLX/hCuje/3/Nx7rQwEXE/+clPFqkIQKIW5WGFfP/730/TdWut6AVao89YF7RE03cPSs8BKs5kwgzS6xzGHYt545cFdw6TCiopgDyzT+MbkktQo3qwiUJ+zyHnn3/+4MzFoGnc8zBomBqb5wEaorHUBMu8YFqYeIzrsWrRE9dR9MR1FD1xHcVqQ5xJj6l3TMnHhbVoOeGaBtwPs55JyjQxNeJMnU3Bm2Sas6oSHjzLjVlk7pcbBjNUbhv3zU/GfGX5wW5qeWLWW0pYa4B1hZWkTqwFzaJJGADKWfBSMTXinv3sZ6cbbJLc/ZGDRSF3k+RizVQ3na+DNZj/g8RR4Bvj3yO+w47IrMbOyjTFXmqdRxgZnMOOGrCQ9/+sKUN4OpzHZMefyIoTxO26666Db04HUyMOKdYwTTKsJ3g4ftwwuexlL5uM2aMwLnHO3XnnnZOpLve+I84aMBCWoZK4xz/+8YN3F4ORwHmdIm4p8EDysISQ5z//+elHU4FsmKMwCXFnnHHG4JP/g021DXEsLdRriPfO6wRxrAiMtuNIPlYMA/NXGJiHqdgSQRwbZ96D6lAS5/8JefA9lpk2xDGzuQ5DMrI5mL03ns89ccYFNzaOhJ+sCR6ec/0Nh+woBHGET4yn3EOsQxAnzIAryl/vTSzaEOf8UJXstY7nvXfuiXNjIqNyMZvixqE6PLjy+KjZJY+373JgtpkhBoI4YQ1Ul9cs/maEuWMUgjhjHIdwiKChNsS5P8ZrvkczScf1Qh4BPsJOjnHIcbNuflxwpXjYvk84Q03b2yAf47hxGJ55HcwYS5SqMkdb4pzjc6T4yzCuwXZ2cmJ672Z5BcaB9ZM4Ew+b784Y4joIEYY3CjlxAY5ccSollkIcVe+9cAR/NTZ/efgFRXWWOA5WN3vssccOPmkGPx2VpRVbM/nhYJEsLtG1jEMeTBPqiBuGII4a5f+L2E1uniDOdfjULLadG8Q51/uY9dYRZ3x9/etf3w3ijF0ehBvVW0qPdgnn86HxDvsOlVbng4uWzYnZNOZNQpwebrEd8qUvfSmFNSCOyjeGOY/6DuuPnsRRyhHsWBDH5+Ya0fBg7onTUkUpu0kLWE7UUTAR4ES1wNZ6h41lQd5+++03+KQekxBXpyrdv4YHHLesN+JiQDyN/8NZeswxx6RrBHGMDBofRzNHrrgTwUmOzS1xxqC73/3uyXvdhrQAW2E8lCaM6r0wDnHiYzz48MznQBy1PQzWoTzceqTAIGOo/5urcvew4YYbps81TGEc08RUVaXFK9WwqqARiC1ZKgQQmSG2hVgWGqO07lgT6o2l+p8GZjI56TF79MR1FD1xHUVPXEfRE9dR9MR1FD1xHcXYxImN5/6YZeBPj9FoJI61QgJhLry9rAG8xeWxNhaLHtNBI3FCBpDURhhdV6XVpATzE3skKwgbp5hJFg7hd6sDWhEnFUqe2zBxnry05YasHwUEhBGUkHEjs0b6suxQvkE54uqfMFi77y6jkTi5ZnrSRz7ykRQeN0ykV0n3Ze1fTghUkiIs87ME4sSEyMsT88n2+Pa3vz2lMZ955plJtXcZrSYnfGwifYmepRfGe5L7n1YFxHmUQJzeximq6pDYTQRKvhTtnIchdBGtiOP6iN6khSOubeTVcmAYcRIK+dXcs9mw17SHHtd1tCLu4IMPXvAAB3ESGfihiEF/VWIYcXLHhVEIOJLey/Uihp/Dt+toRdxuu+224BEO4sSGhEyjisAkoO7UJNGo/BUfEojJiSR9KlII3cMf/vAUkrBGECecQHyjcg9U5jypSuESJhwhuQc6VCUgzrim2sKmm266ZhBnwS1WkMrR69TymLcxrg5mjVHlQIgegwFYQrQJlZh3NBJnbBN7IbJYkIw1UEQIGzfU5colryHZY7ZoJE4BUbWycouIYFDBqiKa1CsJcd404j16tEOryUmP+UNPXEfRE9dR9MR1FD1xLSHy2TJiHCkDYQXIKntYSpSJFBndFj1xLRFZQ+OI5JAcKvJFeV8S5ynbKJmFFUplwjboiWsJuRFMbKXwBfI+1B3jxwwIT+dSCncSY7dal+p3MtnxXqjCLhdBLxxVImS1Jk5ihmqu0/IGWKdar+YirUpPKT8vCxQwxzG7SUzhhZeGLOWZBYqTV8/j/2S6kyTCldaEqRCnFalHnNsKS1i4O6cpyMgDNjYMg1brGnlhzyZQQSw/ClhPA7wjHrB8PgW1iexZRVfjvV7jnLqiomy9PBmO81ZEBhJvPJMi9akXCsYaVdpqScTx0ank6uG4GX8ZcfMq6Cz2EhIdJzzqsR9BQHJjOGgJo3b+sLVKuj/+D1FKQybMMFA5HqjKQQqKNskXv/jFwbeaEcSxGgWQyBQYUDLDOTlxLE+M3py4jlGNbL75Pfh9zImIc56cPJm6wzAxcXoOt4kbUQ5JYA4d7n1s5iDtimpwo4zV0mupFkZryX9gRqUVIpR7SC+hKqifaJF+mOuKHeH/k8ork1R54LoMVQ/K2KE3qLAeEvWT889I25JTQZxGJseb2GRC1mq8d9/OyYlTSthnogVUwo2dPzQs/981PCPl9419VKrjTfVdJiZOLpqL+8cRlsfy7sFE+Xo62zlyqwORN41EkPDnvaCfQDQARQDAhkJCEPIEfkZu59SNX3xwjqm/nMNEwk4jkyKIs3OIWtBEI0REvJfc6ZycOI3cs4iSHca//P5ksYa/EzQ85zdhYuLoYOuOfEzyYKkz6gP0IDeYbzSkuLTPbAABsQ9O7CoFdhDx2TAHrf8ta1QjKTNK+Q+1WGOIHq9RhSBOr80/a+uecm48cI0svu+36t3xXjigc6zZvA/4TQp4E993Do+K93ow8uM4GTUuT2VyArnqpMpAnRHvc+KiFxqMwYDufU5c9EJehxzGwnCKmpXl38nhAUdBtFGS7zvQhHzdNY7EolqKNYKIqDTHqErvqXDDQxwno/Ldp0Kc5ProOVpfzBybiIu94ZqI47HOITzB58Q+Bk2lpSwF4hrqURIPzP+N9+SUU04ZfKMZpul2vnJNe+rk18glSh/yYXpfFyRM7TsnVH+pKjU8yf9NWDJxSLN7hhspN86bNnHUoHHUAI4ELXZYoYAgzjouMK0xLp9VlqibVeZQUkPveuhDH7ow5S+JM9EzYYsJXB2WRJx/bAcnN2pCUK49YjZYR5zvAXXofR1x+Y5VJcSTOMePzKFOif9xzKCUhet7TywNBA3F+1xUzxuFJuJM9y0LouJfTpyx1mw5lgMmN7EvAbCaaIjWb84zfptlN2FJxMUkwmyqDlEaylYogRi8Y2sUs8v8PTjfZ7FFGJXIDJTDWOecGE8DNjXy+bjSZl+3JuIQZaJCNKq86JtJip5uaaTaYFkQDunqvcT3Na58e7Q6TEycBa7ubDqs9BEVEEK3AxORSQSxyDV115qsWyIWk7XFGsa2Yywi4jWVVbLei3WcH2K2al8613QtIe+uU1pRLP7dW524D8uIumNtZpfOcW6+6VNbUPNtZ7BtMDFxMa2vk3wbMiTmx1gHXv3qVw+OXgzqIT8HaXlWDfVHdcQxJBonchXcBksd4+YJExPHYiGYqE7KMktmT8giw+yM1oOOU311Nk89Te0s5whWmiRpoyeuozD2hMWm61ijiFud0BPXUfTEdRQ9cR1FT1xH0RPXUfTETQB5eW1sm7NET9yY4A3htYj4R7ZHdtbcAKGOM0NBHp43bfTEdRQ9cR1FT1xH0RPXUfTEdRTLTpwYETOzpYIzcxrX6SqWnThhedzziqIJBZgUIoaFsdmzjUNVON6ahGUljkM1ym0QsYrCEcaFveHyPAKCxDKWY3XGshJnI6H8YRO1I8eFxW95HUkSaxKWjTihBuJF8od9m9vcZmTgZwk5CwKF8uuIbF7TsGzExb5yuch1Cxx11FGpaOkodRfhfbnIgBEe1yQycvJY/q5jpsRFgKyQamF8+cMWqh3HkRWBpLJ/BAMJIi0hSlrAT36dcUTh0UlC6+YRMyNO75HvpfhZGaQqry2P5IqKfLkIyx4WGb0UicyarmMmxCktIfjUg4q/uUgjCuQbteeiQkEOM1LJjOV5k4iG0nVMnTiTDWu1ugdGTCTyDJbY8TcXu/PnueIW2tZr+TlSk6i+Jokg2lyEetft0tg1TJ04GSZCyMsHRqzh8kRIQbUybvJzxNeXM81IBMxFJHNTmpVrr7feeou+43+t6jLE08JMVKVo5bpJhLj9fNySLJIf14s4InNIfpAjkJ8XIjtmWDz+y172skucX6YWdxkzm5yotlD3wD1QUMBFcn1+rKyqc9ppp13inFLqxisNp/yeSg6rg4oMzIw4kD6kF+UPkKlKDkA5ZlGR+RqO279caJNIww2h/nKVKStGpZ/8HCKLaHXCTIkDC9+SvFKMfStXrhx8o1pIoyrPQ4jywZYT+ecmHIrXmNCY2OTHyCRmtXnHzImDUesvud05LJIl1efnyKuLtGEL9PwYsRVLpPHmogHIaVvdsCzE6Qk2aigfKqEi2R9N+eXEqVJ31llnpfWdaCrn8CLk6pBVxcSkvFadNBV56TKWhTgw9jBn5Q+VilQPhF9OfnZ8ruwGIG/XXXdNOdolLDvq1GmIsVTJidL6srpg2YizfitnmbkFJSoFhTQVdAvYE04acv69ECUtVmcsC3GySdWxyh8slZhbR0xi8uNKRzVBrrdJR/6dXDQS9cPGdRt1BTMhLg9JoKrsaZM/VGsstUqs9YhqevLAc++4ycgw+K4tY/JrDhNlCJuq7HUVMyGOwxQ5IXUPtI2cf/75gyteDM7YKNBWSpRVqjtGVG5A+DQrH6xKzIQ45ZrqHt64opYJ8OcJeyg96CEW5apA6L3KbtSdE2ItqD4L9d0WaqCYDLWVUQkh8gqU0FpKI5oJcXaLqnto44r6jwgrnbC5KKWUT2T0yqin1SQW8ZYbUVqxCcxlddcYJqN2sGSjDS8Fg8IkySEzIU5po7of5CGLMyk/t6A2DqmIWuebqxNqURhDnafcuCqLRuRX3XdzaSo7FZgGcYwQljzETJhqj4p8nte4mAlxesCee+6ZqrmW6sCarPyheX3+KCzd5DRVc1JL5bC1ge0w945J0k477TR07ON+aoMgrnTu5jDLjevWEed4pGGtWLGi2nDDDedPVTZhFHGnn356qkvph6qwl59n/LJs8IMt6KOomcW2anTGwjpYQ26//faXsJmOWnIEpkEc65DCcES9FZEBxjnVcycxyc2MOIE9Yh09NKUKA03E6SGs+GaOHoQKRY5TeQrL5CUVlVgsr2PywueWn5eDK2m77bZL51JTw0omlgjiLGv8pjoR2Bv3UUechqbsL5uqJYr/zx5rDPdbx8XMiNP644dYEghZECY3jDhZnLllxbhnrEJ8OY5RwfmarxRlcv2fYeYuAUx5aOAoTHtyEtXyloJlIY5QU1FLMv+cIE5IQa7KGKWbwMlaqtJSdtlll6mEpQdxHrYxuE6irDGpI06wEy1hgmZ8M74qUDdp4sqyEWe2CE2qMjdCUyWjfpSgI2NeU6ylIp6xP+qkmMYYZzdkM0sEUqtmlvZjcG2F58adqMyMOHUn44cQYws0EWcGmH9uUd0G7JFRE7oUE5dTTz11cOZkmAZxeps4U5MovS2qtFvSGEbGreIwM+JKo/HOO++cPm8iThh6/nlT7eM6KPleRnaVTtpJEMRZhlhz1Uns1kzqiNO4jOM8IiZguTbJje1tMTPiPPT4IUR8PzQRZwzMP7fdy7gwgxWt7PvGk7oq5OOAJWZYlNkwGTU5mQZmRlzpETjiiCPS503EmUjknzNLRXlfMDYYBy0XDj/88KHrNtdRblge3VIhYizux28S01InuZpvIs6azbJEEXBLFypUAz366KMHZ7TDTIiju0O9hFxwwQXpWBNxpu82y8uPxd7izGG5l5zoCXIMLKRdY9j0fykQTuF/seQ0TSCaxjj7FYisFpHmnk2mzCydy4hg0mKWPA5mQhyS4kcQNxzT8ibioOyp1jwQmyw0iZmruE3rxWnBuOba+b4AdWgizm9W3p9bieo16UJcrFWZ7vTaOrvrMMyEuDKKOB+rRhEXeXTWTPvuu28KJVejv8nXVorFuX1rqKNJ10mgAUZoxKjC3aNmlQF7xVkGUPVAFQvbsG496aST0mdtMBPiSp9YbhMcRZwCZ9RGPtMywbChhP0I6rwLTcImaLePcddyzGYRWMuUxs9WIjetuef4n03EIcc95Q3KLJN5bxxVPxPikGPrlUiwz6uijyJuFPw43geTHWqsbU9klbFlTJsgJP8jdhIh0TtKRHQaY0F+H02q2njHJLfU8XgmxAVsJFSWi18qcSVM/83IeN1L63+djNp7FERFxy7EVFjTkkJsTH79MrGlBNur82LsnhQzJa4OdcRx40wDap1Qy8PSvHgZbA/aBpYhcvdGhTiwymighOF6lOnKEGA5w/DO1URzjBNGEZgL4oapoklh/NCiLRXy/yPWYx7AvMV8ZgLmviYprrPsxIlcZqfLZRwXyzigspjebJOmEtG8xVi6v0m94MtO3KpC7sxdHbDGELe6oSeuo+iJ6yh64jqKnriOoieuo+iJ6yh64jqKnriOoieuo+iJ6yh64jqKuSROzP+2226b4vG5+k888cTkw5KqFFDlNUQiv9iUeB+OTG4cjstTTjklBaKG+CwHN9Bmm222kGe3VO/0cmAuiRPoI6pLHKVkECm3PNdCIMJ3JdFCyWAi5C1ekwjp22GHHVJElVxy7iNOViEVBx98cDoOXD283eJANBSpUCtWrBgcnV/MJXFC4YQiCBY9/vjjUw/kMfY3AkdFR6k6RERixWv1LUGEmKR+AbSIE7on8UKEVRAnNkTwEVJFkknIEOgUMaDzjLkkTnSVh0w9qngA66yzTvoboD49dL1IsKq/CIhKDRIJJVhIiESi4yFKRVG7eq9aXxqHbWOkbZVqdF4xtz1OxQVqTRK+qCjqEFERZDOKOKAqZfGIrNLzgjgVhyK0XS0VBItIE5SqUA6RbTTPmEvi5EkfeOCBSTVGgdC8x4n4lQYcabziHuO15HjHXUO0sIAcEx2qF0F6lbBv2H///VMDkUkkdM/khIjDtGnTPGPuiBNi4EHvuOOOKUVKMRmTDeOVv+Ii9RI1SkL0xvy9eH/nmHj4vs9MOExoFAcwjkH0OhFaJkOuT0Ri98SNCTNIE4/DDjssTSRUQDfehZiwlCjHvxyWB6KjFc0xsVHSPlK+AoiTlBGqVCxoT1yPmaAnrqPoiesoeuI6ip64jqInrqOYe+LaJOAzX+XlhHNEdk7UhhwGdspJylasKswlcR6gbE8Pk/XDBhLe5xUYrMtYV4CZy3pPHlvukpECJeED5Fnvtttu6XUJx9gqWV38ny7swTOXxEl0ZPFnowyR2yaxP8D/xsqPLGYrOdhMWHLaAjZZUtFARVZ1LVV08JrElpsW+6rZsapoDBbzSl/MO+aWOD1N8n2IwqVBXFj+zzzzzESOjSNYVGSPrr322snCLydbei8fnoo+7JORI+c9cxgHq7IeiOIlOO6445JhW0bqvGNuidPL9JYQlv68x3HFMGExV3norPkqGiBDaSi2SbUhkSyZnoM0nK8BvY7biGFZHjeHalc2v51b4hQsUxckRMhBTpzxjiGZQZhtkSGZW2f33XcfnHGxW8c46VqIVWvEeKi4p3EUqVw+xjeuIcZt17ERhV4+z5hb4nispRiHKHKWE8fTbbJhXDr55JPTZ2agYkcCiEMmZyqnrLGQ10FohMrjSOOBUFA7L9bGldQbmScA4iTgK0Mf4mHnxFF9xjjEcYCalPCj5cQptWi80ju5czhVqcaygg91y1/nGsRY2RM3ARSTMWGg3kJUJ9hnn33ScSrOuAfCELiAnPO+971v0XadelwUgrG1mdqQdVBQgDsn/pceGkXj5hVzSVyP0eiJ6yh64jqKnriOoieuo+iJ6yh64jqKnriOYiziFAzLazeqQi5ucVwojG0RPU9Q0U78ZR1ETbNttt1ECTyXvILstNGKODlqDLT2GbXDYRSFVrYvvMqsGirUlcKAW4KRV4g4nHDCCdXKlSvTayas2HDd5xylhBWjbZ3JcaDxcAER0c+8CfGeBJjXuIG4gDhd+fXYQCWnAN+g+2TztK0YI7Xj4egNsMg4novrTYJWxNn7RYi2Wv7ANcK7jLio/c/qzjjLLqhKqv1Kvc6jjP0w1ndVVT0kpXnF8sfNS8ZglwR2Rm4WDcJrjlQ2zGmCu4efzv8ohZsHJJ3w9/EccO5y3toMQ3FQDljQG907z4T9x+225XlpiDn4EGkb3yV2CCnPaYuRxPFPSSpkvN1iiy1SsuEw4jxo5/KlSaLwOh6AFqy3Eq1RLptkQtfzGZJL4ni0AxylbI/TBA8Bt5D7zMX/jS1lwN43vOZ6nMbDycuVFMQxfguP97kazXITbBWjYYZNFVRSzw3nhNtpEowkLmLvN9poo9Q7ZIgOI4532bnK1dvz1Gt7DgBPNHVEXXgAfrj3IfYlaCJOjhvVO23wFLhXvd69uudyBxHaQUxLEFf2ODEqeqKtYahVPW/LLbdMewU5xkNhA/th8tznPjddZxy0UpXGGL0IIazvw4jz0Fng3YxQA6/tKAyqwEqb8l4LDqelVhpoIs71PZhpw0N1P9SddC27KJK8mqzedOyxxy4Qx1dIawRxtItGZYhwj455NnqeHu3aNBe1KF/d61zy/9UWI4nTEjfZZJOkj411JiN+hNTbnDik2kFfrIcWalM7r6VHgbRdYQVaIpWLNCJ7JlAS571wBJMXatXOGNPGkUcemZIe7XljPPaQScAY52FraI7z/1F/JiRBHJio7LHHHkkzIdL9U685NAiNIH67mtExbxgXI4mjSqTcSk1CXABJ9DjixDRKiaI+gFPSzlQ2WQhVGUCccU3AjpllTpxZmHr/wLvtgZLNN998JqEEGp+NAY2xslvl2cUmRzanMHPWI43vJls0hgR//ruIDgu0Ic6YKnxQD+NzdC2xM5OglaoEzsqYwgM1aPbFUWmAzVuOCt9+9IoVK1JYXA7633FFrqUFUy+rCu5RLCVYcyHDfYWA3yn6CzRgKltjRoxxL2DyJIkyvisdOVf1ORQHsKTQA0tvfFu0Jq7HfKEnrqPoiesoeuI6ip64jqInrqPoiesoeuI6iar6HxEwx6jL+TZIAAAAAElFTkSuQmCC + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +14 + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +48 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/Debug/net461/arakawa.CLF b/bin/Debug/net461/arakawa.CLF new file mode 100644 index 0000000..d26ab5c --- /dev/null +++ b/bin/Debug/net461/arakawa.CLF @@ -0,0 +1,7480 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +iVBORw0KGgoAAAANSUhEUgAAAG4AAADICAYAAAAJHtQIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAACN8SURBVHhe7d0F2CxVGQdw7O5uFPQqioIdYF6xuwtRr41gYYAKJraiGKBiIiogNirYiordgo2F3R3j8zt87/V8587szmx9Ox/zf5732d3Z2dmZ+c855z1vna2qAb3EQFxPMRDXUwzE9RQDcT3FQFxPMRDXUwzE9RTrhri//vWv1b/+9a+VT8uBf/7zn9Xf/va3lU+zxUyI+/SnP11d6lKXqr785S+vbNkSN77xjau3vOUt1cc//vFqxx13TBf03ve+t3rFK16xWf7973+v7F1Vn/vc56rtttuu+stf/pI+f//736+++tWvbpYf/OAHaXvgyU9+cvWoRz1q5VNVvfnNb6723HPPlU//xzvf+c5V/3nIIYek7V/60peqq13tatWvfvWr9LkJj370o6v9999/5VM9DjzwwOqNb3xjOuZFL3rR6o9//GP1ohe9qHrBC15Q/fe//13ZazpMRNy3vvWt6la3utVmufa1r11ttdVW1Q1ucINV2z/ykY+k/RF6yUtesnr605+eTv4CF7hAIvBmN7tZdaMb3ah6yEMekn4fT+emTZuq6173utUZznCG6ta3vnUi4DWveU11kYtcJH32m1ve8pZpX3CDznKWs1RHHnlk9dKXvrT6/e9/X932tretnvCEJ6zs8X/E/13wghes9ttvv+qDH/xg2u6huepVr1o9+9nPTp8Dru3c5z73ZjnjGc9YnfnMZ161zX/leMxjHpOu8bnPfW618847p/M5+9nPXj3/+c9f2WN6TEScFna2s52t+tSnPtUol73sZatDDz007f+mN70p3aj73Oc+iZRznetc1XOe85xq48aN6fW73/3uKuJ++MMfphvoP7SQn/70p6kbvPCFL1x99KMfTTckiDv44IOrc57znKm13eQmN6nud7/7pRvlt/e85z2rxz3ucUne9ra3pf0Rd6UrXSkRfc1rXjM9TG5o7Bfyvve9L+0PH/jAB9J5EL+/4x3vuPmz88nx+Mc/vrrWta5VXeYyl0niWj2E2267bXWNa1wjtdhZYCLiPOFXuMIVqte//vWN4mRdWODyl7986opc1MUudrG0TatEqIvKifv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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +14 + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS UI Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +21.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +11.25 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +60 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +18 + +110 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +80 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +85 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +85 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/Debug/net461/homeButton.png b/bin/Debug/net461/homeButton.png new file mode 100644 index 0000000..723b7a2 Binary files /dev/null and b/bin/Debug/net461/homeButton.png differ diff --git a/bin/Debug/net461/katsushika-1.CLF b/bin/Debug/net461/katsushika-1.CLF new file mode 100644 index 0000000..58f416a --- /dev/null +++ b/bin/Debug/net461/katsushika-1.CLF @@ -0,0 +1,8007 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +15 + + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>3.67 +<_y>16.44 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + + +タグ +Millimeter + +<_x>25.485620784759533 +<_y>34.17238206863405 +<_width>12.611807346343994 +<_height>5.7326416969299316 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>3.67 +<_y>16.44 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>25.485620784759533 +<_y>34.17238206863405 +<_width>12.611807346343994 +<_height>5.7326416969299316 + + +100 +false +true +true +true + + +Text + +タグ + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>3.67 +<_y>16.44 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>25.485620784759533 +<_y>34.17238206863405 +<_width>12.611807346343994 +<_height>5.7326416969299316 + + +100 +false +true +true +true + +タグ + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +24 + +90 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +21.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS UI Gothic +Point +11.25 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +60 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +18 + +110 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +80 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +85 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +85 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +18 + +110 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/Debug/net461/katsushika.CLF b/bin/Debug/net461/katsushika.CLF new file mode 100644 index 0000000..58f416a --- /dev/null +++ b/bin/Debug/net461/katsushika.CLF @@ -0,0 +1,8007 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +15 + + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>3.67 +<_y>16.44 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + + +タグ +Millimeter + +<_x>25.485620784759533 +<_y>34.17238206863405 +<_width>12.611807346343994 +<_height>5.7326416969299316 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>3.67 +<_y>16.44 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>25.485620784759533 +<_y>34.17238206863405 +<_width>12.611807346343994 +<_height>5.7326416969299316 + + +100 +false +true +true +true + + +Text + +タグ + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>3.67 +<_y>16.44 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>25.485620784759533 +<_y>34.17238206863405 +<_width>12.611807346343994 +<_height>5.7326416969299316 + + +100 +false +true +true +true + +タグ + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +24 + +90 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +21.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS UI Gothic +Point +11.25 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +60 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +18 + +110 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +80 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +85 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +85 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +18 + +110 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/Debug/net461/kessaiCancelButton.png b/bin/Debug/net461/kessaiCancelButton.png new file mode 100644 index 0000000..91e9da5 Binary files /dev/null and b/bin/Debug/net461/kessaiCancelButton.png differ diff --git a/bin/Debug/net461/kessaiChangeButton.png b/bin/Debug/net461/kessaiChangeButton.png new file mode 100644 index 0000000..a720b73 Binary files /dev/null and b/bin/Debug/net461/kessaiChangeButton.png differ diff --git a/bin/Debug/net461/kessaiCompleteButton.png b/bin/Debug/net461/kessaiCompleteButton.png new file mode 100644 index 0000000..8a351cd Binary files /dev/null and b/bin/Debug/net461/kessaiCompleteButton.png differ diff --git a/bin/Debug/net461/kessaiKikanButton_1.png b/bin/Debug/net461/kessaiKikanButton_1.png new file mode 100644 index 0000000..61d4b84 Binary files /dev/null and b/bin/Debug/net461/kessaiKikanButton_1.png differ diff --git a/bin/Debug/net461/kessaiKikanButton_12.png b/bin/Debug/net461/kessaiKikanButton_12.png new file mode 100644 index 0000000..8988c11 Binary files /dev/null and b/bin/Debug/net461/kessaiKikanButton_12.png differ diff --git a/bin/Debug/net461/kessaiKikanButton_2.png b/bin/Debug/net461/kessaiKikanButton_2.png new file mode 100644 index 0000000..aaf3f19 Binary files /dev/null and b/bin/Debug/net461/kessaiKikanButton_2.png differ diff --git a/bin/Debug/net461/kessaiKikanButton_3.png b/bin/Debug/net461/kessaiKikanButton_3.png new file mode 100644 index 0000000..aaef815 Binary files /dev/null and b/bin/Debug/net461/kessaiKikanButton_3.png differ diff --git a/bin/Debug/net461/kessaiKikanButton_6.png b/bin/Debug/net461/kessaiKikanButton_6.png new file mode 100644 index 0000000..5928c0f Binary files /dev/null and b/bin/Debug/net461/kessaiKikanButton_6.png differ diff --git a/bin/Debug/net461/kessaiOKButton.png b/bin/Debug/net461/kessaiOKButton.png new file mode 100644 index 0000000..4f27a3a Binary files /dev/null and b/bin/Debug/net461/kessaiOKButton.png differ diff --git a/bin/Debug/net461/kessaiPrintButton.png b/bin/Debug/net461/kessaiPrintButton.png new file mode 100644 index 0000000..becc734 Binary files /dev/null and b/bin/Debug/net461/kessaiPrintButton.png differ diff --git a/bin/Debug/net461/kita.CLF b/bin/Debug/net461/kita.CLF new file mode 100644 index 0000000..fe68c96 --- /dev/null +++ b/bin/Debug/net461/kita.CLF @@ -0,0 +1,7480 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +iVBORw0KGgoAAAANSUhEUgAAAG4AAADICAYAAAAJHtQIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAACH6SURBVHhe7d0HlCxFFQZgjKiYI2YxPUyAiiCYUMEcURQDYkBRMD0FBUxgQp+oGBDBhD5FRcwBFQyYs2DOWcw5x/Z8xdyltuye6Zmd2Z2e1/859+x0T8/sdP1dt6puqs2qHp1ET1xH0RPXUfTEdRQ9cR1FT1xH0RPXUfTEdRQLQ9xf//rX6l//+tfgaD7wz3/+s/rb3/42OJoupkLci170ouo617lOarw6/Pa3v62ueMUrVt/97ner5z3vedX97ne/dP4Vr3hFdfTRRyd505velM4FPvvZz1bXvOY1q7/85S/p+Hvf+171pS99aUm+//3vp/OBJz3pSdX69esHR1V1/PHHV4961KMGR2fh7W9/+9L/JK985SvT+S9+8YvV9a9//epXv/pVOm7CYx7zmOrwww8fHNXjxS9+cbVx48b0nZe5zGWqP/7xj9Xzn//86rnPfW713//+d3DVyjARcW9+85ur29/+9kuybt266tznPveyc+QXv/hF+qHvfOc7q80226x629veVt3//vevbnGLW1Sf+9znqgtf+MLVXnvtVd3hDndIjRbYZ599qp133rk617nOld5DAJIvfelLp+Ob3/zm1e1ud7vB1Wc2+nnPe970uzxEv//976s73elO1UEHHTS44iz47EMf+tDqkpe8ZHXooYdW73//+9P5f//739X1rne96lnPelY6DtzwhjdMvzPEfZ7nPOdZds7/yvHYxz62usQlLlFt2LChuslNbpJ+z/nPf/7qiCOOGFyxckxE3HOe85x0Qx//+Mdr5ZRTTklE/eAHP0jEPeUpT0nHesWuu+5abbvttulJd9Ouf/WrX72MOJ/TgFtssUXqIT/96U+TGtxyyy2rD3/4w6lBgrhjjz22uuAFL5h62y1vecvqAQ94QGoon733ve9dPe5xj0tywgknpOsRd+1rXzsRvcMOO1RPe9rTUoPGdSHvec970vXwvve9L/0O4vO777770rHfk+Pxj398teOOO1ZXvvKVk1zoQhdKD+FVr3rV6gY3uEHqsdPARMS97GUvq25961unBq8T7/vRP/nJT9L1v/71rxNxu+22W3X1q1+9uuc975nOI+5KV7pSUic5cV/72tdS453vfOdLxFCxeqjG/vnPf1499alPTY0XoH4333zzRMTXv/716olPfGK13Xbbpc8S/xehoOH1Sqr73e9+dzqHVNdtvfXW1Z577plef/rTn07vgZ7uwXB+p512Svfu9QMf+MDqute97uCqM/GjH/2o+upXv1p95jOfSQ+UB/QCF7hAehCc/+EPfzi4cmWYeIzTuI985COT3O1ud0uNGscHHnjg4KozEcRRSw9+8IOXEeepfcELXrBE3J///Od0TD1SlXvssUd117veNakcKui4445L4+kLX/jCdL2x71WvelXqYW94wxvSQ6C3fuc730nvg8/lxJU9LqDHxvfmQNxNb3rT9FsQbmjw2udz4l73utelawlV7J5pCffhXuO9/fbbb/CJybGiyckxxxyTntoPfehDSac3IYjTgDe72c2WEYck6iWI+/vf/17tv//+aSBHtM8+4xnPSCrmP//5T7qe6jXhAWMkMq5whStUV7nKVdKDYfKDABMCKIlz3vXGXP/PGGm8oyVue9vbptff/OY30/Wgsd/61rdWv/vd71KP9HB67f5z4qhzE7QPfOAD1cUvfvHqve99bzr+wx/+kB62hz/84Wmi8o9//GPwicmxIuLobioDcec85zmr7bfffknixj35JgOIe8hDHpL0P3X56Ec/Oqk3DUn3B3Fu0nu5GNipxvL8GWeckT6jUU16HvSgB6WZokmRsdP4ohFz4pB+97vfPQlNoad+9KMfTWT6Xf6P13pywJhsbPaZ6HFe64XOB5Ckt1/0ohdNkreHIcHDQl7+8pcPPjE5JibuN7/5TXWRi1wk9QbE+aHf/va3l8STDG7GMV1PLVJrr3/966uvfOUrqdHKyYnrqcMQ45GZ3NnPfvbqsMMOW/aeXmfMoPaoH8TFwwRU5ze+8Y3qvve9b5qig6feA0TVmd1e7GIXS+ehVJW+23idizHuNre5zf+d/+Uvf5keil122SXdm3v2QB5wwAHp9VZbbVW95S1vqU488cRadTwuJiaO6rrsZS+bnqBb3epWQ1WlCQOSqRYNaLCmDi93ucsl9ZITl8N797rXvdL4FuoNGflC+13vele1zTbbpN+DuLvc5S5pYpPDDDiecr/TGHeNa1wjfW4YcSYTGj6Xa13rWmlsK8+blFhsU+dgaeI+f/zjH6e14Tn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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +14 + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +true +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS UI Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +48 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/Debug/net461/kokubunnji.CLF b/bin/Debug/net461/kokubunnji.CLF new file mode 100644 index 0000000..fe68c96 --- /dev/null +++ b/bin/Debug/net461/kokubunnji.CLF @@ -0,0 +1,7480 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +iVBORw0KGgoAAAANSUhEUgAAAG4AAADICAYAAAAJHtQIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAACH6SURBVHhe7d0HlCxFFQZgjKiYI2YxPUyAiiCYUMEcURQDYkBRMD0FBUxgQp+oGBDBhD5FRcwBFQyYs2DOWcw5x/Z8xdyltuye6Zmd2Z2e1/859+x0T8/sdP1dt6puqs2qHp1ET1xH0RPXUfTEdRQ9cR1FT1xH0RPXUfTEdRQLQ9xf//rX6l//+tfgaD7wz3/+s/rb3/42OJoupkLci170ouo617lOarw6/Pa3v62ueMUrVt/97ner5z3vedX97ne/dP4Vr3hFdfTRRyd505velM4FPvvZz1bXvOY1q7/85S/p+Hvf+171pS99aUm+//3vp/OBJz3pSdX69esHR1V1/PHHV4961KMGR2fh7W9/+9L/JK985SvT+S9+8YvV9a9//epXv/pVOm7CYx7zmOrwww8fHNXjxS9+cbVx48b0nZe5zGWqP/7xj9Xzn//86rnPfW713//+d3DVyjARcW9+85ur29/+9kuybt266tznPveyc+QXv/hF+qHvfOc7q80226x629veVt3//vevbnGLW1Sf+9znqgtf+MLVXnvtVd3hDndIjRbYZ599qp133rk617nOld5DAJIvfelLp+Ob3/zm1e1ud7vB1Wc2+nnPe970uzxEv//976s73elO1UEHHTS44iz47EMf+tDqkpe8ZHXooYdW73//+9P5f//739X1rne96lnPelY6DtzwhjdMvzPEfZ7nPOdZds7/yvHYxz62usQlLlFt2LChuslNbpJ+z/nPf/7qiCOOGFyxckxE3HOe85x0Qx//+Mdr5ZRTTklE/eAHP0jEPeUpT0nHesWuu+5abbvttulJd9Ouf/WrX72MOJ/TgFtssUXqIT/96U+TGtxyyy2rD3/4w6lBgrhjjz22uuAFL5h62y1vecvqAQ94QGoon733ve9dPe5xj0tywgknpOsRd+1rXzsRvcMOO1RPe9rTUoPGdSHvec970vXwvve9L/0O4vO777770rHfk+Pxj398teOOO1ZXvvKVk1zoQhdKD+FVr3rV6gY3uEHqsdPARMS97GUvq25961unBq8T7/vRP/nJT9L1v/71rxNxu+22W3X1q1+9uuc975nOI+5KV7pSUic5cV/72tdS453vfOdLxFCxeqjG/vnPf1499alPTY0XoH4333zzRMTXv/716olPfGK13Xbbpc8S/xehoOH1Sqr73e9+dzqHVNdtvfXW1Z577plef/rTn07vgZ7uwXB+p512Svfu9QMf+MDqute97uCqM/GjH/2o+upXv1p95jOfSQ+UB/QCF7hAehCc/+EPfzi4cmWYeIzTuI985COT3O1ud0uNGscHHnjg4KozEcRRSw9+8IOXEeepfcELXrBE3J///Od0TD1SlXvssUd117veNakcKui4445L4+kLX/jCdL2x71WvelXqYW94wxvSQ6C3fuc730nvg8/lxJU9LqDHxvfmQNxNb3rT9FsQbmjw2udz4l73utelawlV7J5pCffhXuO9/fbbb/CJybGiyckxxxyTntoPfehDSac3IYjTgDe72c2WEYck6iWI+/vf/17tv//+aSBHtM8+4xnPSCrmP//5T7qe6jXhAWMkMq5whStUV7nKVdKDYfKDABMCKIlz3vXGXP/PGGm8oyVue9vbptff/OY30/Wgsd/61rdWv/vd71KP9HB67f5z4qhzE7QPfOAD1cUvfvHqve99bzr+wx/+kB62hz/84Wmi8o9//GPwicmxIuLobioDcec85zmr7bfffknixj35JgOIe8hDHpL0P3X56Ec/Oqk3DUn3B3Fu0nu5GNipxvL8GWeckT6jUU16HvSgB6WZokmRsdP4ohFz4pB+97vfPQlNoad+9KMfTWT6Xf6P13pywJhsbPaZ6HFe64XOB5Ckt1/0ohdNkreHIcHDQl7+8pcPPjE5JibuN7/5TXWRi1wk9QbE+aHf/va3l8STDG7GMV1PLVJrr3/966uvfOUrqdHKyYnrqcMQ45GZ3NnPfvbqsMMOW/aeXmfMoPaoH8TFwwRU5ze+8Y3qvve9b5qig6feA0TVmd1e7GIXS+ehVJW+23idizHuNre5zf+d/+Uvf5keil122SXdm3v2QB5wwAHp9VZbbVW95S1vqU488cRadTwuJiaO6rrsZS+bnqBb3epWQ1WlCQOSqRYNaLCmDi93ucsl9ZITl8N797rXvdL4FuoNGflC+13vele1zTbbpN+DuLvc5S5pYpPDDDiecr/TGHeNa1wjfW4YcSYTGj6Xa13rWmlsK8+blFhsU+dgaeI+f/zjH6e14Tn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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +14 + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +true +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS UI Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +48 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/Debug/net461/koutou.CLF b/bin/Debug/net461/koutou.CLF new file mode 100644 index 0000000..fe68c96 --- /dev/null +++ b/bin/Debug/net461/koutou.CLF @@ -0,0 +1,7480 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +iVBORw0KGgoAAAANSUhEUgAAAG4AAADICAYAAAAJHtQIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAACH6SURBVHhe7d0HlCxFFQZgjKiYI2YxPUyAiiCYUMEcURQDYkBRMD0FBUxgQp+oGBDBhD5FRcwBFQyYs2DOWcw5x/Z8xdyltuye6Zmd2Z2e1/859+x0T8/sdP1dt6puqs2qHp1ET1xH0RPXUfTEdRQ9cR1FT1xH0RPXUfTEdRQLQ9xf//rX6l//+tfgaD7wz3/+s/rb3/42OJoupkLci170ouo617lOarw6/Pa3v62ueMUrVt/97ner5z3vedX97ne/dP4Vr3hFdfTRRyd505velM4FPvvZz1bXvOY1q7/85S/p+Hvf+171pS99aUm+//3vp/OBJz3pSdX69esHR1V1/PHHV4961KMGR2fh7W9/+9L/JK985SvT+S9+8YvV9a9//epXv/pVOm7CYx7zmOrwww8fHNXjxS9+cbVx48b0nZe5zGWqP/7xj9Xzn//86rnPfW713//+d3DVyjARcW9+85ur29/+9kuybt266tznPveyc+QXv/hF+qHvfOc7q80226x629veVt3//vevbnGLW1Sf+9znqgtf+MLVXnvtVd3hDndIjRbYZ599qp133rk617nOld5DAJIvfelLp+Ob3/zm1e1ud7vB1Wc2+nnPe970uzxEv//976s73elO1UEHHTS44iz47EMf+tDqkpe8ZHXooYdW73//+9P5f//739X1rne96lnPelY6DtzwhjdMvzPEfZ7nPOdZds7/yvHYxz62usQlLlFt2LChuslNbpJ+z/nPf/7qiCOOGFyxckxE3HOe85x0Qx//+Mdr5ZRTTklE/eAHP0jEPeUpT0nHesWuu+5abbvttulJd9Ouf/WrX72MOJ/TgFtssUXqIT/96U+TGtxyyy2rD3/4w6lBgrhjjz22uuAFL5h62y1vecvqAQ94QGoon733ve9dPe5xj0tywgknpOsRd+1rXzsRvcMOO1RPe9rTUoPGdSHvec970vXwvve9L/0O4vO777770rHfk+Pxj398teOOO1ZXvvKVk1zoQhdKD+FVr3rV6gY3uEHqsdPARMS97GUvq25961unBq8T7/vRP/nJT9L1v/71rxNxu+22W3X1q1+9uuc975nOI+5KV7pSUic5cV/72tdS453vfOdLxFCxeqjG/vnPf1499alPTY0XoH4333zzRMTXv/716olPfGK13Xbbpc8S/xehoOH1Sqr73e9+dzqHVNdtvfXW1Z577plef/rTn07vgZ7uwXB+p512Svfu9QMf+MDqute97uCqM/GjH/2o+upXv1p95jOfSQ+UB/QCF7hAehCc/+EPfzi4cmWYeIzTuI985COT3O1ud0uNGscHHnjg4KozEcRRSw9+8IOXEeepfcELXrBE3J///Od0TD1SlXvssUd117veNakcKui4445L4+kLX/jCdL2x71WvelXqYW94wxvSQ6C3fuc730nvg8/lxJU9LqDHxvfmQNxNb3rT9FsQbmjw2udz4l73utelawlV7J5pCffhXuO9/fbbb/CJybGiyckxxxyTntoPfehDSac3IYjTgDe72c2WEYck6iWI+/vf/17tv//+aSBHtM8+4xnPSCrmP//5T7qe6jXhAWMkMq5whStUV7nKVdKDYfKDABMCKIlz3vXGXP/PGGm8oyVue9vbptff/OY30/Wgsd/61rdWv/vd71KP9HB67f5z4qhzE7QPfOAD1cUvfvHqve99bzr+wx/+kB62hz/84Wmi8o9//GPwicmxIuLobioDcec85zmr7bfffknixj35JgOIe8hDHpL0P3X56Ec/Oqk3DUn3B3Fu0nu5GNipxvL8GWeckT6jUU16HvSgB6WZokmRsdP4ohFz4pB+97vfPQlNoad+9KMfTWT6Xf6P13pywJhsbPaZ6HFe64XOB5Ckt1/0ohdNkreHIcHDQl7+8pcPPjE5JibuN7/5TXWRi1wk9QbE+aHf/va3l8STDG7GMV1PLVJrr3/966uvfOUrqdHKyYnrqcMQ45GZ3NnPfvbqsMMOW/aeXmfMoPaoH8TFwwRU5ze+8Y3qvve9b5qig6feA0TVmd1e7GIXS+ehVJW+23idizHuNre5zf+d/+Uvf5keil122SXdm3v2QB5wwAHp9VZbbVW95S1vqU488cRadTwuJiaO6rrsZS+bnqBb3epWQ1WlCQOSqRYNaLCmDi93ucsl9ZITl8N797rXvdL4FuoNGflC+13vele1zTbbpN+DuLvc5S5pYpPDDDiecr/TGHeNa1wjfW4YcSYTGj6Xa13rWmlsK8+blFhsU+dgaeI+f/zjH6e14TnOcY5E3LQwEXGmz55y6zMzR+sYvcf4lcsHP/jBNDXXQDGugUY24zLT0sPueMc7LiMOOXoG9eIJd/NgUe3JRaAJi6fcQv0d73jHEnEaLha5ehV1draznS01pPGFikXiySefnHqzSYQx0e815pq2e+3/18G15YOR4xOf+ER14xvfuLr85S+fNJGH0j3QGH7vtDARcR/5yEcSaTmMN6effvoyiUHYDYTqBOs8Nwh/+tOfUq8yNgU0rpmpwb2E7zEhMoHIwVIRKjLwmte8pjrqqKPS+fz/gx7i/4Y6LX97PivNkf/2OvzsZz9LD5hJFVjG+A1le60UK5qc9Fg79MR1FD1xHcUmSZxZqYlKlzFT4gzyZn1NwiK/UrBcWEgPAwuM/8dSwuZotmoB3QZmpcxWTeI7A8x0zoVVZ5aYKXGsDCwmTcJsFLC4to5qErOzOlgLsr4Mg3Wc/2dKbhljLWbtyfjMelOKNWaAT5D90yw2l/vc5z7pO81Kn/70p1dvfOMbk/XGuWk8kKMwU+I4PDV4k+Q3yMYYRthceAg0RvjNSrQlztqPISAH15D1J/sn4a7yv/bdd9/BFWcSV2ccsPAP4vxGvX5hiJsGNKLG+NjHPjY4sxxtibva1a42ODoLiMstJ7ztdcTpheFfC6ESF444KjCcqqMkfHZNYO7SGBHCUAJxvAIMzU1YKXFICgcrozIPAqIWjjgWDzfQRp797GcPPvX/YOTVKMa4JiAuvotqNVaG1yCQj3EhzHBtictVpYeErZNZLcxrC0Mcc1IekEPY+NwUc1Z+ni+sCaz4PmM8aQLiGH2PPPLIJRIZd4VJBBDHJpn/X5OJcYjjmuFT46lAlNfkpJNOWhzi6sCd46b4x9qAfdP1fGplD8qRj3HhPafaOGcDK1WViDMb5Uu81KUulfx21KZrF35yMg5x3/rWtxIhGom13pPdZFnPiQvwOOQL7GkRZ+1HVfL5bTKzyoj0EvgzDDznyBCnwX916qmnJtWHPJ7tEnXElUCckDo9JkQEWE4cFxMScuI8AN7fZInjETZx4LwcdlOm/PxYxhGRXAGNxKdmnBEdnKMtcfx/whdCjIE5cV5rdGIcBg+NY2vMkjiuoiAO0RzEC0OcJ5ar3pjjiW/yY4kY0wMQJgSijGoG/jmNUs5C2xI3SlX6DZytJCw6HMT+p/G2JI4Ktb7zucDCEMdJyrzE9DVsbPvkJz+ZGkYsR1PcocYQO2ICkqMNcaw0/keJcowrwdJiEmLKL/D1y1/+8hJxen7e+x/2sIclrbIQxAGPcNnYdWjyOI+CxjSZmQRyAIQ7jAOheflSI/CSl7ykusc97pEChyJ0YpZYtclJj+miJ66j6InrKHriOoqeuI6iJ66j6InrKMYmTnSyyN+I1O2xNhibONYE1gFZOj3WDkOJ07Ok5eYSuW7MTOV7oyoW9JgehhIXrgv2PDbBJuHsdF2exbmW4LuT4SMfL7wM/nY9CDZHK+K4LoZBXOFaEsf9ctpppw2OqpQmxegr9I5XgBM38rbr7IxdxEhVefDBBydHol7VJFz5rlttVcnPR0Wz2MsZDyBOwKp8bQ5Y5S4Qx8KvQsMioNXkhMpR7IUvTPal3sUF45hIDV5LUIMlcYrN8EpT5cLIEafMBZfMIqAVcZICqR0qMWaVEuKFIYSUiYOriTriuFeE9fFUS8iXxCg7lJtpEdCKuC984QuJLGomiCvlU5/61ODq1UcdcTJAVUuQHuw10dukNy8CWhEnVxo5cr+DOHEb4vlD5HqvFeqIEwFNrSMufqPc7E2GOPEXQg8UXBFUqo4H4uZpAa63f/7znx8cnUlczDJNnvxmIgJ5kyBOzEgEwEhAN0ER0ONY1YO8zgeZl3WcfIQYc/NCM8Y3AUyLgKHEScoQM/jkJz95KY7ClFpJQ+FyCMxFacIeq4ORqlIwTh1EMpWyGkEyPc7ESOJEaKnbYTGuco7XKu70WFuMJE4JXWqQ9UGtSK/logkSleWZy6jw8h7Tw1DiFNtUVAxZCoopWuY1q4RwcK/VzjKL83peJiebAoYSpwexQSJF/LxJitd77713CiT1mupcayPzakAmD+fxuFKO+/IjVGoIMVOPKg2uHZWhG2itKiVjsLR7TVXKbvFaRQIV6RadOJUW3OO4YkmVIzRYLmyqIKPJejlfkzahNXGs8KrOeZ0TJx+aKcnrRSbOhEwySik3utGNUpHVuvdIWaKRa8nakugIiqgqiWjIscTi1WBjHZZiDa2Jk68mO6UkblNRlQGqLjf16UGIy8+RKNWYw3CjnVRt4LFAmEmeso/OK7bDsCFHXeq1arlNGEocHW2C4kvZAzdu3Jheq/b62te+Nr1WP5K69HoeiVNRaBo1kAN8f+51lEgCqcMhhxyS3tcRFN8GVp5I6SLPfOYz0/lhGEqc6glcIW3FE8KkJDGeO0UB0KiYGlDrUn629KWyZr/BWQ+WtM+2WC4vfL8alL6bGhrlSpKypYHMgqdl6kKc7wt3FiuS/xHHflcdcbKRFEOVTuZ99l+9KkQhVnZVlipJmNrIQ9eEkapyHKjTzBseTw5hpQ/Q227SAGxCQ8VQswG63Wfofu9JIWZ2A5YZnnjvy2z1V+7dsDiSqBQkwCmvrVJKm8lAAHGSL/UQQttQbXHMA+F/5sR5GGOYEVJhPHP/xjTzA7nu3lNJ1jioXJVjqrUJUyUu8rx1dT3tzne+czrmIZe/zRnLE22mxSKj4T2BdvLQS12rt+l5whLcmIbwXeyg8d1gsuS4SSX5H23VmgIBbeE71ZeObWgkMyIujmOilv8u92raz/oUkIFrjINYWuUqnamxbpwMTJW4GGQ1OigW49iTH1UX8jIW0fhUnzRdr6nSAJXknLUN3xr1EpshSez3nv9RAtERRmjNGRspefKdszaNc2ScsRlxyAlQcTwmAenS/kf5QNl2JmqjEH5CD6bXHgSf4XaK9/3uYZgqcbq53hXjmthLP852JZ64sqFlhDonDMKP9VrabyDUTpmG7AkWP+K9cpyEWLbI/c6zYWOixTE8LvRK8StUOKIiNNGY5B7jOHb4QIbj+H00jqp8IYYUn/NaPrnPUKPxfmx20YSpEpeDt9wPM+2FffbZJ/24OuIMzpE/XUccNRqgbmKAp2JKy4QxTxyoB0Hvtk4Kic8Zb+IcG2sbWIDTEEGI13US/kvrW8d1ac6M9e43xv9SVSJZ0e5yYpdjJsSpXOCHaBRLCpgWcSZAHgrqCgF26ShBVTNRcf76/CMe8Yj0Gfnbjq2VHBPXjINSVZZoUpUB45YIOdfY9AJK4ux94HjYInzqxAkNMAkxc8xJcCN+TB1xNiYysHtdR5xZn90y8uWBEvbeY4loQhAXFRdWoioDTcSxrNjdyv52/kdOnB7mt0jupw28Tx1Gjwri9FbfQS3TVsbfJkyVOIM89WO6nBMArAl+nDC5gE0ZnDM2KovrtYV9gIXB2kYgkrHDTcfWlUEcwnOYTSKIRL0tM1LHMUEy0YlrQprKdJRoIo4mUAyOmNabjAQQ5HPaxoOmcJvlTYA1huksPk9M6IZhasTp5mZFGobq478LUSHPAtiTZHA3i2R9Mcirj2wCYbFpjRc7ZETlPE8hxLElh9gRD4Bj6i6H3uX8uBLVhEahrG/SFoaMST7XhKkRJ9GirkGI9RxQdeFhIMxlVGCA1cFTGe9bqEYP0+vC70esnayFysbwEIgDrRNWF581aSnfG7ZmKuEhbet+mRWmRpyuH1bvUnjOA3penDeBKOHJjPdL+B961MaNG5eporagEhG3kjEOJI4wJBjX/JaXvvSltVK6dKaJqU9O5hnTII6JzsRBRICHx45eoQVKUXB1VtikiDN5MuubZIMifrVwXyFNEG4+wVhtbFLErQR6l3Uj4j0A1p0sQ3XqfjXQEzcGTKSMW7HmtJxhmrJgbpK2y4xx0RM3BsxwgzRJkyYmljS5mO16P46tX2eBnriWMP3Pq8iy+tTB0ocjdNboiWsJ5iqEicjqiesQLNAVMWA/7InrICy6e+I6iJ64jkK0Fidt0+75fH4877PGmhLHoThsa+YmKBmvIrrGs7YqveCbAtaMOHGYVA43Dxd/HuE0CiK9fDZE4M0s7YLziDUhjplIWEPe+FK42tr+IlAoxJYr09zVvgtYE+Ke8IQnLGt4Yj+3Nr2Op1loRP7ZYS7+RcWqE8eqHmahEIGxbSsT8ajnnxXeoAf7fJ0wUwkOmsQjMM9YVeJ4qyN+MgSJQhXago0w/3xbsbcPt8w4Y+k8Y1WJi+CdXMSSBIT1CUfIPeY5xJrIJyi/YxwR378IWDXiRDiXKlJgqTELxIpQmc6L6Mo3Rg/YjTH//CTCe91UAqRLmClxoootRvmlygkFEvMtojds2LDsfQ2c54kZryIPL4Rj01pQ1HCdRJBtiCQLUcKLsO6bKXGiqfKGy8VGeQEuEzH4+ft64zHHHDO44qzo3lJMVuog1CCPKCNlDGaXMTPieH7LXhYiWjdyo63dIvo3F6nKAWu0prEtEt9LULXltQqmLgpmRlxEJpdCRUqRCkinLa9BbK7OmLfKa0Kov5NPPnlw5ZmgViP5McTxoswoYWbESVaM5IZSuPSpvrpZosjm2OoSIjU3l4hqDrHEyKsbRIJliIclD21fBMx0jPPky33LGzHExEI8fX5OFHNeT1ISYzkhEVlFvar+mp/fb7/90md8vpy9jtqKs4uYKXEBExEL4Lwx60QvDIimkgiRv2/MVKEWqMf8PWSpfBTZnSF8Y5NuxTnPWBXiwGRjGHnGNZYV2SzSrmS45LkCpKyHKYMzf79ORmW9dBWrRhwgzzS/bFx51OyNSItzSm3II4gMIKUmSlgnRhpunchJX8to41liVYkzrWcUzhtXNR2zvXL6rndKz5LUKMmiadFsEW9mmX+WIDSyYRcRq0YcK305y9S4LBlgVliqRpOXYSHeHoS6NSAxW7V1y6JiZsQZo+S0ESlTpfOTsE1KYA8pnauEYboOZpwSJcvrczFLVa19EdXlTIjTWFtvvXVtY44r1nxRNyXAzFVnlZHNWp4jZqfld3QdMyFOTH1dA04qSgGChbkKCuU6jSgXZUEvjbl8jyBaBNYZZ5yRvqvrmAlx1mB5SnAbMcFQE8WygNqM82qTyIixsC4nNiEmOOEeohYZt3kX6q71fevXr19aD3YVMxvjoqAaoe4UHWOdt7VLne2RaStgNmjhzLpvtimBv66Xkd12222JtBzCxX1H3WdCBChNkpI8D5gZcRbLqihImC8T3TVq2Yg5cSA2RW1HoXfltQSRqsvlNsoSYi7rJkUhW265ZWd3/pgZcWAjwLr11yjiNKbxjEorryPUsHFUFQeTIL1Y1dqmjQd53+sW6m03AVSVwbVtRa75rDFT4kDgq9TbvGc0EccoLTxBQjxritgTvSKuMW7pQVHa4sADD1z2HYJr5bCJXfFdOYRGKF4atSF5x9v2tnFDJlZjw6iZExfjjDWaojIiuuqI40UoQw3E6ZuYeG2qr6hNQKNHeaU6YWzm3ikNzKrMqpGV1wcbhSCONUeeXJPEhKwtcYaTOlNeG8yUOGHhxrm8QVk66ojjLyst+2aHeqq94UrzVdSEHiUa20w1L4QzLoI4D9YwhEFgGHHWkyGWJyZIcZyXaByFmRIXSYC5KP3UpCqjZGCIiUmTyUuP8116ap3FpRSzz0kxTeKY9RSXIwqn0hpxXNY/G4aZEqfIZt54xNjTRJyYkPK8Am1tgERV6OqWAMbGlWz4F8RZ1kQj10m4rdqqStcpezUJZkpclDoM8XRRfU3E8RKovJefNwEZB2aW/q8QiPiOlearTWtycvrppyf7bIiJkgctjo8++ujBlaMxU+KisGeIijzQRByIZM7Pr1u3Lp0PtK2PRZVqCOOmcocrQRDnu/z2JokZcBNxHkxr2hBjOI9JHA+r6F5ipsRFTZCQKGHoJvPzJIgTS5mfZ6LK12cmGmIwBbyaHVozDVuEcxsNK5HbBtMc4/wWxgV1pqn2uVOVbIaltztiSoYRZ6wq34vyvXx6+bouhLqx7qMiw783TUyTONXerTWFZ1CPejECVQUcJ8J6ZsRZCuSNS4KAYcSZRcbuWMxaBn1V1EFp+/JzpZggWKSb6Azbm2YcBHEW+OynTRJLn2HE0RbhofCwiZvx/cZ2O6u0xcyIO/HEE5c1qKl96PBhxIFQO/ndpQmrtJSMEj3EODvOvgJ1COLayjDiVKJVut5uHsoWxy4j8tpLa88wzIw4Fg9PaNwMb0FgFHFNYDkxJjQZnpvEckB6FavNJN7wfQYV3M2KfUeTRO3KYcSBEvyuH4eoEjOdnHiKhB6I/7AbVmBS4nJYrIqjtKCN9VMbUYdkXMSOIzzpw9BmjJsWZkpcwFaS+TR+GsTl4PmmzvTqvJfXybjVYc1aI4psFCELR1yJaROXw3rI7FIoQ+kF1/PHqc5gmWHt6bP2URD4NAyjiONApuZzMc6F7L777oMrR2PhiMvBjyYGJVSpjZLaAmkaMn5fvgFECRMpQ0IYydv2OAW3ZRFxN9kObS6WA8OwWsQF+O9Uc2WBb4sooEN8dlijlgmcvBmjwJojhkaYofAJjl49MnZxHIU1Ic4a74QTTlgm49T9Xy0IYUfaKMuLslaWHUSVpFGzRcsidspYn0oCpdotxD3UbbAmxHUFlg7jqK+24O7idB0WpT0KPXFrALZKNthxHKcleuLWAMIJ9ThBTJOiJ26NIPTC8uTII49MWUnjoiduDWErNXXGeDcsCcZBT1xH0RPXUfTEdRQ9cR1FT1xH0RPXUfTEdRQ9cR1FT1xH0RPXUfTEdRQ9cR3FXBIn4V+pRKK8oZTi/ffff5nj8bTTTktWdSIPPF6TcH7an1TmqbB2QbYMuSrXlhHDgoDEXYpR8fl59MaXmEvixGKIsd97773Tfm2CR8VDCtiJxHiF2YQJEMFA8ZpEqMFRRx2VtoOR2L/99tsn4oTwlSF6An1EFvusUPIoiDPPmFvi9tprr9RL5HAfccQRKWxbb4mUKVFRyEUGb7K/8rAlUwKSlUxEhLIaqsS6RhxJ7P2mPqaILKFxBxxwQCrL6P+MCsObB8wtcSKU5Y5RXSAVOIJrgC9ru+22W0acXqV3BfS4gw8+OKVmlSI7hgo96KCDUsCu/4XkLqhJmFviJLXLrzvppJNS7L7dP/SaiG9EnMgodUUQ5+8OO+zwf8RRlXb2kKFK9QqlI5GOJYPI/5K+5fsVFxAqN6v9u6eFuSROwqLGpfqoTCrN2EQ9ClQVi3j88cen+EW7VInf8Bd5QgIUrhFJhXgkSJI3Ru68884pMUPPEhJHZSJKYTdZNAH/c953v5o74qRWie7VwBrbhhDCyhVo08v0FKlJkiRD5Jzlx1Sq1Cr5dGAig0S54FQq4nIcd9xxKdnQDJQoAtcTNybEMmp4kVAaG3n77rvvkig6U2KnnXYavKqHlC/fI/BWImGZvhuF3ixDCKLnfTPBuVSVPUajJ66j6InrKHriOoqeuI6iJ66jmHvieAZGlUriNWC2KiFPLUpuKMc0rP5yXV3necbcE2fhne+lGlCnKwqPKvPLylKCOYsZDBir43UJ7ylkagMlBu18Y8J5xdwSp7oQcxTjr78sG0pMBVRaUItZr1JJiOsHeUxZAe4aNb+4a3ga7EUXrp/YXFCZKdcceuih1SmnnJKsKocffnh6b54xt8RJhJdyzFpP2B8ZgoHq1NjKPimTwShtB+Mdd9wx7cdDvVKfbJScsTwMUoLlZ3PdOKY6fa+Hgi9u1113TZWLmNi8N++Ya+JUSQjhUwvigNeA7ZI5S8K78YswHFN9ek0QpSxwVJFlNgt4MGz3orYWN5KNJxS+Ye4apwThWmCuidOLQlSby4njJTAW8a2p+KPn8CDoOUBlcpoil0dbYjw3kDEzMkERd9hhh6UaJuqZ8N0RDtjeyDwhEGdSwpVDjGE5cSYmkgL33HPPpRgSNbLyarCqru+yyy7pHFEQRuyKQjKcqHobV5CJTu/WmRIQRz2G6DFBXIx3XDeIM965xuSkJE4VP9Vi81mliQ0fX4Bbx87G8b9MUHriJoSQAltSG38In5ztN8HkIWpfanQ90zX2KVB5NaDIjEJwoBRUU+EYAUiWFPG/xK34O8+YW+J6DEdPXEfRE9dR9MR1FD1xHUVPXEfRE9dR9MR1FGtGnOLaK6nXOAswRtdt98Lg7LdKBllJyflpojVxYumPPfbYFMcvsyVy0JwTmw+sGN4vJbcDsobYhE+AKpeMXfk5MBl81wJ+S4hqdu4ljgN77LFHstowUntf1pD7EiYPLC9xr1xD9rRj+N6wYUN6PyDUnSGcQZy4xq6Nk6A1cRIJGXMZaD2BTEuigtkDuViApZ7xly3QvjEMuUxVNloISMRApGRE5Ak3t92knDamrG222SbZHOWwyb5xg/xss4gs9j/l1vk9pTgPiGLHRIqweMQIeWfQlkgCfreSvJIj5T3YY0ECCZtqDkZxxvKAFC8P7SRoTZxcNE+LBAuNKWTblmElcdHYSvm5Xhh5ECfUO542N73VVlul3DTXOMfBqa4xG6MY//BE68nriu3IpgFag4FaWHspzgf0uCCOPdQ+OLzuQVzkJgiFt+8B8bC5J26igL10wgVFePeFxU+CscY4T4gfL7CGg7KOuIjXkLvGsSkXIO9xoLStG3ejfrjvCtQRB9RYHpYwLRjT/H6Gag8bRyrJt3KpI05wUhDnAdCTkCLEQlYQcR+0k/E8im3XCV/juGhNHNXA1bL55pun1CWe5nF7nHxu6oJLhqWeKpF5I9wg4EaaiJNeNQtQ1757iy22SPsUkEio5CXwkLlf6t9wQUvkPY7DVo5e7oLiaadutZGHwL3yQHDaRo4e4QucZHxvRZyiz7YD4002NiHRjyiJo06RA3U9zphnMmKQpjaQY3+cUcQZP4QVzALGYOrfHqocrbQJCX+dsV3kFyIQRG0jJO9xAo540AUneVCpQCpSG+RAqHmBWBkigInTdhK07nHUgSAcxAUMyshCHEelMSum+EEcNViqSsSZeXkQkBLE+T437ubEkmy77bYpFEHP1YDTBjUpOIgqtPGRXmOGaNpPPHRUnd+HWCpNGJ/G1hZBHCDODJvW8b7ZYklczMQRTdP43zOfVYKbyTebFVIgnoOaoVryqt7GLjdNxfBC59CjXGumKBdu/fr1g3dWF5YmZrTWZrzkslwtddwT4WE3QxbiAEL6qEI90gNnWRAwQTn11FPTPRFj5iGHHDJ4dzmsF32/HjfpWnYs4nrMD3riOoqeuI6iJ66j6InrKHriOoqeuI6iJ66j6InrJKrqf5yhpyOAGF3/AAAAAElFTkSuQmCC + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +14 + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +true +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS UI Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +48 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/Debug/net461/matudo.CLF b/bin/Debug/net461/matudo.CLF new file mode 100644 index 0000000..6f9421f --- /dev/null +++ b/bin/Debug/net461/matudo.CLF @@ -0,0 +1,6424 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +iVBORw0KGgoAAAANSUhEUgAAAG4AAADICAYAAAAJHtQIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAE7pSURBVHhe7V0HXE/f+w+lEkoSkvZeGoSINKgksldGtrK37L2ys7P3noWsUGRklE2lUNLS3u//Pefez2pQ+H6/+v96v17Pq3vOPff2fO77jOes54ihCpUSVcRVUlQRV0lRRVwlRRVxlRRVxFVSVBFXSVFFXCVFFXGVFFXEVVJUEVdJUUVcJUUVcZUUVcRVUvxR4nJzcpCXn8+FSqKAuZeTm0uvSdr8ggJ6XRaKigqRny9IQ8I5zHNFRVzE/zD+GHEF2anQaCQD77V7uZiS2LN8Bpp3GcJc5aCtWiPsOhWCD09CMHHiRL4EPX3LJmbw5MpBqBu1wtfv2TQc9/oexOoqIS4th4aFkZXyBdOF3lOaHDl7k0vNojA/E2uWr0D0lyQupvLgl4nLz0pC22Za0NJiRVNTAxI1qkO+QUN+HJHRs5bT9BGPb2Nod0fotLDBzp1boVVfFsPHzcOGRbNRX80Iu/fuhaG6IjacvE7TE6ybMxpN9UwxePBgKr3dnCEmKYO+Awfx4+6/+UTTpsQ8h4ykLNZu2Ym9zLsG9bCFSWtbek2ka7sWGDbZh6blIfnTa7Qy1YWcYhP4nbzMxf4ZFBXk4e2bV4hPSEHUsyvMt9DBw3dfubu/j18mLi8zAcp1pHDtwWskJiaWKkumDUPXYVNo+g+vnmC8e3cYtnXC2bMnoK9YD5PnrMPO1QuhYtEJpEK0b6EpRFwB2hk2xqyVvkz6s1T2+K6EWO0GOHDsFD/uU2IaTU2Jk2mE2FS2dG5dOhbOA8bSa4J5w3qWII4gPzsT65fMwq4TgVzMn0F2cjQU64hh8+FLeBt6GmJiYgh9l8Dd/X38eonLSYV7966Yv2gxZs+eXarMnDYNC9fv5J5gq8r6SmpwcXGGfC1JHLr4BLeP70D1GhKQk5ODOFNiecTdv7CP/tgNxwKxYOooOHRyhINNG4hJSKOjU2d0dLDHvPW7aVoCSly16pCVlaPvqiUtCYmakvSaiFRNCRHirh3fgpY2TggWqpqF8TT4Gh69jeVCFQePuK3HLv9dxPEQcO4ofH19qbQ204Vdd3d+OPztZy4VC0KcfisHHD68D7oN5PjEFS9xGYmfYKrZCNWrV8e2C8Ho3ckS87afYNs4eRUkZuZh1WQP9PSaz76YQUVL3IeIx+jRsS1qSNXFmZthXCyL1C+RMFBTRG/PuUyoCIEXTzE6H/6phD5/zb6AQea3D1CoJYYdJ26USlxWZuZvGVm/TVz8i/voYNcN37IK4MG0K5N99nB3SqIs4uRVDLCJIVpPVYEl7lsMBgz0gIWBEp84537DsXzeVIjJyGPVuo1ws2tdkriadbF0zXqaafq6toNhi3b8TORsZVaiqiTt0Oljh5CeI7BcM5I/w7G1IVT0WuFzSiYTU4ChbjYwMTH5qSzYcpB9CYOPz25AgiHrwv33JYjLTkuAQ0sTnL71lIZ/Bb9N3OPAo5DTaI5C5poQJyldi1899RrBtm8k1y6cOgJmBtpooKxOq0qF2rVg3rId+rl0Qt3GGpjFVK3qjeuJGCdtjZUpcU9Cg2Cs3gCTp01HDdmGOH72Anb6bsDh89e4lEBS9BNISdbBhKkzaDXtaGMBTSMLfrXdtpleqW2cMD48vwdLIy0oa5rjReTvGRL718xCzbpN8TWDMVKEiCOk9XK2hoZ5e3xNzeJSVxy/TdzC8QNQu4EyXn38+tMSl50Wj+nTZ+P925eYOHkao3gmNi7wQttuw+h9UeNEQBzBgY1zIV9PFtqWnZBPckkxPLl2BLJNDZCWy94sr3FCEPfxPbyneaG2lDjsmao+9htr8Pwq8rJT0EKzMbp6zGCyLPjE+e7aAwtDdZi06YSPCals4l/EbxH3JvQ65GWk4T50GJqo68BIV61M4grzs+HZ2wkWtj3wKTaaaV/M0aXHIKg3lMOW46xF9yPi3j+/D60msqjfUBnT5yxB2Iv3KOS3EUWYOswVtr3HcGFR4mKiP8Crl2MJ4m77H4eLYwemipWAkUVrpp93FQW/3bkvwsqpHpCRb4LwKLZqjHziD/HqYqhdVw5TFq5DRlYejf8d/DJxCZHPoMr0xYi5n898wce3r8DZoR1kmSqyUaNGfGnn6kHTn/fzYapJbbyOSaThbx+fQ6dpQ3T3mIk85vkDm5ZBQVYam08LOsmEuFEz56Cbky2aKKti3a7jCH90FwN7d0NdJsMoKinjXNAzfH0XBvnasrgS+op7Upi4IjgxGYLk+EmLBRYuQeybB+jRYwCuBT9AXmnF+BeQl5mC0e49sf/SbS6GQVEhgm/dxJfEFC7i9/HrJY5R5trlq8gW+cFFdEhKWHLz2NxVlJ+DmM/x9JqCef6Kvz8lneDW5eNYtGgVErhREoJH9+/gblAgTvtfR1auaC7NzclGyN0gJKeT9EWIjopib3Agw2t5eezwW15eLtWloODPkPM34LfbuCr8N6girpKiirhKigoTl52dxbQo/zxyc9jpnyqUjh8SN21wDxgbG1NZu/8cE1OEXg7mWLHjKJtACOEPg3Hw4MGfSuCdBzR9elIcDh06iHWrlmD06NF86ersgNbW7RlxxNd0UfL2rJzL16e47AsI4VL9b6BM4tJTE3H96mVcuHCByq07IUj//g3aDWSwaMMBPHnyhMqHj+xA7M4Vs2FqalqqGOnrUHNcTVsfw6Yvo+kLctJw4vgh9HJyxFIfX+zbuhKKepb4GPUW3eyt4R8cQdMJY/XEoXDpNwmxsbEi0t5cAz5Hr3Kp/jdQJnFhty/AxsaGL7Z29jh2cAckpWUZIjRRS1aexs9cup57omwkfnhIiTt57w0XU4SnD0Nw8+YNuLvYoOvQ8di0fBbqa5hg4+KpaKhmhItXrjH3byL2azL3DEuckUUHLF68WES0mypUESeMA5vXYMqUKVTOXL4Om2YaGDRlKS4fXg19KyculQAv7l9Ay5YtRWT03NWlEFeIBZOHw83NjYp1KzN6n4i4RC106tyFf+/i3efcM8DmOeNhbd8Na9asEZGhg/rh3J1fH7CtjPghcTcvnoafnx+Vy5evoE/vfohNzCiTuAdXdtOPf+VeBF6/fg0XGzO06+dZCnE8FOLqyX3QVVNDr55dUV9VHz06tkGz1g44HxhMB64JQgJOw8PDo1wSHBbJPfX/Gz8kbpSrDRQVFaks8D2ENkbstZxsbaZk1OTfC3jMfiwecW+/saMc/TtblUpcQW4WTu3bAZvWFqgjWx8LVm/B0b2+cO41iI6GjHHvAfEa4tA1Mccx/7v4+OYFTp06RcWlnRlaOfbgh4tL9GdB1fr/GWUSl5+RgNmzZmLGjBlUth08Q4eOcnNzcXH/Cui17kSviRRyM4I84jyneGPu3Lkw0lYuvcQV5mHe1AkYN2YopBuqYdGiRRg+sDvqNFSl15OZ+Bp1mmD37h148CqafYZBZnIMVOrLQEPXELa2tiIyZvoSLtX/BsokLufrC0hIyeDirQdYMnE4rLqP5O7gp1Xl3OXrsHHjRniNHo75G/zKrCpvX9gPqfpKGDduHHp2cYAMdz2krxuq19OCYNSSxcGNC9BIsxmCQx8hLCyMLz3tW6CP1wIu1f8GfkhczVp1EZWch4Or55SLuJysdERGRiKv2NzIj4iT07Wkz5zwWwNF3Rb0+u6FwxAvhTgyMJ2YJDrCXpj7HYbKcth8RDCp+r+AHxJXXVwcdp06w0xfu1zElYbjWxZBtm4dhrjquPJEUO0REOIk6sjDxcUFjp06wrq9Db22s26NaqURJ4TslI9Ql5ODhroa6jbSRNz335/jqkwok7jCvEwEh9xDTn7JAa7khE94/KxkB7k0pHz7gjt37uD+w6dCE58sYt6FY73fIS4kQE5GKoLvPeJblWXh/esI+u6Pcd+4mP8dlElcFf5uVBFXSVEu4qLevcS61UuwftN2RH8qo1piugRPHwRh6ZJF2LnnMBLLWMFUmJ+Hq+ePULP/2NlA5BeWXiFmpX3DQaY7sGjJMgQ9fFbmGsT4jx+wZYMPlvtswJvIGC62OIrw5tkDLF+2BFt27kF8YukLdYoKC3DvRgDVbf/h48jgFh4VR2FuBo4f2U/T+d+4h4LibQCH5ITP8Nu+EUuXrcbj8HdlzqpEv4vA+tXLsG7jNkR9Lt+i2R8Tx1hxfj4zUVO8BrUKiUjWro89J69wCVgU5mdh6nA3fhoiZH3J7ceCNSAEaQkx6NjSWCSdSStHxCR851KweP0oCNpK9UXS9fSYgWyRpQdFOHtwC+SkJfhpxGtKYeGWw9x9DoX5WDh1OMSF3iXXQBlngx5zCVjkZqSgv4sNPw0RNYPmePbhC5eCxZcPz9DcQE0kXXuXfkjJEJ3JuBd4HI3kawvSVZeAl/eqYouRirCHsdglJarz09WsLQ+/Yz8fd/0hcaEBhyBRQwwSMvWx6/h57PZZBMka1Wn44VvBD/JbOY3+UwU1QwTcDIL3qIE03EjTDPG8nTVF+Rjmxn6Y5rZdqFHRxc6Shm3chvOX3GWnxsNUoyGNHzhmJm5eC4ChRiMmXA0zVwuWnEc+DYKstDhj+dbEis0HceqgL+RqiUOMCZ8LCudSAed2r6LvklVQxcmAG1g9ZzSqkzBjiUbG8zJMERaM60fTaRu3wQ1GtxF9HWnYoJUTU/LYBbMFTElzbmVA4zv2GMb8hhuwbqZLw/285vNLVHLsSzStL8PE18D4hWsReO4YE67LhKtjk9Bg+MPAY5CoznxfhqxdR85i94YlqEm/tzxCX/54+fsPiCuEa2ttqtSExb5sFFMCJw12pnHdPKbTqLz0r9BQqAWxajWw5/wdGlfAWKS25ho03cKNR2jcu9AAhvRqEJdpgBcx7LDU989vUL+2OKpVr4mrD9/TuMMb5tPnVA3bI4vLnvcv7Uf1amKo01AbcWlszvbs7UDTuY2Yzv9g67xH0Tgzh340rigvA2aaCkxcNazcc56mKSrMQy87C5rOc8FGGpccE05Jr1ZDClcev6NxeRmJ0G8iR5/ddS6Ixt0+twvVmOfqNNBGAlfCop7ehDSTmcVrySH8I7tda9X0ofT9lo79+IuhTu9cSuOU9ayYmoPEFKBbG31OD+77Mt98ypAuNM51yDQurnSUSVzml+eoyXwsMcm6eMYpRPDk2jGaY2sxHzGN6TqFBuynP0ZOxQTpebxPCOxdM5MqYGLXm4bXeY+m4fY9RtAwDyO6t6fxY+ZsYEJF6NWhGQ3PXruPTUCQnwkDJdIXFMOhgIdMvZYCpTqkeqmBi0KderK3QFpcDDWkZPH2WzbeMpmlBvMbpGVVEJcu6Odd3LeGvkvJ2I6GT+1YRsOazZ1EuiBLJg6g8c6D2BXZUwd3puH+ExbTMItCdG6hReOXbT9Fw6205WnY98QNNgmD7KRoNKxdk1aZt57HIi02HLUkaqB6TRk8iWKXLBI8v3mKfs+aTD82s/QmlqJM4h4w1ST55w1UmyNTqGLOTY5CPRkJmjsfvE/EjmVTabq2XYZzKVi8uX+BxkvI6yCLeXxwl1Y0PHWloLoj2Oszg8Zbugxm+o4Z0G0oRcOng0VHWUa5taXxk5dvx9cXQajGEFJTtjE+pwq1LQXpMGxMqqRqOH3rGc7uXE6f0W/jwi+VBPFvQyHJxFeTqId4Rrn5Y3vTdH29yCYPAW4c20bjVUw6MCWnAPambNu28ZBoG7RoojuN7zlyLgq+R6N29WpMDSSDxx+EDbkidGrJ1kJr9wfgUeBhLsObIkuIoOzkj2hYh7EpqlXDvQ9lr8Msk7hT2xfRf6Jj3ZWL4ZD/HbrybO4nmxbmjGaNkj7jBRswCL59eIxaTHw1Jod9SM6Grb4KTbf5qOgGwsuHNtH4pobtkJkUiTrMtZiYBJ5+FFV6jldfmq7HsDm453+QXis0NS+WK4tgZ96E3luz1x8+c9lSbtd7PHefRWZiJN1JI1atOoKZjzPQhctUy0Uz1ZvgUzS+uoIWvmdmQKcha0ScDBbsyiHYs5zNvBZO/REfcYNW6+KyjfBJOFMxGN6ZzXyTFm/C2S1sKddt48zd5ZD7HTqNSRUthhPXyp5jLJO4Q6u86cOtnPtxMTzkooVaPXpvt38IpvZj27wxjMUkjPT4N5CvSYirjrDYJLTWbEzTHbgYyqVg8eDsXhpfX9MUaZ9f0msxsXr4kEh2ygjgM5Ntv5z6jcON0zvpdRNDpiRw93lwbc9arYs2nsCyqazB4Tram7vLIp9pl5vIM9UWk6sDwz6jlz3b1szffoJLweITQwKJF5NswhhZiVCVJbqJ4Xo4uwuWh5Pb2XZZp50bokIC2HZQUQXJ2cLlHJg8sBNN5zFrJQ6vnUevW3QcwN3lUJSNVqqscbb3vNBq6GL4KXGWjn24GB6yYaHM5ghh4kbOWsHdZ/H9yyvIMe0NIe6JEHH7zrN7AXi4d3o3jRclThbvEjK4FCxWTh9B7wkTp6TbHsVHKF2sWatPmDiXkbO4uyzy0uKgJMdYoIS4JwLi5m49xqVgEfP8Ko0XkxIl7soz0f7i8a1zabwwcTINmiJRuA5kMLEva1AJE2dhX+z7FmbBUkWR3vsl4s7sXMIqU2ZVWQ0X7r7APM8eNF3vMqtKacQwVoyDsSpNV7yqDOCqSnUTB2SlREOWuf5RVdlnzEI8vHyEXv+oqlx35CrWzfek1z+qKh/GpGGQqxVNV1ZVKdFIFxlZmdBrzJRSJnzybulVpZXrICS8ulVmVTmMqyqnM+30hR0r6LWuVdlV5ZmbL7nIkiiTuIeccaLQ1AwZQgPNmUwVKCtdHdXEpfAoMplvnLR2HsqlYBF+6wSNr6mghxxqnLSm4clLRTde7Fg2kcZbdR0qYpycvCOq9GAnts83bdUuJLxkjZMadRohNkXggaEoLxU6CuxMxNnbL/jGiU4rZxHjJDYiCDWY+GoSCkhglFvAGSe9x4hWqf4H1tN4NVN7FAgZJ+sPXOJSsPDmPT92PgrSPnLGiXSxzfqFsG3GZqr1jHHDM05klUxEMl9GwnsmU5Hnq+FhtOjAhDDKJC4zPgLSzMcRq1kHz6IF5mpY4FHaHairpEe7A4+uHGQ7tCrGTFigwZ5VrLVo0ZFtIzfPY3N/u+6i1udwt3Y03mv+ZiZUhL525jQ820fI7UZ+BvQbs4QcuRrG5MpUNJUjub8GLoQIcv+XV8G0OyAuLY/3Sdl4/+gq3d4kLdsUX4iyHC7sYTvlTc0daPis30oa1rBwFOkOLJ7Qn8Z3Gcb2WWcMd6XhfuMX0TCLQjg1Z3cDrdh1hobb6DWg4c3HBVvGshOjoChTk7HGa+LOi8+0Wahbk+kOSMggLFJgfT67wWZ4aQWdX+sOkI/Y1YodFeCb8EVFmDyE7cu4DZtBo/IyvkKzAemAi+PgZaaPxYDshbOzUKfpFm1mF8++f3CZdsAlZBriXRybk9K/vkN9mRpMdSqJwEdsB/zIxgX0OQ0LO+RyndcH/ge4DrgO09aw1Y9X3440HdmnzStNm+aOoXHmHfvTONIBN9ckH7EaNh1kq+iiwnz0tmtO03kt3ETjkmMiaBeneg1pBD3/SOMKspKhpyRLn/Xj2po75/24UqKH5Ex2NCXm+W2uA14PEdzAwuoZHvT9Vl08+ENcZ3axpV9Zvw2yKSGFcGvLtseTl/FqIXafH4nrOpTNLGXhB8QBIRf3szlWThFHL1zD4e0+TI5mlJSURchrwcb8HUsnsUrpmuJGyCPGKBhJw/WZUig85OXuwlaXbTv3RtiTx+jjaM2GuwwFrzbOSo2DsQqbY0fPWIFHIddhrK1Mw6QPx8P7sGuozXRga0jUxpZ9pxBwah/k60hCrIYETt0UmNG8zrW8si4CbgRjC1O1k2qydv2meM9lIPLB5oxhqzt9S3uEPn6CCe7sCIaOuZ3IkJe9Bbu4t4v7BDx5HAoHS9aw6TVmDj8DJcW+QGM5aaazLY55a3ciKPA81Buw7Rbpw/EQcvkAHUOVllPA4fOBOLprHft9peUQElHWgDmLHxKHogL4zp9ExyvJPyUiIcV8qMMXuAQsyBCXZ092bI8ncopNce2+YMyQIDUuCtbN2GE0nuiatkFUnKgh8vxeIJoosD+UJ537eiFTqComH/u4nw9q1WSsQ1468ZrwXrGb/wEJyAZ9b89eIu+qxWTE44H3uRQsstO+wc2BHQrjSSMNIzwu5jIj9u1jGHEWMk8s7LvhW5rofP3tc4dQn4yU8NNVh8eUhfwhMBaF2LJoKh2v5KWTqFkbvgfPcvfLxo+J4/D6SQiWL1uKlavW4+1H0T4MH0WFuHPlLJYuXYqNvrvKnDohS/OO7/ej6fYcOo4soWEyYaQkxmH7pnU03YXrISVmz3mIef8Cq5cvw7IVKxEW8YGLLY4iPLx7hb5r7UZfxMQJ2mxhkGr00ulDNN12v31IzijpeoogJyMZe3ZupemOnL1S5tRUwqdobFy7gkm3HEGhz0QylDBeP72PFcz3Xb6a+b7R5fOtUi7iqvD3oYq4Sooq4iop/hPicjOTMH/WVKz2LdtFYhV+jP+EuIzED1CQZkzqoZO4mCpUFP8Kcd5eA0R8nzRUbEA71JLSMiLxRHZeZGfRKy8KEF1OyzDxyydwXcQK418hbpy7M+rKq2HuggVYUIZMHz+MzlYLexb6V5GbCF1FBb4fMlZkISUpibqcK0VhiUoVGPfvgi7w42VqSUNcQhIX7kQgLjIc3bp3w+toIf8uHGJePIRu4wZYc8Afp/augZ2dnajY2yM6ufjchwD/GnGN1Foj+ssXfClDIu6eox3R/4y4UpD+5RVqM53i4FeiK72EkZ/9HcOJJ6FTAYh6/QDqDetj8sSJUNbWh7GeHnYcPIk+XRyx9chF9gGmv3v9zH40bVQfngs3Iis3B18/R+PRo0clJLuMPi7Bv0Jc6J1rWDpngtAoQkmRVlCG3569eBkdxz3134B4+dPQ0KCirtqUDqA3aarKj+s1ciqXkoci3L18HEr166IuU+LGL/RFUVER/NbPRX1FJZgb62Dasq3I5Zax5WUmo5drZ+w5dRlXj++EqVUnpPyCb69/zThJS4rDrp07cO7cOSqWBorQtrTjh/0Db5Y5OvJvYtygLug+ZBaSkpIQ8/I+ZBjiAu6/pOGVM4bSOTcBChFyzR+9O9tBvq4s6tRvCJcuXeDq6gpX5q9GU0WoaWlCx8gCS1ZuRkKqYFY/+OIRyEvXxZZDR9GfpC9N3HohstiEMg//GnEEcz3doKRjhpScInRpqwZzpwFITU3lS56Qq/r/CoS4Bo1VYW1tDauWzemAdLPmLWlYU7WxCHHP7pyHgWEzLFjli9iPMZg4vDd0WnXCrRtXodKgFmat2YFv3zMRcOYQho0chW/pucjPzcbWFbMgLSkBvVbdUJCXjZDbt3Gbk32bF0CsVgOcu3Idt+/cRXpO6ccB/KvEDXNti8bNbOg1Ia54dXnw4iN6778EIc6plyeeP3+O+zfO0Vn8/edu0PCssb2LlTggIvQq30eLtaUJFFR0MHrkcMjJSKBD5x78e9dD2Inh4AsHoKZnAs9B/SlxxRFx5yjE6jTB12Iro4vjXyOObEA0VpGDUduedLCVEKdpboMjR47wJfrzf+f//334PfTt2xc6ak2gomVMr3t2dabTLvbOXWnYwkgLCk3U6PXJa+zswpeoV3z9+zhZQb+1PQ4f3AsleWmMnrmUf+91JNd2M+1fVnY2XXNSKYgLvrCPmvvVxCWoIwCXNmpo0UV0ucN/idTEOAQEBMDVviXaO7vT6+IydmBnGLSyp9fvYkSNKDIt1EJfGZOWbKN7C/WU62APN7EcHxmB3YdOIkfIRWSlIC41IQbm2o1Rp5EOThzaBhmGPHHx6jDr1A8JCQki8j2t9Mb43wKpKvuOEl6awKCwAN++JWDxxIEiVWVRQT5iP7zBrq3rYaKnCtP2LohLzeITN27eapw+fZoh3BUN9VqJzCeWRlxGehqCzm2HWN0m/CXuZeGfJ64gF91szFCdIWvbMdaFb8jV0zAttuOFJ+Pms8sJ/issmj4KE+eS9S8CFOWnor2pAbR19bFog2B8NS8jAe0tjNG5W2/sOnwaWTxDoqgAaxbNxNChQzkZhit3RF3kX9izAZ16CXxGExzZsgTa2toYOmlesQnXkvhXStyTuxex+2iAyB43Yl09Dg1GcT8lr6PK7uxWQYB/rY2rwp9FFXGVFFXEcfjyLBia6upQ19BF4MPSz9spjsK8LOzfsxPbtm0rU7Zv34EUdkMcHyd2bcTAgQPhu59sy/o1VBHHIebBNTpKIiZWG08iy9efzE+LR6N67MrrsqRaDXE8ex8LnxUrsHr9Jjou6T2sJ703ZXXZh2v8DFXEcfgV4sjSv9B7wbgTdBNajWUgJd8EV67f5jaeSGLn0Qu4e/cu3TdOxjzFaqsghekSVBH3B/ErxPFACGymJguZRpr4nl2IYV1bMu8hewdYDwr0wCbybjkNpBdUEVdxpH2CqkpTNGnSpIQ0akD2ihPiqkGxYeNS0xDxOyGYob9x+Sx1Nrdx/To0kZdGzboKWLV2A1obkz6qBKbOW0bv79+zrYq438L3GMjUkkLNmjVLiLiQSxBxcYlS0xDxPSDY1z2qL7tR8Wdi5eBURdw/hXO72D0GRFbv42arf4Ko968RGhqK+yF3oFZfnG5mvHn3PlzbGTLvkcTeU1fo/dCgS/8tcYV52Qi4fJUeYvQjvA1/gFP+gpxZGl6GP8GbSMGimuTEr4iOLW32uwjR799RV8FlSXTM74+2rJo1nE9cG9chFZrUjQq7SmcR9K1c6OaV4m3c9y9vYKqrC93m9sj8J4nzmTMS+sbmMNLTQDNzS7i49Kb+RZJj30JHqQEmLtnCpWRx/eIxEefWfV1toGVsJRK36xg5t0CAGcO7okPPUVwIWL9wIuzcJ3IhYWTDsokCuvQcAmc7KyhpGmDKxDGQriGBAcM94WrbBuYdBnJpfxVF6G1rSj9m7Vq1UF2yLh68Ld8SiuhXT2Bp2JR5tjpW72F/Y3HihHGQ6cN1bMX+r2k+Qi5BKohSiVs8sS/suw6BS3sj9PYYh7sPntDTo9LT03HjzEFs3nOcXmdnsyPYl08fEHEn392pLdQNLEXifPcLNsYX5qXDUlsB6w8G0PcQWentiQ4DvPjhHP5JHyxxPfqPQjfH9lDWNsacmZMoccO8pqJnJ5vfJi459gXkpcmmQ0msWLGE7oHr2H88nTcsG0VYOW0EpMhuoWrV4e45i7/UbmwfG0hLyeH2syikZ4o6IehmpU93m8rIKdAlEb+KMomztHGFtYUmHLr2weEzAcyHHQtlZWV6bptMHTl6PdhL4Ad5BXO/Leco1NRAE/UbqdLrTvZ2aNfFXcQ7QujlQ6ghLY+AM8fpe0qTSfM3090zF88ex8I53nzf0NMmjmU+VnV4eE3hxy1cvBJBob/qvr4Iy6exnoA0zOyRnfUdrXXJfjwJ7D5X9uZ5goMb58PAtAX2nrxSguRbh7aw72zRmYthERP5Fs/CI346+v8zlElcqw5d0b65Fjp264ej5wVO17yHuGHE1HVcSACvgY4YNGEOneJfMnUILO360OtT29egnlYrvneE3MxEWBtpQEymET6n5dBtV7Hxgq20uzYtw7GL7OF/hLjzp4+KHPGyb8cGyEjVwPLNu0Xib9wTnTYpL17eu0J9gpGPvHI36zbqytHNdMGuTH1l3HrGuogqDXm5OZSA0we3Y8CAASLi0Ibds16voVqJe0Recgcg/irKJM7OdTA6M9ZRzyGeCLrPepojy85mD3bD8Clr6bVwniHEWbbvhFmzZsHFriVUdczp9bC+biLEbV7kiaYqKhCv3QTxGblMdTMURlZdQJYQEj9bbXQV4TWf9bFFQLb0DujdDcF3bqBefQV0dHRCu3bWcOrsAocO1pDVMkPmLy4H/vTuMXSVWfdN+i2dkcnNUBcV5WFsb3arch2m5gi4/ePSvGiKB6ox1V9xIc+TfmFp925xW5Z/FWUSZ2jRDmb6ymjZviOmT5+O65dPQF5eHtKSNSEpVYte7/IXHEREiGvRzoGmde5gCRVtM3o9tFdXEeJSvkQh5PZVSHPEfXh4GdXEayH0XTzS416gVo3qOHlDcLpHflocGspJ4tqta9RTnr1jZ1oFU9/N7VpDTFGLv9W33CgqRNCFQ2hSn+zxJnu6NfDkneiy8TymZnAwZ7cJ15CsBe+VW5DNnQBZHvCqSjObYg5o/hBKJe7a+ZM4f/ES9uzYhQ0b1sNUryHuvGEtpLKqyuAb/rh45TpevHiBZdM9YGnfl14/DA7C3qNnIbxnM/HDYz5xBTmpMGhcB0t3nkbgkY2QUdBAvJDDNGHiatSUwoAhwzFixAgq/Xq4VJg4csbqgB7OdG87+bANVXUQ9KT02YC0b5/Qtb1ge7GuSXPsP3lJZEK4LPwnxA11tUJzq+bQ0DOEvY01atQQx4sv7FqQ4sRFh91C08aN0VhI5OrWRk2mVArHEVm79zR9Rpg4Jvvjzo1AxCenYfJgFzgNEu0SCBMnISOLfcfO8k/Y8mPaw4oQd9Jvtch+9k7dByPq84/bmjzGWFk4bSykOWeg3YbN5DcRl0/uQK9evUoVm5as2w+5Biql3melN56+LZ9H2OIoSVxhDqwM9eExtC/69R2EBatWoWHtxrh8JxjXrl3DgE5t4dxrDL2+cz8MhYWFyMrKEpEdKyahveuIEvH53IJXHnHDRwyCg4MDX+rL1oKGjjEXdkMSwyuPuOvM/+JZkSKyaCXSMrP4h+j+CKmfwiHLVPXWDq64fOs+/4SS8uD98wcY7O6OV7GCAeityz0hKSn5GyKFq6G/1taVWuKio6Oof4787FR0aq2PpvptsH6lN3r06CEiI6csRGl5/di2RegxlPWDUhqSo59DTdMUwY/D8PDhwzIkDGRRFHGYZqyjgk4uXUv8f2HxXio6KFAW4r+W3DlTGVEqcTwUMY14dOQ7pKaJdiKr8N/jh8RV4e9FFXGVFFXEVVJUEVdJUSHiiPPQNm1s8VzITV9ZWL90BrYfEvj8Soh9gxU+W/ge8Xh4d/86eg/0osNNm5ZOhe+BC8jN/I7bt27hFidvolg3VE/vXaVumIisWLcJ165c4Id5suuo0PQRY+6HPbjDvOMOvmcK1uIX5efiXvAdBAUFI1fIUXhBTgb9f8H3H6BAaMQgMzURQUz8gyeivskIclM/oWePPnj56ffGHiuKnxL3IiwUZ8+epbJl1SzUqFUfe4+c5Mfx5M3HOBQW5CMxMZHKQNc2mLRoA71OSkrB87tnIavWTORsubzcbFw/uJXuD//CpBvi2hIT5/viXeg1SIlJwblrV2irNMbIeezYpd/qiTCwsMHyhTMgKSGFAQP6QtPEEqtXr6YyyM0RZk68KZ4irJg8BCp6ZujV2QZGLe2RkplHB67H9nRgwnawb20KG7ehyGF0IseuOLc1hHXHbrAw1ECf8QtoRzsz6TOa6zeBa68BjC4NMWOVH/t6DueYTr1UvcY4ekr0e/AkLvmf2cTyU+LI4s3BgwdTMdZWRSNVHX5YWC7cDkNS5DMYaWlBq5iYNXfBg1KIi3hwE13srFGrTkO4M+/QVVWEsUVbzJ82gyGuCVKYpDOHdBMhrov7NNw+vQO6LZ2xfc0s6Ldoj71791Lxcu/BJy4x+hnkJKXh//AtHXc0UJaDz96LeBvqD+la9fD8YyLrL7NWTZy8+QzXjvmirqIWPTQ+Kuw6JGtK4uH7ROxZPQNNTWyQnV+E4It7IS2rjNgU9tygrO/xsNBSgpWtE/0G3TrbQ6yWHAYJfZewD8JeYv8cyl1VFuR8h4VOQwwYN0eko/ws/LXILAHx87HQywOrd5/CiW0rYdd9MILOHIKCvBxdHNqwUSNoGpiC55H38fkDkJZRQPeePaGhrIBZK/ch/kUIQ5w0XHv0ZMhUKkHcuH4dsWDjEfj5zIKythEmTpxIxaWDFZ+460c2o66yEX9r05RBndFlyBTsXjkVWq14B0MUoWd7Q3gu3IR5Y3vBptcYGouiXDRXr4dVe85jkEtLDJnKenjP/f4FSnI1cexGOPM90uHe3QFaFh2QzJRkglf3/SGmZIiCCozI/CrKRxyjyIrpQ1FDoiba2wqGqCzNDNBU34aOcBDkZadh5qh+kFfUQGjER6TER6OVqTbs+3vh/pX9kFU1QUzEHdRWaIIkzr0jIa6RuhW+pqRgaNdWQsQp4GzgNfTt1KYYcVMxrKsVpi73o8SZtnPC1atXqcwbN5RP3C6fGcxHdeGP7Ph4D4W5szu8vfozmcmTiwW8BnRE92FzMcTZCh5Tl3KxgHMbPUxZtBV2+qpY6MsdTpifgWZNFbDpkD8eBB6GgZkVVs6YzJRgGerjpG6d2hCrXoPv86TPyB8fs/I7+ClxBXk5WDvfCzUlJSAuWQsjx47H+PGs9OlqL0JcYuxb9HHriRMnz+Fbajo8ujti446duHH/KQIPbUBTYxvEhl+BrKI2eA7CaYmr3QA9evWCpkiJa4RXn7/Aq7djiRL3Kfwm6so3xYI5k6CorA5djcYwNG9NB25Hz2Rn5XeungodS1c+cWvnesDMcSBmje0L+x7juFjig8URbkO94e7UCsOnCVzwd25rgMkLfdFBrymW8E7IKsiEmUoDbDwoWAV2auNiWNi60+u/psQR38oDXKyYdk0XJ474oqaMLDbv3Id9+1hZMGW4CHE8zBzmAhV1LcgR97nciVGLJ7rDrvcYfI64gnqNjJCWD4TeDsAcTw/INdDGlh070N5CC049hmLHumUMceLQNTCAglydEsQxWR/GTaTRsXMndOg1HHtXz4TzoEm4dfEolBsrIeBuOC7tXYv6GhbU8CCYPaI7Og4ch60Lx8OwvRu/eh/Q0RQj5vhghocrnJh3sCigDrGXbD+FPvamGDWH/f/5Gd/QVEEKBwMEs+1/JXEEVy+cRkxCChLeXGeqSkl06izww2Hd0rRU4pJiXqKBjAQaq+vj/ecUZCR9hGaDuthy4jqiHp7nE/fy6X3q42Te7Fk4deYcpk+ZjBOnz2Hn2gWQlNcFaQaLGye2rh4I9D+LRrIS6NmnByUuKfo56kqLQ1lDHyf82XUisS9uQ1KqNp5GJTHmfzbaGith7rpD1C1/LXlVfE7NQUF2MlTlJbH73F2mPV6KRjqW9KSp5I/PUbumOK49icHaWSNgateLLtd7yxAjKV0Pb+LScHCDN51Mrs25gCLX9BBfpqok1zxp30Wwku1PotzGCSFOqk49XAgU+OTYsWpmCeI+PL9PD27v1H8U+ji3xSyfnRjsYgMz2+7UUPgQeh4KTZgPxKUPu34KsnIKuHQ1CK1MNOlz4/u7oFM/9pCH4sTZOLihu2tneE5fCN+VMylx6WmpGDfQCarN2uDtR86KY8z+Yd07oLlDN6ZmGI2Gagb4lJTJmP2ZcGqpj84DRjPPuEGnhT2+5xQgJyUexmqKGDp+Dvp0bIPWZG0l85pv0eFQVpDFjCVr0aGFDvqNZbsJZOkGmdISlpf3LtESl1dQwI8j6f4JVIi4WvUa4ht3gmb8x3dYNG2kCHEvQ69AXq4uPCYtQDYT+fzBdbRpbgB9pg8VGZcEn4XT0NPZHo0024A0cdER96DcQIYpCQfo80mf3sLVwRryDVTx+N1nfHj5GE5tzUqpKoFD231gY2UOGVl5qDZVxqipSzC0lxM9jXHzAXbCNjs9CUu9p9N2+eUHwdKElPiPmD1xHMZPno6PQqdFfn4fjgmeIzBl3lIkpQucY79+FoJRw9ypI5ofrW/5+6xKBulf32DStFngrSpI/PgCnp6eWLvtEL+9KMzJwN37T/jhr1ERWLxsHb5nsbb/Fp+F9JndR9iTMvKyUrFt1z7+GaNFBbmYO80Ldx6zh0BcObEdpqbmOBJwj4ZDrp3Etn3kUAbg1qUT2LXvICLevEdmNqtUYX4ujvhtwjH/WzT8byM+ivkms5dUaIL2V1Fu4qrwd6GKuEqKKuIqKaqIq6SoIq6Sooq4Sooq4iopqoirpPjriSPTNWPGjEFOTuknSxVHREQE3ca0Y8cO1pN4tujxYP9f8FcTl5ubCx0d9qA9MzMzPHnyhLtTNsheOd7eACJ9+hQ/Vfn/B/5q4nx9fUVIUFBQoE63f4ThwwWb8KWlpRESItgK9v8Jfy1xycnJqFePPSieJ2RB0I9G28m9hg3Zw8+JdOnShbtTEoGBgfSgij+FjNRv2LPNF/16uaFjx45U3PoOxNZde5BY7DTHP4G/krj8/Hx0795dhLSuXYudR14KiK9k4Wc0NTVhaWlZqpDdMnXr1sXFi+XzaVI2ihBwfBeUuE2SpUm9Rk2x7/Q1/uD7n8BfSdz69ez52zypX78+YmLYw15XrVqFTZtKd/9bnOzySI0aNegKsV/F2b1rIFmNt224bCG7aX0PiR5e/zv4q4hLS0ujbZKMjIzIj969mz3OmpDHu9eqVSs8e/aMxhPExsaidu3aIs+VV8pTmktD/IcwNKjzY7eHwiJVtyFefhI9yPdX8dcQt27dOlqyiKsM4R9LnFHz0K1bN5F7JiYm3B3Q5XnC90g16O/vj5s3b4oIcf4pnI5Yq786S716hsAQKq94LfgzzsL/CuKIQxrima74jyRtEa8fdvLkSZF7srKydF0nQXR0NGrVqiVyn8jlyyWrpilTpoikKava/TmK0MfBWORd5ZFWTn/mrIW/gjiyJbi0H0lKCMG3b99KEEtWmfFQVtvWtm1buu6Dh8jISBGCSdVK3v1rKEKPDqxXhopIc3t2Rdjv4q8gjrRrSkpKJX4k+bDEyY27u7tIPNk6zKveyPEnxG8I7x4xw4XDpArmoVMnUTeFxJfk72DqEPZ0/opIrzFzuad/D39NG0f6VB06dCjxQ0lbJRzW09PD16/sSi7iOa9OnTr8e2T1MDFShg0bxo8jVSoZcVmxYgU/jghpS8s7jFYWQv0PQLwcFiVfqlWn+xT+BP4a4ghIKfLy8ir9RzNCOuT37t3DnTusl1bipEb4vp8fu5Pm/fv31CkoL56cniEcFhcX/wP9N0bfwlwMd7Pjv/dn4jhwwh87I++vIo6AtEmlkUeqPzLa4ePjg+rVq2P27Nl0EJlHCLE+Scedh+LWo7CQQes/hey0BPR2alvq/xEWG9fBSMr4vRIujL+OOIKCggIYGRnxfzQhjYz279+/n99+kVJz5swZ2nm2tbUVMUIISOl1dHTkv4MnJK542t9FYX4eDm/3gYmOBsRrsI5siBDHPpr6JvDdfQJ5f/h//pUlbty4cUI/vgYtPQRxcXFQVVXl3yPtH6kWSXeiOMhKa+LNiJeWJ1ZWVvTUrH8Kn6Lf8begRX78584J+s+JI4bGq1evqHm/c+dOeHh4iHxoCQkJ/gZJYnwI3yNCLMXiJYhM7ZCxyOJpeaKvr09dSlVm/OfE7dmzp9SPWxG5cYP1/0zcTpFjLYvfNzc3pxswhONISSYTrp8/f6bPVjb858SR036JsSH8UX8mxcckyRzc9evXYWrK+joWFjL68v37d1y5ckWk68ATYtyQZfEfP/6e/8h/G39FG9e+fXuRj0mIUVFRgYEBOepEED9q1Cg6sEyMF9JWEQOlX79+GDRokEg6nrRr1w4pKYJBXTJywptRLy5k0pUMNr9584ZL/XfjryCOjG4QQ4NYjcTHJSmFBDNnzhT5uMKjII8fP8aQIUNKTLYSISWYGDjC3QMeMjIyMGHCBJF+HU9IRnj3rmxXvn8T/griCEj7VBxlEUeMETJpStxRCN8nQkZKjh8/jrVr16JRo0b0BOHDhw+XsDyfPn1KR2qEh8eIl4TKgr+GOGJZkoU9ZGjq/v37dKFQceKIG/yFCxdSQ4MYF+QUDd4wGSllpKqLj4+nJY1M+Qg/KyUlRcc4yQ5Y4ZIYFBRE+4GkBH748IGL/fMIf3QP/lev/7b3cx7+GuKOHj0q8qHJwXjFiSs+C0DSEPLIkNahQ5xnBAbBwcEi6YqLrq4uXYiUKXQmAKmiS8PLkOvU+ClL5q3ZVq4lCZP7O0OsTlMklXGSfkXx1xBXfLnC9u3bSxBHhruMjQVzYGSKhnguIu2WMIgBQ0x9YuAIP19c2rRpwz1RNq7t21jqszwxtO0tQhzZb87rgAvLAMc29HzvoPuhJe59EnLfX178NcQtWLBA5IOQQeDS2ri5c+eKxBGCywKxPkkfj7RdpO0Tfo7I1q1buZRlg0fckUtP6aQuX7LS0EZHqQRxOV9fMtV2BWYMGPH22cU9XX78NcT17MkeFMQTsjyvNOIePHggEkeMj/KAlExvb2+oq6vT58j8H2lHfwYecVPmrqNGD1+OHYa+knwJ4goyk7Bhw4YS0sGC6dpI18cq5jcUvxcSFsE9XX78NcQ1a9aMTwYx8Un7Uxpx5GMLD30RQ4U3r0b6bGQwmixDL2vpOXkvMXKWL1/OxfwYFa0qCYoKC/D21QvabvJkcOd2TFWpjIfhESLxiaklx1nLg7+COPKRyUIh3scgHW+C0ogj6Ny5s0g8b2ErWT/CiyNVIxnHJEbI7wxr8YibuciXWqR8OXsKBk3ql0pcXmYClOsI9PuRrD78a0v2/griyGiF8I/hzZeVRRxZW8mLIwYKqT4JSptBJ0L6amTEhLSjvPWZ5QWPuP1nH9Dl73xJTkBr7calEleYl4lNa5Zh2TJWZk8dBykJ9kRIYyt7fjyR+y9+rQvyVxBHqjfhD81bCFQWcWTKhky2kpVfvL0EZLSltNGQ4sLr7126dKnUTn9xBO7dUOp7eFIaccLITPmKjtYWqCVdC2I1a0NBsT62HA344TPlwV9BHFnwymu3yDQOryNcFnGlgUwPLVq0CC1atBAZDfmRkCXqxCotqz0k2LZ0Ek3r3H0gHYzmy9gxUJKT+SFx7yJC0dpYE9qmHTCkmwM9avPY/g2QqimFCd4rkfEbfbq/xjghy+SIeU7cKfJQEeKEQUohGQ4ji4YaNGgg8o7ShFh2pYF4k+3cWg9i4jKI+JLGxXIozIW1bpNSiUtPjscK74moU0sSGoYt8Domge2A0zNSC3Bk62KGvBpQN2iBgycDfml2/K8hrjT8KnHCIEsYyOIiMk+nqKgo8j4ixIjhDWoXx4WDG+jZpzbdR5Zc5FMGcS9C/KFQtxZTJYujc/+RSEhmR2cExLEkPbx+Hvrq7FpRpwHjK7yI6P89ccIgVeKxY8fodA+pksk7yalYpeHOpb2oLSWBBhpGePdJlNjkDw+hp6sD6ZriMHHoK0JcUUEmPAb0xunLd0TIKE4cQcb3b5g7yRM3wt5zMeXH/xRxwggPD6dzeW/fln4EWWbKF7gP6InHb0paoUU539CBbNdq3Qb7z1zjYn+M9XMnwtK2G7L+0KKhv5o4shCIzGzzpKKm/P9n/NXEVaFsVBFXSVFFXCVFFXGVFBUgrgi3/C8g/jePHCFeYMlqK57Efv6CmI+C8MdPX8ocifh1FOHuzWtI4zzJxkW+xPW77KbIiuLWlQt4+jqaC4nipv9xHPNnN6T8FIU5OH30OLLK9hT8Q1SAuEK4WZrg9nP2gKLp40fh2tVzGDt9GQ0TvLofQDcgliXbjlxC5pcISEjVhlJDeSipqMOt/yCoN6wJk2ZmMDHUhaJBO+QjE7YGuqW+gyf7LwTR//n1SwzCwsJKyrPn/AOPvse/Zf5fAyxYvgYbN2/B/GmjYe3ci+6PI/L+UzlnoJlOd3tzbQS/LDbbUFSIw3u3o5dLB9h1H4gtW/fg8I6NdA0NEfehI/A9B/gc+YL/PzeuW4H60opYxQsz8ia6/Evjy01cXl42urYwYTqL0cj7HgOlRpr49Pk9NFV16Hk0BOnJX+nC07Ik6lM8JU5evRmG9bXHyGkL8ObVS+jrqSApswApUY844oCszEw6dxbivxM23T1weMscDJmyiMYR4R2Uu2bOGFSvXoMOMPOFdK7rKuIjPQemCAvGD4CNoxuaysth9IQJaKrUCN3dOqMR07kmM+ovIuOQFhsG2ToydLaBJ35nWd/O7+9dRt3adeh4qqSUFP1LpLaCCiKTMuj8m6/PUjh1aInWHbti0WIfBJw9Qd9NZNHSFchgCnvUq8f8uLmzp0JOsj6m88KMPH9b/r0G5SbOsbUa3YlST14LR/b5wtSBuFoqwqie7THflzsJg8Gh7atF/InwpOuQCdQdPCFOqq4CDHVUYGTeEvsOnSmVuLiYNzh16hTWLBwPYysHTCMndLgNpHGXAtktxgSEuO4jRI9CSYt9zieuKC8Ng/sNwJPXkdjO5PLzZ09jyqzFzEd8hGneS/jV58eHgZBTN6aLj3iSkMx6SH8bfAkt7Yst3cvPgpGBHj4kMk0HQ9yQ3s7Q01aDup4hXN3HcolK4tTWNehgaw8X506oJV4bji4ucLCzxeJ1B7kU5UO5iSvM+w61ulK4E/4Jo3vaYt66vfRkqjeh/miopI2PSexMrs88L1j3GkZHJHhyaP1iqLVwoselEOKk6zWChbEmmrftgGMnL0FNURyaWtrQVFfhE3fp4ApoGZqhm1M7KKnrwq6tOT1AfWCfblA1bg2eo4SfEUfDXyPpZhIiA3q5QqaBMr021FTCoQDWZdTDa8dhYNUFgZfO0A2Sz98LOvuEOEUlLboHjy+DB6GeojJHXD5aGGuhX/+e6DO4L9TN2+P08UP0PTx5+pJtF7d6j8PYmWvwOjwUynXU8ej1a2xeMAUek9bQ++VFuYn7+OQaqomJwcK6I3r1GoCAE3vQprM79bG/fMpIHA1kJzMJcZ2GTaXXPAQd2y5CnJyKIQa4tccgz+l49vQp9HSUsWLmRIycPBfzV/nSkkmIc5+4AHdObYPTgHE4tWshhs9cgZSYJ9AxrRhxRfk52LV1A9asWYNFsydAVkWPXlsz7RWPuGsnNqFOvXoYOnoq5jNpFBs3xP1XbHtOiNNp1gGnT58WyMmjUFHTEBBnqIJmpsYwMW8GNVNr9O/uiPpytaGurYeWLVti7ym22iXEtWrvjCkTPSErKQ+vKVPQ1d76nyNu1QwPSIjLwMnJCRfuRmDbovEYMdOH3hP2E0KIk6gpyW8HaFsgU0uEuJoyclBXaUhP9p8wayGtKo/vWYdBkwSGDkvcfMwe1QPz1h+mxA2evBBLpg+HWgVLXH5WMnR01HD+8jWcO7QFDfRb8v2exCex1WFi3EcEP3hMrwkWjRuIYTPY48cIcS06DKCrofmS8g0GeroC4ow04OLSCU5M26lmYct8lBxY66vh9osvKGSqUh4Icdb23TBn1hTaxk2bMwe9nGz/GeKKcr+jmZY6zHX1EPQslhLl7miJgwGhWDjVE0/exXEpgaVTB6H7mFlciMXndxHYd/w8NfOzUz7ThniWtzeG9mTq934e0NdVQ+TLR9C1sEMeRwghTt/YBMraJvicnIkHgUfohntDQ0OomlSMuJRYxiCqIwunzi5o3aIZpOQU6f5xFxdntGpjg2+ZhbgbcArr/I7S9AS+88ahpxfrIYEQJyUlQ/+/QJpAoo4iSxxjVR4/uBu9iVXZwx37jp3B9y+voKZvgSun9mH6is30PQTh94Jw7tJVPHkQhCa11XD3yRNcD7iA63d+7tJRGOUucTFR0Ux3oBnTxn1mMlMS1BorIYb5MMsZolo49OMO0gMGOVti0tKy1ysmvL1DN3jUb6SKerXFme5AP6Yts0Yu8+P72ptj74Vgmo4Q59LfA4+KrckoraqsVbsu3anKExVlJRHiChiLODr2M94+vQMzIx0ot3Ri41OjoNjEHNnMu97cuwBZBVWEvYlF7LtwWOg0xuaj12m6nxkn6Z8j6P8lx9PUlVdgrjWxcskCetBgevxrNFHWQXxaLkb2cxLSsynEq0tAhR9WRYdu5feBUm7imPqAEhdw9TqaKNRF9RriTDUojxYtrSAvWwdnboUj+dNLKDLV4pVHZS+AeR10CkamLTBl7hLMHOcOy+aWcBzIHv/1JvQqmqprIjwqgRLXRF2brugSlo621lAxEhDnM3cs2jj2pAtoeXL6yB5YO7oinjtPJiXhC9YunQE1TX2cP8eUXIY4cvap97ihMLBxo2mYYoMtK70hX08WcvUUMXrmUuRxE2qEOBUtc5FFPsuWLGKMMlVKHOkOkFn31XPGYtzybYj/+BquHdvAwbUf5s2YAlmZmth4+AoyM9IFi40SoqBaVxuxvDAjaelM6S0nKkzcnWfRuHzlEjKEDge6cfkSvqak4V3YLXRnTOEfzeYSFxPxXxJx/YgvXRM5btxE+Ie85O4CV5kPG5eajYe3TmLWopV0H4CwXA84jRHjp/GJKw+2Lp+JwWMnI/JzApKiHsPIoTdy075i7ZpVeB0Vz6UqGx+YDGVk3g4rV64UyIrl6DtgCOKEfFHu9PHGvK1HUZCThp6Mub9wyXKcOX8ZG5bMxNrdZ7lUHHKTYaZmiWILIsqNChDHVJeRH5D5hzYtVOH3UAHiivAq4hn1LUIk7MkLpgwW4fiuTXj0jjWbS8OGhTPw8GUp9/MysW3HfpDK7Jr/GZEl2Y/CI9k0VSgT5SeOqcctDVXh6toJWiaWWLJsEz0D7viWJTC17cWmYZCXGgPHToIDcBvJ14VZi7b88Mbd7DFiyIhDPRVjeirjiN4OmLx4A/WE0M/RGqt2nGfTVKFMVJA4Fdg7tGPMXFP47j+JW0xbd/LYYaz22UgXp75l2guyzYicak9IINLeRAsLVvvR64DLVxH9iTtRsRhxLazt6cZDAw3lKuLKgYoRx5CwbPlstO82CJ/i4rBqzjS4uThAUU2XbvK7eofddRJ++Rgaq+nTOE0lBTi69kX/Hl1g0KIb7TakxETASEONurvVNTZHZ8cOsO7oSvd0m+qqVxFXDlSMOANlmJoZoWFTDcz12UmjnwadQWu34fSaB0KcJmOyE6/lZlrKGO41G3OneMKQI66oIJ+e+CinbIDwl8+pQ1BeCSVy/WYQviamIebNY3i498WIMZMRm5CGdMaEnzpuOPoNHIaHz0mXowgXj2yDW7duWLP5IMgsztN7V9G3ZzdMYcz51Kw85GYkY87U0ejddxCCQiMYqzYfO9ctQNeuPXHgdCDV983Tu3Dv1xOeE7yR8D0byV8+wGvkYAwaOgYR78gUThGO7lzNPNMdW/edob8h5m1x3b5g6vhiuh1ldVu96QBft36MbpP5uqUwuo2hut1idKsIKkZcMx3s2LmG6Xd50Q307yOeYvOqudC36gR/phpMy2YtTkKcmXVX3Lp1C/bmuljlewyn9myGMUccBVdVBgYcQyf7DpCUqYtOjk50SI3IZab0DnZqDZ+dJ7F24UQMn7USm+Z6YvC4RbhyYhuaO/ZF2udXTGdbB6GPwuDcoTkCH79AS01lnLkagvHDemIl054e2TAfXfpPwG1GJ6O2nfDq7gVoN+uAp2GhMDXSRlRKFjq3NMCeE1cwd7IHpq/ehflj+2LiAl8c27EcDv3H4uurEChrmDMG2WNYWxrhcVQiBjszuu04gXVEt5mMbvO8MGjcQno8qIVjH6R9eQ1VRrf7jG6dGd2uPopAK62mVLcJw3sxup3GkY0L4NJ/PO5cPg7DNp34R46WBxUirottC1hZtYJhM3O0adseu3x94WRvDQVlTfRz98DHJHbVLiGOjIyQYaUmCnJo2cYO9u2t+FUlBSXOCGER4TjkuxBSUrXphntW2jDvysI8zz7o1HUQncbJzivAGb+VMLW0xf7jZ/E9IwvZqV9gqqMN78Wr8OTVeyaT56OPfQsMGj0dQfce0o3yQWd2waBZa+zcdxSJqRmIf/sQmhp6WLluMz4w/Trmh8Gzbyd0HzgWgbeCkVtQCL9V09GybWecYPpg6Vk5SIt7Cx11LSxetR4vI9lDcud7laZbB+w/JqSbrjZmM31Rvm4OlqxuIZxuZ/1EdKsIyk9cUSG2bloL3/VrMHc+U8r0WiCZseWLV5UJ8Z/wKPQeAq/dpHuxnS0NsWV/AMIePWA67tfw/Hk4srMysNtnMS1lHTu0h0Hz1ujd2Q7DxoyCqrYZNNT18Tkth576f/fGFQzo0gEDJy+jOkQ8uoc5Ezxg1K47HbROS/2Go35boK+lgUtMRz6HefeV8ydh29IES7adoDq9ff4YS2aNh0YzG2QzH+zr5yhs37CSKa2qeP0lHXk5Wbh55SJcO1hi4tJttDp9HHIbEz16o133ETSzJSd+wd4t66CppoqQl58FurnaYuCkpcV0cyummzpft6uMbnaMbou3Hqe6vSO6zRboVl6Um7jC/DS0aq4HA+WGMDYyhIy8IUgeKU7csd3rqacgnijK1YGxWUt+2NahI+K+JWJQf3eERrxD6tcPGNyrMzo49sAgt46YvXwDtAwNkZpdADcbE2zYcwJbGIPIoc94LJo4AF5zVtOB2yaabRD58i70LayZNvEmutu2xK6jl2Cir4uTAYGYNWYgvOZtge/i8Rg0fi4CL56AkrIJrpzzg5VzX6Yav4Hm2moIDo+BTQtD7D5xAStmeqLP2EWY4O6I2au2MdX7JhhYuiI85DxMrJ2ZZ27CzsIQF4Lfwq1DM6zfcxxbl3vDvjej2yTm/81ZxelmhchXwSV0a0Z08ye6ucNzni+n2xxcY3Rr0sQEafn8+uinKDdxeamx6DdoFBbOnYW9u3dDz7wFli3xxuC+3aCkbYKpU6fi2GX21Hth9LdtjoCQ0hfXEGQmf8K8Wd7o1qkd2rsNwLE926Clb0ZPwH//5D41AEZ5TcL7z4lIiYvG5DHDMWDICAQ/Jo15IU75baIGwMrNfnSNSej1S6xx4r0Q39KymSrrK2aOH40+A4cg8O5DpmDkwnfpXHTt3gt7jrPWa3jITWqceE2ZiU+MURQf+QqeIwZj8IgxePySGBoF2L9hObq6dcfm3UeYtqiYbp9EdbvL6XZ692YR3R4wuhHjhOrGGEFEt1mMbr0Z3a5WcPFS+atKIYzo64jJSzbixOG91FUhT4IehXMpBNi2cgGev0vkQiWRnRKLHl1csPvwWeTkZmHq2MFYt1OwFKIKpeOXiKvCf48q4iopqoirpKgirpKiirhKigoTd3j7MtrZ1TVojvsvPuLhzTMwMjKApoYWDpy7haLcdPTv0g7qahpwHeCFLKZvcuko0wnV1YKWthECQ1/i1aMbMDMxYDramti07zydUfByd2GeUYddF3ckZ+Vh66oZ0FFXhZGZNSKiExD75jFaNNNn/o8mFm88gJy0BHSxtaT/Z8CY2XQskKebDqfbI0Y3Y0NGN3Ut7D/L6jagS3tWt/6eyMorwPKZI6DF/B+L1p0Q/S2d1c1YoNv3r9GwbdWMhj1nr6Kz+9tK6BYmqlt6Alw53fpzuh3ZsVzou0Uzup1l+sM83QQLfMuLihFXlIN2emp0/8At/6NMp9Ufkwc4Ye3uS4h5FYo5qzYjKvQytJs5IL+oAEvnTMTrL6no3sYIp288x+M7l7Bh9zEsm+DOdHD3IeXTS0yYuxzf3j+CipoFJXnjCm88fPUaBg0U8PJLJi4e24njl+9gx+JJGDndBxmJMRg7fQ4e+x9EC9t+KCzMw+wpo/EpJYPTLRZBjG5+fN0uIub1A3gT3R5cgRan27K5E/HyYyTU5BohJjkHR/zWIeDuE063vYxur6huVw9sQMfeXijIzcTkSV5IzkiFoaICXnzOwMXjuxjdbnO6raG6eVLdDqG5bV8R3drrq9EVckEBRLdLmDLQGT5+nG4rBavAyosKl7hda+fCxKQ5JkybjaivKbgbcBjG+sYYNNIToRHvkZ+VhN4udmhrbYd1u47QMblTu31gZGiGMeMn41XMVzy9ewnmxsbo5T6c6ftFoDA3AyP6u6J16/ZYtnEnsvML4DN/HMzMWmLqnIWIY374+2d30cqsGVx7DYT/7YfISIqFi11b2Nh2wo4jF0AGi/zW8XSbxel2hNHNSFS3LvYC3QoKMHfCYDRvbkXXt6Rm5uJZsD+n2zDaL02MfQ2Htpawd3TFoQvXmf9TxOg2XqBbcgY+POfpNoDqRgYVutizum0/wi5L9Fs3T6BbfAqCi+lWUVSIOLJFKuR+CNIz0rF8sgf6jmU614/v0UWl/gc3Qt/SBQlfY/H01TvEx7xDWyNNXLj7Fg/u30FKWjq2L50Keyb3vnr+CJ++JuFewCEoabRCUnI8Hj1/iaS4j3C2aoZdJ67j9r0HyExPxXSPHvCcuxnvXz1D9GeG9DsX0UBRH5GxH/DiXRRiI1/ARE0JdyM+CXSb4oE+Y4R12wT9FsV0M9bE6WsPcfdBGNJTEjCihwPmbzjC1+0+kyEbq7dCZPQbvImKwYeXj6CppMxUjXEC3Yb1ZHTbVEK3DzEfEPE2ktHtJatb+Ge+biumDGN0m8/XLeDQJui16EyX3VcEFSaue3sL9PMYjc62Vpiz7iCWTnSHbede8OjrBueBk/DpzX2oquphypRJMNDWxZPIbxjZzQbd+g1FD2dbjJmzAduXTEJrWxd4Du2Plo7uSGSqTC01LUyaPBmmBnq4/iAC7Y11MNRzAuysLLBu/yWc3LYUZq3tMH7UUBi26ozw+/7Q0DZh/s9E6GgyRManogejW1+qWxtGtwNYNnEQOvB1m8jppsvX7dHLdzDVVMOo8ZPQxtwI+y/eY3SbzOjWGZ4eRLeBCGaqZD0jS6aaHAdd/ebMx06BjQlPt+ZYt4/RjWlbzVrZUt2MytCtp5Bu3oxuyycxujn3hEc/NzgNmEhLZUVQ4aoyIzURxw/tQ2BQCFMNAvk5WQg4dxKnL1xGRja73SryxWP47d6Htx/ZfWTZTO4kmyDIFAgZsyvMz8V1/7M4duYCnQIh+Pz+BXUNFf6WHdf8nvQVh/b6Ieh+GDUIiph26U7gJRw6fgbJ38kGkyK8DAuB394DiIlj95VlpCaVQ7cwRre9eBvN6pYYF4P9e/xwL+wF/XgldSvCk5Cb2L3/COITk+kzVLd9frh173Ex3U4jidPtVRm6Xb0lpNv5kzglpFtFUGHiqvB3oIq4Sooq4iopqoirpKgirlIC+D8qGMC9kM4a2AAAAABJRU5ErkJggg== + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +12 + + + + + + + + + + + + + + +0 + + + +駐車場名 +Millimeter + +<_x>3.3379562585949936 +<_y>57.260420989990266 +<_width>33.072920307517052 +<_height>13.758327960968018 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.10162657356261845 +<_y>5.131249999999997 +<_width>39.952085971832275 +<_height>5.2916655540466309 + + +100 +true +true +true +true + +FieldText + + + + + + +定期種別 +Millimeter + +<_x>7.3741664123535156 +<_y>22.319167556762682 +<_width>7.4083395004272461 +<_height>5.2916665077209473 + + +100 +false +true +true +true + +FieldText + + + + + + +有効期限年 +Millimeter + +<_x>2.6587856634855163 +<_y>36.396873378753668 +<_width>32.8083348274231 +<_height>5.0270819664001465 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン +Millimeter + +<_x>21.090561620831476 +<_y>25.41249618530275 +<_width>16.139584064483635 +<_height>9.5250039100646973 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車位置_ラベル +Millimeter + +<_x>1.618687139391926 +<_y>28.322917556762711 +<_width>18.785419940948479 +<_height>6.6145825386047363 + + +100 +false +true +true +true + +FieldText + + + + + + +許可番号ラベル +Millimeter + +<_x>2.1473299577236267 +<_y>10.582288837432865 +<_width>25.929171085357666 +<_height>5.0270819664001536 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者連番 +Millimeter + +<_x>2.1473299577236267 +<_y>15.203124904632547 +<_width>35.454172909259796 +<_height>6.3499979972839524 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>4.1785805627107582 +<_y>41.901040744781525 +<_width>20.974740366608245 +<_height>15.345839023590088 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.989235634930282 +<_y>51.426049900054956 +<_width>12.100811526291254 +<_height>5.8208298683166539 + + +100 +false +true +true +true + +FieldText + + + + + + +タグ +Millimeter + +<_x>27.90873886931309 +<_y>44.095817470550571 +<_width>6.2618050575256348 +<_height>5.7326416969299316 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>22.077287960052558 +<_y>22.353633594512935 +<_width>15.874998569488525 +<_height>5.0270829200744629 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>3.3379562585949936 +<_y>57.260420989990266 +<_width>33.072920307517052 +<_height>13.758327960968018 + + +100 +false +true +true +true + + +Text + +松戸駅西口第5自転車駐車場ssssssssssssssssssssssssssssssssss + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.10162657356261845 +<_y>5.131249999999997 +<_width>39.952085971832275 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期使用シール + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>7.3741664123535156 +<_y>22.319167556762682 +<_width>7.4083395004272461 +<_height>5.2916665077209473 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>2.6587856634855163 +<_y>36.396873378753668 +<_width>32.8083348274231 +<_height>5.0270819664001465 + + +100 +false +true +true +true + + +Text + +有効期限0000年 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>21.090561620831476 +<_y>25.41249618530275 +<_width>16.139584064483635 +<_height>9.5250039100646973 + + +100 +false +true +true +true + + +Text + +大型 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.618687139391926 +<_y>28.322917556762711 +<_width>18.785419940948479 +<_height>6.6145825386047363 + + +100 +false +true +true +true + + +Text + +駐車位置 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>2.1473299577236267 +<_y>10.582288837432865 +<_width>25.929171085357666 +<_height>5.0270819664001536 + + +100 +false +true +true +true + + +Text + +許可番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>2.1473299577236267 +<_y>15.203124904632547 +<_width>35.454172909259796 +<_height>6.3499979972839524 + + +100 +false +true +true +true + + +Text + +0000000000 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>4.1785805627107582 +<_y>41.901040744781525 +<_width>20.974740366608245 +<_height>15.345839023590088 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.989235634930282 +<_y>51.426049900054956 +<_width>12.100811526291254 +<_height>5.8208298683166539 + + +100 +false +true +true +true + + +Text + +月末 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>27.90873886931309 +<_y>44.095817470550571 +<_width>6.2618050575256348 +<_height>5.7326416969299316 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>22.077287960052558 +<_y>22.353633594512935 +<_width>15.874998569488525 +<_height>5.0270829200744629 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>3.3379562585949936 +<_y>57.260420989990266 +<_width>33.072920307517052 +<_height>13.758327960968018 + + +100 +false +true +true +true + +松戸駅西口第5自転車駐車場ssssssssssssssssssssssssssssssssss + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.10162657356261845 +<_y>5.131249999999997 +<_width>39.952085971832275 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期使用シール + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>7.3741664123535156 +<_y>22.319167556762682 +<_width>7.4083395004272461 +<_height>5.2916665077209473 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>2.6587856634855163 +<_y>36.396873378753668 +<_width>32.8083348274231 +<_height>5.0270819664001465 + + +100 +false +true +true +true + +有効期限0000年 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>21.090561620831476 +<_y>25.41249618530275 +<_width>16.139584064483635 +<_height>9.5250039100646973 + + +100 +false +true +true +true + +大型 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.618687139391926 +<_y>28.322917556762711 +<_width>18.785419940948479 +<_height>6.6145825386047363 + + +100 +false +true +true +true + +駐車位置 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>2.1473299577236267 +<_y>10.582288837432865 +<_width>25.929171085357666 +<_height>5.0270819664001536 + + +100 +false +true +true +true + +許可番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>2.1473299577236267 +<_y>15.203124904632547 +<_width>35.454172909259796 +<_height>6.3499979972839524 + + +100 +false +true +true +true + +0000000000 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>4.1785805627107582 +<_y>41.901040744781525 +<_width>20.974740366608245 +<_height>15.345839023590088 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.989235634930282 +<_y>51.426049900054956 +<_width>12.100811526291254 +<_height>5.8208298683166539 + + +100 +false +true +true +true + +月末 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>27.90873886931309 +<_y>44.095817470550571 +<_width>6.2618050575256348 +<_height>5.7326416969299316 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>22.077287960052558 +<_y>22.353633594512935 +<_width>15.874998569488525 +<_height>5.0270829200744629 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Bottom +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +12 + +80 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +15 + +90 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Bottom +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +20 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Bottom +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +20 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Bottom +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +40 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS UI Gothic +Point +15 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +15 + +110 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Bottom +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +12 + +110 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/Debug/net461/netstandard.dll b/bin/Debug/net461/netstandard.dll new file mode 100644 index 0000000..1f1ab22 Binary files /dev/null and b/bin/Debug/net461/netstandard.dll differ diff --git a/bin/Debug/net461/pic0.png b/bin/Debug/net461/pic0.png new file mode 100644 index 0000000..8a70912 Binary files /dev/null and b/bin/Debug/net461/pic0.png differ diff --git a/bin/Debug/net461/pic1.png b/bin/Debug/net461/pic1.png new file mode 100644 index 0000000..20be2ff Binary files /dev/null and b/bin/Debug/net461/pic1.png differ diff --git a/bin/Debug/net461/pic1_B.png b/bin/Debug/net461/pic1_B.png new file mode 100644 index 0000000..cf700dc Binary files /dev/null and b/bin/Debug/net461/pic1_B.png differ diff --git a/bin/Debug/net461/pic1_C.png b/bin/Debug/net461/pic1_C.png new file mode 100644 index 0000000..1821ffe Binary files /dev/null and b/bin/Debug/net461/pic1_C.png differ diff --git a/bin/Debug/net461/pic1_D.png b/bin/Debug/net461/pic1_D.png new file mode 100644 index 0000000..8dcc237 Binary files /dev/null and b/bin/Debug/net461/pic1_D.png differ diff --git a/bin/Debug/net461/pic2-1.png b/bin/Debug/net461/pic2-1.png new file mode 100644 index 0000000..80c1832 Binary files /dev/null and b/bin/Debug/net461/pic2-1.png differ diff --git a/bin/Debug/net461/pic2.png b/bin/Debug/net461/pic2.png new file mode 100644 index 0000000..57e9540 Binary files /dev/null and b/bin/Debug/net461/pic2.png differ diff --git a/bin/Debug/net461/pic3.png b/bin/Debug/net461/pic3.png new file mode 100644 index 0000000..e3323fc Binary files /dev/null and b/bin/Debug/net461/pic3.png differ diff --git a/bin/Debug/net461/pic4.png b/bin/Debug/net461/pic4.png new file mode 100644 index 0000000..e7630ab Binary files /dev/null and b/bin/Debug/net461/pic4.png differ diff --git a/bin/Debug/net461/pic5.png b/bin/Debug/net461/pic5.png new file mode 100644 index 0000000..a52a954 Binary files /dev/null and b/bin/Debug/net461/pic5.png differ diff --git a/bin/Debug/net461/pic6.png b/bin/Debug/net461/pic6.png new file mode 100644 index 0000000..e372181 Binary files /dev/null and b/bin/Debug/net461/pic6.png differ diff --git a/bin/Debug/net461/pic7.png b/bin/Debug/net461/pic7.png new file mode 100644 index 0000000..266080f Binary files /dev/null and b/bin/Debug/net461/pic7.png differ diff --git a/bin/Debug/net461/pic8_1.png b/bin/Debug/net461/pic8_1.png new file mode 100644 index 0000000..20be2ff Binary files /dev/null and b/bin/Debug/net461/pic8_1.png differ diff --git a/bin/Debug/net461/pic8_2.png b/bin/Debug/net461/pic8_2.png new file mode 100644 index 0000000..4725ff5 Binary files /dev/null and b/bin/Debug/net461/pic8_2.png differ diff --git a/bin/Debug/net461/pic_err_201.png b/bin/Debug/net461/pic_err_201.png new file mode 100644 index 0000000..354a3d9 Binary files /dev/null and b/bin/Debug/net461/pic_err_201.png differ diff --git a/bin/Debug/net461/pic_err_202.png b/bin/Debug/net461/pic_err_202.png new file mode 100644 index 0000000..8230f9b Binary files /dev/null and b/bin/Debug/net461/pic_err_202.png differ diff --git a/bin/Debug/net461/pic_err_203.png b/bin/Debug/net461/pic_err_203.png new file mode 100644 index 0000000..a53202e Binary files /dev/null and b/bin/Debug/net461/pic_err_203.png differ diff --git a/bin/Debug/net461/pic_err_204.png b/bin/Debug/net461/pic_err_204.png new file mode 100644 index 0000000..71dc025 Binary files /dev/null and b/bin/Debug/net461/pic_err_204.png differ diff --git a/bin/Debug/net461/pic_err_205.png b/bin/Debug/net461/pic_err_205.png new file mode 100644 index 0000000..ba8f702 Binary files /dev/null and b/bin/Debug/net461/pic_err_205.png differ diff --git a/bin/Debug/net461/pic_genmen_120.png b/bin/Debug/net461/pic_genmen_120.png new file mode 100644 index 0000000..d6e1c5d Binary files /dev/null and b/bin/Debug/net461/pic_genmen_120.png differ diff --git a/bin/Debug/net461/pic_kessai_0.png b/bin/Debug/net461/pic_kessai_0.png new file mode 100644 index 0000000..a620dbf Binary files /dev/null and b/bin/Debug/net461/pic_kessai_0.png differ diff --git a/bin/Debug/net461/pic_kessai_1.png b/bin/Debug/net461/pic_kessai_1.png new file mode 100644 index 0000000..df21e72 Binary files /dev/null and b/bin/Debug/net461/pic_kessai_1.png differ diff --git a/bin/Debug/net461/pic_kessai_1_2.png b/bin/Debug/net461/pic_kessai_1_2.png new file mode 100644 index 0000000..e1b3616 Binary files /dev/null and b/bin/Debug/net461/pic_kessai_1_2.png differ diff --git a/bin/Debug/net461/pic_kessai_2.png b/bin/Debug/net461/pic_kessai_2.png new file mode 100644 index 0000000..7a06ce8 Binary files /dev/null and b/bin/Debug/net461/pic_kessai_2.png differ diff --git a/bin/Debug/net461/pic_kessai_3.png b/bin/Debug/net461/pic_kessai_3.png new file mode 100644 index 0000000..1b98d04 Binary files /dev/null and b/bin/Debug/net461/pic_kessai_3.png differ diff --git a/bin/Debug/net461/pic_kessai_4-1.png b/bin/Debug/net461/pic_kessai_4-1.png new file mode 100644 index 0000000..f37990a Binary files /dev/null and b/bin/Debug/net461/pic_kessai_4-1.png differ diff --git a/bin/Debug/net461/pic_kessai_4.png b/bin/Debug/net461/pic_kessai_4.png new file mode 100644 index 0000000..d444c32 Binary files /dev/null and b/bin/Debug/net461/pic_kessai_4.png differ diff --git a/bin/Debug/net461/pic_kessai_5.png b/bin/Debug/net461/pic_kessai_5.png new file mode 100644 index 0000000..7657667 Binary files /dev/null and b/bin/Debug/net461/pic_kessai_5.png differ diff --git a/bin/Debug/net461/pic_kessai_err_00.png b/bin/Debug/net461/pic_kessai_err_00.png new file mode 100644 index 0000000..507b6af Binary files /dev/null and b/bin/Debug/net461/pic_kessai_err_00.png differ diff --git a/bin/Debug/net461/pic_kessai_err_01.jpg b/bin/Debug/net461/pic_kessai_err_01.jpg new file mode 100644 index 0000000..04d0469 Binary files /dev/null and b/bin/Debug/net461/pic_kessai_err_01.jpg differ diff --git a/bin/Debug/net461/pic_kessai_err_01.png b/bin/Debug/net461/pic_kessai_err_01.png new file mode 100644 index 0000000..5cd4aff Binary files /dev/null and b/bin/Debug/net461/pic_kessai_err_01.png differ diff --git a/bin/Debug/net461/pic_kessai_err_02.png b/bin/Debug/net461/pic_kessai_err_02.png new file mode 100644 index 0000000..145b654 Binary files /dev/null and b/bin/Debug/net461/pic_kessai_err_02.png differ diff --git a/bin/Debug/net461/pic_kessai_err_c_open.png b/bin/Debug/net461/pic_kessai_err_c_open.png new file mode 100644 index 0000000..fb34eb5 Binary files /dev/null and b/bin/Debug/net461/pic_kessai_err_c_open.png differ diff --git a/bin/Debug/net461/pic_kessai_err_p_out.png b/bin/Debug/net461/pic_kessai_err_p_out.png new file mode 100644 index 0000000..18923b0 Binary files /dev/null and b/bin/Debug/net461/pic_kessai_err_p_out.png differ diff --git a/bin/Debug/net461/print_layout22.CLF b/bin/Debug/net461/print_layout22.CLF new file mode 100644 index 0000000..2f83514 --- /dev/null +++ b/bin/Debug/net461/print_layout22.CLF @@ -0,0 +1,7480 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +iVBORw0KGgoAAAANSUhEUgAAAG4AAADICAYAAAAJHtQIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAACJISURBVHhe7d0HlCxFFQZgzAkDZgwIIuaAGAAVAyIoipgVA/GBWcScAUUxgoigBEHFLKCoCIpPERFQgigq5ow559yer5i71hY9PT2zM/um3+v/nHt2Zrqnt6f/qltVN9VaVY9Ooieuo+iJ6yh64jqKnriOoieuo+iJ6yh64jqKnriOoieuo5gKcZ/73Oeqddddt/rNb34z+GQxfL7++utXf/7zn6tXvepV1S677FL94Ac/qB74wAcukn/84x+Db1TVBz/4weq2t73t4F1VnX766dVpp522IF/96lcHR6rq17/+dXWXu9yl+u1vfzv4pKq23HLL6l3vetfg3f/x7ne/O91DiP8DT33qU6vHPe5x1Z/+9Kf0fhg23njj6vDDDx+8uyT++Mc/Vs94xjPSb3XP17rWtdJn/s/b3va26r///e/gzKVhIuL8+Lvd7W4L4gFf7nKXW/QZ+eQnP5lu1ANE7AknnFA95jGPqbbYYovqpJNOqi51qUtVr3nNa6rnPe951VprrVX97W9/SyT47u1ud7tqnXXWSa8POOCA6hGPeER1jWtco7rjHe9Y3frWt6623XbbdC/f+ta30vcf9ahHVa997WsTqRqF63lwGg35+9//ns6/z33uU22//fbpOhrQcccdlz6/6KKLqnvc4x7V6173uvQePPD895ArXvGK1a1udatFnz396U8ffONibLXVVtWBBx5YvfGNb0yvkXjLW96yestb3jI4Y+mYiDg/Dlla3jC58Y1vnAj+z3/+Uz360Y+urnrVq1Y77rhjdfvb3z71vsMOOywRB9/5zncWiPvXv/5VnXzyyYmEq1zlKtVHP/rRdPzf//53tcEGGyQyHAviHvawh1WXucxlqk996lPVta997eqcc86pnvjEJ6br5XLkkUem8xF3/etfv7r61a9erbfeetUb3vCG1BCI+4rXn/nMZxLZ5e+6znWuk3pn/tnHPvaxdG1A5HWve910jatd7Wrpnm50oxule7j5zW9e3fnOdx6cuTRMTNwDHvCA6jnPeU71yEc+8hLih1EpiAO9yA846KCDqm222SYRecEFF6Qf43zX8hpx8OAHP7i6xS1ukQi5053ulHouwq585StXv/rVrxYR94tf/CI1hpvc5CbVk5/85OrUU0+trnCFK6Se99Of/jTJJptssog4xN773veu9t577+rrX/969YEPfCAJrUEDeO178Lvf/a662c1uljQGcU/XvOY1F97f7373S+cFfv7zn6fvfvjDH073e+6556aGEtf82c9+NjhzaZiIOL3CeHTooYemH//Sl740PfinPe1p6f0rX/nK1Fr1EkCcH+vYve51rwXi9DikvOMd71ggTg/13Xe+851JLe2zzz5JEPiCF7wg9SwqzfgUoJY0FJ/tvvvu1fHHH19997vfHRytqs0222wRcRqFh+k773//+9PngHAPugSCXvGKV6Te77Xf6/X973//pHIDe+yxR3WlK10pyeUvf/nq0pe+dHrtr/dxbKeddhp8Y3IsaXLykpe8JI1biPTgv/nNb1b//Oc/U6vLgTgPhZq4wQ1usIg4yFUlVaelUivOQ8pb3/rW1Eu0fg9qo402qn784x+n71K/1B7VbOy54Q1vWH35y19Oava8885L55TE6W3GHGOdz/fff//qmc98ZupNj33sY9Prv/71r+l8QJZx2TjrutSh1ze96U0XEfe9732v+vznP5+GEaqSljj77LOT6Jn+56c//elFjWpSTEycnqHlfuhDH1ogzphBn6+99tqDsy4G4qiyb3/726lX5qqSGnIsiNPbPvvZz1YXXnjhglzveter3vzmNy/67Ec/+lG6toezcuXKpC5NBvQM6ugJT3hCdc973jP1+jvc4Q4LxFHfb3rTm9KE4ilPeUpSy3rQihUrEnEPechD0uu//OUv6XwN0bi29dZbp55irL7vfe+bXvv9OXFIoxn0qjg/xHBgjHatI444YvCNyTExccYGD/uoo45aIO6ss85KJOXLAtN2N62lauF+rF7xwhe+MLVK52uRQZz3m2+++YIg1jHqJv/8Wc96Vrr+e97znvTw73rXu6Yxjvozk/3a175WHX300enB+75ZLHjoT3rSk6rtttsu9T7fDdSpSjNC41UIFfviF7944b1JTGCvvfaq9txzz9TzqGCTE8OD82ga4xwNoocvFRMRpxVbd3mAfohJh4dDVZb4/e9/n34c9XTIIYekh6WXaoXx0HJVmYOqQ5z1VZCNiBwvf/nLU49BnEakRf/yl78cHK3Sa9f+xje+ke6bynvQgx6UiEe0yUigJM44phfmEo0o/0wPg1ij+bvvvvum5QyVaz7g/o2908JExFF3xpUf/vCHC2rKD9KbvA4x5UeG9RKVYkZozbXDDjsklWMCouf6kQZvapIKtW5DqgdEpSGLenRNY5kJyHvf+97UG8xgP/7xjy8Q94lPfCJ9bganN+oBFsHGRw3kRS96UXXiiScmlarHa0Bxv8Zc46fX1O4f/vCHNF7m4v9TtflnX/nKVwZPpkrrQhrGZOwLX/hCuje/3/Nx7rQwEXE/+clPFqkIQKIW5WGFfP/730/TdWut6AVao89YF7RE03cPSs8BKs5kwgzS6xzGHYt545cFdw6TCiopgDyzT+MbkktQo3qwiUJ+zyHnn3/+4MzFoGnc8zBomBqb5wEaorHUBMu8YFqYeIzrsWrRE9dR9MR1FD1xHcVqQ5xJj6l3TMnHhbVoOeGaBtwPs55JyjQxNeJMnU3Bm2Sas6oSHjzLjVlk7pcbBjNUbhv3zU/GfGX5wW5qeWLWW0pYa4B1hZWkTqwFzaJJGADKWfBSMTXinv3sZ6cbbJLc/ZGDRSF3k+RizVQ3na+DNZj/g8RR4Bvj3yO+w47IrMbOyjTFXmqdRxgZnMOOGrCQ9/+sKUN4OpzHZMefyIoTxO26666Db04HUyMOKdYwTTKsJ3g4ftwwuexlL5uM2aMwLnHO3XnnnZOpLve+I84aMBCWoZK4xz/+8YN3F4ORwHmdIm4p8EDysISQ5z//+elHU4FsmKMwCXFnnHHG4JP/g021DXEsLdRriPfO6wRxrAiMtuNIPlYMA/NXGJiHqdgSQRwbZ96D6lAS5/8JefA9lpk2xDGzuQ5DMrI5mL03ns89ccYFNzaOhJ+sCR6ec/0Nh+woBHGET4yn3EOsQxAnzIAryl/vTSzaEOf8UJXstY7nvXfuiXNjIqNyMZvixqE6PLjy+KjZJY+373JgtpkhBoI4YQ1Ul9cs/maEuWMUgjhjHIdwiKChNsS5P8ZrvkczScf1Qh4BPsJOjnHIcbNuflxwpXjYvk84Q03b2yAf47hxGJ55HcwYS5SqMkdb4pzjc6T4yzCuwXZ2cmJ672Z5BcaB9ZM4Ew+b784Y4joIEYY3CjlxAY5ccSollkIcVe+9cAR/NTZ/efgFRXWWOA5WN3vssccOPmkGPx2VpRVbM/nhYJEsLtG1jEMeTBPqiBuGII4a5f+L2E1uniDOdfjULLadG8Q51/uY9dYRZ3x9/etf3w3ijF0ehBvVW0qPdgnn86HxDvsOlVbng4uWzYnZNOZNQpwebrEd8qUvfSmFNSCOyjeGOY/6DuuPnsRRyhHsWBDH5+Ya0fBg7onTUkUpu0kLWE7UUTAR4ES1wNZ6h41lQd5+++03+KQekxBXpyrdv4YHHLesN+JiQDyN/8NZeswxx6RrBHGMDBofRzNHrrgTwUmOzS1xxqC73/3uyXvdhrQAW2E8lCaM6r0wDnHiYzz48MznQBy1PQzWoTzceqTAIGOo/5urcvew4YYbps81TGEc08RUVaXFK9WwqqARiC1ZKgQQmSG2hVgWGqO07lgT6o2l+p8GZjI56TF79MR1FD1xHUVPXEfRE9dR9MR1FD1xHcXYxImN5/6YZeBPj9FoJI61QgJhLry9rAG8xeWxNhaLHtNBI3FCBpDURhhdV6XVpATzE3skKwgbp5hJFg7hd6sDWhEnFUqe2zBxnry05YasHwUEhBGUkHEjs0b6suxQvkE54uqfMFi77y6jkTi5ZnrSRz7ykRQeN0ykV0n3Ze1fTghUkiIs87ME4sSEyMsT88n2+Pa3vz2lMZ955plJtXcZrSYnfGwifYmepRfGe5L7n1YFxHmUQJzeximq6pDYTQRKvhTtnIchdBGtiOP6iN6khSOubeTVcmAYcRIK+dXcs9mw17SHHtd1tCLu4IMPXvAAB3ESGfihiEF/VWIYcXLHhVEIOJLey/Uihp/Dt+toRdxuu+224BEO4sSGhEyjisAkoO7UJNGo/BUfEojJiSR9KlII3cMf/vAUkrBGECecQHyjcg9U5jypSuESJhwhuQc6VCUgzrim2sKmm266ZhBnwS1WkMrR69TymLcxrg5mjVHlQIgegwFYQrQJlZh3NBJnbBN7IbJYkIw1UEQIGzfU5colryHZY7ZoJE4BUbWycouIYFDBqiKa1CsJcd404j16tEOryUmP+UNPXEfRE9dR9MR1FD1xLSHy2TJiHCkDYQXIKntYSpSJFBndFj1xLRFZQ+OI5JAcKvJFeV8S5ynbKJmFFUplwjboiWsJuRFMbKXwBfI+1B3jxwwIT+dSCncSY7dal+p3MtnxXqjCLhdBLxxVImS1Jk5ihmqu0/IGWKdar+YirUpPKT8vCxQwxzG7SUzhhZeGLOWZBYqTV8/j/2S6kyTCldaEqRCnFalHnNsKS1i4O6cpyMgDNjYMg1brGnlhzyZQQSw/ClhPA7wjHrB8PgW1iexZRVfjvV7jnLqiomy9PBmO81ZEBhJvPJMi9akXCsYaVdpqScTx0ank6uG4GX8ZcfMq6Cz2EhIdJzzqsR9BQHJjOGgJo3b+sLVKuj/+D1FKQybMMFA5HqjKQQqKNskXv/jFwbeaEcSxGgWQyBQYUDLDOTlxLE+M3py4jlGNbL75Pfh9zImIc56cPJm6wzAxcXoOt4kbUQ5JYA4d7n1s5iDtimpwo4zV0mupFkZryX9gRqUVIpR7SC+hKqifaJF+mOuKHeH/k8ork1R54LoMVQ/K2KE3qLAeEvWT889I25JTQZxGJseb2GRC1mq8d9/OyYlTSthnogVUwo2dPzQs/981PCPl9419VKrjTfVdJiZOLpqL+8cRlsfy7sFE+Xo62zlyqwORN41EkPDnvaCfQDQARQDAhkJCEPIEfkZu59SNX3xwjqm/nMNEwk4jkyKIs3OIWtBEI0REvJfc6ZycOI3cs4iSHca//P5ksYa/EzQ85zdhYuLoYOuOfEzyYKkz6gP0IDeYbzSkuLTPbAABsQ9O7CoFdhDx2TAHrf8ta1QjKTNK+Q+1WGOIHq9RhSBOr80/a+uecm48cI0svu+36t3xXjigc6zZvA/4TQp4E993Do+K93ow8uM4GTUuT2VyArnqpMpAnRHvc+KiFxqMwYDufU5c9EJehxzGwnCKmpXl38nhAUdBtFGS7zvQhHzdNY7EolqKNYKIqDTHqErvqXDDQxwno/Ldp0Kc5ProOVpfzBybiIu94ZqI47HOITzB58Q+Bk2lpSwF4hrqURIPzP+N9+SUU04ZfKMZpul2vnJNe+rk18glSh/yYXpfFyRM7TsnVH+pKjU8yf9NWDJxSLN7hhspN86bNnHUoHHUAI4ELXZYoYAgzjouMK0xLp9VlqibVeZQUkPveuhDH7ow5S+JM9EzYYsJXB2WRJx/bAcnN2pCUK49YjZYR5zvAXXofR1x+Y5VJcSTOMePzKFOif9xzKCUhet7TywNBA3F+1xUzxuFJuJM9y0LouJfTpyx1mw5lgMmN7EvAbCaaIjWb84zfptlN2FJxMUkwmyqDlEaylYogRi8Y2sUs8v8PTjfZ7FFGJXIDJTDWOecGE8DNjXy+bjSZl+3JuIQZaJCNKq86JtJip5uaaTaYFkQDunqvcT3Na58e7Q6TEycBa7ubDqs9BEVEEK3AxORSQSxyDV115qsWyIWk7XFGsa2Yywi4jWVVbLei3WcH2K2al8613QtIe+uU1pRLP7dW524D8uIumNtZpfOcW6+6VNbUPNtZ7BtMDFxMa2vk3wbMiTmx1gHXv3qVw+OXgzqIT8HaXlWDfVHdcQxJBonchXcBksd4+YJExPHYiGYqE7KMktmT8giw+yM1oOOU311Nk89Te0s5whWmiRpoyeuozD2hMWm61ijiFud0BPXUfTEdRQ9cR1FT1xH0RPXUfTETQB5eW1sm7NET9yY4A3htYj4R7ZHdtbcAKGOM0NBHp43bfTEdRQ9cR1FT1xH0RPXUfTEdRTLTpwYETOzpYIzcxrX6SqWnThhedzziqIJBZgUIoaFsdmzjUNVON6ahGUljkM1ym0QsYrCEcaFveHyPAKCxDKWY3XGshJnI6H8YRO1I8eFxW95HUkSaxKWjTihBuJF8od9m9vcZmTgZwk5CwKF8uuIbF7TsGzExb5yuch1Cxx11FGpaOkodRfhfbnIgBEe1yQycvJY/q5jpsRFgKyQamF8+cMWqh3HkRWBpLJ/BAMJIi0hSlrAT36dcUTh0UlC6+YRMyNO75HvpfhZGaQqry2P5IqKfLkIyx4WGb0UicyarmMmxCktIfjUg4q/uUgjCuQbteeiQkEOM1LJjOV5k4iG0nVMnTiTDWu1ugdGTCTyDJbY8TcXu/PnueIW2tZr+TlSk6i+Jokg2lyEetft0tg1TJ04GSZCyMsHRqzh8kRIQbUybvJzxNeXM81IBMxFJHNTmpVrr7feeou+43+t6jLE08JMVKVo5bpJhLj9fNySLJIf14s4InNIfpAjkJ8XIjtmWDz+y172skucX6YWdxkzm5yotlD3wD1QUMBFcn1+rKyqc9ppp13inFLqxisNp/yeSg6rg4oMzIw4kD6kF+UPkKlKDkA5ZlGR+RqO279caJNIww2h/nKVKStGpZ/8HCKLaHXCTIkDC9+SvFKMfStXrhx8o1pIoyrPQ4jywZYT+ecmHIrXmNCY2OTHyCRmtXnHzImDUesvud05LJIl1efnyKuLtGEL9PwYsRVLpPHmogHIaVvdsCzE6Qk2aigfKqEi2R9N+eXEqVJ31llnpfWdaCrn8CLk6pBVxcSkvFadNBV56TKWhTgw9jBn5Q+VilQPhF9OfnZ8ruwGIG/XXXdNOdolLDvq1GmIsVTJidL6srpg2YizfitnmbkFJSoFhTQVdAvYE04acv69ECUtVmcsC3GySdWxyh8slZhbR0xi8uNKRzVBrrdJR/6dXDQS9cPGdRt1BTMhLg9JoKrsaZM/VGsstUqs9YhqevLAc++4ycgw+K4tY/JrDhNlCJuq7HUVMyGOwxQ5IXUPtI2cf/75gyteDM7YKNBWSpRVqjtGVG5A+DQrH6xKzIQ45ZrqHt64opYJ8OcJeyg96CEW5apA6L3KbtSdE2ItqD4L9d0WaqCYDLWVUQkh8gqU0FpKI5oJcXaLqnto44r6jwgrnbC5KKWUT2T0yqin1SQW8ZYbUVqxCcxlddcYJqN2sGSjDS8Fg8IkySEzIU5po7of5CGLMyk/t6A2DqmIWuebqxNqURhDnafcuCqLRuRX3XdzaSo7FZgGcYwQljzETJhqj4p8nte4mAlxesCee+6ZqrmW6sCarPyheX3+KCzd5DRVc1JL5bC1ge0w945J0k477TR07ON+aoMgrnTu5jDLjevWEed4pGGtWLGi2nDDDedPVTZhFHGnn356qkvph6qwl59n/LJs8IMt6KOomcW2anTGwjpYQ26//faXsJmOWnIEpkEc65DCcES9FZEBxjnVcycxyc2MOIE9Yh09NKUKA03E6SGs+GaOHoQKRY5TeQrL5CUVlVgsr2PywueWn5eDK2m77bZL51JTw0omlgjiLGv8pjoR2Bv3UUechqbsL5uqJYr/zx5rDPdbx8XMiNP644dYEghZECY3jDhZnLllxbhnrEJ8OY5RwfmarxRlcv2fYeYuAUx5aOAoTHtyEtXyloJlIY5QU1FLMv+cIE5IQa7KGKWbwMlaqtJSdtlll6mEpQdxHrYxuE6irDGpI06wEy1hgmZ8M74qUDdp4sqyEWe2CE2qMjdCUyWjfpSgI2NeU6ylIp6xP+qkmMYYZzdkM0sEUqtmlvZjcG2F58adqMyMOHUn44cQYws0EWcGmH9uUd0G7JFRE7oUE5dTTz11cOZkmAZxeps4U5MovS2qtFvSGEbGreIwM+JKo/HOO++cPm8iThh6/nlT7eM6KPleRnaVTtpJEMRZhlhz1Uns1kzqiNO4jOM8IiZguTbJje1tMTPiPPT4IUR8PzQRZwzMP7fdy7gwgxWt7PvGk7oq5OOAJWZYlNkwGTU5mQZmRlzpETjiiCPS503EmUjknzNLRXlfMDYYBy0XDj/88KHrNtdRblge3VIhYizux28S01InuZpvIs6azbJEEXBLFypUAz366KMHZ7TDTIiju0O9hFxwwQXpWBNxpu82y8uPxd7izGG5l5zoCXIMLKRdY9j0fykQTuF/seQ0TSCaxjj7FYisFpHmnk2mzCydy4hg0mKWPA5mQhyS4kcQNxzT8ibioOyp1jwQmyw0iZmruE3rxWnBuOba+b4AdWgizm9W3p9bieo16UJcrFWZ7vTaOrvrMMyEuDKKOB+rRhEXeXTWTPvuu28KJVejv8nXVorFuX1rqKNJ10mgAUZoxKjC3aNmlQF7xVkGUPVAFQvbsG496aST0mdtMBPiSp9YbhMcRZwCZ9RGPtMywbChhP0I6rwLTcImaLePcddyzGYRWMuUxs9WIjetuef4n03EIcc95Q3KLJN5bxxVPxPikGPrlUiwz6uijyJuFPw43geTHWqsbU9klbFlTJsgJP8jdhIh0TtKRHQaY0F+H02q2njHJLfU8XgmxAVsJFSWi18qcSVM/83IeN1L63+djNp7FERFxy7EVFjTkkJsTH79MrGlBNur82LsnhQzJa4OdcRx40wDap1Qy8PSvHgZbA/aBpYhcvdGhTiwymighOF6lOnKEGA5w/DO1URzjBNGEZgL4oapoklh/NCiLRXy/yPWYx7AvMV8ZgLmviYprrPsxIlcZqfLZRwXyzigspjebJOmEtG8xVi6v0m94MtO3KpC7sxdHbDGELe6oSeuo+iJ6yh64jqKnriOoieuo+iJ6yh64jqKnriOoieuo+iJ6yh64jqKuSROzP+2226b4vG5+k888cTkw5KqFFDlNUQiv9iUeB+OTG4cjstTTjklBaKG+CwHN9Bmm222kGe3VO/0cmAuiRPoI6pLHKVkECm3PNdCIMJ3JdFCyWAi5C1ekwjp22GHHVJElVxy7iNOViEVBx98cDoOXD283eJANBSpUCtWrBgcnV/MJXFC4YQiCBY9/vjjUw/kMfY3AkdFR6k6RERixWv1LUGEmKR+AbSIE7on8UKEVRAnNkTwEVJFkknIEOgUMaDzjLkkTnSVh0w9qngA66yzTvoboD49dL1IsKq/CIhKDRIJJVhIiESi4yFKRVG7eq9aXxqHbWOkbZVqdF4xtz1OxQVqTRK+qCjqEFERZDOKOKAqZfGIrNLzgjgVhyK0XS0VBItIE5SqUA6RbTTPmEvi5EkfeOCBSTVGgdC8x4n4lQYcabziHuO15HjHXUO0sIAcEx2qF0F6lbBv2H///VMDkUkkdM/khIjDtGnTPGPuiBNi4EHvuOOOKUVKMRmTDeOVv+Ii9RI1SkL0xvy9eH/nmHj4vs9MOExoFAcwjkH0OhFaJkOuT0Ri98SNCTNIE4/DDjssTSRUQDfehZiwlCjHvxyWB6KjFc0xsVHSPlK+AoiTlBGqVCxoT1yPmaAnrqPoiesoeuI6ip64jqInrqOYe+LaJOAzX+XlhHNEdk7UhhwGdspJylasKswlcR6gbE8Pk/XDBhLe5xUYrMtYV4CZy3pPHlvukpECJeED5Fnvtttu6XUJx9gqWV38ny7swTOXxEl0ZPFnowyR2yaxP8D/xsqPLGYrOdhMWHLaAjZZUtFARVZ1LVV08JrElpsW+6rZsapoDBbzSl/MO+aWOD1N8n2IwqVBXFj+zzzzzESOjSNYVGSPrr322snCLydbei8fnoo+7JORI+c9cxgHq7IeiOIlOO6445JhW0bqvGNuidPL9JYQlv68x3HFMGExV3norPkqGiBDaSi2SbUhkSyZnoM0nK8BvY7biGFZHjeHalc2v51b4hQsUxckRMhBTpzxjiGZQZhtkSGZW2f33XcfnHGxW8c46VqIVWvEeKi4p3EUqVw+xjeuIcZt17ERhV4+z5hb4nispRiHKHKWE8fTbbJhXDr55JPTZ2agYkcCiEMmZyqnrLGQ10FohMrjSOOBUFA7L9bGldQbmScA4iTgK0Mf4mHnxFF9xjjEcYCalPCj5cQptWi80ju5czhVqcaygg91y1/nGsRY2RM3ARSTMWGg3kJUJ9hnn33ScSrOuAfCELiAnPO+971v0XadelwUgrG1mdqQdVBQgDsn/pceGkXj5hVzSVyP0eiJ6yh64jqKnriOoieuo+iJ6yh64jqKnriOYiziFAzLazeqQi5ucVwojG0RPU9Q0U78ZR1ETbNttt1ECTyXvILstNGKODlqDLT2GbXDYRSFVrYvvMqsGirUlcKAW4KRV4g4nHDCCdXKlSvTayas2HDd5xylhBWjbZ3JcaDxcAER0c+8CfGeBJjXuIG4gDhd+fXYQCWnAN+g+2TztK0YI7Xj4egNsMg4novrTYJWxNn7RYi2Wv7ANcK7jLio/c/qzjjLLqhKqv1Kvc6jjP0w1ndVVT0kpXnF8sfNS8ZglwR2Rm4WDcJrjlQ2zGmCu4efzv8ohZsHJJ3w9/EccO5y3toMQ3FQDljQG907z4T9x+225XlpiDn4EGkb3yV2CCnPaYuRxPFPSSpkvN1iiy1SsuEw4jxo5/KlSaLwOh6AFqy3Eq1RLptkQtfzGZJL4ni0AxylbI/TBA8Bt5D7zMX/jS1lwN43vOZ6nMbDycuVFMQxfguP97kazXITbBWjYYZNFVRSzw3nhNtpEowkLmLvN9poo9Q7ZIgOI4532bnK1dvz1Gt7DgBPNHVEXXgAfrj3IfYlaCJOjhvVO23wFLhXvd69uudyBxHaQUxLEFf2ODEqeqKtYahVPW/LLbdMewU5xkNhA/th8tznPjddZxy0UpXGGL0IIazvw4jz0Fng3YxQA6/tKAyqwEqb8l4LDqelVhpoIs71PZhpw0N1P9SddC27KJK8mqzedOyxxy4Qx1dIawRxtItGZYhwj455NnqeHu3aNBe1KF/d61zy/9UWI4nTEjfZZJOkj411JiN+hNTbnDik2kFfrIcWalM7r6VHgbRdYQVaIpWLNCJ7JlAS571wBJMXatXOGNPGkUcemZIe7XljPPaQScAY52FraI7z/1F/JiRBHJio7LHHHkkzIdL9U685NAiNIH67mtExbxgXI4mjSqTcSk1CXABJ9DjixDRKiaI+gFPSzlQ2WQhVGUCccU3AjpllTpxZmHr/wLvtgZLNN998JqEEGp+NAY2xslvl2cUmRzanMHPWI43vJls0hgR//ruIDgu0Ic6YKnxQD+NzdC2xM5OglaoEzsqYwgM1aPbFUWmAzVuOCt9+9IoVK1JYXA7633FFrqUFUy+rCu5RLCVYcyHDfYWA3yn6CzRgKltjRoxxL2DyJIkyvisdOVf1ORQHsKTQA0tvfFu0Jq7HfKEnrqPoiesoeuI6ip64jqInrqPoiesoeuI6iar6HxEwx6jL+TZIAAAAAElFTkSuQmCC + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +14 + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +48 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/Debug/net461/print_layout47.CLF b/bin/Debug/net461/print_layout47.CLF new file mode 100644 index 0000000..2f83514 --- /dev/null +++ b/bin/Debug/net461/print_layout47.CLF @@ -0,0 +1,7480 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +iVBORw0KGgoAAAANSUhEUgAAAG4AAADICAYAAAAJHtQIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAACJISURBVHhe7d0HlCxFFQZgzAkDZgwIIuaAGAAVAyIoipgVA/GBWcScAUUxgoigBEHFLKCoCIpPERFQgigq5ow559yer5i71hY9PT2zM/um3+v/nHt2Zrqnt6f/qltVN9VaVY9Ooieuo+iJ6yh64jqKnriOoieuo+iJ6yh64jqKnriOoieuo5gKcZ/73Oeqddddt/rNb34z+GQxfL7++utXf/7zn6tXvepV1S677FL94Ac/qB74wAcukn/84x+Db1TVBz/4weq2t73t4F1VnX766dVpp522IF/96lcHR6rq17/+dXWXu9yl+u1vfzv4pKq23HLL6l3vetfg3f/x7ne/O91DiP8DT33qU6vHPe5x1Z/+9Kf0fhg23njj6vDDDx+8uyT++Mc/Vs94xjPSb3XP17rWtdJn/s/b3va26r///e/gzKVhIuL8+Lvd7W4L4gFf7nKXW/QZ+eQnP5lu1ANE7AknnFA95jGPqbbYYovqpJNOqi51qUtVr3nNa6rnPe951VprrVX97W9/SyT47u1ud7tqnXXWSa8POOCA6hGPeER1jWtco7rjHe9Y3frWt6623XbbdC/f+ta30vcf9ahHVa997WsTqRqF63lwGg35+9//ns6/z33uU22//fbpOhrQcccdlz6/6KKLqnvc4x7V6173uvQePPD895ArXvGK1a1udatFnz396U8ffONibLXVVtWBBx5YvfGNb0yvkXjLW96yestb3jI4Y+mYiDg/Dlla3jC58Y1vnAj+z3/+Uz360Y+urnrVq1Y77rhjdfvb3z71vsMOOywRB9/5zncWiPvXv/5VnXzyyYmEq1zlKtVHP/rRdPzf//53tcEGGyQyHAviHvawh1WXucxlqk996lPVta997eqcc86pnvjEJ6br5XLkkUem8xF3/etfv7r61a9erbfeetUb3vCG1BCI+4rXn/nMZxLZ5e+6znWuk3pn/tnHPvaxdG1A5HWve910jatd7Wrpnm50oxule7j5zW9e3fnOdx6cuTRMTNwDHvCA6jnPeU71yEc+8hLih1EpiAO9yA846KCDqm222SYRecEFF6Qf43zX8hpx8OAHP7i6xS1ukQi5053ulHouwq585StXv/rVrxYR94tf/CI1hpvc5CbVk5/85OrUU0+trnCFK6Se99Of/jTJJptssog4xN773veu9t577+rrX/969YEPfCAJrUEDeO178Lvf/a662c1uljQGcU/XvOY1F97f7373S+cFfv7zn6fvfvjDH073e+6556aGEtf82c9+NjhzaZiIOL3CeHTooYemH//Sl740PfinPe1p6f0rX/nK1Fr1EkCcH+vYve51rwXi9DikvOMd71ggTg/13Xe+851JLe2zzz5JEPiCF7wg9SwqzfgUoJY0FJ/tvvvu1fHHH19997vfHRytqs0222wRcRqFh+k773//+9PngHAPugSCXvGKV6Te77Xf6/X973//pHIDe+yxR3WlK10pyeUvf/nq0pe+dHrtr/dxbKeddhp8Y3IsaXLykpe8JI1biPTgv/nNb1b//Oc/U6vLgTgPhZq4wQ1usIg4yFUlVaelUivOQ8pb3/rW1Eu0fg9qo402qn784x+n71K/1B7VbOy54Q1vWH35y19Oava8885L55TE6W3GHGOdz/fff//qmc98ZupNj33sY9Prv/71r+l8QJZx2TjrutSh1ze96U0XEfe9732v+vznP5+GEaqSljj77LOT6Jn+56c//elFjWpSTEycnqHlfuhDH1ogzphBn6+99tqDsy4G4qiyb3/726lX5qqSGnIsiNPbPvvZz1YXXnjhglzveter3vzmNy/67Ec/+lG6toezcuXKpC5NBvQM6ugJT3hCdc973jP1+jvc4Q4LxFHfb3rTm9KE4ilPeUpSy3rQihUrEnEPechD0uu//OUv6XwN0bi29dZbp55irL7vfe+bXvv9OXFIoxn0qjg/xHBgjHatI444YvCNyTExccYGD/uoo45aIO6ss85KJOXLAtN2N62lauF+rF7xwhe+MLVK52uRQZz3m2+++YIg1jHqJv/8Wc96Vrr+e97znvTw73rXu6Yxjvozk/3a175WHX300enB+75ZLHjoT3rSk6rtttsu9T7fDdSpSjNC41UIFfviF7944b1JTGCvvfaq9txzz9TzqGCTE8OD82ga4xwNoocvFRMRpxVbd3mAfohJh4dDVZb4/e9/n34c9XTIIYekh6WXaoXx0HJVmYOqQ5z1VZCNiBwvf/nLU49BnEakRf/yl78cHK3Sa9f+xje+ke6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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +14 + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +48 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/Debug/net461/print_layout5.CLF b/bin/Debug/net461/print_layout5.CLF new file mode 100644 index 0000000..2f83514 --- /dev/null +++ b/bin/Debug/net461/print_layout5.CLF @@ -0,0 +1,7480 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +iVBORw0KGgoAAAANSUhEUgAAAG4AAADICAYAAAAJHtQIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAACJISURBVHhe7d0HlCxFFQZgzAkDZgwIIuaAGAAVAyIoipgVA/GBWcScAUUxgoigBEHFLKCoCIpPERFQgigq5ow559yer5i71hY9PT2zM/um3+v/nHt2Zrqnt6f/qltVN9VaVY9Ooieuo+iJ6yh64jqKnriOoieuo+iJ6yh64jqKnriOoieuo5gKcZ/73Oeqddddt/rNb34z+GQxfL7++utXf/7zn6tXvepV1S677FL94Ac/qB74wAcukn/84x+Db1TVBz/4weq2t73t4F1VnX766dVpp522IF/96lcHR6rq17/+dXWXu9yl+u1vfzv4pKq23HLL6l3vetfg3f/x7ne/O91DiP8DT33qU6vHPe5x1Z/+9Kf0fhg23njj6vDDDx+8uyT++Mc/Vs94xjPSb3XP17rWtdJn/s/b3va26r///e/gzKVhIuL8+Lvd7W4L4gFf7nKXW/QZ+eQnP5lu1ANE7AknnFA95jGPqbbYYovqpJNOqi51qUtVr3nNa6rnPe951VprrVX97W9/SyT47u1ud7tqnXXWSa8POOCA6hGPeER1jWtco7rjHe9Y3frWt6623XbbdC/f+ta30vcf9ahHVa997WsTqRqF63lwGg35+9//ns6/z33uU22//fbpOhrQcccdlz6/6KKLqnvc4x7V6173uvQePPD895ArXvGK1a1udatFnz396U8ffONibLXVVtWBBx5YvfGNb0yvkXjLW96yestb3jI4Y+mYiDg/Dlla3jC58Y1vnAj+z3/+Uz360Y+urnrVq1Y77rhjdfvb3z71vsMOOywRB9/5zncWiPvXv/5VnXzyyYmEq1zlKtVHP/rRdPzf//53tcEGGyQyHAviHvawh1WXucxlqk996lPVta997eqcc86pnvjEJ6br5XLkkUem8xF3/etfv7r61a9erbfeetUb3vCG1BCI+4rXn/nMZxLZ5e+6znWuk3pn/tnHPvaxdG1A5HWve910jatd7Wrpnm50oxule7j5zW9e3fnOdx6cuTRMTNwDHvCA6jnPeU71yEc+8hLih1EpiAO9yA846KCDqm222SYRecEFF6Qf43zX8hpx8OAHP7i6xS1ukQi5053ulHouwq585StXv/rVrxYR94tf/CI1hpvc5CbVk5/85OrUU0+trnCFK6Se99Of/jTJJptssog4xN773veu9t577+rrX/969YEPfCAJrUEDeO178Lvf/a662c1uljQGcU/XvOY1F97f7373S+cFfv7zn6fvfvjDH073e+6556aGEtf82c9+NjhzaZiIOL3CeHTooYemH//Sl740PfinPe1p6f0rX/nK1Fr1EkCcH+vYve51rwXi9DikvOMd71ggTg/13Xe+851JLe2zzz5JEPiCF7wg9SwqzfgUoJY0FJ/tvvvu1fHHH19997vfHRytqs0222wRcRqFh+k773//+9PngHAPugSCXvGKV6Te77Xf6/X973//pHIDe+yxR3WlK10pyeUvf/nq0pe+dHrtr/dxbKeddhp8Y3IsaXLykpe8JI1biPTgv/nNb1b//Oc/U6vLgTgPhZq4wQ1usIg4yFUlVaelUivOQ8pb3/rW1Eu0fg9qo402qn784x+n71K/1B7VbOy54Q1vWH35y19Oava8885L55TE6W3GHGOdz/fff//qmc98ZupNj33sY9Prv/71r+l8QJZx2TjrutSh1ze96U0XEfe9732v+vznP5+GEaqSljj77LOT6Jn+56c//elFjWpSTEycnqHlfuhDH1ogzphBn6+99tqDsy4G4qiyb3/726lX5qqSGnIsiNPbPvvZz1YXXnjhglzveter3vzmNy/67Ec/+lG6toezcuXKpC5NBvQM6ugJT3hCdc973jP1+jvc4Q4LxFHfb3rTm9KE4ilPeUpSy3rQihUrEnEPechD0uu//OUv6XwN0bi29dZbp55irL7vfe+bXvv9OXFIoxn0qjg/xHBgjHatI444YvCNyTExccYGD/uoo45aIO6ss85KJOXLAtN2N62lauF+rF7xwhe+MLVK52uRQZz3m2+++YIg1jHqJv/8Wc96Vrr+e97znvTw73rXu6Yxjvozk/3a175WHX300enB+75ZLHjoT3rSk6rtttsu9T7fDdSpSjNC41UIFfviF7944b1JTGCvvfaq9txzz9TzqGCTE8OD82ga4xwNoocvFRMRpxVbd3mAfohJh4dDVZb4/e9/n34c9XTIIYekh6WXaoXx0HJVmYOqQ5z1VZCNiBwvf/nLU49BnEakRf/yl78cHK3Sa9f+xje+ke6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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +14 + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +48 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/Debug/net461/shinki_btn.png b/bin/Debug/net461/shinki_btn.png new file mode 100644 index 0000000..a78e3c7 Binary files /dev/null and b/bin/Debug/net461/shinki_btn.png differ diff --git a/bin/Debug/net461/stdole.dll b/bin/Debug/net461/stdole.dll new file mode 100644 index 0000000..9673c81 Binary files /dev/null and b/bin/Debug/net461/stdole.dll differ diff --git a/bin/Debug/net461/名称未設定.CLF b/bin/Debug/net461/名称未設定.CLF new file mode 100644 index 0000000..0f2fce0 --- /dev/null +++ b/bin/Debug/net461/名称未設定.CLF @@ -0,0 +1,3791 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>100.33 +<_height>152.4 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +false + + + +iVBORw0KGgoAAAANSUhEUgAAAMgAAABuCAYAAABiHVxtAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAABmWSURBVHhe7d0H3LbVHAfwMioiyigqouzRsFKRSqKQFZKQtlFmUkbIiKiUCE2bIg0lWZEGDWSWyEqRFcq8fL7nvf9v5znvde/7Ge/znN/n8/88931d1z2e+zq/c/77LNNUVFR0RSVIRUUPVIJUVPRAJUhFRQ9UglRU9EAlSEVFD1SCVFT0QCVIxbzHv//97+Y///lP59lwqASpmPd4yUte0jz/+c9PRCnx3//+t9ljjz0WS3lNJUjFvMdBBx3ULLPMMs1WW23VnHfeeZ2ji2BlWX/99Zv73//+6Zp//vOfnTOLUAlSsSDwla98pXnQgx7U3OxmN2vWWGON5nGPe1zz+9//vrnzne/cXHjhhc1Pf/rTSpCKhYvPf/7zzYorrtg897nPbV7/+tc3W265ZSLDbW5zm+b888+vBKlYuPjzn//c3OEOd0jEKFEJUrHgceyxx6bBb9V4ylOeMkVucYtbTCHIox71qOZDH/pQ55WVIBULAG984xub1VZbrXnCE56QZNlll2022WST9PjmN7/5FIIw5KljgUqQBYJf/vKXzYte9KLmmGOOaXV3wsc+9rF03XzDk5/85Ga77bbrPGuSof69730vPa4qVkXCxRdfnAZAzJI8ODmuv/76dI6u/uUvf7lzdH5giy22qASp6I0gyAMf+MA0QNZee+3mkksu6Zxtml/84hfNnnvumQbMmmuu2XWVmSk861nPal73utd1no2HXgS5/e1v31xwwQWVIAsdQZD3vOc9aYVAhFVWWWXxQAkcccQR6boyoDbTuNOd7tQ8/vGP7zwbDyVBrBh///vf02OR9Fe+8pXNC1/4wkqQhYycIIAk4gKiyFdddVU6Bscff3y67qyzzuocmT5897vfTR6mNuQE+cQnPtHc+973Tv/DKHjpS1/a7Lrrrp1nU4EgG264YbPTTjslEv3rX//qnFmESpAFgpIgwGB3jN0hHeOTn/xks+6666Zjv/rVrzpXTR/ue9/7pqj2z3/+886Rm5AT5P3vf3/6Tueee256PgrKgT8oKkEWCNoIAocffnhaSZwL2WWXXTpnpxfvete70uettdZazUUXXdQ5ugiTJMiHP/zhtFrBW9/61mRvlfjsZz/bfOELX+g8uwmVIAsEZulnP/vZzemnn945chN++MMfJhew8+9973tHnm1HwV577ZUG/61udavkjqVOnXzyyWlVmxRB5F1ZqX784x8nu0tcxOfk8pjHPKbZeuut0+M//vGPnVdWggyEv/zlL82NN97YeTYa/va3vzU/+MEPOs9643//+19Sd8b9zKUBbIDDDjsseZOQIJdJEYRB/tjHPrbZYIMNmpVWWil58FZYYYXmbne7W3Pb2962uctd7tKsvPLKzR3veMd07kc/+lHnlZUgA2H77bdPSz7VQ5QVYQaB5dys5LXUGGkMgyBmVcbjr3/9687R8YF4jO8XvOAFydYwWEJ8llWkVHVmCv/4xz/SpLDffvulOM0tb3nLidogJqhvfvObaQU555xzUmav1cJnHHzwwcmL9fKXv3yJwqpKkD6gfsSMlgvvD6/Hq171quYDH/hAUgtC3Ax4xCMeMeU1VIheQLzddtttymu4Y93QSUAma/7e3eTAAw/svGL2MEkbxMRwwgknpAnOSvG2t72tufvd757cu1YVHiwrjPvj/kluDFSC9MHGG2+8xADqJXJ7witjoOXnehHkr3/9a/PoRz96yvUh73jHOzpXjY6vfvWrKUAmJnDKKackNaIUqSbcqdSPP/3pT51Xzg4mSRBZAwjxvve9r7nd7W6X7JF11llnilhFqXlsodydXAnSA9dcc02z0UYbLTFge4kCnMAZZ5wx5dzmm2/eOTMV0jyoX/m1Idtss02aAccF49v7iRr3Ao+P62YiDtILOUFOOumkNPGEJ2pYUKG8l4nLBJFnEATe8pa3NIccckgy0PMsgkqQPmBE/va3v01qFFvkPve5T7P88stPGcS55CQoCUKe+cxnJkIEeFbMaOV1ITJPpWlfccUVnVeMBiqG9/N/dAMi0sNdp8puNpETBMoI9zDgyuYVQ7L11lsv3SOBwze84Q1LiEBpjkqQEWCWsQx/9KMfTTPz3nvvnWZ6xBFwC4hW54M95B73uEcagJ/+9KeT0dh2TSmMVroyQo2Ca6+9trnrXe+a6h+siqLLpTz4wQ9On8WTM9u5WL7LDjvs0Hk2PqiMnACvec1rEvke8pCHpHwvuWmrr756eow8XMI5KkEmiKuvvnqKazYyZNuEnt92XKLg7rvv3tz61rduPY+EOnR87Wtf63zK4KBePexhD2t93xA21/e///3OK+YHBCS/+MUvdp41SZ1l1wDVSuEUCKJWggwARvHb3/72seWAAw5oHYTdBDlklYIVyozWdh1hcPPADNvviRplFTrttNOa1772tc2+++6bBonnl1122cj9o+YyTEZWed5AYnXiwfKYZwthPNYeqBJkABh8bYNyXKEmWd7bzq266qpLxFduuOGG5tBDD10iFSTkZS97WefK4eG9r7vuusUyk9HzHGITk4z1tOGJT3xi6+/XJpUgA2C6CMLe+N3vfpc8KW3nxU3a0sy9hnGPYHEtW6LNG9MLgnEf/OAHU1oFQuafbfUS1OQxmqlVhJeQPfa85z2vc2RJsIU4KJB4VEQWwyCSZzZDJUgLppMgYLaWD9RmZxj4jHGkKKGOIQzppz/96Z2jg8PsWH5em4jkzwR4psRdeJdOPfXUztGpkFXsO1EHZwOVIC0wSN2U5ZZbLgWOxpF4LxIECVAvDJA4n4vX8t9HYU+AB81q8pOf/KRzZDBIkfG+oumKpKhYpQjEMeJNEFzbMwG6P1c2D1vbpDAJguy8887JzQ1a/3z84x9vTjzxxObNb35zssm+9KUvpVp8k1ZNNRkAjNjvfOc7Yy3rgRe/+MWLBz2y/OxnP0vH/WUUG5hcrMgY1+Ui8Pjud797cfrKqBg0UDiTBVOBV7/61ekzH/CAByxhC02CIPe73/0W98SSzSDV5J3vfGdyglDhvL8VzN9aUThNMKOb8Y877rjOkUWImx/ClSit3ArBpRr4xje+0XU1IQJd3/rWtzpXDw8xF+9j1uwGs+eOO+6YritLcacTBinXtc99xjOeMSXNZRIEUWsvOROCIGeffXayuyKNhQfLX3GSvF6kEmQEyO2hHiGEYJZAU9gtquRyHHXUUel4m3jNpZde2rlyUT4W9yOdvLxWkl2pbg0DCXgCgKHOPOlJT1pCIuVcIuZMu3t9P5/r860kYkowCYK4V35rk1AQxPvnq7ZVxl+Bw1x9rQQZEBLdNBtrq1sohTEtbVtiXNv5XNoSEdkC5WoiXjEuzIyM+25BSKua1e03v/lN5xUzC8G8+C7qNBR3TYIg0oXcu3ve854pgo4goJLx61//enr/qmKNCapR3LxeYvb/zGc+k9Lg286HWPI1LHBDZNGWddlWExF172ewSBWZFBj67B+rm9ysj3zkI+l52StrJoGUMYtTs/zfZn15U46NQxDwvwmsei8ubqqUvDPpQn4DLnMu59IGqgQZEAaoGTYGeC6WarlYBlxEwiMrNheqGKPdUh8ZutLQEcDs1lYrzbiUbDcJ+Ezem26p7Dw5bd9huoEcsT8HFzebxO+i0i9+OzbKODDwn/a0p6X3evjDH54cI4K2PFoBKrPfJ0clyBB46lOfmjxRBrRgHzVKQqIAXICrUmVebkdIc6AHl7OTQaAgKq4zg1nypwtWJJ/TrdUO1cP3sZdGiT/84Q/JsOV16waBNlWUw9SScCez23wvLmbqUMBnicmo1TCpjAMVgzyCPiNUrH322SfdJ5Mbokg5KZ0YlSBDwODvp58bIDHgQ44++ujO2ZuALG32jFVKXtSkwStFZWHbhAvXisJYjRQXteE+30Aqyazjh+9XRppzhIs4747eD6L6XmPg5s0Scowbk6E++gzZvGGkIzHV9lOf+lSz2WabpebWfp9KkBFBRxUb6QclumVMQ8VaWz2DG9Yt/kFHbnvNqBAH4cHK4yCRbWxvvkDUjQjg5RiEIAYdtYW3bNCGE34v2bRWqOmCOg8VhUgfBGF7WLnyFUuqTSXIiFB/Tr2ix/ab0dpqv9tWEZC1a8YuryeW/GEj5t2AINSJ/LtbDX0OF28gvDploDAIwt0sJtNNgvBm5rkCNgcVC4IgygXiN2b3CBxy8VaCjAAzeV71J31a0l83XHnllUlvjuuJFjPdYgt0dzcxvz7ErM/FK7FvHERKh0o6qqIMWi5dNod2NwjEraqKD5HKtI8gCPuL+7qfdJsQZgNWNOoj+J9lJsDnPve5FMeychCR9bzgDSpBBoABXA7cfgl9+++//xKvoTa1gTpSNngoxaBDlHHcvW1ZxGpBDJr8mGh6iUFUrLkKapRJaxRUggwAxU/5ACJaVZbgJtXvFqw6Uhny11A/ypJZNsEwnVPM4GY99e7djNpu8P2sIFYzHjP1JPRyeV5vetObki1Axcjb3gSWZoJA5MAFdHERhAz4v9rKjCtBBoBGZvkgVfbaZoeYiakx6hu4KEVnPc9fq2GZczxIovMGfH4+xABuO54Lz88oMBDaBkMvCLSdeeaZPd28cxWXX355umccCO4l9ZhKxR0P1E/3ocyjg0qQPqCLlwNT2kIJ6SHchHHNve51r6TnK+nMX0ukX5dqTYjgmIAjr07b+Vx6FRpVLIIVkv1mtRB3Yn9Ib+e5k3LD6cJeNCFx9bJV8rhWJUgfmG3Kgcm+yOEm6MxXXqcGw0Dv1dYnF7NapHsMQhDluEszZB1QOQcV8YxhgpDw7W9/O/1WVg+TVgibTgWntBMZDq6zoxWnRd5+tRKkDyKQFWKVcKNyiGfk1xBJceFjF0XPI+ttwvWYqz0lQdxIMx+3ZBwb1fCcKxgk8TMXbvZh/2eE4q3KhWrL7Svni/eOTcczyT4rU20qQXrAslwG8iTU5WCLlHEMJMq3EoYjjzxyyjX5tc6VKAlC9QK2iw6A80G9MkBja+ZcIi9LIC8/zn4YFe7Hpptumhpg8CaawPz2Vn417+I2mnqXqATpASWY+SAlorI5dFssr4k+SznovOV1hPEosbFEN4LMBgQP5SoNI+UEMQyiC8k4BWIlBGStHLxX4lHy0fT/esUrXpHiQBwqbXGqSpAu4KblDs0HKZEaEWgrhpLLVKpg0qlzA75NVLTlHqK5RJBtt912yncZRKR2jAKDliolPSdPA5kkEAGJrUrcv3mWr9U8T/uvBOkCCYPlTc9zd7gG27ojlgY8F2OesdtLHvrQhy4udZ1LBGG0ioMQXiC1GfGcSNC02orEe66N56gE8Vr/r9TzSUBdDTvDfQBBX2oy97uAKLIIvvrMyCLI94mvBGkBPb/NK+WHDtBhy/N057wxNaM72vTkQheOWasUrkeFPGX0fjYJkkNdhgCo5E0qkOexOorxCDiqWhyFIPoVex8TSh7EGwfhxYpEU4RhoOfp80EQ7mC/e94goxKkBX48P1gufOV5fhLDLirUCFtCqW0OhU75exABKS5LJFR1mDeDy6Vsaj1XCMIeyTs98kSZOKwc6mXi3CgEMblYgWUuTApUNqsFw5xbuc3OyAlSohKkBYzsGAAhOmOUEP+Itj48SznavFtEv94c3I7d2pHmMpsEMbCkxITokGLAHXHEEUm1yr+bNBWxI2oXNXEuINQ24rd2X3JhpDtXCTIA1IaXBjVXb2l45+CbtyLkiDYyuTD62/pb8b3bA6S8PhdR3ukyWvuhm5FOvZKT5rGVMISR7Zg9AOcC3BurtkpJq5N8sxAZDdzHpC0IWQlSQJ2A+vB8INgabRhICmyrX89tmBIGvwq3smduiMjvuCnvo4LxbdJgnHMkaGEqMxhBtCIygYhpUCnZUOpLGNlLa2JjjkqQFsjF4cK1/NJf1WIPg7bVgxoySJUdI1LxTt6ax+Cc7foK3h1boD3nOc9JtfjsJ8Y0g1fSZCT+sZ2i5nuugLNEvErPMY3iGO68hW1SagqVID3AeOtVGNUGs2bbdgW9Vo828M9byRj1fPazjTaCyGlSRcglTl1hwMtnkvLvcb/aFV6wKLAaRPJy4WFAxeKq1uVSoilVKyae8q+JKUclyIQhThCkCOEBi06Bw8AAK/tljQOuzkc+8pFJBcyh9La0oUq0EYSKZUJAkvJ/Jv1sEC5VJbAmAZOBxyQ2DqKqec5VbiUfNkU/wJnCVqIqy7cS5wgvGy+c3xnZEbASZJqhs0dZbsv9ORcQeyZG7y4Qe6BKcq92q/XwOrOr6sMNN9wwpYKIQiNIxBmsHFLFubv1nNLZpN8KEtBq1GsC1EnvaWCDJE3PefxGgai876b9Eo8WW4kzQcAQ8ZGDHaXTYiXIDMBq4YbYEdeN1WlxLiAIYpMcxCBUIRFkxwVH2xrH9fJiBUFiz0TeIO8zDPoRxMqhn7DVbxRYndhJgphWI3aISYzqSh32eWxEHq5KkBmEG2y2KhsgzBaCILmoVaFe8VB5zvDWUC3fdppqxVFRChVJTy0uaK5dOWdULpkCw2zXgCBIGAiC5Bv6R9mzGMyw8D0lJXKlh6gBkXPlfaWhuE/ITl3MUQmygBAEoQ5xGpjtEQSQxDmxGmpHuV94LwiKWiXbatkHAe9S3tCCEW2TIAM7oDqTqjSK67gMZvq+0tujclDfZQRqQyXIAkJpgyBKSRBeO6vDdG+safBbcYjP415tE96nuE5h2igoCSKuwwaJlR1B9cYCzTByVIIsABj8JCeI50EQjwUqgyAzAQPe5w0jeYO7YYAgPGXUKaIwivcqnkfzOCoWYx2BApUg8xz8/m2DrZvMFEFkA9sbRZKjkuR+stFGG41FEF44XSEJOyt/rmxByokGc0qsc1SC9ICiKVHxvIh/aYOGdMpzSeR7Scb0nEeH18bj2HptpggSkNauStPs3Qs6sI9DkFLFYqRHXCVULG1/yr3qK0F6QPIaF6gZRqseOyAJtrVJuCTnMga1QWYSsbNTW9lxjkkTxGdGzUlug5SoBOkDurmIMN9+2cAhl+k2aieBuUiQqL3hJpbg2U141kYlCI8cr1hATQgPlv8ZTHyxTXSJSpAhIBXBamLFiEiyZmSVIKPDYFU7Ihu4n7Tt5zgoZAkMGtnPUQkyBPJcHVsc8N1Tw5ZWgpx88skpKAizRZCZggCjkuhuEMdpSwmqBOkB0WBelujDO98IUuKUU06Z8T0KRcvzrbCnC0EQ98kWB7mIostA1tWkRCVID3BFcgdG9uvSThAIvXsugJEsjd3vZ3D6PaXOEzlifttcRo3UQxBED2WZwZFQKhdLGW4lyAgwmzIeJbvZfYifHGE8FmhSyxxbFy8tBJlrQITddtstJXYyxv2W3UQx1qjICYKU7q335EWrBBkDdFOZpv1knNltIUP6eYgyXoFNZcdsoUig1BxCIK8SpGLBYfPNN58iemtRY6lU8qIMYoNZGe8oBLHHoxr6ddddN0XQkYBWEE3A119//eS+l1GMOK7NXb6VIBWzAjO5BnmlKMaS/uGxDNtxCSJtXyM7Wx2wO6SSSFTkpvfeUlgUeWkE6P1dW3OxKmYdMnO1ciXKX+OxFBAzumOi2+MSJFBVrGmEbhf5rkMVk4NGCprvaeBAEEFNit+b29kgVgNvxq8EmYPQnED0nOdK8qIqNH5z0Oqm3Da4YjjYSJTqU4rfWS16fmyUdqaBnCCIwRsZfytBxgCPigCb7dFsYilvhxoA9OVx0h8qboJ+YGb1XjJIX7FuCILoF2CLg1zsFVIJMiJ4PhBEgzTNDipBJgctW6OUQAmwGb2XmP1HRRCkG6TdCP6WqATpA24/qdJIoV+T1ptULm5C7kIGJRIhT8XgsBGR3y8mmPPOOy8lT/aScVqZqv3QJnVYVIL0gXQIJZrSrXUPFPU1m+kjhSTqFGSjXnfddZ1XVAwC9eZ+R4VamroNKuM20vO5GlmD4qh+3VcqQQYAf3zsjR47P1EPzH7bbbddOl4xHDg8NGwL9WlQGSXbmPoUTfHs6cKeBNF5KxP7plvvskqQPrABi8ASdyD4oQWdNF2zKaQeUBWjQRJo2yrRTdgReSugQaDnFU9VbCp61llnpedW/SCIjo3IagMfnrMclSB9oGmaFaQtC1b+lfMVcxsSSm15pzqUHWMLORm9Ek6DIBJPHSd1C7aKBQU1PdQzMRc9uDhVxLfYlRIkNY6zgnD1Ru1PoBKkYt7D6s+pwuMo4CiSDioIw7bRwFuSIo2gbgM9AfjRpaCUWwlUzD1wrKjXUb2oO00QhA1iJdH1HUmsKP5GpgRUgowIuizjXR/ZirkNcSvd9iFysQBBNIOQZh9GOnUs3+quEmQMqIKrkfS5D+nz9jWx7QFVC0GktohjMdbdR+qXlaMMJlaCDAHeDbsxBex7p5qwYm5DRaLO8GFvWFEUSnms7oQXyzFEknKfoxJkAPBsIAOVip5qMxc70tpsUz5WxdwHF6/gpDiW6kH9BTbeeOMpcRBqc6kRVIL0AWPc3nY2VlHkw9DTmVxtwh577LE4cbFi6cABBxyQJrrzzz9/caBQljZ1qw2VIH0gcmspFsnNIdnOkqyt/jhp2BUzCzbIDjvskB7rBxwR9m6oBOkD+0cw6sqkNiuLdAXkkQBXsfRgmAmtEqQPlIHmfnFd3C3TdFWpJghyzjnndM5WzDdUggwJhtzuu++euoVLZLR7ao2FzF9UgowAGaE8WDwjFfMblSAVFT1QCVJR0QOVIBUVPVAJUlHRFU3zf29YmBAqp0bJAAAAAElFTkSuQmCC + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +7 + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>49.159570217132568 +<_y>15.906748294830322 +<_width>38.10000467300415 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>38.973123073577881 +<_y>14.716125965118408 +<_width>38.893751621246338 +<_height>9.789583683013916 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>33.284575939178467 +<_y>16.171333789825439 +<_width>38.364588260650635 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>35.665834903717041 +<_y>8.4984221458435059 +<_width>21.960413455963135 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>40.296037197113037 +<_y>25.828632831573486 +<_width>11.906250476837158 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>22.833540439605713 +<_y>4.661963939666748 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>20.849170207977291 +<_y>29.929672718048096 +<_width>13.758327960968021 +<_height>5.5562500953674352 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>49.159570217132568 +<_y>15.906748294830322 +<_width>38.10000467300415 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>38.973123073577881 +<_y>14.716125965118408 +<_width>38.893751621246338 +<_height>9.789583683013916 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>33.284575939178467 +<_y>16.171333789825439 +<_width>38.364588260650635 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>35.665834903717041 +<_y>8.4984221458435059 +<_width>21.960413455963135 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>40.296037197113037 +<_y>25.828632831573486 +<_width>11.906250476837158 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>22.833540439605713 +<_y>4.661963939666748 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>20.849170207977291 +<_y>29.929672718048096 +<_width>13.758327960968021 +<_height>5.5562500953674352 + + +100 +false +true +true +true + + +Text + +月まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>49.159570217132568 +<_y>15.906748294830322 +<_width>38.10000467300415 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>38.973123073577881 +<_y>14.716125965118408 +<_width>38.893751621246338 +<_height>9.789583683013916 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>33.284575939178467 +<_y>16.171333789825439 +<_width>38.364588260650635 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>35.665834903717041 +<_y>8.4984221458435059 +<_width>21.960413455963135 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>40.296037197113037 +<_y>25.828632831573486 +<_width>11.906250476837158 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>22.833540439605713 +<_y>4.661963939666748 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>20.849170207977291 +<_y>29.929672718048096 +<_width>13.758327960968021 +<_height>5.5562500953674352 + + +100 +false +true +true +true + +月まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +48 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/x64/Debug/net461/AxInterop.QRMAKERADLib.dll b/bin/x64/Debug/net461/AxInterop.QRMAKERADLib.dll new file mode 100644 index 0000000..3014ebb Binary files /dev/null and b/bin/x64/Debug/net461/AxInterop.QRMAKERADLib.dll differ diff --git a/bin/x64/Debug/net461/CSJLabelLib.dll b/bin/x64/Debug/net461/CSJLabelLib.dll new file mode 100644 index 0000000..0800d74 Binary files /dev/null and b/bin/x64/Debug/net461/CSJLabelLib.dll differ diff --git a/bin/x64/Debug/net461/CSJLabelLibW32.dll b/bin/x64/Debug/net461/CSJLabelLibW32.dll new file mode 100644 index 0000000..e366d77 Binary files /dev/null and b/bin/x64/Debug/net461/CSJLabelLibW32.dll differ diff --git a/bin/x64/Debug/net461/CSJLabelLibW64.dll b/bin/x64/Debug/net461/CSJLabelLibW64.dll new file mode 100644 index 0000000..c39fda5 Binary files /dev/null and b/bin/x64/Debug/net461/CSJLabelLibW64.dll differ diff --git a/bin/x64/Debug/net461/Citizen.LayoutUtilities.Common.dll b/bin/x64/Debug/net461/Citizen.LayoutUtilities.Common.dll new file mode 100644 index 0000000..de61d8b Binary files /dev/null and b/bin/x64/Debug/net461/Citizen.LayoutUtilities.Common.dll differ diff --git a/bin/x64/Debug/net461/Citizen.LayoutUtilities.Printing.dll b/bin/x64/Debug/net461/Citizen.LayoutUtilities.Printing.dll new file mode 100644 index 0000000..3e62032 Binary files /dev/null and b/bin/x64/Debug/net461/Citizen.LayoutUtilities.Printing.dll differ diff --git a/bin/x64/Debug/net461/Google.Protobuf.dll b/bin/x64/Debug/net461/Google.Protobuf.dll new file mode 100644 index 0000000..6ea720d Binary files /dev/null and b/bin/x64/Debug/net461/Google.Protobuf.dll differ diff --git a/bin/x64/Debug/net461/Google.Protobuf.xml b/bin/x64/Debug/net461/Google.Protobuf.xml new file mode 100644 index 0000000..ebbf629 --- /dev/null +++ b/bin/x64/Debug/net461/Google.Protobuf.xml @@ -0,0 +1,7470 @@ + + + + Google.Protobuf + + + + + Provides a utility routine to copy small arrays much more quickly than Buffer.BlockCopy + + + + + The threshold above which you should use Buffer.BlockCopy rather than ByteArray.Copy + + + + + Determines which copy routine to use based on the number of bytes to be copied. + + + + + Reverses the order of bytes in the array + + + + + Immutable array of bytes. + + + + + Unsafe operations that can cause IO Failure and/or other catestrophic side-effects. + + + + + Constructs a new ByteString from the given byte array. The array is + *not* copied, and must not be modified after this constructor is called. + + + + + Provides direct, unrestricted access to the bytes contained in this instance. + You must not modify or resize the byte array returned by this method. + + + + + Internal use only. Ensure that the provided array is not mutated and belongs to this instance. + + + + + Constructs a new ByteString from the given byte array. The array is + *not* copied, and must not be modified after this constructor is called. + + + + + Returns an empty ByteString. + + + + + Returns the length of this ByteString in bytes. + + + + + Returns true if this byte string is empty, false otherwise. + + + + + Converts this into a byte array. + + The data is copied - changes to the returned array will not be reflected in this ByteString. + A byte array with the same data as this ByteString. + + + + Converts this into a standard base64 representation. + + A base64 representation of this ByteString. + + + + Constructs a from the Base64 Encoded String. + + + + + Constructs a from data in the given stream, synchronously. + + If successful, will be read completely, from the position + at the start of the call. + The stream to copy into a ByteString. + A ByteString with content read from the given stream. + + + + Constructs a from data in the given stream, asynchronously. + + If successful, will be read completely, from the position + at the start of the call. + The stream to copy into a ByteString. + The cancellation token to use when reading from the stream, if any. + A ByteString with content read from the given stream. + + + + Constructs a from the given array. The contents + are copied, so further modifications to the array will not + be reflected in the returned ByteString. + This method can also be invoked in ByteString.CopyFrom(0xaa, 0xbb, ...) form + which is primarily useful for testing. + + + + + Constructs a from a portion of a byte array. + + + + + Creates a new by encoding the specified text with + the given encoding. + + + + + Creates a new by encoding the specified text in UTF-8. + + + + + Retuns the byte at the given index. + + + + + Converts this into a string by applying the given encoding. + + + This method should only be used to convert binary data which was the result of encoding + text with the given encoding. + + The encoding to use to decode the binary data into text. + The result of decoding the binary data with the given decoding. + + + + Converts this into a string by applying the UTF-8 encoding. + + + This method should only be used to convert binary data which was the result of encoding + text with UTF-8. + + The result of decoding the binary data with the given decoding. + + + + Returns an iterator over the bytes in this . + + An iterator over the bytes in this object. + + + + Returns an iterator over the bytes in this . + + An iterator over the bytes in this object. + + + + Creates a CodedInputStream from this ByteString's data. + + + + + Compares two byte strings for equality. + + The first byte string to compare. + The second byte string to compare. + true if the byte strings are equal; false otherwise. + + + + Compares two byte strings for inequality. + + The first byte string to compare. + The second byte string to compare. + false if the byte strings are equal; true otherwise. + + + + Compares this byte string with another object. + + The object to compare this with. + true if refers to an equal ; false otherwise. + + + + Returns a hash code for this object. Two equal byte strings + will return the same hash code. + + A hash code for this object. + + + + Compares this byte string with another. + + The to compare this with. + true if refers to an equal byte string; false otherwise. + + + + Used internally by CodedOutputStream to avoid creating a copy for the write + + + + + Copies the entire byte array to the destination array provided at the offset specified. + + + + + Writes the entire byte array to the provided stream + + + + + Reads and decodes protocol message fields. + + + + This class is generally used by generated code to read appropriate + primitives from the stream. It effectively encapsulates the lowest + levels of protocol buffer format. + + + Repeated fields and map fields are not handled by this class; use + and to serialize such fields. + + + + + + Whether to leave the underlying stream open when disposing of this stream. + This is always true when there's no stream. + + + + + Buffer of data read from the stream or provided at construction time. + + + + + The index of the buffer at which we need to refill from the stream (if there is one). + + + + + The position within the current buffer (i.e. the next byte to read) + + + + + The stream to read further input from, or null if the byte array buffer was provided + directly on construction, with no further data available. + + + + + The last tag we read. 0 indicates we've read to the end of the stream + (or haven't read anything yet). + + + + + The next tag, used to store the value read by PeekTag. + + + + + The total number of bytes read before the current buffer. The + total bytes read up to the current position can be computed as + totalBytesRetired + bufferPos. + + + + + The absolute position of the end of the current message. + + + + + Creates a new CodedInputStream reading data from the given byte array. + + + + + Creates a new that reads from the given byte array slice. + + + + + Creates a new reading data from the given stream, which will be disposed + when the returned object is disposed. + + The stream to read from. + + + + Creates a new reading data from the given stream. + + The stream to read from. + true to leave open when the returned + is disposed; false to dispose of the given stream when the + returned object is disposed. + + + + Creates a new CodedInputStream reading data from the given + stream and buffer, using the default limits. + + + + + Creates a new CodedInputStream reading data from the given + stream and buffer, using the specified limits. + + + This chains to the version with the default limits instead of vice versa to avoid + having to check that the default values are valid every time. + + + + + Creates a with the specified size and recursion limits, reading + from an input stream. + + + This method exists separately from the constructor to reduce the number of constructor overloads. + It is likely to be used considerably less frequently than the constructors, as the default limits + are suitable for most use cases. + + The input stream to read from + The total limit of data to read from the stream. + The maximum recursion depth to allow while reading. + A CodedInputStream reading from with the specified size + and recursion limits. + + + + Returns the current position in the input stream, or the position in the input buffer + + + + + Returns the last tag read, or 0 if no tags have been read or we've read beyond + the end of the stream. + + + + + Returns the size limit for this stream. + + + This limit is applied when reading from the underlying stream, as a sanity check. It is + not applied when reading from a byte array data source without an underlying stream. + The default value is 64MB. + + + The size limit. + + + + + Returns the recursion limit for this stream. This limit is applied whilst reading messages, + to avoid maliciously-recursive data. + + + The default limit is 64. + + + The recursion limit for this stream. + + + + + Disposes of this instance, potentially closing any underlying stream. + + + As there is no flushing to perform here, disposing of a which + was constructed with the leaveOpen option parameter set to true (or one which + was constructed to read from a byte array) has no effect. + + + + + Verifies that the last call to ReadTag() returned tag 0 - in other words, + we've reached the end of the stream when we expected to. + + The + tag read was not the one specified + + + + Peeks at the next field tag. This is like calling , but the + tag is not consumed. (So a subsequent call to will return the + same value.) + + + + + Reads a field tag, returning the tag of 0 for "end of stream". + + + If this method returns 0, it doesn't necessarily mean the end of all + the data in this CodedInputStream; it may be the end of the logical stream + for an embedded message, for example. + + The next field tag, or 0 for end of stream. (0 is never a valid tag.) + + + + Skips the data for the field with the tag we've just read. + This should be called directly after , when + the caller wishes to skip an unknown field. + + + This method throws if the last-read tag was an end-group tag. + If a caller wishes to skip a group, they should skip the whole group, by calling this method after reading the + start-group tag. This behavior allows callers to call this method on any field they don't understand, correctly + resulting in an error if an end-group tag has not been paired with an earlier start-group tag. + + The last tag was an end-group tag + The last read operation read to the end of the logical stream + + + + Skip a group. + + + + + Reads a double field from the stream. + + + + + Reads a float field from the stream. + + + + + Reads a uint64 field from the stream. + + + + + Reads an int64 field from the stream. + + + + + Reads an int32 field from the stream. + + + + + Reads a fixed64 field from the stream. + + + + + Reads a fixed32 field from the stream. + + + + + Reads a bool field from the stream. + + + + + Reads a string field from the stream. + + + + + Reads an embedded message field value from the stream. + + + + + Reads a bytes field value from the stream. + + + + + Reads a uint32 field value from the stream. + + + + + Reads an enum field value from the stream. + + + + + Reads an sfixed32 field value from the stream. + + + + + Reads an sfixed64 field value from the stream. + + + + + Reads an sint32 field value from the stream. + + + + + Reads an sint64 field value from the stream. + + + + + Reads a length for length-delimited data. + + + This is internally just reading a varint, but this method exists + to make the calling code clearer. + + + + + Peeks at the next tag in the stream. If it matches , + the tag is consumed and the method returns true; otherwise, the + stream is left in the original position and the method returns false. + + + + + Same code as ReadRawVarint32, but read each byte individually, checking for + buffer overflow. + + + + + Reads a raw Varint from the stream. If larger than 32 bits, discard the upper bits. + This method is optimised for the case where we've got lots of data in the buffer. + That means we can check the size just once, then just read directly from the buffer + without constant rechecking of the buffer length. + + + + + Reads a varint from the input one byte at a time, so that it does not + read any bytes after the end of the varint. If you simply wrapped the + stream in a CodedInputStream and used ReadRawVarint32(Stream) + then you would probably end up reading past the end of the varint since + CodedInputStream buffers its input. + + + + + + + Reads a raw varint from the stream. + + + + + Reads a 32-bit little-endian integer from the stream. + + + + + Reads a 64-bit little-endian integer from the stream. + + + + + Decode a 32-bit value with ZigZag encoding. + + + ZigZag encodes signed integers into values that can be efficiently + encoded with varint. (Otherwise, negative values must be + sign-extended to 64 bits to be varint encoded, thus always taking + 10 bytes on the wire.) + + + + + Decode a 32-bit value with ZigZag encoding. + + + ZigZag encodes signed integers into values that can be efficiently + encoded with varint. (Otherwise, negative values must be + sign-extended to 64 bits to be varint encoded, thus always taking + 10 bytes on the wire.) + + + + + Sets currentLimit to (current position) + byteLimit. This is called + when descending into a length-delimited embedded message. The previous + limit is returned. + + The old limit. + + + + Discards the current limit, returning the previous limit. + + + + + Returns whether or not all the data before the limit has been read. + + + + + + Returns true if the stream has reached the end of the input. This is the + case if either the end of the underlying input source has been reached or + the stream has reached a limit created using PushLimit. + + + + + Called when buffer is empty to read more bytes from the + input. If is true, RefillBuffer() gurantees that + either there will be at least one byte in the buffer when it returns + or it will throw an exception. If is false, + RefillBuffer() returns false if no more bytes were available. + + + + + + + Read one byte from the input. + + + the end of the stream or the current limit was reached + + + + + Reads a fixed size of bytes from the input. + + + the end of the stream or the current limit was reached + + + + + Reads and discards bytes. + + the end of the stream + or the current limit was reached + + + + Abstraction of skipping to cope with streams which can't really skip. + + + + + Encodes and writes protocol message fields. + + + + This class is generally used by generated code to write appropriate + primitives to the stream. It effectively encapsulates the lowest + levels of protocol buffer format. Unlike some other implementations, + this does not include combined "write tag and value" methods. Generated + code knows the exact byte representations of the tags they're going to write, + so there's no need to re-encode them each time. Manually-written code calling + this class should just call one of the WriteTag overloads before each value. + + + Repeated fields and map fields are not handled by this class; use RepeatedField<T> + and MapField<TKey, TValue> to serialize such fields. + + + + + + Computes the number of bytes that would be needed to encode a + double field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + float field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + uint64 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode an + int64 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode an + int32 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + fixed64 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + fixed32 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + bool field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + string field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + group field, including the tag. + + + + + Computes the number of bytes that would be needed to encode an + embedded message field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + bytes field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + uint32 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + enum field, including the tag. The caller is responsible for + converting the enum value to its numeric value. + + + + + Computes the number of bytes that would be needed to encode an + sfixed32 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode an + sfixed64 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode an + sint32 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode an + sint64 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a length, + as written by . + + + + + Computes the number of bytes that would be needed to encode a varint. + + + + + Computes the number of bytes that would be needed to encode a varint. + + + + + Computes the number of bytes that would be needed to encode a tag. + + + + + The buffer size used by CreateInstance(Stream). + + + + + Creates a new CodedOutputStream that writes directly to the given + byte array. If more bytes are written than fit in the array, + OutOfSpaceException will be thrown. + + + + + Creates a new CodedOutputStream that writes directly to the given + byte array slice. If more bytes are written than fit in the array, + OutOfSpaceException will be thrown. + + + + + Creates a new which write to the given stream, and disposes of that + stream when the returned CodedOutputStream is disposed. + + The stream to write to. It will be disposed when the returned CodedOutputStream is disposed. + + + + Creates a new CodedOutputStream which write to the given stream and uses + the specified buffer size. + + The stream to write to. It will be disposed when the returned CodedOutputStream is disposed. + The size of buffer to use internally. + + + + Creates a new CodedOutputStream which write to the given stream. + + The stream to write to. + If true, is left open when the returned CodedOutputStream is disposed; + if false, the provided stream is disposed as well. + + + + Creates a new CodedOutputStream which write to the given stream and uses + the specified buffer size. + + The stream to write to. + The size of buffer to use internally. + If true, is left open when the returned CodedOutputStream is disposed; + if false, the provided stream is disposed as well. + + + + Returns the current position in the stream, or the position in the output buffer + + + + + Writes a double field value, without a tag, to the stream. + + The value to write + + + + Writes a float field value, without a tag, to the stream. + + The value to write + + + + Writes a uint64 field value, without a tag, to the stream. + + The value to write + + + + Writes an int64 field value, without a tag, to the stream. + + The value to write + + + + Writes an int32 field value, without a tag, to the stream. + + The value to write + + + + Writes a fixed64 field value, without a tag, to the stream. + + The value to write + + + + Writes a fixed32 field value, without a tag, to the stream. + + The value to write + + + + Writes a bool field value, without a tag, to the stream. + + The value to write + + + + Writes a string field value, without a tag, to the stream. + The data is length-prefixed. + + The value to write + + + + Writes a message, without a tag, to the stream. + The data is length-prefixed. + + The value to write + + + + Write a byte string, without a tag, to the stream. + The data is length-prefixed. + + The value to write + + + + Writes a uint32 value, without a tag, to the stream. + + The value to write + + + + Writes an enum value, without a tag, to the stream. + + The value to write + + + + Writes an sfixed32 value, without a tag, to the stream. + + The value to write. + + + + Writes an sfixed64 value, without a tag, to the stream. + + The value to write + + + + Writes an sint32 value, without a tag, to the stream. + + The value to write + + + + Writes an sint64 value, without a tag, to the stream. + + The value to write + + + + Writes a length (in bytes) for length-delimited data. + + + This method simply writes a rawint, but exists for clarity in calling code. + + Length value, in bytes. + + + + Encodes and writes a tag. + + The number of the field to write the tag for + The wire format type of the tag to write + + + + Writes an already-encoded tag. + + The encoded tag + + + + Writes the given single-byte tag directly to the stream. + + The encoded tag + + + + Writes the given two-byte tag directly to the stream. + + The first byte of the encoded tag + The second byte of the encoded tag + + + + Writes the given three-byte tag directly to the stream. + + The first byte of the encoded tag + The second byte of the encoded tag + The third byte of the encoded tag + + + + Writes the given four-byte tag directly to the stream. + + The first byte of the encoded tag + The second byte of the encoded tag + The third byte of the encoded tag + The fourth byte of the encoded tag + + + + Writes the given five-byte tag directly to the stream. + + The first byte of the encoded tag + The second byte of the encoded tag + The third byte of the encoded tag + The fourth byte of the encoded tag + The fifth byte of the encoded tag + + + + Writes a 32 bit value as a varint. The fast route is taken when + there's enough buffer space left to whizz through without checking + for each byte; otherwise, we resort to calling WriteRawByte each time. + + + + + Writes out an array of bytes. + + + + + Writes out part of an array of bytes. + + + + + Encode a 32-bit value with ZigZag encoding. + + + ZigZag encodes signed integers into values that can be efficiently + encoded with varint. (Otherwise, negative values must be + sign-extended to 64 bits to be varint encoded, thus always taking + 10 bytes on the wire.) + + + + + Encode a 64-bit value with ZigZag encoding. + + + ZigZag encodes signed integers into values that can be efficiently + encoded with varint. (Otherwise, negative values must be + sign-extended to 64 bits to be varint encoded, thus always taking + 10 bytes on the wire.) + + + + + Indicates that a CodedOutputStream wrapping a flat byte array + ran out of space. + + + + + Flushes any buffered data and optionally closes the underlying stream, if any. + + + + By default, any underlying stream is closed by this method. To configure this behaviour, + use a constructor overload with a leaveOpen parameter. If this instance does not + have an underlying stream, this method does nothing. + + + For the sake of efficiency, calling this method does not prevent future write calls - but + if a later write ends up writing to a stream which has been disposed, that is likely to + fail. It is recommend that you not call any other methods after this. + + + + + + Flushes any buffered data to the underlying stream (if there is one). + + + + + Verifies that SpaceLeft returns zero. It's common to create a byte array + that is exactly big enough to hold a message, then write to it with + a CodedOutputStream. Calling CheckNoSpaceLeft after writing verifies that + the message was actually as big as expected, which can help bugs. + + + + + If writing to a flat array, returns the space left in the array. Otherwise, + throws an InvalidOperationException. + + + + + Utility to compare if two Lists are the same, and the hash code + of a List. + + + + + Checks if two lists are equal. + + + + + Gets the list's hash code. + + + + + Representation of a map field in a Protocol Buffer message. + + Key type in the map. Must be a type supported by Protocol Buffer map keys. + Value type in the map. Must be a type supported by Protocol Buffers. + + + For string keys, the equality comparison is provided by . + + + Null values are not permitted in the map, either for wrapper types or regular messages. + If a map is deserialized from a data stream and the value is missing from an entry, a default value + is created instead. For primitive types, that is the regular default value (0, the empty string and so + on); for message types, an empty instance of the message is created, as if the map entry contained a 0-length + encoded value for the field. + + + This implementation does not generally prohibit the use of key/value types which are not + supported by Protocol Buffers (e.g. using a key type of byte) but nor does it guarantee + that all operations will work in such cases. + + + The order in which entries are returned when iterating over this object is undefined, and may change + in future versions. + + + + + + Creates a deep clone of this object. + + + A deep clone of this object. + + + + + Adds the specified key/value pair to the map. + + + This operation fails if the key already exists in the map. To replace an existing entry, use the indexer. + + The key to add + The value to add. + The given key already exists in map. + + + + Determines whether the specified key is present in the map. + + The key to check. + true if the map contains the given key; false otherwise. + + + + Removes the entry identified by the given key from the map. + + The key indicating the entry to remove from the map. + true if the map contained the given key before the entry was removed; false otherwise. + + + + Gets the value associated with the specified key. + + The key whose value to get. + When this method returns, the value associated with the specified key, if the key is found; + otherwise, the default value for the type of the parameter. + This parameter is passed uninitialized. + true if the map contains an element with the specified key; otherwise, false. + + + + Gets or sets the value associated with the specified key. + + The key of the value to get or set. + The property is retrieved and key does not exist in the collection. + The value associated with the specified key. If the specified key is not found, + a get operation throws a , and a set operation creates a new element with the specified key. + + + + Gets a collection containing the keys in the map. + + + + + Gets a collection containing the values in the map. + + + + + Adds the specified entries to the map. The keys and values are not automatically cloned. + + The entries to add to the map. + + + + Returns an enumerator that iterates through the collection. + + + An enumerator that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Adds the specified item to the map. + + The item to add to the map. + + + + Removes all items from the map. + + + + + Determines whether map contains an entry equivalent to the given key/value pair. + + The key/value pair to find. + + + + + Copies the key/value pairs in this map to an array. + + The array to copy the entries into. + The index of the array at which to start copying values. + + + + Removes the specified key/value pair from the map. + + Both the key and the value must be found for the entry to be removed. + The key/value pair to remove. + true if the key/value pair was found and removed; false otherwise. + + + + Gets the number of elements contained in the map. + + + + + Gets a value indicating whether the map is read-only. + + + + + Determines whether the specified , is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Compares this map with another for equality. + + + The order of the key/value pairs in the maps is not deemed significant in this comparison. + + The map to compare this with. + true if refers to an equal map; false otherwise. + + + + Adds entries to the map from the given stream. + + + It is assumed that the stream is initially positioned after the tag specified by the codec. + This method will continue reading entries from the stream until the end is reached, or + a different tag is encountered. + + Stream to read from + Codec describing how the key/value pairs are encoded + + + + Writes the contents of this map to the given coded output stream, using the specified codec + to encode each entry. + + The output stream to write to. + The codec to use for each entry. + + + + Calculates the size of this map based on the given entry codec. + + The codec to use to encode each entry. + + + + + Returns a string representation of this repeated field, in the same + way as it would be represented by the default JSON formatter. + + + + + A codec for a specific map field. This contains all the information required to encode and + decode the nested messages. + + + + + Creates a new entry codec based on a separate key codec and value codec, + and the tag to use for each map entry. + + The key codec. + The value codec. + The map tag to use to introduce each map entry. + + + + The tag used in the enclosing message to indicate map entries. + + + + + A mutable message class, used for parsing and serializing. This + delegates the work to a codec, but implements the interface + for interop with and . + This is nested inside Codec as it's tightly coupled to the associated codec, + and it's simpler if it has direct access to all its fields. + + + + + Provides a central place to implement equality comparisons, primarily for bitwise float/double equality. + + + + + Returns an equality comparer for suitable for Protobuf equality comparisons. + This is usually just the default equality comparer for the type, but floating point numbers are compared + bitwise. + + The type of equality comparer to return. + The equality comparer. + + + + Returns an equality comparer suitable for comparing 64-bit floating point values, by bitwise comparison. + (NaN values are considered equal, but only when they have the same representation.) + + + + + Returns an equality comparer suitable for comparing 32-bit floating point values, by bitwise comparison. + (NaN values are considered equal, but only when they have the same representation.) + + + + + Returns an equality comparer suitable for comparing nullable 64-bit floating point values, by bitwise comparison. + (NaN values are considered equal, but only when they have the same representation.) + + + + + Returns an equality comparer suitable for comparing nullable 32-bit floating point values, by bitwise comparison. + (NaN values are considered equal, but only when they have the same representation.) + + + + + Read-only wrapper around another dictionary. + + + + + The contents of a repeated field: essentially, a collection with some extra + restrictions (no null values) and capabilities (deep cloning). + + + This implementation does not generally prohibit the use of types which are not + supported by Protocol Buffers but nor does it guarantee that all operations will work in such cases. + + The element type of the repeated field. + + + + Creates a deep clone of this repeated field. + + + If the field type is + a message type, each element is also cloned; otherwise, it is + assumed that the field type is primitive (including string and + bytes, both of which are immutable) and so a simple copy is + equivalent to a deep clone. + + A deep clone of this repeated field. + + + + Adds the entries from the given input stream, decoding them with the specified codec. + + The input stream to read from. + The codec to use in order to read each entry. + + + + Calculates the size of this collection based on the given codec. + + The codec to use when encoding each field. + The number of bytes that would be written to a by , + using the same codec. + + + + Writes the contents of this collection to the given , + encoding each value using the specified codec. + + The output stream to write to. + The codec to use when encoding each value. + + + + Adds the specified item to the collection. + + The item to add. + + + + Removes all items from the collection. + + + + + Determines whether this collection contains the given item. + + The item to find. + true if this collection contains the given item; false otherwise. + + + + Copies this collection to the given array. + + The array to copy to. + The first index of the array to copy to. + + + + Removes the specified item from the collection + + The item to remove. + true if the item was found and removed; false otherwise. + + + + Gets the number of elements contained in the collection. + + + + + Gets a value indicating whether the collection is read-only. + + + + + Adds all of the specified values into this collection. + + The values to add to this collection. + + + + Adds all of the specified values into this collection. This method is present to + allow repeated fields to be constructed from queries within collection initializers. + Within non-collection-initializer code, consider using the equivalent + method instead for clarity. + + The values to add to this collection. + + + + Returns an enumerator that iterates through the collection. + + + An enumerator that can be used to iterate through the collection. + + + + + Determines whether the specified , is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Compares this repeated field with another for equality. + + The repeated field to compare this with. + true if refers to an equal repeated field; false otherwise. + + + + Returns the index of the given item within the collection, or -1 if the item is not + present. + + The item to find in the collection. + The zero-based index of the item, or -1 if it is not found. + + + + Inserts the given item at the specified index. + + The index at which to insert the item. + The item to insert. + + + + Removes the item at the given index. + + The zero-based index of the item to remove. + + + + Returns a string representation of this repeated field, in the same + way as it would be represented by the default JSON formatter. + + + + + Gets or sets the item at the specified index. + + + The element at the specified index. + + The zero-based index of the element to get or set. + The item at the specified index. + + + + Extension methods for , effectively providing + the familiar members from previous desktop framework versions while + targeting the newer releases, .NET Core etc. + + + + + Returns the public getter of a property, or null if there is no such getter + (either because it's read-only, or the getter isn't public). + + + + + Returns the public setter of a property, or null if there is no such setter + (either because it's write-only, or the setter isn't public). + + + + + Provides extension methods on Type that just proxy to TypeInfo. + These are used to support the new type system from .NET 4.5, without + having calls to GetTypeInfo all over the place. While the methods here are meant to be + broadly compatible with the desktop framework, there are some subtle differences in behaviour - but + they're not expected to affect our use cases. While the class is internal, that should be fine: we can + evaluate each new use appropriately. + + + + + See https://msdn.microsoft.com/en-us/library/system.type.isassignablefrom + + + + + Returns a representation of the public property associated with the given name in the given type, + including inherited properties or null if there is no such public property. + Here, "public property" means a property where either the getter, or the setter, or both, is public. + + + + + Returns a representation of the public method associated with the given name in the given type, + including inherited methods. + + + This has a few differences compared with Type.GetMethod in the desktop framework. It will throw + if there is an ambiguous match even between a private method and a public one, but it *won't* throw + if there are two overloads at different levels in the type hierarchy (e.g. class Base declares public void Foo(int) and + class Child : Base declares public void Foo(long)). + + One type in the hierarchy declared more than one method with the same name + + + + Factory methods for . + + + + + Retrieves a codec suitable for a string field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for a bytes field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for a bool field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for an int32 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for an sint32 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for a fixed32 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for an sfixed32 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for a uint32 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for an int64 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for an sint64 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for a fixed64 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for an sfixed64 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for a uint64 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for a float field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for a double field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for an enum field with the given tag. + + The tag. + A conversion function from to the enum type. + A conversion function from the enum type to . + A codec for the given tag. + + + + Retrieves a codec suitable for a message field with the given tag. + + The tag. + A parser to use for the message type. + A codec for the given tag. + + + + Creates a codec for a wrapper type of a class - which must be string or ByteString. + + + + + Creates a codec for a wrapper type of a struct - which must be Int32, Int64, UInt32, UInt64, + Bool, Single or Double. + + + + + Helper code to create codecs for wrapper types. + + + Somewhat ugly with all the static methods, but the conversions involved to/from nullable types make it + slightly tricky to improve. So long as we keep the public API (ForClassWrapper, ForStructWrapper) in place, + we can refactor later if we come up with something cleaner. + + + + + Returns a field codec which effectively wraps a value of type T in a message. + + + + + + + An encode/decode pair for a single field. This effectively encapsulates + all the information needed to read or write the field value from/to a coded + stream. + + + This class is public and has to be as it is used by generated code, but its public + API is very limited - just what the generated code needs to call directly. + + + + This never writes default values to the stream, and does not address "packedness" + in repeated fields itself, other than to know whether or not the field *should* be packed. + + + + + Returns a delegate to write a value (unconditionally) to a coded output stream. + + + + + Returns the size calculator for just a value. + + + + + Returns a delegate to read a value from a coded input stream. It is assumed that + the stream is already positioned on the appropriate tag. + + + + + Returns the fixed size for an entry, or 0 if sizes vary. + + + + + Gets the tag of the codec. + + + The tag of the codec. + + + + + Default value for this codec. Usually the same for every instance of the same type, but + for string/ByteString wrapper fields the codec's default value is null, whereas for + other string/ByteString fields it's "" or ByteString.Empty. + + + The default value of the codec's type. + + + + + Write a tag and the given value, *if* the value is not the default. + + + + + Reads a value of the codec type from the given . + + The input stream to read from. + The value read from the stream. + + + + Calculates the size required to write the given value, with a tag, + if the value is not the default. + + + + + Class containing helpful workarounds for various platform compatibility + + + + + A message type that has a custom string format for diagnostic purposes. + + + + Calling on a generated message type normally + returns the JSON representation. If a message type implements this interface, + then the method will be called instead of the regular + JSON formatting code, but only when ToString() is called either on the message itself + or on another message which contains it. This does not affect the normal JSON formatting of + the message. + + + For example, if you create a proto message representing a GUID, the internal + representation may be a bytes field or four fixed32 fields. However, when debugging + it may be more convenient to see a result in the same format as provides. + + This interface extends to avoid it accidentally being implemented + on types other than messages, where it would not be used by anything in the framework. + + + + + Returns a string representation of this object, for diagnostic purposes. + + + This method is called when a message is formatted as part of a + call. It does not affect the JSON representation used by other than + in calls to . While it is recommended + that the result is valid JSON, this is never assumed by the Protobuf library. + + A string representation of this object, for diagnostic purposes. + + + + Generic interface for a deeply cloneable type. + + + + All generated messages implement this interface, but so do some non-message types. + Additionally, due to the type constraint on T in , + it is simpler to keep this as a separate interface. + + + The type itself, returned by the method. + + + + Creates a deep clone of this object. + + A deep clone of this object. + + + + Interface for a Protocol Buffers message, supporting + basic operations required for serialization. + + + + + Merges the data from the specified coded input stream with the current message. + + See the user guide for precise merge semantics. + + + + + Writes the data to the given coded output stream. + + Coded output stream to write the data to. Must not be null. + + + + Calculates the size of this message in Protocol Buffer wire format, in bytes. + + The number of bytes required to write this message + to a coded output stream. + + + + Descriptor for this message. All instances are expected to return the same descriptor, + and for generated types this will be an explicitly-implemented member, returning the + same value as the static property declared on the type. + + + + + Generic interface for a Protocol Buffers message, + where the type parameter is expected to be the same type as + the implementation class. + + The message type. + + + + Merges the given message into this one. + + See the user guide for precise merge semantics. + The message to merge with this one. Must not be null. + + + + Thrown when an attempt is made to parse invalid JSON, e.g. using + a non-string property key, or including a redundant comma. Parsing a protocol buffer + message represented in JSON using can throw both this + exception and depending on the situation. This + exception is only thrown for "pure JSON" errors, whereas InvalidProtocolBufferException + is thrown when the JSON may be valid in and of itself, but cannot be parsed as a protocol buffer + message. + + + + + Thrown when a protocol message being parsed is invalid in some way, + e.g. it contains a malformed varint or a negative byte length. + + + + + Creates an exception for an error condition of an invalid tag being encountered. + + + + + Reflection-based converter from messages to JSON. + + + + Instances of this class are thread-safe, with no mutable state. + + + This is a simple start to get JSON formatting working. As it's reflection-based, + it's not as quick as baking calls into generated messages - but is a simpler implementation. + (This code is generally not heavily optimized.) + + + + + + Returns a formatter using the default settings. + + + + + The JSON representation of the first 160 characters of Unicode. + Empty strings are replaced by the static constructor. + + + + + Creates a new formatted with the given settings. + + The settings. + + + + Formats the specified message as JSON. + + The message to format. + The formatted message. + + + + Formats the specified message as JSON. + + The message to format. + The TextWriter to write the formatted message to. + The formatted message. + + + + Converts a message to JSON for diagnostic purposes with no extra context. + + + + This differs from calling on the default JSON + formatter in its handling of . As no type registry is available + in calls, the normal way of resolving the type of + an Any message cannot be applied. Instead, a JSON property named @value + is included with the base64 data from the property of the message. + + The value returned by this method is only designed to be used for diagnostic + purposes. It may not be parsable by , and may not be parsable + by other Protocol Buffer implementations. + + The message to format for diagnostic purposes. + The diagnostic-only JSON representation of the message + + + + Writes a single value to the given writer as JSON. Only types understood by + Protocol Buffers can be written in this way. This method is only exposed for + advanced use cases; most users should be using + or . + + The writer to write the value to. Must not be null. + The value to write. May be null. + + + + Central interception point for well-known type formatting. Any well-known types which + don't need special handling can fall back to WriteMessage. We avoid assuming that the + values are using the embedded well-known types, in order to allow for dynamic messages + in the future. + + + + + Writes a string (including leading and trailing double quotes) to a builder, escaping as required. + + + Other than surrogate pair handling, this code is mostly taken from src/google/protobuf/util/internal/json_escaping.cc. + + + + + Settings controlling JSON formatting. + + + + + Default settings, as used by + + + + + Whether fields whose values are the default for the field type (e.g. 0 for integers) + should be formatted (true) or omitted (false). + + + + + The type registry used to format messages. + + + + + Whether to format enums as ints. Defaults to false. + + + + + Creates a new object with the specified formatting of default values + and an empty type registry. + + true if default values (0, empty strings etc) should be formatted; false otherwise. + + + + Creates a new object with the specified formatting of default values + and type registry. + + true if default values (0, empty strings etc) should be formatted; false otherwise. + The to use when formatting messages. + + + + Creates a new object with the specified parameters. + + true if default values (0, empty strings etc) should be formatted; false otherwise. + The to use when formatting messages. TypeRegistry.Empty will be used if it is null. + true to format the enums as integers; false to format enums as enum names. + + + + Creates a new object with the specified formatting of default values and the current settings. + + true if default values (0, empty strings etc) should be formatted; false otherwise. + + + + Creates a new object with the specified type registry and the current settings. + + The to use when formatting messages. + + + + Creates a new object with the specified enums formatting option and the current settings. + + true to format the enums as integers; false to format enums as enum names. + + + + Reflection-based converter from JSON to messages. + + + + Instances of this class are thread-safe, with no mutable state. + + + This is a simple start to get JSON parsing working. As it's reflection-based, + it's not as quick as baking calls into generated messages - but is a simpler implementation. + (This code is generally not heavily optimized.) + + + + + + Returns a formatter using the default settings. + + + + + Creates a new formatted with the given settings. + + The settings. + + + + Parses and merges the information into the given message. + + The message to merge the JSON information into. + The JSON to parse. + + + + Parses JSON read from and merges the information into the given message. + + The message to merge the JSON information into. + Reader providing the JSON to parse. + + + + Merges the given message using data from the given tokenizer. In most cases, the next + token should be a "start object" token, but wrapper types and nullity can invalidate + that assumption. This is implemented as an LL(1) recursive descent parser over the stream + of tokens provided by the tokenizer. This token stream is assumed to be valid JSON, with the + tokenizer performing that validation - but not every token stream is valid "protobuf JSON". + + + + + Parses into a new message. + + The type of message to create. + The JSON to parse. + The JSON does not comply with RFC 7159 + The JSON does not represent a Protocol Buffers message correctly + + + + Parses JSON read from into a new message. + + The type of message to create. + Reader providing the JSON to parse. + The JSON does not comply with RFC 7159 + The JSON does not represent a Protocol Buffers message correctly + + + + Parses into a new message. + + The JSON to parse. + Descriptor of message type to parse. + The JSON does not comply with RFC 7159 + The JSON does not represent a Protocol Buffers message correctly + + + + Parses JSON read from into a new message. + + Reader providing the JSON to parse. + Descriptor of message type to parse. + The JSON does not comply with RFC 7159 + The JSON does not represent a Protocol Buffers message correctly + + + + Creates a new instance of the message type for the given field. + + + + + Checks that any infinite/NaN values originated from the correct text. + This corrects the lenient whitespace handling of double.Parse/float.Parse, as well as the + way that Mono parses out-of-range values as infinity. + + + + + Settings controlling JSON parsing. + + + + + Default settings, as used by . This has the same default + recursion limit as , and an empty type registry. + + + + + The maximum depth of messages to parse. Note that this limit only applies to parsing + messages, not collections - so a message within a collection within a message only counts as + depth 2, not 3. + + + + + The type registry used to parse messages. + + + + + Whether the parser should ignore unknown fields (true) or throw an exception when + they are encountered (false). + + + + + Creates a new object with the specified recursion limit. + + The maximum depth of messages to parse + + + + Creates a new object with the specified recursion limit and type registry. + + The maximum depth of messages to parse + The type registry used to parse messages + + + + Creates a new object set to either ignore unknown fields, or throw an exception + when unknown fields are encountered. + + true if unknown fields should be ignored when parsing; false to throw an exception. + + + + Creates a new object based on this one, but with the specified recursion limit. + + The new recursion limit. + + + + Creates a new object based on this one, but with the specified type registry. + + The new type registry. Must not be null. + + + + Simple but strict JSON tokenizer, rigidly following RFC 7159. + + + + This tokenizer is stateful, and only returns "useful" tokens - names, values etc. + It does not create tokens for the separator between names and values, or for the comma + between values. It validates the token stream as it goes - so callers can assume that the + tokens it produces are appropriate. For example, it would never produce "start object, end array." + + Implementation details: the base class handles single token push-back and + Not thread-safe. + + + + + Creates a tokenizer that reads from the given text reader. + + + + + Creates a tokenizer that first replays the given list of tokens, then continues reading + from another tokenizer. Note that if the returned tokenizer is "pushed back", that does not push back + on the continuation tokenizer, or vice versa. Care should be taken when using this method - it was + created for the sake of Any parsing. + + + + + Returns the depth of the stack, purely in objects (not collections). + Informally, this is the number of remaining unclosed '{' characters we have. + + + + + Returns the next JSON token in the stream. An EndDocument token is returned to indicate the end of the stream, + after which point Next() should not be called again. + + This implementation provides single-token buffering, and calls if there is no buffered token. + The next token in the stream. This is never null. + This method is called after an EndDocument token has been returned + The input text does not comply with RFC 7159 + + + + Returns the next JSON token in the stream, when requested by the base class. (The method delegates + to this if it doesn't have a buffered token.) + + This method is called after an EndDocument token has been returned + The input text does not comply with RFC 7159 + + + + Skips the value we're about to read. This must only be called immediately after reading a property name. + If the value is an object or an array, the complete object/array is skipped. + + + + + Tokenizer which first exhausts a list of tokens, then consults another tokenizer. + + + + + Tokenizer which does all the *real* work of parsing JSON. + + + + + This method essentially just loops through characters skipping whitespace, validating and + changing state (e.g. from ObjectBeforeColon to ObjectAfterColon) + until it reaches something which will be a genuine token (e.g. a start object, or a value) at which point + it returns the token. Although the method is large, it would be relatively hard to break down further... most + of it is the large switch statement, which sometimes returns and sometimes doesn't. + + + + + Reads a string token. It is assumed that the opening " has already been read. + + + + + Reads an escaped character. It is assumed that the leading backslash has already been read. + + + + + Reads an escaped Unicode 4-nybble hex sequence. It is assumed that the leading \u has already been read. + + + + + Consumes a text-only literal, throwing an exception if the read text doesn't match it. + It is assumed that the first letter of the literal has already been read. + + + + + Validates that we're in a valid state to read a value (using the given error prefix if necessary) + and changes the state to the appropriate one, e.g. ObjectAfterColon to ObjectAfterProperty. + + + + + Pops the top-most container, and sets the state to the appropriate one for the end of a value + in the parent container. + + + + + Possible states of the tokenizer. + + + This is a flags enum purely so we can simply and efficiently represent a set of valid states + for checking. + + Each is documented with an example, + where ^ represents the current position within the text stream. The examples all use string values, + but could be any value, including nested objects/arrays. + The complete state of the tokenizer also includes a stack to indicate the contexts (arrays/objects). + Any additional notional state of "AfterValue" indicates that a value has been completed, at which + point there's an immediate transition to ExpectedEndOfDocument, ObjectAfterProperty or ArrayAfterValue. + + + These states were derived manually by reading RFC 7159 carefully. + + + + + + ^ { "foo": "bar" } + Before the value in a document. Next states: ObjectStart, ArrayStart, "AfterValue" + + + + + { "foo": "bar" } ^ + After the value in a document. Next states: ReaderExhausted + + + + + { "foo": "bar" } ^ (and already read to the end of the reader) + Terminal state. + + + + + { ^ "foo": "bar" } + Before the *first* property in an object. + Next states: + "AfterValue" (empty object) + ObjectBeforeColon (read a name) + + + + + { "foo" ^ : "bar", "x": "y" } + Next state: ObjectAfterColon + + + + + { "foo" : ^ "bar", "x": "y" } + Before any property other than the first in an object. + (Equivalently: after any property in an object) + Next states: + "AfterValue" (value is simple) + ObjectStart (value is object) + ArrayStart (value is array) + + + + + { "foo" : "bar" ^ , "x" : "y" } + At the end of a property, so expecting either a comma or end-of-object + Next states: ObjectAfterComma or "AfterValue" + + + + + { "foo":"bar", ^ "x":"y" } + Read the comma after the previous property, so expecting another property. + This is like ObjectStart, but closing brace isn't valid here + Next state: ObjectBeforeColon. + + + + + [ ^ "foo", "bar" ] + Before the *first* value in an array. + Next states: + "AfterValue" (read a value) + "AfterValue" (end of array; will pop stack) + + + + + [ "foo" ^ , "bar" ] + After any value in an array, so expecting either a comma or end-of-array + Next states: ArrayAfterComma or "AfterValue" + + + + + [ "foo", ^ "bar" ] + After a comma in an array, so there *must* be another value (simple or complex). + Next states: "AfterValue" (simple value), StartObject, StartArray + + + + + Wrapper around a text reader allowing small amounts of buffering and location handling. + + + + + The buffered next character, if we have one. + + + + + Returns the next character in the stream, or null if we have reached the end. + + + + + + Creates a new exception appropriate for the current state of the reader. + + + + + Stream implementation which proxies another stream, only allowing a certain amount + of data to be read. Note that this is only used to read delimited streams, so it + doesn't attempt to implement everything. + + + + + Extension methods on and . + + + + + Merges data from the given byte array into an existing message. + + The message to merge the data into. + The data to merge, which must be protobuf-encoded binary data. + + + + Merges data from the given byte array slice into an existing message. + + The message to merge the data into. + The data containing the slice to merge, which must be protobuf-encoded binary data. + The offset of the slice to merge. + The length of the slice to merge. + + + + Merges data from the given byte string into an existing message. + + The message to merge the data into. + The data to merge, which must be protobuf-encoded binary data. + + + + Merges data from the given stream into an existing message. + + The message to merge the data into. + Stream containing the data to merge, which must be protobuf-encoded binary data. + + + + Merges length-delimited data from the given stream into an existing message. + + + The stream is expected to contain a length and then the data. Only the amount of data + specified by the length will be consumed. + + The message to merge the data into. + Stream containing the data to merge, which must be protobuf-encoded binary data. + + + + Converts the given message into a byte array in protobuf encoding. + + The message to convert. + The message data as a byte array. + + + + Writes the given message data to the given stream in protobuf encoding. + + The message to write to the stream. + The stream to write to. + + + + Writes the length and then data of the given message to a stream. + + The message to write. + The output stream to write to. + + + + Converts the given message into a byte string in protobuf encoding. + + The message to convert. + The message data as a byte string. + + + + A general message parser, typically used by reflection-based code as all the methods + return simple . + + + + + Creates a template instance ready for population. + + An empty message. + + + + Parses a message from a byte array. + + The byte array containing the message. Must not be null. + The newly parsed message. + + + + Parses a message from a byte array slice. + + The byte array containing the message. Must not be null. + The offset of the slice to parse. + The length of the slice to parse. + The newly parsed message. + + + + Parses a message from the given byte string. + + The data to parse. + The parsed message. + + + + Parses a message from the given stream. + + The stream to parse. + The parsed message. + + + + Parses a length-delimited message from the given stream. + + + The stream is expected to contain a length and then the data. Only the amount of data + specified by the length will be consumed. + + The stream to parse. + The parsed message. + + + + Parses a message from the given coded input stream. + + The stream to parse. + The parsed message. + + + + Parses a message from the given JSON. + + The JSON to parse. + The parsed message. + The JSON does not comply with RFC 7159 + The JSON does not represent a Protocol Buffers message correctly + + + + A parser for a specific message type. + + +

+ This delegates most behavior to the + implementation within the original type, but + provides convenient overloads to parse from a variety of sources. +

+

+ Most applications will never need to create their own instances of this type; + instead, use the static Parser property of a generated message type to obtain a + parser for that type. +

+
+ The type of message to be parsed. +
+ + + Creates a new parser. + + + The factory method is effectively an optimization over using a generic constraint + to require a parameterless constructor: delegates are significantly faster to execute. + + Function to invoke when a new, empty message is required. + + + + Creates a template instance ready for population. + + An empty message. + + + + Parses a message from a byte array. + + The byte array containing the message. Must not be null. + The newly parsed message. + + + + Parses a message from a byte array slice. + + The byte array containing the message. Must not be null. + The offset of the slice to parse. + The length of the slice to parse. + The newly parsed message. + + + + Parses a message from the given byte string. + + The data to parse. + The parsed message. + + + + Parses a message from the given stream. + + The stream to parse. + The parsed message. + + + + Parses a length-delimited message from the given stream. + + + The stream is expected to contain a length and then the data. Only the amount of data + specified by the length will be consumed. + + The stream to parse. + The parsed message. + + + + Parses a message from the given coded input stream. + + The stream to parse. + The parsed message. + + + + Parses a message from the given JSON. + + The JSON to parse. + The parsed message. + The JSON does not comply with RFC 7159 + The JSON does not represent a Protocol Buffers message correctly + + + + Helper methods for throwing exceptions when preconditions are not met. + + + This class is used internally and by generated code; it is not particularly + expected to be used from application code, although nothing prevents it + from being used that way. + + + + + Throws an ArgumentNullException if the given value is null, otherwise + return the value to the caller. + + + + + Throws an ArgumentNullException if the given value is null, otherwise + return the value to the caller. + + + This is equivalent to but without the type parameter + constraint. In most cases, the constraint is useful to prevent you from calling CheckNotNull + with a value type - but it gets in the way if either you want to use it with a nullable + value type, or you want to use it with an unconstrained type parameter. + + + + + Container for a set of custom options specified within a message, field etc. + + + + This type is publicly immutable, but internally mutable. It is only populated + by the descriptor parsing code - by the time any user code is able to see an instance, + it will be fully initialized. + + + If an option is requested using the incorrect method, an answer may still be returned: all + of the numeric types are represented internally using 64-bit integers, for example. It is up to + the caller to ensure that they make the appropriate method call for the option they're interested in. + Note that enum options are simply stored as integers, so the value should be fetched using + and then cast appropriately. + + + Repeated options are currently not supported. Asking for a single value of an option + which was actually repeated will return the last value, except for message types where + all the set values are merged together. + + + + + + Singleton for all descriptors with an empty set of options. + + + + + A sequence of values per field. This needs to be per field rather than per tag to allow correct deserialization + of repeated fields which could be "int, ByteString, int" - unlikely as that is. The fact that values are boxed + is unfortunate; we might be able to use a struct instead, and we could combine uint and ulong values. + + + + + Retrieves a Boolean value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a signed 32-bit integer value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a signed 64-bit integer value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves an unsigned 32-bit integer value for the specified option field, + assuming a fixed-length representation. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves an unsigned 64-bit integer value for the specified option field, + assuming a fixed-length representation. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a signed 32-bit integer value for the specified option field, + assuming a fixed-length representation. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a signed 64-bit integer value for the specified option field, + assuming a fixed-length representation. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a signed 32-bit integer value for the specified option field, + assuming a zigzag encoding. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a signed 64-bit integer value for the specified option field, + assuming a zigzag encoding. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves an unsigned 32-bit integer value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves an unsigned 64-bit integer value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a 32-bit floating point value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a 64-bit floating point value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a string value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a bytes value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a message value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Reads an unknown field, either parsing it and storing it or skipping it. + + + If the current set of options is empty and we manage to read a field, a new set of options + will be created and returned. Otherwise, the return value is this. This allows + us to start with a singleton empty set of options and just create new ones where necessary. + + Input stream to read from. + The resulting set of custom options, either this or a new set. + + + + All field values can be stored as a byte string or a 64-bit integer. + This struct avoids unnecessary boxing. + + + + Holder for reflection information generated from google/protobuf/descriptor.proto + + + File descriptor for google/protobuf/descriptor.proto + + + + The protocol compiler can output a FileDescriptorSet containing the .proto + files it parses. + + + + Field number for the "file" field. + + + + Describes a complete .proto file. + + + + Field number for the "name" field. + + + + file name, relative to root of source tree + + + + Field number for the "package" field. + + + + e.g. "foo", "foo.bar", etc. + + + + Field number for the "dependency" field. + + + + Names of files imported by this file. + + + + Field number for the "public_dependency" field. + + + + Indexes of the public imported files in the dependency list above. + + + + Field number for the "weak_dependency" field. + + + + Indexes of the weak imported files in the dependency list. + For Google-internal migration only. Do not use. + + + + Field number for the "message_type" field. + + + + All top-level definitions in this file. + + + + Field number for the "enum_type" field. + + + Field number for the "service" field. + + + Field number for the "extension" field. + + + Field number for the "options" field. + + + Field number for the "source_code_info" field. + + + + This field contains optional information about the original source code. + You may safely remove this entire field without harming runtime + functionality of the descriptors -- the information is needed only by + development tools. + + + + Field number for the "syntax" field. + + + + The syntax of the proto file. + The supported values are "proto2" and "proto3". + + + + + Describes a message type. + + + + Field number for the "name" field. + + + Field number for the "field" field. + + + Field number for the "extension" field. + + + Field number for the "nested_type" field. + + + Field number for the "enum_type" field. + + + Field number for the "extension_range" field. + + + Field number for the "oneof_decl" field. + + + Field number for the "options" field. + + + Field number for the "reserved_range" field. + + + Field number for the "reserved_name" field. + + + + Reserved field names, which may not be used by fields in the same message. + A given name may only be reserved once. + + + + Container for nested types declared in the DescriptorProto message type. + + + Field number for the "start" field. + + + Field number for the "end" field. + + + Field number for the "options" field. + + + + Range of reserved tag numbers. Reserved tag numbers may not be used by + fields or extension ranges in the same message. Reserved ranges may + not overlap. + + + + Field number for the "start" field. + + + + Inclusive. + + + + Field number for the "end" field. + + + + Exclusive. + + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. See above. + + + + + Describes a field within a message. + + + + Field number for the "name" field. + + + Field number for the "number" field. + + + Field number for the "label" field. + + + Field number for the "type" field. + + + + If type_name is set, this need not be set. If both this and type_name + are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP. + + + + Field number for the "type_name" field. + + + + For message and enum types, this is the name of the type. If the name + starts with a '.', it is fully-qualified. Otherwise, C++-like scoping + rules are used to find the type (i.e. first the nested types within this + message are searched, then within the parent, on up to the root + namespace). + + + + Field number for the "extendee" field. + + + + For extensions, this is the name of the type being extended. It is + resolved in the same manner as type_name. + + + + Field number for the "default_value" field. + + + + For numeric types, contains the original text representation of the value. + For booleans, "true" or "false". + For strings, contains the default text contents (not escaped in any way). + For bytes, contains the C escaped value. All bytes >= 128 are escaped. + TODO(kenton): Base-64 encode? + + + + Field number for the "oneof_index" field. + + + + If set, gives the index of a oneof in the containing type's oneof_decl + list. This field is a member of that oneof. + + + + Field number for the "json_name" field. + + + + JSON name of this field. The value is set by protocol compiler. If the + user has set a "json_name" option on this field, that option's value + will be used. Otherwise, it's deduced from the field's name by converting + it to camelCase. + + + + Field number for the "options" field. + + + Container for nested types declared in the FieldDescriptorProto message type. + + + + 0 is reserved for errors. + Order is weird for historical reasons. + + + + + Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT64 if + negative values are likely. + + + + + Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT32 if + negative values are likely. + + + + + Tag-delimited aggregate. + Group type is deprecated and not supported in proto3. However, Proto3 + implementations should still be able to parse the group wire format and + treat group fields as unknown fields. + + + + + Length-delimited aggregate. + + + + + New in version 2. + + + + + Uses ZigZag encoding. + + + + + Uses ZigZag encoding. + + + + + 0 is reserved for errors + + + + + Describes a oneof. + + + + Field number for the "name" field. + + + Field number for the "options" field. + + + + Describes an enum type. + + + + Field number for the "name" field. + + + Field number for the "value" field. + + + Field number for the "options" field. + + + Field number for the "reserved_range" field. + + + + Range of reserved numeric values. Reserved numeric values may not be used + by enum values in the same enum declaration. Reserved ranges may not + overlap. + + + + Field number for the "reserved_name" field. + + + + Reserved enum value names, which may not be reused. A given name may only + be reserved once. + + + + Container for nested types declared in the EnumDescriptorProto message type. + + + + Range of reserved numeric values. Reserved values may not be used by + entries in the same enum. Reserved ranges may not overlap. + + Note that this is distinct from DescriptorProto.ReservedRange in that it + is inclusive such that it can appropriately represent the entire int32 + domain. + + + + Field number for the "start" field. + + + + Inclusive. + + + + Field number for the "end" field. + + + + Inclusive. + + + + + Describes a value within an enum. + + + + Field number for the "name" field. + + + Field number for the "number" field. + + + Field number for the "options" field. + + + + Describes a service. + + + + Field number for the "name" field. + + + Field number for the "method" field. + + + Field number for the "options" field. + + + + Describes a method of a service. + + + + Field number for the "name" field. + + + Field number for the "input_type" field. + + + + Input and output type names. These are resolved in the same way as + FieldDescriptorProto.type_name, but must refer to a message type. + + + + Field number for the "output_type" field. + + + Field number for the "options" field. + + + Field number for the "client_streaming" field. + + + + Identifies if client streams multiple client messages + + + + Field number for the "server_streaming" field. + + + + Identifies if server streams multiple server messages + + + + Field number for the "java_package" field. + + + + Sets the Java package where classes generated from this .proto will be + placed. By default, the proto package is used, but this is often + inappropriate because proto packages do not normally start with backwards + domain names. + + + + Field number for the "java_outer_classname" field. + + + + If set, all the classes from the .proto file are wrapped in a single + outer class with the given name. This applies to both Proto1 + (equivalent to the old "--one_java_file" option) and Proto2 (where + a .proto always translates to a single class, but you may want to + explicitly choose the class name). + + + + Field number for the "java_multiple_files" field. + + + + If set true, then the Java code generator will generate a separate .java + file for each top-level message, enum, and service defined in the .proto + file. Thus, these types will *not* be nested inside the outer class + named by java_outer_classname. However, the outer class will still be + generated to contain the file's getDescriptor() method as well as any + top-level extensions defined in the file. + + + + Field number for the "java_generate_equals_and_hash" field. + + + + This option does nothing. + + + + Field number for the "java_string_check_utf8" field. + + + + If set true, then the Java2 code generator will generate code that + throws an exception whenever an attempt is made to assign a non-UTF-8 + byte sequence to a string field. + Message reflection will do the same. + However, an extension field still accepts non-UTF-8 byte sequences. + This option has no effect on when used with the lite runtime. + + + + Field number for the "optimize_for" field. + + + Field number for the "go_package" field. + + + + Sets the Go package where structs generated from this .proto will be + placed. If omitted, the Go package will be derived from the following: + - The basename of the package import path, if provided. + - Otherwise, the package statement in the .proto file, if present. + - Otherwise, the basename of the .proto file, without extension. + + + + Field number for the "cc_generic_services" field. + + + + Should generic services be generated in each language? "Generic" services + are not specific to any particular RPC system. They are generated by the + main code generators in each language (without additional plugins). + Generic services were the only kind of service generation supported by + early versions of google.protobuf. + + Generic services are now considered deprecated in favor of using plugins + that generate code specific to your particular RPC system. Therefore, + these default to false. Old code which depends on generic services should + explicitly set them to true. + + + + Field number for the "java_generic_services" field. + + + Field number for the "py_generic_services" field. + + + Field number for the "php_generic_services" field. + + + Field number for the "deprecated" field. + + + + Is this file deprecated? + Depending on the target platform, this can emit Deprecated annotations + for everything in the file, or it will be completely ignored; in the very + least, this is a formalization for deprecating files. + + + + Field number for the "cc_enable_arenas" field. + + + + Enables the use of arenas for the proto messages in this file. This applies + only to generated classes for C++. + + + + Field number for the "objc_class_prefix" field. + + + + Sets the objective c class prefix which is prepended to all objective c + generated classes from this .proto. There is no default. + + + + Field number for the "csharp_namespace" field. + + + + Namespace for generated classes; defaults to the package. + + + + Field number for the "swift_prefix" field. + + + + By default Swift generators will take the proto package and CamelCase it + replacing '.' with underscore and use that to prefix the types/symbols + defined. When this options is provided, they will use this value instead + to prefix the types/symbols defined. + + + + Field number for the "php_class_prefix" field. + + + + Sets the php class prefix which is prepended to all php generated classes + from this .proto. Default is empty. + + + + Field number for the "php_namespace" field. + + + + Use this option to change the namespace of php generated classes. Default + is empty. When this option is empty, the package name will be used for + determining the namespace. + + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. + See the documentation for the "Options" section above. + + + + Container for nested types declared in the FileOptions message type. + + + + Generated classes can be optimized for speed or code size. + + + + + Generate complete code for parsing, serialization, + + + + + etc. + + + + + Generate code using MessageLite and the lite runtime. + + + + Field number for the "message_set_wire_format" field. + + + + Set true to use the old proto1 MessageSet wire format for extensions. + This is provided for backwards-compatibility with the MessageSet wire + format. You should not use this for any other reason: It's less + efficient, has fewer features, and is more complicated. + + The message must be defined exactly as follows: + message Foo { + option message_set_wire_format = true; + extensions 4 to max; + } + Note that the message cannot have any defined fields; MessageSets only + have extensions. + + All extensions of your type must be singular messages; e.g. they cannot + be int32s, enums, or repeated messages. + + Because this is an option, the above two restrictions are not enforced by + the protocol compiler. + + + + Field number for the "no_standard_descriptor_accessor" field. + + + + Disables the generation of the standard "descriptor()" accessor, which can + conflict with a field of the same name. This is meant to make migration + from proto1 easier; new code should avoid fields named "descriptor". + + + + Field number for the "deprecated" field. + + + + Is this message deprecated? + Depending on the target platform, this can emit Deprecated annotations + for the message, or it will be completely ignored; in the very least, + this is a formalization for deprecating messages. + + + + Field number for the "map_entry" field. + + + + Whether the message is an automatically generated map entry type for the + maps field. + + For maps fields: + map<KeyType, ValueType> map_field = 1; + The parsed descriptor looks like: + message MapFieldEntry { + option map_entry = true; + optional KeyType key = 1; + optional ValueType value = 2; + } + repeated MapFieldEntry map_field = 1; + + Implementations may choose not to generate the map_entry=true message, but + use a native map in the target language to hold the keys and values. + The reflection APIs in such implementions still need to work as + if the field is a repeated message field. + + NOTE: Do not set the option in .proto files. Always use the maps syntax + instead. The option should only be implicitly set by the proto compiler + parser. + + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. See above. + + + + Field number for the "ctype" field. + + + + The ctype option instructs the C++ code generator to use a different + representation of the field than it normally would. See the specific + options below. This option is not yet implemented in the open source + release -- sorry, we'll try to include it in a future version! + + + + Field number for the "packed" field. + + + + The packed option can be enabled for repeated primitive fields to enable + a more efficient representation on the wire. Rather than repeatedly + writing the tag and type for each element, the entire array is encoded as + a single length-delimited blob. In proto3, only explicit setting it to + false will avoid using packed encoding. + + + + Field number for the "jstype" field. + + + + The jstype option determines the JavaScript type used for values of the + field. The option is permitted only for 64 bit integral and fixed types + (int64, uint64, sint64, fixed64, sfixed64). A field with jstype JS_STRING + is represented as JavaScript string, which avoids loss of precision that + can happen when a large value is converted to a floating point JavaScript. + Specifying JS_NUMBER for the jstype causes the generated JavaScript code to + use the JavaScript "number" type. The behavior of the default option + JS_NORMAL is implementation dependent. + + This option is an enum to permit additional types to be added, e.g. + goog.math.Integer. + + + + Field number for the "lazy" field. + + + + Should this field be parsed lazily? Lazy applies only to message-type + fields. It means that when the outer message is initially parsed, the + inner message's contents will not be parsed but instead stored in encoded + form. The inner message will actually be parsed when it is first accessed. + + This is only a hint. Implementations are free to choose whether to use + eager or lazy parsing regardless of the value of this option. However, + setting this option true suggests that the protocol author believes that + using lazy parsing on this field is worth the additional bookkeeping + overhead typically needed to implement it. + + This option does not affect the public interface of any generated code; + all method signatures remain the same. Furthermore, thread-safety of the + interface is not affected by this option; const methods remain safe to + call from multiple threads concurrently, while non-const methods continue + to require exclusive access. + + Note that implementations may choose not to check required fields within + a lazy sub-message. That is, calling IsInitialized() on the outer message + may return true even if the inner message has missing required fields. + This is necessary because otherwise the inner message would have to be + parsed in order to perform the check, defeating the purpose of lazy + parsing. An implementation which chooses not to check required fields + must be consistent about it. That is, for any particular sub-message, the + implementation must either *always* check its required fields, or *never* + check its required fields, regardless of whether or not the message has + been parsed. + + + + Field number for the "deprecated" field. + + + + Is this field deprecated? + Depending on the target platform, this can emit Deprecated annotations + for accessors, or it will be completely ignored; in the very least, this + is a formalization for deprecating fields. + + + + Field number for the "weak" field. + + + + For Google-internal migration only. Do not use. + + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. See above. + + + + Container for nested types declared in the FieldOptions message type. + + + + Default mode. + + + + + Use the default type. + + + + + Use JavaScript strings. + + + + + Use JavaScript numbers. + + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. See above. + + + + Field number for the "allow_alias" field. + + + + Set this option to true to allow mapping different tag names to the same + value. + + + + Field number for the "deprecated" field. + + + + Is this enum deprecated? + Depending on the target platform, this can emit Deprecated annotations + for the enum, or it will be completely ignored; in the very least, this + is a formalization for deprecating enums. + + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. See above. + + + + Field number for the "deprecated" field. + + + + Is this enum value deprecated? + Depending on the target platform, this can emit Deprecated annotations + for the enum value, or it will be completely ignored; in the very least, + this is a formalization for deprecating enum values. + + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. See above. + + + + Field number for the "deprecated" field. + + + + Is this service deprecated? + Depending on the target platform, this can emit Deprecated annotations + for the service, or it will be completely ignored; in the very least, + this is a formalization for deprecating services. + + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. See above. + + + + Field number for the "deprecated" field. + + + + Is this method deprecated? + Depending on the target platform, this can emit Deprecated annotations + for the method, or it will be completely ignored; in the very least, + this is a formalization for deprecating methods. + + + + Field number for the "idempotency_level" field. + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. See above. + + + + Container for nested types declared in the MethodOptions message type. + + + + Is this method side-effect-free (or safe in HTTP parlance), or idempotent, + or neither? HTTP based RPC implementation may choose GET verb for safe + methods, and PUT verb for idempotent methods instead of the default POST. + + + + + implies idempotent + + + + + idempotent, but may have side effects + + + + + A message representing a option the parser does not recognize. This only + appears in options protos created by the compiler::Parser class. + DescriptorPool resolves these when building Descriptor objects. Therefore, + options protos in descriptor objects (e.g. returned by Descriptor::options(), + or produced by Descriptor::CopyTo()) will never have UninterpretedOptions + in them. + + + + Field number for the "name" field. + + + Field number for the "identifier_value" field. + + + + The value of the uninterpreted option, in whatever type the tokenizer + identified it as during parsing. Exactly one of these should be set. + + + + Field number for the "positive_int_value" field. + + + Field number for the "negative_int_value" field. + + + Field number for the "double_value" field. + + + Field number for the "string_value" field. + + + Field number for the "aggregate_value" field. + + + Container for nested types declared in the UninterpretedOption message type. + + + + The name of the uninterpreted option. Each string represents a segment in + a dot-separated name. is_extension is true iff a segment represents an + extension (denoted with parentheses in options specs in .proto files). + E.g.,{ ["foo", false], ["bar.baz", true], ["qux", false] } represents + "foo.(bar.baz).qux". + + + + Field number for the "name_part" field. + + + Field number for the "is_extension" field. + + + + Encapsulates information about the original source file from which a + FileDescriptorProto was generated. + + + + Field number for the "location" field. + + + + A Location identifies a piece of source code in a .proto file which + corresponds to a particular definition. This information is intended + to be useful to IDEs, code indexers, documentation generators, and similar + tools. + + For example, say we have a file like: + message Foo { + optional string foo = 1; + } + Let's look at just the field definition: + optional string foo = 1; + ^ ^^ ^^ ^ ^^^ + a bc de f ghi + We have the following locations: + span path represents + [a,i) [ 4, 0, 2, 0 ] The whole field definition. + [a,b) [ 4, 0, 2, 0, 4 ] The label (optional). + [c,d) [ 4, 0, 2, 0, 5 ] The type (string). + [e,f) [ 4, 0, 2, 0, 1 ] The name (foo). + [g,h) [ 4, 0, 2, 0, 3 ] The number (1). + + Notes: + - A location may refer to a repeated field itself (i.e. not to any + particular index within it). This is used whenever a set of elements are + logically enclosed in a single code segment. For example, an entire + extend block (possibly containing multiple extension definitions) will + have an outer location whose path refers to the "extensions" repeated + field without an index. + - Multiple locations may have the same path. This happens when a single + logical declaration is spread out across multiple places. The most + obvious example is the "extend" block again -- there may be multiple + extend blocks in the same scope, each of which will have the same path. + - A location's span is not always a subset of its parent's span. For + example, the "extendee" of an extension declaration appears at the + beginning of the "extend" block and is shared by all extensions within + the block. + - Just because a location's span is a subset of some other location's span + does not mean that it is a descendent. For example, a "group" defines + both a type and a field in a single declaration. Thus, the locations + corresponding to the type and field and their components will overlap. + - Code which tries to interpret locations should probably be designed to + ignore those that it doesn't understand, as more types of locations could + be recorded in the future. + + + + Container for nested types declared in the SourceCodeInfo message type. + + + Field number for the "path" field. + + + + Identifies which part of the FileDescriptorProto was defined at this + location. + + Each element is a field number or an index. They form a path from + the root FileDescriptorProto to the place where the definition. For + example, this path: + [ 4, 3, 2, 7, 1 ] + refers to: + file.message_type(3) // 4, 3 + .field(7) // 2, 7 + .name() // 1 + This is because FileDescriptorProto.message_type has field number 4: + repeated DescriptorProto message_type = 4; + and DescriptorProto.field has field number 2: + repeated FieldDescriptorProto field = 2; + and FieldDescriptorProto.name has field number 1: + optional string name = 1; + + Thus, the above path gives the location of a field name. If we removed + the last element: + [ 4, 3, 2, 7 ] + this path refers to the whole field declaration (from the beginning + of the label to the terminating semicolon). + + + + Field number for the "span" field. + + + + Always has exactly three or four elements: start line, start column, + end line (optional, otherwise assumed same as start line), end column. + These are packed into a single field for efficiency. Note that line + and column numbers are zero-based -- typically you will want to add + 1 to each before displaying to a user. + + + + Field number for the "leading_comments" field. + + + + If this SourceCodeInfo represents a complete declaration, these are any + comments appearing before and after the declaration which appear to be + attached to the declaration. + + A series of line comments appearing on consecutive lines, with no other + tokens appearing on those lines, will be treated as a single comment. + + leading_detached_comments will keep paragraphs of comments that appear + before (but not connected to) the current element. Each paragraph, + separated by empty lines, will be one comment element in the repeated + field. + + Only the comment content is provided; comment markers (e.g. //) are + stripped out. For block comments, leading whitespace and an asterisk + will be stripped from the beginning of each line other than the first. + Newlines are included in the output. + + Examples: + + optional int32 foo = 1; // Comment attached to foo. + // Comment attached to bar. + optional int32 bar = 2; + + optional string baz = 3; + // Comment attached to baz. + // Another line attached to baz. + + // Comment attached to qux. + // + // Another line attached to qux. + optional double qux = 4; + + // Detached comment for corge. This is not leading or trailing comments + // to qux or corge because there are blank lines separating it from + // both. + + // Detached comment for corge paragraph 2. + + optional string corge = 5; + /* Block comment attached + * to corge. Leading asterisks + * will be removed. */ + /* Block comment attached to + * grault. */ + optional int32 grault = 6; + + // ignored detached comments. + + + + Field number for the "trailing_comments" field. + + + Field number for the "leading_detached_comments" field. + + + + Describes the relationship between generated code and its original source + file. A GeneratedCodeInfo message is associated with only one generated + source file, but may contain references to different source .proto files. + + + + Field number for the "annotation" field. + + + + An Annotation connects some span of text in generated code to an element + of its generating .proto file. + + + + Container for nested types declared in the GeneratedCodeInfo message type. + + + Field number for the "path" field. + + + + Identifies the element in the original source .proto file. This field + is formatted the same as SourceCodeInfo.Location.path. + + + + Field number for the "source_file" field. + + + + Identifies the filesystem path to the original source .proto. + + + + Field number for the "begin" field. + + + + Identifies the starting offset in bytes in the generated code + that relates to the identified object. + + + + Field number for the "end" field. + + + + Identifies the ending offset in bytes in the generated code that + relates to the identified offset. The end offset should be one past + the last relevant byte (so the length of the text = end - begin). + + + + + Base class for nearly all descriptors, providing common functionality. + + + + + The index of this descriptor within its parent descriptor. + + + This returns the index of this descriptor within its parent, for + this descriptor's type. (There can be duplicate values for different + types, e.g. one enum type with index 0 and one message type with index 0.) + + + + + Returns the name of the entity (field, message etc) being described. + + + + + The fully qualified name of the descriptor's target. + + + + + The file this descriptor was declared in. + + + + + Contains lookup tables containing all the descriptors defined in a particular file. + + + + + Finds a symbol of the given name within the pool. + + The type of symbol to look for + Fully-qualified name to look up + The symbol with the given name and type, + or null if the symbol doesn't exist or has the wrong type + + + + Adds a package to the symbol tables. If a package by the same name + already exists, that is fine, but if some other kind of symbol + exists under the same name, an exception is thrown. If the package + has multiple components, this also adds the parent package(s). + + + + + Adds a symbol to the symbol table. + + The symbol already existed + in the symbol table. + + + + Verifies that the descriptor's name is valid (i.e. it contains + only letters, digits and underscores, and does not start with a digit). + + + + + + Returns the field with the given number in the given descriptor, + or null if it can't be found. + + + + + Adds a field to the fieldsByNumber table. + + A field with the same + containing type and number already exists. + + + + Adds an enum value to the enumValuesByNumber table. If an enum value + with the same type and number already exists, this method does nothing. + (This is allowed; the first value defined with the number takes precedence.) + + + + + Looks up a descriptor by name, relative to some other descriptor. + The name may be fully-qualified (with a leading '.'), partially-qualified, + or unqualified. C++-like name lookup semantics are used to search for the + matching descriptor. + + + This isn't heavily optimized, but it's only used during cross linking anyway. + If it starts being used more widely, we should look at performance more carefully. + + + + + Struct used to hold the keys for the fieldByNumber table. + + + + + Internal class containing utility methods when working with descriptors. + + + + + Equivalent to Func[TInput, int, TOutput] but usable in .NET 2.0. Only used to convert + arrays. + + + + + Converts the given array into a read-only list, applying the specified conversion to + each input element. + + + + + Thrown when building descriptors fails because the source DescriptorProtos + are not valid. + + + + + The full name of the descriptor where the error occurred. + + + + + A human-readable description of the error. (The Message property + is made up of the descriptor's name and this description.) + + + + + Descriptor for an enum type in a .proto file. + + + + + The brief name of the descriptor's target. + + + + + The CLR type for this enum. For generated code, this will be a CLR enum type. + + + + + If this is a nested type, get the outer descriptor, otherwise null. + + + + + An unmodifiable list of defined value descriptors for this enum. + + + + + Finds an enum value by number. If multiple enum values have the + same number, this returns the first defined value with that number. + If there is no value for the given number, this returns null. + + + + + Finds an enum value by name. + + The unqualified name of the value (e.g. "FOO"). + The value's descriptor, or null if not found. + + + + The (possibly empty) set of custom options for this enum. + + + + + Descriptor for a single enum value within an enum in a .proto file. + + + + + Returns the name of the enum value described by this object. + + + + + Returns the number associated with this enum value. + + + + + Returns the enum descriptor that this value is part of. + + + + + The (possibly empty) set of custom options for this enum value. + + + + + Base class for field accessors. + + + + + Descriptor for a field or extension within a message in a .proto file. + + + + + Get the field's containing message type. + + + + + Returns the oneof containing this field, or null if it is not part of a oneof. + + + + + The effective JSON name for this field. This is usually the lower-camel-cased form of the field name, + but can be overridden using the json_name option in the .proto file. + + + + + The brief name of the descriptor's target. + + + + + Returns the accessor for this field. + + + + While a describes the field, it does not provide + any way of obtaining or changing the value of the field within a specific message; + that is the responsibility of the accessor. + + + The value returned by this property will be non-null for all regular fields. However, + if a message containing a map field is introspected, the list of nested messages will include + an auto-generated nested key/value pair message for the field. This is not represented in any + generated type, and the value of the map field itself is represented by a dictionary in the + reflection API. There are never instances of those "hidden" messages, so no accessor is provided + and this property will return null. + + + + + + Maps a field type as included in the .proto file to a FieldType. + + + + + Returns true if this field is a repeated field; false otherwise. + + + + + Returns true if this field is a map field; false otherwise. + + + + + Returns true if this field is a packed, repeated field; false otherwise. + + + + + Returns the type of the field. + + + + + Returns the field number declared in the proto file. + + + + + Compares this descriptor with another one, ordering in "canonical" order + which simply means ascending order by field number. + must be a field of the same type, i.e. the of + both fields must be the same. + + + + + For enum fields, returns the field's type. + + + + + For embedded message and group fields, returns the field's type. + + + + + The (possibly empty) set of custom options for this field. + + + + + Look up and cross-link all field types etc. + + + + + Enumeration of all the possible field types. + + + + + The double field type. + + + + + The float field type. + + + + + The int64 field type. + + + + + The uint64 field type. + + + + + The int32 field type. + + + + + The fixed64 field type. + + + + + The fixed32 field type. + + + + + The bool field type. + + + + + The string field type. + + + + + The field type used for groups (not supported in this implementation). + + + + + The field type used for message fields. + + + + + The bytes field type. + + + + + The uint32 field type. + + + + + The sfixed32 field type. + + + + + The sfixed64 field type. + + + + + The sint32 field type. + + + + + The sint64 field type. + + + + + The field type used for enum fields. + + + + + Describes a .proto file, including everything defined within. + IDescriptor is implemented such that the File property returns this descriptor, + and the FullName is the same as the Name. + + + + + Computes the full name of a descriptor within this file, with an optional parent message. + + + + + Extracts public dependencies from direct dependencies. This is a static method despite its + first parameter, as the value we're in the middle of constructing is only used for exceptions. + + + + + The descriptor in its protocol message representation. + + + + + The file name. + + + + + The package as declared in the .proto file. This may or may not + be equivalent to the .NET namespace of the generated classes. + + + + + Unmodifiable list of top-level message types declared in this file. + + + + + Unmodifiable list of top-level enum types declared in this file. + + + + + Unmodifiable list of top-level services declared in this file. + + + + + Unmodifiable list of this file's dependencies (imports). + + + + + Unmodifiable list of this file's public dependencies (public imports). + + + + + The original serialized binary form of this descriptor. + + + + + Implementation of IDescriptor.FullName - just returns the same as Name. + + + + + Implementation of IDescriptor.File - just returns this descriptor. + + + + + Pool containing symbol descriptors. + + + + + Finds a type (message, enum, service or extension) in the file by name. Does not find nested types. + + The unqualified type name to look for. + The type of descriptor to look for + The type's descriptor, or null if not found. + + + + Builds a FileDescriptor from its protocol buffer representation. + + The original serialized descriptor data. + We have only limited proto2 support, so serializing FileDescriptorProto + would not necessarily give us this. + The protocol message form of the FileDescriptor. + FileDescriptors corresponding to all of the + file's dependencies, in the exact order listed in the .proto file. May be null, + in which case it is treated as an empty array. + Whether unknown dependencies are ignored (true) or cause an exception to be thrown (false). + Details about generated code, for the purposes of reflection. + If is not + a valid descriptor. This can occur for a number of reasons, such as a field + having an undefined type or because two messages were defined with the same name. + + + + Creates a descriptor for generated code. + + + This method is only designed to be used by the results of generating code with protoc, + which creates the appropriate dependencies etc. It has to be public because the generated + code is "external", but should not be called directly by end users. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Returns the file descriptor for descriptor.proto. + + + This is used for protos which take a direct dependency on descriptor.proto, typically for + annotations. While descriptor.proto is a proto2 file, it is built into the Google.Protobuf + runtime for reflection purposes. The messages are internal to the runtime as they would require + proto2 semantics for full support, but the file descriptor is available via this property. The + C# codegen in protoc automatically uses this property when it detects a dependency on descriptor.proto. + + + The file descriptor for descriptor.proto. + + + + + The (possibly empty) set of custom options for this file. + + + + + Extra information provided by generated code when initializing a message or file descriptor. + These are constructed as required, and are not long-lived. Hand-written code should + never need to use this type. + + + + + Irrelevant for file descriptors; the CLR type for the message for message descriptors. + + + + + Irrelevant for file descriptors; the parser for message descriptors. + + + + + Irrelevant for file descriptors; the CLR property names (in message descriptor field order) + for fields in the message for message descriptors. + + + + + Irrelevant for file descriptors; the CLR property "base" names (in message descriptor oneof order) + for oneofs in the message for message descriptors. It is expected that for a oneof name of "Foo", + there will be a "FooCase" property and a "ClearFoo" method. + + + + + The reflection information for types within this file/message descriptor. Elements may be null + if there is no corresponding generated type, e.g. for map entry types. + + + + + The CLR types for enums within this file/message descriptor. + + + + + Creates a GeneratedClrTypeInfo for a message descriptor, with nested types, nested enums, the CLR type, property names and oneof names. + Each array parameter may be null, to indicate a lack of values. + The parameter order is designed to make it feasible to format the generated code readably. + + + + + Creates a GeneratedClrTypeInfo for a file descriptor, with only types and enums. + + + + + Interface implemented by all descriptor types. + + + + + Returns the name of the entity (message, field etc) being described. + + + + + Returns the fully-qualified name of the entity being described. + + + + + Returns the descriptor for the .proto file that this entity is part of. + + + + + Allows fields to be reflectively accessed. + + + + + Returns the descriptor associated with this field. + + + + + Clears the field in the specified message. (For repeated fields, + this clears the list.) + + + + + Fetches the field value. For repeated values, this will be an + implementation. For map values, this will be an + implementation. + + + + + Mutator for single "simple" fields only. + + + Repeated fields are mutated by fetching the value and manipulating it as a list. + Map fields are mutated by fetching the value and manipulating it as a dictionary. + + The field is not a "simple" field. + + + + Accessor for map fields. + + + + + Describes a message type. + + + + + The brief name of the descriptor's target. + + + + + The CLR type used to represent message instances from this descriptor. + + + + The value returned by this property will be non-null for all regular fields. However, + if a message containing a map field is introspected, the list of nested messages will include + an auto-generated nested key/value pair message for the field. This is not represented in any + generated type, so this property will return null in such cases. + + + For wrapper types ( and the like), the type returned here + will be the generated message type, not the native type used by reflection for fields of those types. Code + using reflection should call to determine whether a message descriptor represents + a wrapper type, and handle the result appropriately. + + + + + + A parser for this message type. + + + + As is not generic, this cannot be statically + typed to the relevant type, but it should produce objects of a type compatible with . + + + The value returned by this property will be non-null for all regular fields. However, + if a message containing a map field is introspected, the list of nested messages will include + an auto-generated nested key/value pair message for the field. No message parser object is created for + such messages, so this property will return null in such cases. + + + For wrapper types ( and the like), the parser returned here + will be the generated message type, not the native type used by reflection for fields of those types. Code + using reflection should call to determine whether a message descriptor represents + a wrapper type, and handle the result appropriately. + + + + + + Returns whether this message is one of the "well known types" which may have runtime/protoc support. + + + + + Returns whether this message is one of the "wrapper types" used for fields which represent primitive values + with the addition of presence. + + + + + If this is a nested type, get the outer descriptor, otherwise null. + + + + + A collection of fields, which can be retrieved by name or field number. + + + + + An unmodifiable list of this message type's nested types. + + + + + An unmodifiable list of this message type's enum types. + + + + + An unmodifiable list of the "oneof" field collections in this message type. + + + + + Finds a field by field name. + + The unqualified name of the field (e.g. "foo"). + The field's descriptor, or null if not found. + + + + Finds a field by field number. + + The field number within this message type. + The field's descriptor, or null if not found. + + + + Finds a nested descriptor by name. The is valid for fields, nested + message types, oneofs and enums. + + The unqualified name of the descriptor, e.g. "Foo" + The descriptor, or null if not found. + + + + The (possibly empty) set of custom options for this message. + + + + + Looks up and cross-links all fields and nested types. + + + + + A collection to simplify retrieving the field accessor for a particular field. + + + + + Returns the fields in the message as an immutable list, in the order in which they + are declared in the source .proto file. + + + + + Returns the fields in the message as an immutable list, in ascending field number + order. Field numbers need not be contiguous, so there is no direct mapping from the + index in the list to the field number; to retrieve a field by field number, it is better + to use the indexer. + + + + + Returns a read-only dictionary mapping the field names in this message as they're available + in the JSON representation to the field descriptors. For example, a field foo_bar + in the message would result two entries, one with a key fooBar and one with a key + foo_bar, both referring to the same field. + + + + + Retrieves the descriptor for the field with the given number. + + Number of the field to retrieve the descriptor for + The accessor for the given field + The message descriptor does not contain a field + with the given number + + + + Retrieves the descriptor for the field with the given name. + + Name of the field to retrieve the descriptor for + The descriptor for the given field + The message descriptor does not contain a field + with the given name + + + + Describes a single method in a service. + + + + + The service this method belongs to. + + + + + The method's input type. + + + + + The method's input type. + + + + + Indicates if client streams multiple requests. + + + + + Indicates if server streams multiple responses. + + + + + The (possibly empty) set of custom options for this method. + + + + + The brief name of the descriptor's target. + + + + + Reflection access for a oneof, allowing clear and "get case" actions. + + + + + Gets the descriptor for this oneof. + + + The descriptor of the oneof. + + + + + Clears the oneof in the specified message. + + + + + Indicates which field in the oneof is set for specified message + + + + + Describes a "oneof" field collection in a message type: a set of + fields of which at most one can be set in any particular message. + + + + + The brief name of the descriptor's target. + + + + + Gets the message type containing this oneof. + + + The message type containing this oneof. + + + + + Gets the fields within this oneof, in declaration order. + + + The fields within this oneof, in declaration order. + + + + + Gets an accessor for reflective access to the values associated with the oneof + in a particular message. + + + The accessor used for reflective access. + + + + + The (possibly empty) set of custom options for this oneof. + + + + + Specifies the original name (in the .proto file) of a named element, + such as an enum value. + + + + + The name of the element in the .proto file. + + + + + If the name is preferred in the .proto file. + + + + + Constructs a new attribute instance for the given name. + + The name of the element in the .proto file. + + + + Represents a package in the symbol table. We use PackageDescriptors + just as placeholders so that someone cannot define, say, a message type + that has the same name as an existing package. + + + + + The methods in this class are somewhat evil, and should not be tampered with lightly. + Basically they allow the creation of relatively weakly typed delegates from MethodInfos + which are more strongly typed. They do this by creating an appropriate strongly typed + delegate from the MethodInfo, and then calling that within an anonymous method. + Mind-bending stuff (at least to your humble narrator) but the resulting delegates are + very fast compared with calling Invoke later on. + + + + + Empty Type[] used when calling GetProperty to force property instead of indexer fetching. + + + + + Creates a delegate which will cast the argument to the appropriate method target type, + call the method on it, then convert the result to object. + + + + + Creates a delegate which will cast the argument to the appropriate method target type, + call the method on it, then convert the result to the specified type. + + + + + Creates a delegate which will execute the given method after casting the first argument to + the target type of the method, and the second argument to the first parameter type of the method. + + + + + Creates a delegate which will execute the given method after casting the first argument to + the target type of the method. + + + + + Accessor for repeated fields. + + + + + Describes a service type. + + + + + The brief name of the descriptor's target. + + + + + An unmodifiable list of methods in this service. + + + + + Finds a method by name. + + The unqualified name of the method (e.g. "Foo"). + The method's decsriptor, or null if not found. + + + + The (possibly empty) set of custom options for this service. + + + + + Accessor for single fields. + + + + + An immutable registry of types which can be looked up by their full name. + + + + + An empty type registry, containing no types. + + + + + Attempts to find a message descriptor by its full name. + + The full name of the message, which is the dot-separated + combination of package, containing messages and message name + The message descriptor corresponding to or null + if there is no such message descriptor. + + + + Creates a type registry from the specified set of file descriptors. + + + This is a convenience overload for + to allow calls such as TypeRegistry.FromFiles(descriptor1, descriptor2). + + The set of files to include in the registry. Must not contain null values. + A type registry for the given files. + + + + Creates a type registry from the specified set of file descriptors. + + + All message types within all the specified files are added to the registry, and + the dependencies of the specified files are also added, recursively. + + The set of files to include in the registry. Must not contain null values. + A type registry for the given files. + + + + Creates a type registry from the file descriptor parents of the specified set of message descriptors. + + + This is a convenience overload for + to allow calls such as TypeRegistry.FromFiles(descriptor1, descriptor2). + + The set of message descriptors to use to identify file descriptors to include in the registry. + Must not contain null values. + A type registry for the given files. + + + + Creates a type registry from the file descriptor parents of the specified set of message descriptors. + + + The specified message descriptors are only used to identify their file descriptors; the returned registry + contains all the types within the file descriptors which contain the specified message descriptors (and + the dependencies of those files), not just the specified messages. + + The set of message descriptors to use to identify file descriptors to include in the registry. + Must not contain null values. + A type registry for the given files. + + + + Builder class which isn't exposed, but acts as a convenient alternative to passing round two dictionaries in recursive calls. + + + + + Represents a single field in an UnknownFieldSet. + + An UnknownField consists of four lists of values. The lists correspond + to the four "wire types" used in the protocol buffer binary format. + Normally, only one of the four lists will contain any values, since it + is impossible to define a valid message type that declares two different + types for the same field number. However, the code is designed to allow + for the case where the same unknown field number is encountered using + multiple different wire types. + + + + + + Creates a new UnknownField. + + + + + Checks if two unknown field are equal. + + + + + Get the hash code of the unknown field. + + + + + Serializes the field, including the field number, and writes it to + + + The unknown field number. + The CodedOutputStream to write to. + + + + Computes the number of bytes required to encode this field, including field + number. + + + + + Merge the values in into this field. For each list + of values, 's values are append to the ones in this + field. + + + + + Returns a new list containing all of the given specified values from + both the and lists. + If is null and is empty, + null is returned. Otherwise, either a new list is created (if + is null) or the elements of are added to . + + + + + Adds a varint value. + + + + + Adds a fixed32 value. + + + + + Adds a fixed64 value. + + + + + Adds a length-delimited value. + + + + + Adds to the , creating + a new list if is null. The list is returned - either + the original reference or the new list. + + + + + Used to keep track of fields which were seen when parsing a protocol message + but whose field numbers or types are unrecognized. This most frequently + occurs when new fields are added to a message type and then messages containing + those fields are read by old software that was built before the new types were + added. + + Most users will never need to use this class directly. + + + + + Creates a new UnknownFieldSet. + + + + + Checks whether or not the given field number is present in the set. + + + + + Serializes the set and writes it to . + + + + + Gets the number of bytes required to encode this set. + + + + + Checks if two unknown field sets are equal. + + + + + Gets the unknown field set's hash code. + + + + + Adds a field to the set. If a field with the same number already exists, it + is replaced. + + + + + Parse a single field from and merge it + into this set. + + The coded input stream containing the field + false if the tag is an "end group" tag, true otherwise + + + + Create a new UnknownFieldSet if unknownFields is null. + Parse a single field from and merge it + into unknownFields. + + The UnknownFieldSet which need to be merged + The coded input stream containing the field + The merged UnknownFieldSet + + + + Merges the fields from into this set. + If a field number exists in both sets, the values in + will be appended to the values in this set. + + + + + Created a new UnknownFieldSet to if + needed and merges the fields from into the first set. + If a field number exists in both sets, the values in + will be appended to the values in this set. + + + + + Adds a field to the unknown field set. If a field with the same + number already exists, the two are merged. + + + + + Clone an unknown field set from . + + + + Holder for reflection information generated from google/protobuf/any.proto + + + File descriptor for google/protobuf/any.proto + + + + `Any` contains an arbitrary serialized protocol buffer message along with a + URL that describes the type of the serialized message. + + Protobuf library provides support to pack/unpack Any values in the form + of utility functions or additional generated methods of the Any type. + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by default use + 'type.googleapis.com/full.type.name' as the type URL and the unpack + methods only use the fully qualified type name after the last '/' + in the type URL, for example "foo.bar.com/x/y.z" will yield type + name "y.z". + + JSON + ==== + The JSON representation of an `Any` value uses the regular + representation of the deserialized, embedded message, with an + additional field `@type` which contains the type URL. Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": <string>, + "lastName": <string> + } + + If the embedded message type is well-known and has a custom JSON + representation, that representation will be embedded adding a field + `value` which holds the custom JSON in addition to the `@type` + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + + + + Field number for the "type_url" field. + + + + A URL/resource name whose content describes the type of the + serialized protocol buffer message. + + For URLs which use the scheme `http`, `https`, or no scheme, the + following restrictions and interpretations apply: + + * If no scheme is provided, `https` is assumed. + * The last segment of the URL's path must represent the fully + qualified name of the type (as in `path/google.protobuf.Duration`). + The name should be in a canonical form (e.g., leading "." is + not accepted). + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Schemes other than `http`, `https` (or the empty scheme) might be + used with implementation specific semantics. + + + + Field number for the "value" field. + + + + Must be a valid serialized protocol buffer of the above specified type. + + + + + Retrieves the type name for a type URL, matching the + of the packed message type. + + + + This is always just the last part of the URL, after the final slash. No validation of + anything before the trailing slash is performed. If the type URL does not include a slash, + an empty string is returned rather than an exception being thrown; this won't match any types, + and the calling code is probably in a better position to give a meaningful error. + + + There is no handling of fragments or queries at the moment. + + + The URL to extract the type name from + The type name + + + + Unpacks the content of this Any message into the target message type, + which must match the type URL within this Any message. + + The type of message to unpack the content into. + The unpacked message. + The target message type doesn't match the type URL in this message + + + + Attempts to unpack the content of this Any message into the target message type, + if it matches the type URL within this Any message. + + The type of message to attempt to unpack the content into. + true if the message was successfully unpacked; false if the type name didn't match + + + + Packs the specified message into an Any message using a type URL prefix of "type.googleapis.com". + + The message to pack. + An Any message with the content and type URL of . + + + + Packs the specified message into an Any message using the specified type URL prefix. + + The message to pack. + The prefix for the type URL. + An Any message with the content and type URL of . + + + Holder for reflection information generated from google/protobuf/api.proto + + + File descriptor for google/protobuf/api.proto + + + + Api is a light-weight descriptor for an API Interface. + + Interfaces are also described as "protocol buffer services" in some contexts, + such as by the "service" keyword in a .proto file, but they are different + from API Services, which represent a concrete implementation of an interface + as opposed to simply a description of methods and bindings. They are also + sometimes simply referred to as "APIs" in other contexts, such as the name of + this message itself. See https://cloud.google.com/apis/design/glossary for + detailed terminology. + + + + Field number for the "name" field. + + + + The fully qualified name of this interface, including package name + followed by the interface's simple name. + + + + Field number for the "methods" field. + + + + The methods of this interface, in unspecified order. + + + + Field number for the "options" field. + + + + Any metadata attached to the interface. + + + + Field number for the "version" field. + + + + A version string for this interface. If specified, must have the form + `major-version.minor-version`, as in `1.10`. If the minor version is + omitted, it defaults to zero. If the entire version field is empty, the + major version is derived from the package name, as outlined below. If the + field is not empty, the version in the package name will be verified to be + consistent with what is provided here. + + The versioning schema uses [semantic + versioning](http://semver.org) where the major version number + indicates a breaking change and the minor version an additive, + non-breaking change. Both version numbers are signals to users + what to expect from different versions, and should be carefully + chosen based on the product plan. + + The major version is also reflected in the package name of the + interface, which must end in `v<major-version>`, as in + `google.feature.v1`. For major versions 0 and 1, the suffix can + be omitted. Zero major versions must only be used for + experimental, non-GA interfaces. + + + + Field number for the "source_context" field. + + + + Source context for the protocol buffer service represented by this + message. + + + + Field number for the "mixins" field. + + + + Included interfaces. See [Mixin][]. + + + + Field number for the "syntax" field. + + + + The source syntax of the service. + + + + + Method represents a method of an API interface. + + + + Field number for the "name" field. + + + + The simple name of this method. + + + + Field number for the "request_type_url" field. + + + + A URL of the input message type. + + + + Field number for the "request_streaming" field. + + + + If true, the request is streamed. + + + + Field number for the "response_type_url" field. + + + + The URL of the output message type. + + + + Field number for the "response_streaming" field. + + + + If true, the response is streamed. + + + + Field number for the "options" field. + + + + Any metadata attached to the method. + + + + Field number for the "syntax" field. + + + + The source syntax of this method. + + + + + Declares an API Interface to be included in this interface. The including + interface must redeclare all the methods from the included interface, but + documentation and options are inherited as follows: + + - If after comment and whitespace stripping, the documentation + string of the redeclared method is empty, it will be inherited + from the original method. + + - Each annotation belonging to the service config (http, + visibility) which is not set in the redeclared method will be + inherited. + + - If an http annotation is inherited, the path pattern will be + modified as follows. Any version prefix will be replaced by the + version of the including interface plus the [root][] path if + specified. + + Example of a simple mixin: + + package google.acl.v1; + service AccessControl { + // Get the underlying ACL object. + rpc GetAcl(GetAclRequest) returns (Acl) { + option (google.api.http).get = "/v1/{resource=**}:getAcl"; + } + } + + package google.storage.v2; + service Storage { + rpc GetAcl(GetAclRequest) returns (Acl); + + // Get a data record. + rpc GetData(GetDataRequest) returns (Data) { + option (google.api.http).get = "/v2/{resource=**}"; + } + } + + Example of a mixin configuration: + + apis: + - name: google.storage.v2.Storage + mixins: + - name: google.acl.v1.AccessControl + + The mixin construct implies that all methods in `AccessControl` are + also declared with same name and request/response types in + `Storage`. A documentation generator or annotation processor will + see the effective `Storage.GetAcl` method after inherting + documentation and annotations as follows: + + service Storage { + // Get the underlying ACL object. + rpc GetAcl(GetAclRequest) returns (Acl) { + option (google.api.http).get = "/v2/{resource=**}:getAcl"; + } + ... + } + + Note how the version in the path pattern changed from `v1` to `v2`. + + If the `root` field in the mixin is specified, it should be a + relative path under which inherited HTTP paths are placed. Example: + + apis: + - name: google.storage.v2.Storage + mixins: + - name: google.acl.v1.AccessControl + root: acls + + This implies the following inherited HTTP annotation: + + service Storage { + // Get the underlying ACL object. + rpc GetAcl(GetAclRequest) returns (Acl) { + option (google.api.http).get = "/v2/acls/{resource=**}:getAcl"; + } + ... + } + + + + Field number for the "name" field. + + + + The fully qualified name of the interface which is included. + + + + Field number for the "root" field. + + + + If non-empty specifies a path under which inherited HTTP paths + are rooted. + + + + Holder for reflection information generated from google/protobuf/duration.proto + + + File descriptor for google/protobuf/duration.proto + + + + A Duration represents a signed, fixed-length span of time represented + as a count of seconds and fractions of seconds at nanosecond + resolution. It is independent of any calendar and concepts like "day" + or "month". It is related to Timestamp in that the difference between + two Timestamp values is a Duration and it can be added or subtracted + from a Timestamp. Range is approximately +-10,000 years. + + # Examples + + Example 1: Compute Duration from two Timestamps in pseudo code. + + Timestamp start = ...; + Timestamp end = ...; + Duration duration = ...; + + duration.seconds = end.seconds - start.seconds; + duration.nanos = end.nanos - start.nanos; + + if (duration.seconds < 0 && duration.nanos > 0) { + duration.seconds += 1; + duration.nanos -= 1000000000; + } else if (durations.seconds > 0 && duration.nanos < 0) { + duration.seconds -= 1; + duration.nanos += 1000000000; + } + + Example 2: Compute Timestamp from Timestamp + Duration in pseudo code. + + Timestamp start = ...; + Duration duration = ...; + Timestamp end = ...; + + end.seconds = start.seconds + duration.seconds; + end.nanos = start.nanos + duration.nanos; + + if (end.nanos < 0) { + end.seconds -= 1; + end.nanos += 1000000000; + } else if (end.nanos >= 1000000000) { + end.seconds += 1; + end.nanos -= 1000000000; + } + + Example 3: Compute Duration from datetime.timedelta in Python. + + td = datetime.timedelta(days=3, minutes=10) + duration = Duration() + duration.FromTimedelta(td) + + # JSON Mapping + + In JSON format, the Duration type is encoded as a string rather than an + object, where the string ends in the suffix "s" (indicating seconds) and + is preceded by the number of seconds, with nanoseconds expressed as + fractional seconds. For example, 3 seconds with 0 nanoseconds should be + encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should + be expressed in JSON format as "3.000000001s", and 3 seconds and 1 + microsecond should be expressed in JSON format as "3.000001s". + + + + Field number for the "seconds" field. + + + + Signed seconds of the span of time. Must be from -315,576,000,000 + to +315,576,000,000 inclusive. Note: these bounds are computed from: + 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years + + + + Field number for the "nanos" field. + + + + Signed fractions of a second at nanosecond resolution of the span + of time. Durations less than one second are represented with a 0 + `seconds` field and a positive or negative `nanos` field. For durations + of one second or more, a non-zero value for the `nanos` field must be + of the same sign as the `seconds` field. Must be from -999,999,999 + to +999,999,999 inclusive. + + + + + The number of nanoseconds in a second. + + + + + The number of nanoseconds in a BCL tick (as used by and ). + + + + + The maximum permitted number of seconds. + + + + + The minimum permitted number of seconds. + + + + + Converts this to a . + + If the duration is not a precise number of ticks, it is truncated towards 0. + The value of this duration, as a TimeSpan. + This value isn't a valid normalized duration, as + described in the documentation. + + + + Converts the given to a . + + The TimeSpan to convert. + The value of the given TimeSpan, as a Duration. + + + + Returns the result of negating the duration. For example, the negation of 5 minutes is -5 minutes. + + The duration to negate. Must not be null. + The negated value of this duration. + + + + Adds the two specified values together. + + The first value to add. Must not be null. + The second value to add. Must not be null. + + + + + Subtracts one from another. + + The duration to subtract from. Must not be null. + The duration to subtract. Must not be null. + The difference between the two specified durations. + + + + Creates a duration with the normalized values from the given number of seconds and + nanoseconds, conforming with the description in the proto file. + + + + + Converts a duration specified in seconds/nanoseconds to a string. + + + If the value is a normalized duration in the range described in duration.proto, + is ignored. Otherwise, if the parameter is true, + a JSON object with a warning is returned; if it is false, an is thrown. + + Seconds portion of the duration. + Nanoseconds portion of the duration. + Determines the handling of non-normalized values + The represented duration is invalid, and is false. + + + + Returns a string representation of this for diagnostic purposes. + + + Normally the returned value will be a JSON string value (including leading and trailing quotes) but + when the value is non-normalized or out of range, a JSON object representation will be returned + instead, including a warning. This is to avoid exceptions being thrown when trying to + diagnose problems - the regular JSON formatter will still throw an exception for non-normalized + values. + + A string representation of this value. + + + + Appends a number of nanoseconds to a StringBuilder. Either 0 digits are added (in which + case no "." is appended), or 3 6 or 9 digits. This is internal for use in Timestamp as well + as Duration. + + + + Holder for reflection information generated from google/protobuf/empty.proto + + + File descriptor for google/protobuf/empty.proto + + + + A generic empty message that you can re-use to avoid defining duplicated + empty messages in your APIs. A typical example is to use it as the request + or the response type of an API method. For instance: + + service Foo { + rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); + } + + The JSON representation for `Empty` is empty JSON object `{}`. + + + + Holder for reflection information generated from google/protobuf/field_mask.proto + + + File descriptor for google/protobuf/field_mask.proto + + + + `FieldMask` represents a set of symbolic field paths, for example: + + paths: "f.a" + paths: "f.b.d" + + Here `f` represents a field in some root message, `a` and `b` + fields in the message found in `f`, and `d` a field found in the + message in `f.b`. + + Field masks are used to specify a subset of fields that should be + returned by a get operation or modified by an update operation. + Field masks also have a custom JSON encoding (see below). + + # Field Masks in Projections + + When used in the context of a projection, a response message or + sub-message is filtered by the API to only contain those fields as + specified in the mask. For example, if the mask in the previous + example is applied to a response message as follows: + + f { + a : 22 + b { + d : 1 + x : 2 + } + y : 13 + } + z: 8 + + The result will not contain specific values for fields x,y and z + (their value will be set to the default, and omitted in proto text + output): + + f { + a : 22 + b { + d : 1 + } + } + + A repeated field is not allowed except at the last position of a + paths string. + + If a FieldMask object is not present in a get operation, the + operation applies to all fields (as if a FieldMask of all fields + had been specified). + + Note that a field mask does not necessarily apply to the + top-level response message. In case of a REST get operation, the + field mask applies directly to the response, but in case of a REST + list operation, the mask instead applies to each individual message + in the returned resource list. In case of a REST custom method, + other definitions may be used. Where the mask applies will be + clearly documented together with its declaration in the API. In + any case, the effect on the returned resource/resources is required + behavior for APIs. + + # Field Masks in Update Operations + + A field mask in update operations specifies which fields of the + targeted resource are going to be updated. The API is required + to only change the values of the fields as specified in the mask + and leave the others untouched. If a resource is passed in to + describe the updated values, the API ignores the values of all + fields not covered by the mask. + + If a repeated field is specified for an update operation, the existing + repeated values in the target resource will be overwritten by the new values. + Note that a repeated field is only allowed in the last position of a `paths` + string. + + If a sub-message is specified in the last position of the field mask for an + update operation, then the existing sub-message in the target resource is + overwritten. Given the target message: + + f { + b { + d : 1 + x : 2 + } + c : 1 + } + + And an update message: + + f { + b { + d : 10 + } + } + + then if the field mask is: + + paths: "f.b" + + then the result will be: + + f { + b { + d : 10 + } + c : 1 + } + + However, if the update mask was: + + paths: "f.b.d" + + then the result would be: + + f { + b { + d : 10 + x : 2 + } + c : 1 + } + + In order to reset a field's value to the default, the field must + be in the mask and set to the default value in the provided resource. + Hence, in order to reset all fields of a resource, provide a default + instance of the resource and set all fields in the mask, or do + not provide a mask as described below. + + If a field mask is not present on update, the operation applies to + all fields (as if a field mask of all fields has been specified). + Note that in the presence of schema evolution, this may mean that + fields the client does not know and has therefore not filled into + the request will be reset to their default. If this is unwanted + behavior, a specific service may require a client to always specify + a field mask, producing an error if not. + + As with get operations, the location of the resource which + describes the updated values in the request message depends on the + operation kind. In any case, the effect of the field mask is + required to be honored by the API. + + ## Considerations for HTTP REST + + The HTTP kind of an update operation which uses a field mask must + be set to PATCH instead of PUT in order to satisfy HTTP semantics + (PUT must only be used for full updates). + + # JSON Encoding of Field Masks + + In JSON, a field mask is encoded as a single string where paths are + separated by a comma. Fields name in each path are converted + to/from lower-camel naming conventions. + + As an example, consider the following message declarations: + + message Profile { + User user = 1; + Photo photo = 2; + } + message User { + string display_name = 1; + string address = 2; + } + + In proto a field mask for `Profile` may look as such: + + mask { + paths: "user.display_name" + paths: "photo" + } + + In JSON, the same mask is represented as below: + + { + mask: "user.displayName,photo" + } + + # Field Masks and Oneof Fields + + Field masks treat fields in oneofs just as regular fields. Consider the + following message: + + message SampleMessage { + oneof test_oneof { + string name = 4; + SubMessage sub_message = 9; + } + } + + The field mask can be: + + mask { + paths: "name" + } + + Or: + + mask { + paths: "sub_message" + } + + Note that oneof type names ("test_oneof" in this case) cannot be used in + paths. + + ## Field Mask Verification + + The implementation of the all the API methods, which have any FieldMask type + field in the request, should verify the included field paths, and return + `INVALID_ARGUMENT` error if any path is duplicated or unmappable. + + + + Field number for the "paths" field. + + + + The set of field mask paths. + + + + + Converts a timestamp specified in seconds/nanoseconds to a string. + + + If the value is a normalized duration in the range described in field_mask.proto, + is ignored. Otherwise, if the parameter is true, + a JSON object with a warning is returned; if it is false, an is thrown. + + Paths in the field mask + Determines the handling of non-normalized values + The represented field mask is invalid, and is false. + + + + Checks whether the given path is valid for a field mask. + + true if the path is valid; false otherwise + + + + Returns a string representation of this for diagnostic purposes. + + + Normally the returned value will be a JSON string value (including leading and trailing quotes) but + when the value is non-normalized or out of range, a JSON object representation will be returned + instead, including a warning. This is to avoid exceptions being thrown when trying to + diagnose problems - the regular JSON formatter will still throw an exception for non-normalized + values. + + A string representation of this value. + + + Holder for reflection information generated from google/protobuf/source_context.proto + + + File descriptor for google/protobuf/source_context.proto + + + + `SourceContext` represents information about the source of a + protobuf element, like the file in which it is defined. + + + + Field number for the "file_name" field. + + + + The path-qualified name of the .proto file that contained the associated + protobuf element. For example: `"google/protobuf/source_context.proto"`. + + + + Holder for reflection information generated from google/protobuf/struct.proto + + + File descriptor for google/protobuf/struct.proto + + + + `NullValue` is a singleton enumeration to represent the null value for the + `Value` type union. + + The JSON representation for `NullValue` is JSON `null`. + + + + + Null value. + + + + + `Struct` represents a structured data value, consisting of fields + which map to dynamically typed values. In some languages, `Struct` + might be supported by a native representation. For example, in + scripting languages like JS a struct is represented as an + object. The details of that representation are described together + with the proto support for the language. + + The JSON representation for `Struct` is JSON object. + + + + Field number for the "fields" field. + + + + Unordered map of dynamically typed values. + + + + + `Value` represents a dynamically typed value which can be either + null, a number, a string, a boolean, a recursive struct value, or a + list of values. A producer of value is expected to set one of that + variants, absence of any variant indicates an error. + + The JSON representation for `Value` is JSON value. + + + + Field number for the "null_value" field. + + + + Represents a null value. + + + + Field number for the "number_value" field. + + + + Represents a double value. + + + + Field number for the "string_value" field. + + + + Represents a string value. + + + + Field number for the "bool_value" field. + + + + Represents a boolean value. + + + + Field number for the "struct_value" field. + + + + Represents a structured value. + + + + Field number for the "list_value" field. + + + + Represents a repeated `Value`. + + + + Enum of possible cases for the "kind" oneof. + + + + Convenience method to create a Value message with a string value. + + Value to set for the StringValue property. + A newly-created Value message with the given value. + + + + Convenience method to create a Value message with a number value. + + Value to set for the NumberValue property. + A newly-created Value message with the given value. + + + + Convenience method to create a Value message with a Boolean value. + + Value to set for the BoolValue property. + A newly-created Value message with the given value. + + + + Convenience method to create a Value message with a null initial value. + + A newly-created Value message a null initial value. + + + + Convenience method to create a Value message with an initial list of values. + + The values provided are not cloned; the references are copied directly. + A newly-created Value message an initial list value. + + + + Convenience method to create a Value message with an initial struct value + + The value provided is not cloned; the reference is copied directly. + A newly-created Value message an initial struct value. + + + + `ListValue` is a wrapper around a repeated field of values. + + The JSON representation for `ListValue` is JSON array. + + + + Field number for the "values" field. + + + + Repeated field of dynamically typed values. + + + + + Extension methods on BCL time-related types, converting to protobuf types. + + + + + Converts the given to a . + + The date and time to convert to a timestamp. + The value has a other than Utc. + The converted timestamp. + + + + Converts the given to a + + The offset is taken into consideration when converting the value (so the same instant in time + is represented) but is not a separate part of the resulting value. In other words, there is no + roundtrip operation to retrieve the original DateTimeOffset. + The date and time (with UTC offset) to convert to a timestamp. + The converted timestamp. + + + + Converts the given to a . + + The time span to convert. + The converted duration. + + + Holder for reflection information generated from google/protobuf/timestamp.proto + + + File descriptor for google/protobuf/timestamp.proto + + + + A Timestamp represents a point in time independent of any time zone + or calendar, represented as seconds and fractions of seconds at + nanosecond resolution in UTC Epoch time. It is encoded using the + Proleptic Gregorian Calendar which extends the Gregorian calendar + backwards to year one. It is encoded assuming all minutes are 60 + seconds long, i.e. leap seconds are "smeared" so that no leap second + table is needed for interpretation. Range is from + 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. + By restricting to that range, we ensure that we can convert to + and from RFC 3339 date strings. + See [https://www.ietf.org/rfc/rfc3339.txt](https://www.ietf.org/rfc/rfc3339.txt). + + # Examples + + Example 1: Compute Timestamp from POSIX `time()`. + + Timestamp timestamp; + timestamp.set_seconds(time(NULL)); + timestamp.set_nanos(0); + + Example 2: Compute Timestamp from POSIX `gettimeofday()`. + + struct timeval tv; + gettimeofday(&tv, NULL); + + Timestamp timestamp; + timestamp.set_seconds(tv.tv_sec); + timestamp.set_nanos(tv.tv_usec * 1000); + + Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`. + + FILETIME ft; + GetSystemTimeAsFileTime(&ft); + UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime; + + // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z + // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z. + Timestamp timestamp; + timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL)); + timestamp.set_nanos((INT32) ((ticks % 10000000) * 100)); + + Example 4: Compute Timestamp from Java `System.currentTimeMillis()`. + + long millis = System.currentTimeMillis(); + + Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000) + .setNanos((int) ((millis % 1000) * 1000000)).build(); + + Example 5: Compute Timestamp from current time in Python. + + timestamp = Timestamp() + timestamp.GetCurrentTime() + + # JSON Mapping + + In JSON format, the Timestamp type is encoded as a string in the + [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the + format is "{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z" + where {year} is always expressed using four digits while {month}, {day}, + {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional + seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution), + are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone + is required, though only UTC (as indicated by "Z") is presently supported. + + For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past + 01:30 UTC on January 15, 2017. + + In JavaScript, one can convert a Date object to this format using the + standard [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString] + method. In Python, a standard `datetime.datetime` object can be converted + to this format using [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) + with the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one + can use the Joda Time's [`ISODateTimeFormat.dateTime()`]( + http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime--) + to obtain a formatter capable of generating timestamps in this format. + + + + Field number for the "seconds" field. + + + + Represents seconds of UTC time since Unix epoch + 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to + 9999-12-31T23:59:59Z inclusive. + + + + Field number for the "nanos" field. + + + + Non-negative fractions of a second at nanosecond resolution. Negative + second values with fractions must still have non-negative nanos values + that count forward in time. Must be from 0 to 999,999,999 + inclusive. + + + + + Returns the difference between one and another, as a . + + The timestamp to subtract from. Must not be null. + The timestamp to subtract. Must not be null. + The difference between the two specified timestamps. + + + + Adds a to a , to obtain another Timestamp. + + The timestamp to add the duration to. Must not be null. + The duration to add. Must not be null. + The result of adding the duration to the timestamp. + + + + Subtracts a from a , to obtain another Timestamp. + + The timestamp to subtract the duration from. Must not be null. + The duration to subtract. + The result of subtracting the duration from the timestamp. + + + + Converts this timestamp into a . + + + The resulting DateTime will always have a Kind of Utc. + If the timestamp is not a precise number of ticks, it will be truncated towards the start + of time. For example, a timestamp with a value of 99 will result in a + value precisely on a second. + + This timestamp as a DateTime. + The timestamp contains invalid values; either it is + incorrectly normalized or is outside the valid range. + + + + Converts this timestamp into a . + + + The resulting DateTimeOffset will always have an Offset of zero. + If the timestamp is not a precise number of ticks, it will be truncated towards the start + of time. For example, a timestamp with a value of 99 will result in a + value precisely on a second. + + This timestamp as a DateTimeOffset. + The timestamp contains invalid values; either it is + incorrectly normalized or is outside the valid range. + + + + Converts the specified to a . + + + The Kind of is not DateTimeKind.Utc. + The converted timestamp. + + + + Converts the given to a + + The offset is taken into consideration when converting the value (so the same instant in time + is represented) but is not a separate part of the resulting value. In other words, there is no + roundtrip operation to retrieve the original DateTimeOffset. + The date and time (with UTC offset) to convert to a timestamp. + The converted timestamp. + + + + Converts a timestamp specified in seconds/nanoseconds to a string. + + + If the value is a normalized duration in the range described in timestamp.proto, + is ignored. Otherwise, if the parameter is true, + a JSON object with a warning is returned; if it is false, an is thrown. + + Seconds portion of the duration. + Nanoseconds portion of the duration. + Determines the handling of non-normalized values + The represented duration is invalid, and is false. + + + + Returns a string representation of this for diagnostic purposes. + + + Normally the returned value will be a JSON string value (including leading and trailing quotes) but + when the value is non-normalized or out of range, a JSON object representation will be returned + instead, including a warning. This is to avoid exceptions being thrown when trying to + diagnose problems - the regular JSON formatter will still throw an exception for non-normalized + values. + + A string representation of this value. + + + Holder for reflection information generated from google/protobuf/type.proto + + + File descriptor for google/protobuf/type.proto + + + + The syntax in which a protocol buffer element is defined. + + + + + Syntax `proto2`. + + + + + Syntax `proto3`. + + + + + A protocol buffer message type. + + + + Field number for the "name" field. + + + + The fully qualified message name. + + + + Field number for the "fields" field. + + + + The list of fields. + + + + Field number for the "oneofs" field. + + + + The list of types appearing in `oneof` definitions in this type. + + + + Field number for the "options" field. + + + + The protocol buffer options. + + + + Field number for the "source_context" field. + + + + The source context. + + + + Field number for the "syntax" field. + + + + The source syntax. + + + + + A single field of a message type. + + + + Field number for the "kind" field. + + + + The field type. + + + + Field number for the "cardinality" field. + + + + The field cardinality. + + + + Field number for the "number" field. + + + + The field number. + + + + Field number for the "name" field. + + + + The field name. + + + + Field number for the "type_url" field. + + + + The field type URL, without the scheme, for message or enumeration + types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`. + + + + Field number for the "oneof_index" field. + + + + The index of the field type in `Type.oneofs`, for message or enumeration + types. The first type has index 1; zero means the type is not in the list. + + + + Field number for the "packed" field. + + + + Whether to use alternative packed wire representation. + + + + Field number for the "options" field. + + + + The protocol buffer options. + + + + Field number for the "json_name" field. + + + + The field JSON name. + + + + Field number for the "default_value" field. + + + + The string value of the default value of this field. Proto2 syntax only. + + + + Container for nested types declared in the Field message type. + + + + Basic field types. + + + + + Field type unknown. + + + + + Field type double. + + + + + Field type float. + + + + + Field type int64. + + + + + Field type uint64. + + + + + Field type int32. + + + + + Field type fixed64. + + + + + Field type fixed32. + + + + + Field type bool. + + + + + Field type string. + + + + + Field type group. Proto2 syntax only, and deprecated. + + + + + Field type message. + + + + + Field type bytes. + + + + + Field type uint32. + + + + + Field type enum. + + + + + Field type sfixed32. + + + + + Field type sfixed64. + + + + + Field type sint32. + + + + + Field type sint64. + + + + + Whether a field is optional, required, or repeated. + + + + + For fields with unknown cardinality. + + + + + For optional fields. + + + + + For required fields. Proto2 syntax only. + + + + + For repeated fields. + + + + + Enum type definition. + + + + Field number for the "name" field. + + + + Enum type name. + + + + Field number for the "enumvalue" field. + + + + Enum value definitions. + + + + Field number for the "options" field. + + + + Protocol buffer options. + + + + Field number for the "source_context" field. + + + + The source context. + + + + Field number for the "syntax" field. + + + + The source syntax. + + + + + Enum value definition. + + + + Field number for the "name" field. + + + + Enum value name. + + + + Field number for the "number" field. + + + + Enum value number. + + + + Field number for the "options" field. + + + + Protocol buffer options. + + + + + A protocol buffer option, which can be attached to a message, field, + enumeration, etc. + + + + Field number for the "name" field. + + + + The option's name. For protobuf built-in options (options defined in + descriptor.proto), this is the short name. For example, `"map_entry"`. + For custom options, it should be the fully-qualified name. For example, + `"google.api.http"`. + + + + Field number for the "value" field. + + + + The option's value packed in an Any message. If the value is a primitive, + the corresponding wrapper type defined in google/protobuf/wrappers.proto + should be used. If the value is an enum, it should be stored as an int32 + value using the google.protobuf.Int32Value type. + + + + Holder for reflection information generated from google/protobuf/wrappers.proto + + + File descriptor for google/protobuf/wrappers.proto + + + + Field number for the single "value" field in all wrapper types. + + + + + Wrapper message for `double`. + + The JSON representation for `DoubleValue` is JSON number. + + + + Field number for the "value" field. + + + + The double value. + + + + + Wrapper message for `float`. + + The JSON representation for `FloatValue` is JSON number. + + + + Field number for the "value" field. + + + + The float value. + + + + + Wrapper message for `int64`. + + The JSON representation for `Int64Value` is JSON string. + + + + Field number for the "value" field. + + + + The int64 value. + + + + + Wrapper message for `uint64`. + + The JSON representation for `UInt64Value` is JSON string. + + + + Field number for the "value" field. + + + + The uint64 value. + + + + + Wrapper message for `int32`. + + The JSON representation for `Int32Value` is JSON number. + + + + Field number for the "value" field. + + + + The int32 value. + + + + + Wrapper message for `uint32`. + + The JSON representation for `UInt32Value` is JSON number. + + + + Field number for the "value" field. + + + + The uint32 value. + + + + + Wrapper message for `bool`. + + The JSON representation for `BoolValue` is JSON `true` and `false`. + + + + Field number for the "value" field. + + + + The bool value. + + + + + Wrapper message for `string`. + + The JSON representation for `StringValue` is JSON string. + + + + Field number for the "value" field. + + + + The string value. + + + + + Wrapper message for `bytes`. + + The JSON representation for `BytesValue` is JSON string. + + + + Field number for the "value" field. + + + + The bytes value. + + + + + This class is used internally by the Protocol Buffer Library and generated + message implementations. It is public only for the sake of those generated + messages. Others should not use this class directly. + + This class contains constants and helper functions useful for dealing with + the Protocol Buffer wire format. + + + + + + Wire types within protobuf encoding. + + + + + Variable-length integer. + + + + + A fixed-length 64-bit value. + + + + + A length-delimited value, i.e. a length followed by that many bytes of data. + + + + + A "start group" value - not supported by this implementation. + + + + + An "end group" value - not supported by this implementation. + + + + + A fixed-length 32-bit value. + + + + + Given a tag value, determines the wire type (lower 3 bits). + + + + + Given a tag value, determines the field number (the upper 29 bits). + + + + + Makes a tag value given a field number and wire type. + + +
+
diff --git a/bin/x64/Debug/net461/GrapeSystems.Core.Common.dll b/bin/x64/Debug/net461/GrapeSystems.Core.Common.dll new file mode 100644 index 0000000..c8968bc Binary files /dev/null and b/bin/x64/Debug/net461/GrapeSystems.Core.Common.dll differ diff --git a/bin/x64/Debug/net461/GrapeSystems.Core.Drawing.Fx20.dll b/bin/x64/Debug/net461/GrapeSystems.Core.Drawing.Fx20.dll new file mode 100644 index 0000000..ac8b16a Binary files /dev/null and b/bin/x64/Debug/net461/GrapeSystems.Core.Drawing.Fx20.dll differ diff --git a/bin/x64/Debug/net461/GrapeSystems.Core.Parts.Frames.dll b/bin/x64/Debug/net461/GrapeSystems.Core.Parts.Frames.dll new file mode 100644 index 0000000..28ce807 Binary files /dev/null and b/bin/x64/Debug/net461/GrapeSystems.Core.Parts.Frames.dll differ diff --git a/bin/x64/Debug/net461/GrapeSystems.Core.Parts.dll b/bin/x64/Debug/net461/GrapeSystems.Core.Parts.dll new file mode 100644 index 0000000..c12d4f5 Binary files /dev/null and b/bin/x64/Debug/net461/GrapeSystems.Core.Parts.dll differ diff --git a/bin/x64/Debug/net461/GrapeSystems.Library.BarcodeAd.dll b/bin/x64/Debug/net461/GrapeSystems.Library.BarcodeAd.dll new file mode 100644 index 0000000..4361dc9 Binary files /dev/null and b/bin/x64/Debug/net461/GrapeSystems.Library.BarcodeAd.dll differ diff --git a/bin/x64/Debug/net461/GrapeSystems.Library.Controls.dll b/bin/x64/Debug/net461/GrapeSystems.Library.Controls.dll new file mode 100644 index 0000000..7043f7f Binary files /dev/null and b/bin/x64/Debug/net461/GrapeSystems.Library.Controls.dll differ diff --git a/bin/x64/Debug/net461/GrapeSystems.Library.Image.dll b/bin/x64/Debug/net461/GrapeSystems.Library.Image.dll new file mode 100644 index 0000000..59d3839 Binary files /dev/null and b/bin/x64/Debug/net461/GrapeSystems.Library.Image.dll differ diff --git a/bin/x64/Debug/net461/Interop.QRMAKERADLib.dll b/bin/x64/Debug/net461/Interop.QRMAKERADLib.dll new file mode 100644 index 0000000..b41ae1f Binary files /dev/null and b/bin/x64/Debug/net461/Interop.QRMAKERADLib.dll differ diff --git a/bin/x64/Debug/net461/MLComponent.XmlSerializers.dll b/bin/x64/Debug/net461/MLComponent.XmlSerializers.dll new file mode 100644 index 0000000..e0c2dc0 Binary files /dev/null and b/bin/x64/Debug/net461/MLComponent.XmlSerializers.dll differ diff --git a/bin/x64/Debug/net461/MLComponent.dll b/bin/x64/Debug/net461/MLComponent.dll new file mode 100644 index 0000000..f21d6a0 Binary files /dev/null and b/bin/x64/Debug/net461/MLComponent.dll differ diff --git a/bin/x64/Debug/net461/Microsoft.Win32.Primitives.dll b/bin/x64/Debug/net461/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..8b69a69 Binary files /dev/null and b/bin/x64/Debug/net461/Microsoft.Win32.Primitives.dll differ diff --git a/bin/x64/Debug/net461/MySql.Data.dll b/bin/x64/Debug/net461/MySql.Data.dll new file mode 100644 index 0000000..669149a Binary files /dev/null and b/bin/x64/Debug/net461/MySql.Data.dll differ diff --git a/bin/x64/Debug/net461/MySql.Data.xml b/bin/x64/Debug/net461/MySql.Data.xml new file mode 100644 index 0000000..bd57447 --- /dev/null +++ b/bin/x64/Debug/net461/MySql.Data.xml @@ -0,0 +1,16192 @@ + + + + MySql.Data + + + + + The implementation of the caching_sha2_password authentication plugin. + + + + + Defines the stage of the authentication. + + + + + Defines the default behavior for an authentication plugin. + + + + + Gets or sets the authentication data returned by the server. + + + + + This is a factory method that is used only internally. It creates an auth plugin based on the method type + + + + + + + + + Gets the connection option settings. + + + + + Gets the server version associated with this authentication plugin. + + + + + Gets the encoding assigned to the native driver. + + + + + Sets the authentication data required to encode, encrypt, or convert the password of the user. + + A byte array containing the authentication data provided by the server. + This method may be overriden based on the requirements by the implementing authentication plugin. + + + + Defines the behavior when checking for constraints. + + This method is intended to be overriden. + + + + Throws a MySqlException that encapsulates the original exception. + + The exception to encapsulate. + + + + Defines the behavior when authentication is successful. + + This method is intended to be overriden. + + + + Defines the behavior when more data is required from the server. + + The data returned by the server. + The data to return to the server. + + + + Gets the plugin name based on the authentication plugin type defined during the creation of this object. + + + + + Gets the user name associated to the connection settings. + + The user name associated to the connection settings. + + + + Gets the encoded, encrypted, or converted password based on the authentication plugin type defined during the creation of this object. + + An object containing the encoded, encrypted, or converted password. + This method is intended to be overriden. + + + + Allows connections to a user account set with the mysql_native_password authentication plugin. + + + + + Returns a byte array containing the proper encryption of the + given password/seed according to the new 4.1.1 authentication scheme. + + + + + + + + The implementation of the sha256_password authentication plugin. + + + + + + + + + + Defines the type of the security buffer. + + + + + Defines a security handle. + + + + + Describes a buffer allocated by a transport to pass to a security package. + + + + + Specifies the size, in bytes, of the buffer. + + + + + Bit flags that indicate the type of the buffer. + + + + + Pointer to a buffer. + + + + + Hold a numeric value used in defining other data types. + + + + + Least significant digits. + + + + + Most significant digits. + + + + + Holds a pointer used to define a security handle. + + + + + Least significant digits. + + + + + Most significant digits. + + + + + Indicates the sizes of important structures used in the message support functions. + + + + + Specifies the maximum size of the security token used in the authentication changes. + + + + + Specifies the maximum size of the signature created by the MakeSignature function. This member must be zero if integrity services are not requested or available. + + + + + Specifies the preferred integral size of the messages. + + + + + Size of the security trailer to be appended to messages. This member should be zero if the relevant services are not requested or available. + + + + + Allows importing large amounts of data into a database with bulk loading. + + + + + Gets or sets the connection. + + The connection. + + + + Gets or sets the field terminator. + + The field terminator. + + + + Gets or sets the line terminator. + + The line terminator. + + + + Gets or sets the name of the table. + + The name of the table. + + + + Gets or sets the character set. + + The character set. + + + + Gets or sets the name of the file. + + The name of the file. + + + + Gets or sets the timeout. + + The timeout. + + + + Gets or sets a value indicating whether the filename that is to be loaded + is local to the client or not + + true if local; otherwise, false. + + + + Gets or sets the number of lines to skip. + + The number of lines to skip. + + + + Gets or sets the line prefix. + + The line prefix. + + + + Gets or sets the field quotation character. + + The field quotation character. + + + + Gets or sets a value indicating whether [field quotation optional]. + + + true if [field quotation optional]; otherwise, false. + + + + + Gets or sets the escape character. + + The escape character. + + + + Gets or sets the conflict option. + + The conflict option. + + + + Gets or sets the priority. + + The priority. + + + + Gets the columns. + + The columns. + + + + Gets the expressions. + + The expressions. + + + + Execute the load operation + + The number of rows inserted. + + + + Async version of Load + + The number of rows inserted. + + + + Executes the load operation asynchronously while the cancellation isn't requested. + + The cancellation token. + The number of rows inserted. + + + + Represents the priority set for bulk loading operations. + + + + + This is the default and indicates normal priority + + + + + Low priority will cause the load operation to wait until all readers of the table + have finished. This only affects storage engines that use only table-level locking + such as MyISAM, Memory, and Merge. + + + + + Concurrent priority is only relevant for MyISAM tables and signals that if the table + has no free blocks in the middle that other readers can retrieve data from the table + while the load operation is happening. + + + + + Represents the behavior when conflicts arise during bulk loading operations. + + + + + This is the default and indicates normal operation. In the event of a LOCAL load, this + is the same as ignore. When the data file is on the server, then a key conflict will + cause an error to be thrown and the rest of the data file ignored. + + + + + Replace column values when a key conflict occurs. + + + + + Ignore any rows where the primary key conflicts. + + + + + Summary description for CharSetMap. + + + + + Returns the text encoding for a given MySQL character set name + + Version of the connection requesting the encoding + Name of the character set to get the encoding for + Encoding object for the given character set name + + + + Initializes the mapping. + + + + Represents a SQL statement to execute against a MySQL database. This class cannot be inherited. + MySqlCommand features the following methods for executing commands at a MySQL database: + + + Item + Description + + + + ExecuteReader + + Executes commands that return rows. + + + + ExecuteNonQuery + + Executes commands such as SQL INSERT, DELETE, and UPDATE statements. + + + + ExecuteScalar + + Retrieves a single value (for example, an aggregate value) from a database. + + + + You can reset the CommandText property and reuse the MySqlCommand + object. However, you must close the MySqlDataReader + before you can execute a new or previous command. + + If a MySqlException is + generated by the method executing a MySqlCommand, the MySqlConnection + remains open. It is the responsibility of the programmer to close the connection. + + + Using the '@' symbol for paramters is now the preferred approach although the old pattern of using + '?' is still supported. Please be aware though that using '@' can cause conflicts when user variables + are also used. To help with this situation please see the documentation on the 'allow user variables' + connection string option. The 'old syntax' connection string option has now been deprecated. + + + The following example creates a MySqlCommand and + a MySqlConnection. The MySqlConnection is opened and set as the Connection + for the MySqlCommand. The example then calls ExecuteNonQuery, + and closes the connection. To accomplish this, the ExecuteNonQuery is + passed a connection string and a query string that is a SQL INSERT + statement. + + Public Sub InsertRow(myConnectionString As String) + " If the connection string is null, use a default. + If myConnectionString = "" Then + myConnectionString = "Database=Test;Data Source=localhost;User Id=username;Password=pass" + End If + Dim myConnection As New MySqlConnection(myConnectionString) + Dim myInsertQuery As String = "INSERT INTO Orders (id, customerId, amount) Values(1001, 23, 30.66)" + Dim myCommand As New MySqlCommand(myInsertQuery) + myCommand.Connection = myConnection + myConnection.Open() + myCommand.ExecuteNonQuery() + myCommand.Connection.Close() + End Sub + + + public void InsertRow(string myConnectionString) + { + // If the connection string is null, use a default. + if(myConnectionString == "") + { + myConnectionString = "Database=Test;Data Source=localhost;User Id=username;Password=pass"; + } + MySqlConnection myConnection = new MySqlConnection(myConnectionString); + string myInsertQuery = "INSERT INTO Orders (id, customerId, amount) Values(1001, 23, 30.66)"; + MySqlCommand myCommand = new MySqlCommand(myInsertQuery); + myCommand.Connection = myConnection; + myConnection.Open(); + myCommand.ExecuteNonQuery(); + myCommand.Connection.Close(); + } + + + + + + + Initializes a new instance of the MySqlCommand class. + + + The following example creates a MySqlCommand and sets some of its properties. + + + This example shows how to use one of the overloaded + versions of the MySqlCommand constructor. For other examples that might be available, + see the individual overload topics. + + + + Public Sub CreateMySqlCommand() + Dim myConnection As New MySqlConnection _ + ("Persist Security Info=False;database=test;server=myServer") + myConnection.Open() + Dim myTrans As MySqlTransaction = myConnection.BeginTransaction() + Dim mySelectQuery As String = "SELECT * FROM MyTable" + Dim myCommand As New MySqlCommand(mySelectQuery, myConnection, myTrans) + myCommand.CommandTimeout = 20 + End Sub + + + public void CreateMySqlCommand() + { + MySqlConnection myConnection = new MySqlConnection("Persist Security Info=False; + database=test;server=myServer"); + myConnection.Open(); + MySqlTransaction myTrans = myConnection.BeginTransaction(); + string mySelectQuery = "SELECT * FROM myTable"; + MySqlCommand myCommand = new MySqlCommand(mySelectQuery, myConnection,myTrans); + myCommand.CommandTimeout = 20; + } + + + public: + void CreateMySqlCommand() + { + MySqlConnection* myConnection = new MySqlConnection(S"Persist Security Info=False; + database=test;server=myServer"); + myConnection->Open(); + MySqlTransaction* myTrans = myConnection->BeginTransaction(); + String* mySelectQuery = S"SELECT * FROM myTable"; + MySqlCommand* myCommand = new MySqlCommand(mySelectQuery, myConnection, myTrans); + myCommand->CommandTimeout = 20; + }; + + + + Initializes a new instance of the MySqlCommand class. + + The base constructor initializes all fields to their default values. The + following table shows initial property values for an instance of . + + + Properties + Initial Value + + + + + + empty string ("") + + + + + + 0 + + + + + + CommandType.Text + + + + + + Null + + + + You can change the value for any of these properties through a separate call to + the property. + + + The following example creates a and + sets some of its properties. + + + Public Sub CreateMySqlCommand() + Dim myCommand As New MySqlCommand() + myCommand.CommandType = CommandType.Text + End Sub + + + public void CreateMySqlCommand() + { + MySqlCommand myCommand = new MySqlCommand(); + myCommand.CommandType = CommandType.Text; + } + + + + + + Initializes a new instance of the class with the text of the query. + The text of the query. + When an instance of is created, + the following read/write properties are set to initial values. + + + + Properties + Initial Value + + + + + + + cmdText + + + + + + + 0 + + + + + + CommandType.Text + + + + + + Null + + + + You can change the value for any of these properties through a separate call to + the property. + + + The following example creates a and + sets some of its properties. + + + Public Sub CreateMySqlCommand() + Dim sql as String = "SELECT * FROM mytable" + Dim myCommand As New MySqlCommand(sql) + myCommand.CommandType = CommandType.Text + End Sub + + + public void CreateMySqlCommand() + { + string sql = "SELECT * FROM mytable"; + MySqlCommand myCommand = new MySqlCommand(sql); + myCommand.CommandType = CommandType.Text; + } + + + + + + Initializes a new instance of the class + with the text of the query and a . + The text of the query. + A that represents the + connection to an instance of SQL Server. + + When an instance of is created, + the following read/write properties are set to initial values. + + + + Properties + Initial Value + + + + + + + cmdText + + + + + + + 0 + + + + + + CommandType.Text + + + + + + + connection + + + + + You can change the value for any of these properties through a separate call to + the property. + + + The following example creates a and + sets some of its properties. + + + Public Sub CreateMySqlCommand() + Dim conn as new MySqlConnection("server=myServer") + Dim sql as String = "SELECT * FROM mytable" + Dim myCommand As New MySqlCommand(sql, conn) + myCommand.CommandType = CommandType.Text + End Sub + + + public void CreateMySqlCommand() + { + MySqlConnection conn = new MySqlConnection("server=myserver") + string sql = "SELECT * FROM mytable"; + MySqlCommand myCommand = new MySqlCommand(sql, conn); + myCommand.CommandType = CommandType.Text; + } + + + + + + Initializes a new instance of the class + with the text of the query, a , and the + . + The text of the query. + A that represents the + connection to an instance of SQL Server. + + The in which the executes. + + When an instance of is created, + the following read/write properties are set to initial values. + + + + Properties + Initial Value + + + + + + + cmdText + + + + + + + 0 + + + + + + CommandType.Text + + + + + + + connection + + + + + You can change the value for any of these properties through a separate call to + the property. + + + The following example creates a and + sets some of its properties. + + + Public Sub CreateMySqlCommand() + Dim conn as new MySqlConnection("server=myServer") + conn.Open(); + Dim txn as MySqlTransaction = conn.BeginTransaction() + Dim sql as String = "SELECT * FROM mytable" + Dim myCommand As New MySqlCommand(sql, conn, txn) + myCommand.CommandType = CommandType.Text + End Sub + + + public void CreateMySqlCommand() + { + MySqlConnection conn = new MySqlConnection("server=myserver") + conn.Open(); + MySqlTransaction txn = conn.BeginTransaction(); + string sql = "SELECT * FROM mytable"; + MySqlCommand myCommand = new MySqlCommand(sql, conn, txn); + myCommand.CommandType = CommandType.Text; + } + + + + + + Gets the last inserted id. + + + + + Gets or sets the SQL statement to execute at the data source. + + The SQL statement or stored procedure to execute. The default is an empty string. + + + When the property is set to StoredProcedure, + the CommandText property should be set to the name of the stored procedure. + The user may be required to use escape character syntax if the stored procedure name + contains any special characters. The command executes this stored procedure when + you call one of the Execute methods. Starting with Connector/NET 5.0, having both a stored function + and stored procedure with the same name in the same database is not supported. It is + suggested that you provide unqiue names for your stored routines. + + + The following example creates a and sets some of its properties. + + Public Sub CreateMySqlCommand() + Dim myCommand As New MySqlCommand() + myCommand.CommandText = "SELECT * FROM Mytable ORDER BY id" + myCommand.CommandType = CommandType.Text + End Sub + + + public void CreateMySqlCommand() + { + MySqlCommand myCommand = new MySqlCommand(); + myCommand.CommandText = "SELECT * FROM mytable ORDER BY id"; + myCommand.CommandType = CommandType.Text; + } + + + + + + Gets or sets the wait time before terminating the attempt to execute a command + and generating an error. + + The time (in seconds) to wait for the command to execute. The default is 30 + seconds. + + CommandTimeout is dependent on the ability of MySQL to cancel an executing query. + Because of this, CommandTimeout is only supported when connected to MySQL + version 5.0.0 or higher. + + + + + Gets or sets a value indicating how the property is to be interpreted. + + One of the values. The default is Text. + + + When you set the CommandType property to StoredProcedure, you + should set the property to the name of the stored + procedure. The command executes this stored procedure when you call one of the + Execute methods. + + + The following example creates a and sets some of its properties. + + Public Sub CreateMySqlCommand() + Dim myCommand As New MySqlCommand() + myCommand.CommandType = CommandType.Text + End Sub + + + public void CreateMySqlCommand() + { + MySqlCommand myCommand = new MySqlCommand(); + myCommand.CommandType = CommandType.Text; + } + + + + + + Gets a boolean value that indicates whether the Prepared method has been called. + + + + + Gets or sets the used by this instance of the + . + + The connection to a data source. The default value is a null reference + (Nothing in Visual Basic). + + + If you set Connection while a transaction is in progress and the + property is not null, an + is generated. If the Transaction property is not null and the transaction + has already been committed or rolled back, Transaction is set to + null. + + + The following example creates a and sets some of its properties. + + Public Sub CreateMySqlCommand() + Dim mySelectQuery As String = "SELECT * FROM mytable ORDER BY id" + Dim myConnectString As String = "Persist Security Info=False;database=test;server=myServer" + Dim myCommand As New MySqlCommand(mySelectQuery) + myCommand.Connection = New MySqlConnection(myConnectString) + myCommand.CommandType = CommandType.Text + End Sub + + + public void CreateMySqlCommand() + { + string mySelectQuery = "SELECT * FROM mytable ORDER BY id"; + string myConnectString = "Persist Security Info=False;database=test;server=myServer"; + MySqlCommand myCommand = new MySqlCommand(mySelectQuery); + myCommand.Connection = new MySqlConnection(myConnectString); + myCommand.CommandType = CommandType.Text; + } + + + + + + Get the + + The parameters of the SQL statement or stored procedure. The default is + an empty collection. + + Connector/NET does not support unnamed parameters. Every parameter added to the collection must + have an associated name. + + The following example creates a and displays its parameters. + To accomplish this, the method is passed a , a query string + that is a SQL SELECT statement, and an array of objects. + + Public Sub CreateMySqlCommand(myConnection As MySqlConnection, _ + mySelectQuery As String, myParamArray() As MySqlParameter) + Dim myCommand As New MySqlCommand(mySelectQuery, myConnection) + myCommand.CommandText = "SELECT id, name FROM mytable WHERE age=@age" + myCommand.UpdatedRowSource = UpdateRowSource.Both + myCommand.Parameters.Add(myParamArray) + Dim j As Integer + For j = 0 To myCommand.Parameters.Count - 1 + myCommand.Parameters.Add(myParamArray(j)) + Next j + Dim myMessage As String = "" + Dim i As Integer + For i = 0 To myCommand.Parameters.Count - 1 + myMessage += myCommand.Parameters(i).ToString() & ControlChars.Cr + Next i + Console.WriteLine(myMessage) + End Sub + + + public void CreateMySqlCommand(MySqlConnection myConnection, string mySelectQuery, + MySqlParameter[] myParamArray) + { + MySqlCommand myCommand = new MySqlCommand(mySelectQuery, myConnection); + myCommand.CommandText = "SELECT id, name FROM mytable WHERE age=@age"; + myCommand.Parameters.Add(myParamArray); + for (int j=0; j<myParamArray.Length; j++) + { + myCommand.Parameters.Add(myParamArray[j]) ; + } + string myMessage = ""; + for (int i = 0; i < myCommand.Parameters.Count; i++) + { + myMessage += myCommand.Parameters[i].ToString() + "\n"; + } + MessageBox.Show(myMessage); + } + + + + + + Gets or sets the within which the executes. + + The . The default value is a null reference (Nothing in Visual Basic). + + You cannot set the Transaction property if it is already set to a + specific value, and the command is in the process of executing. If you set the + transaction property to a object that is not connected + to the same as the object, + an exception will be thrown the next time you attempt to execute a statement. + + + + + Gets or sets a boolean value that indicates whether caching is enabled. + + + + + Gets or sets the seconds for how long a TableDirect result should be cached. + + + + + Gets or sets how command results are applied to the DataRow when used by the + Update method of the DbDataAdapter. + + + + + Gets or sets a value indicating whether the command object should be visible in a Windows Form Designer control. + + + + + Attempts to cancel the execution of a currently active command + + + Cancelling a currently active query only works with MySQL versions 5.0.0 and higher. + + + + + Creates a new instance of a object. + + + This method is a strongly-typed version of . + + A object. + + + + + Check the connection to make sure + - it is open + - it is not currently being used by a reader + - and we have the right version of MySQL for the requested command type + + + + + Executes a SQL statement against the connection and returns the number of rows affected. + Number of rows affected + You can use ExecuteNonQuery to perform any type of database operation, + however any resultsets returned will not be available. Any output parameters + used in calling a stored procedure will be populated with data and can be + retrieved after execution is complete. + For UPDATE, INSERT, and DELETE statements, the return value is the number + of rows affected by the command. For all other types of statements, the return + value is -1. + + The following example creates a MySqlCommand and then + executes it using ExecuteNonQuery. The example is passed a string that is a + SQL statement (such as UPDATE, INSERT, or DELETE) and a string to use to + connect to the data source. + + Public Sub CreateMySqlCommand(myExecuteQuery As String, myConnection As MySqlConnection) + Dim myCommand As New MySqlCommand(myExecuteQuery, myConnection) + myCommand.Connection.Open() + myCommand.ExecuteNonQuery() + myConnection.Close() + End Sub + + + public void CreateMySqlCommand(string myExecuteQuery, MySqlConnection myConnection) + { + MySqlCommand myCommand = new MySqlCommand(myExecuteQuery, myConnection); + myCommand.Connection.Open(); + myCommand.ExecuteNonQuery(); + myConnection.Close(); + } + + + + + + Reset reader to null, to avoid "There is already an open data reader" + on the next ExecuteReader(). Used in error handling scenarios. + + + + + Reset SQL_SELECT_LIMIT that could have been modified by CommandBehavior. + + + + + Sends the to the Connection + and builds a . + + A object. + + + When the property is set to StoredProcedure, + the property should be set to the name of the stored + procedure. The command executes this stored procedure when you call + ExecuteReader. + + + While the is in use, the associated + is busy serving the MySqlDataReader. + While in this state, no other operations can be performed on the + MySqlConnection other than closing it. This is the case until the + method of the MySqlDataReader is called. + + + The following example creates a , then executes it by + passing a string that is a SQL SELECT statement, and a string to use to connect to the + data source. + + Public Sub CreateMySqlDataReader(mySelectQuery As String, myConnection As MySqlConnection) + Dim myCommand As New MySqlCommand(mySelectQuery, myConnection) + myConnection.Open() + Dim myReader As MySqlDataReader + myReader = myCommand.ExecuteReader() + Try + While myReader.Read() + Console.WriteLine(myReader.GetString(0)) + End While + Finally + myReader.Close + myConnection.Close + End Try + End Sub + + + public void CreateMySqlDataReader(string mySelectQuery, MySqlConnection myConnection) + { + MySqlCommand myCommand = new MySqlCommand(mySelectQuery, myConnection); + myConnection.Open(); + MMySqlDataReader myReader; + myReader = myCommand.ExecuteReader(); + try + { + while(myReader.Read()) + { + Console.WriteLine(myReader.GetString(0)); + } + } + finally + { + myReader.Close(); + myConnection.Close(); + } + } + + + + + + Sends the to the Connection, + and builds a using one of the values. + + One of the values. + + + When the property is set to StoredProcedure, + the property should be set to the name of the stored + procedure. The command executes this stored procedure when you call + ExecuteReader. + + + The supports a special mode that enables large binary + values to be read efficiently. For more information, see the SequentialAccess + setting for . + + + While the is in use, the associated + is busy serving the MySqlDataReader. + While in this state, no other operations can be performed on the + MySqlConnection other than closing it. This is the case until the + method of the MySqlDataReader is called. + If the MySqlDataReader is created with CommandBehavior set to + CloseConnection, closing the MySqlDataReader closes the connection + automatically. + + + When calling ExecuteReader with the SingleRow behavior, you should be aware that using a limit + clause in your SQL will cause all rows (up to the limit given) to be retrieved by the client. The + method will still return false after the first row but pulling all rows of data + into the client will have a performance impact. If the limit clause is not necessary, it should + be avoided. + + + A object. + + + + + Executes the query, and returns the first column of the first row in the + result set returned by the query. Extra columns or rows are ignored. + + The first column of the first row in the result set, or a null reference if the + result set is empty + + + Use the ExecuteScalar method to retrieve a single value (for example, + an aggregate value) from a database. This requires less code than using the + method, and then performing the operations necessary + to generate the single value using the data returned by a + + + The following example creates a and then + executes it using ExecuteScalar. The example is passed a string that is a + SQL statement that returns an aggregate result, and a string to use to + connect to the data source. + + + Public Sub CreateMySqlCommand(myScalarQuery As String, myConnection As MySqlConnection) + Dim myCommand As New MySqlCommand(myScalarQuery, myConnection) + myCommand.Connection.Open() + myCommand.ExecuteScalar() + myConnection.Close() + End Sub + + + public void CreateMySqlCommand(string myScalarQuery, MySqlConnection myConnection) + { + MySqlCommand myCommand = new MySqlCommand(myScalarQuery, myConnection); + myCommand.Connection.Open(); + myCommand.ExecuteScalar(); + myConnection.Close(); + } + + + public: + void CreateMySqlCommand(String* myScalarQuery, MySqlConnection* myConnection) + { + MySqlCommand* myCommand = new MySqlCommand(myScalarQuery, myConnection); + myCommand->Connection->Open(); + myCommand->ExecuteScalar(); + myConnection->Close(); + } + + + + + + + + + + Creates a prepared version of the command on an instance of MySQL Server. + + + Prepared statements are only supported on MySQL version 4.1 and higher. Calling + prepare while connected to earlier versions of MySQL will succeed but will execute + the statement in the same way as unprepared. + + + The following example demonstrates the use of the Prepare method. + + public sub PrepareExample() + Dim cmd as New MySqlCommand("INSERT INTO mytable VALUES (@val)", myConnection) + cmd.Parameters.Add( "@val", 10 ) + cmd.Prepare() + cmd.ExecuteNonQuery() + + cmd.Parameters(0).Value = 20 + cmd.ExecuteNonQuery() + end sub + + + private void PrepareExample() + { + MySqlCommand cmd = new MySqlCommand("INSERT INTO mytable VALUES (@val)", myConnection); + cmd.Parameters.Add( "@val", 10 ); + cmd.Prepare(); + cmd.ExecuteNonQuery(); + + cmd.Parameters[0].Value = 20; + cmd.ExecuteNonQuery(); + } + + + + + + Initiates the asynchronous execution of the SQL statement or stored procedure + that is described by this , and retrieves one or more + result sets from the server. + + An that can be used to poll, wait for results, + or both; this value is also needed when invoking EndExecuteReader, + which returns a instance that can be used to retrieve + the returned rows. + + + + Initiates the asynchronous execution of the SQL statement or stored procedure + that is described by this using one of the + CommandBehavior values. + + One of the values, indicating + options for statement execution and data retrieval. + An that can be used to poll, wait for results, + or both; this value is also needed when invoking EndExecuteReader, + which returns a instance that can be used to retrieve + the returned rows. + + + + Finishes asynchronous execution of a SQL statement, returning the requested + . + + The returned by the call to + . + A MySqlDataReader object that can be used to retrieve the requested rows. + + + + Initiates the asynchronous execution of the SQL statement or stored procedure + that is described by this . + + + An delegate that is invoked when the command's + execution has completed. Pass a null reference (Nothing in Visual Basic) + to indicate that no callback is required. + A user-defined state object that is passed to the + callback procedure. Retrieve this object from within the callback procedure + using the property. + An that can be used to poll or wait for results, + or both; this value is also needed when invoking , + which returns the number of affected rows. + + + + Initiates the asynchronous execution of the SQL statement or stored procedure + that is described by this . + + An that can be used to poll or wait for results, + or both; this value is also needed when invoking , + which returns the number of affected rows. + + + + Finishes asynchronous execution of a SQL statement. + + The returned by the call + to . + + + + + Verifies if a query is valid even if it has not spaces or is a stored procedure call + + Query to validate + If it is necessary to add call statement + + + + Creates a clone of this MySqlCommand object. CommandText, Connection, and Transaction properties + are included as well as the entire parameter list. + + The cloned MySqlCommand object + + + + Summary description for API. + + + + + Summary description for CompressedStream. + + + + + Represents an open connection to a MySQL Server database. This class cannot be inherited. + + + A MySqlConnection object represents a session to a MySQL Server + data source. When you create an instance of MySqlConnection, all + properties are set to their initial values. For a list of these values, see the + MySqlConnection constructor. + + + + If the MySqlConnection goes out of scope, it is not closed. Therefore, + you must explicitly close the connection by calling + or . + + + The following example creates a and + a MySqlConnection. The MySqlConnection is opened and set as the + for the MySqlCommand. The example then calls + , and closes the connection. To accomplish this, the ExecuteNonQuery is + passed a connection string and a query string that is a SQL INSERT + statement. + + + Public Sub InsertRow(myConnectionString As String) + ' If the connection string is null, use a default. + If myConnectionString = "" Then + myConnectionString = "Database=Test;Data Source=localhost;User Id=username;Password=pass" + End If + Dim myConnection As New MySqlConnection(myConnectionString) + Dim myInsertQuery As String = "INSERT INTO Orders (id, customerId, amount) Values(1001, 23, 30.66)" + Dim myCommand As New MySqlCommand(myInsertQuery) + myCommand.Connection = myConnection + myConnection.Open() + myCommand.ExecuteNonQuery() + myCommand.Connection.Close() + End Sub + + + + + public void InsertRow(string myConnectionString) + { + // If the connection string is null, use a default. + if(myConnectionString == "") + { + myConnectionString = "Database=Test;Data Source=localhost;User Id=username;Password=pass"; + } + MySqlConnection myConnection = new MySqlConnection(myConnectionString); + string myInsertQuery = "INSERT INTO Orders (id, customerId, amount) Values(1001, 23, 30.66)"; + MySqlCommand myCommand = new MySqlCommand(myInsertQuery); + myCommand.Connection = myConnection; + myConnection.Open(); + myCommand.ExecuteNonQuery(); + myCommand.Connection.Close(); + } + + + + + + Occurs when MySQL returns warnings as a result of executing a command or query. + + + + + Initializes a new instance of the class. + + When a new instance of is created, the read/write + properties are set to the following initial values unless they are specifically + set using their associated keywords in the property. + + + + Properties + Initial Value + + + + + + empty string ("") + + + + + + 15 + + + + + + empty string ("") + + + + + + empty string ("") + + + + + + empty string ("") + + + + You can change the value for these properties only by using the ConnectionString property. + + + + Initializes a new instance of the class. + + + + + + Initializes a new instance of the class when given a string containing the connection string. + + When a new instance of is created, the read/write + properties are set to the following initial values unless they are specifically + set using their associated keywords in the property. + + + + Properties + Initial Value + + + + + + empty string ("") + + + + + + 15 + + + + + + empty string ("") + + + + + + empty string ("") + + + + + + empty string ("") + + + + You can change the value for these properties only by using the ConnectionString property. + + The connection properties used to open the MySQL database. + + + + Returns the id of the server thread this connection is executing on + + + + + Gets the name of the MySQL server to which to connect. + + + + + Gets the time to wait while trying to establish a connection before terminating the attempt and generating an error. + The value set is less than 0. + A value of 0 indicates no limit, and should be avoided in a + because an attempt to connect + will wait indefinitely. + + The following example creates a MySqlConnection + and sets some of its properties in the connection string. + + Public Sub CreateSqlConnection() + Dim myConnection As New MySqlConnection() + myConnection.ConnectionString = "Persist Security Info=False;Username=user;Password=pass;database=test1;server=localhost;Connect Timeout=30" + myConnection.Open() + End Sub + + + public void CreateSqlConnection() + { + MySqlConnection myConnection = new MySqlConnection(); + myConnection.ConnectionString = "Persist Security Info=False;Username=user;Password=pass;database=test1;server=localhost;Connect Timeout=30"; + myConnection.Open(); + } + + + + + Gets the name of the current database or the database to be used after a connection is opened.The name of the current database or the name of the database to be used after a connection is opened. The default value is an empty string. + + The Database property does not update dynamically. + If you change the current database using a SQL statement, then this property + may reflect the wrong value. If you change the current database using the + method, this property is updated to reflect the new database. + + + The following example creates a and displays + some of its read-only properties. + + + Public Sub CreateMySqlConnection() + Dim myConnString As String = _ + "Persist Security Info=False;database=test;server=localhost;user id=joeuser;pwd=pass" + Dim myConnection As New MySqlConnection( myConnString ) + myConnection.Open() + MessageBox.Show( "Server Version: " + myConnection.ServerVersion _ + + ControlChars.NewLine + "Database: " + myConnection.Database ) + myConnection.ChangeDatabase( "test2" ) + MessageBox.Show( "ServerVersion: " + myConnection.ServerVersion _ + + ControlChars.NewLine + "Database: " + myConnection.Database ) + myConnection.Close() + End Sub + + + + public void CreateMySqlConnection() + { + string myConnString = + "Persist Security Info=False;database=test;server=localhost;user id=joeuser;pwd=pass"; + MySqlConnection myConnection = new MySqlConnection( myConnString ); + myConnection.Open(); + MessageBox.Show( "Server Version: " + myConnection.ServerVersion + + "\nDatabase: " + myConnection.Database ); + myConnection.ChangeDatabase( "test2" ); + MessageBox.Show( "ServerVersion: " + myConnection.ServerVersion + + "\nDatabase: " + myConnection.Database ); + myConnection.Close(); + } + + + + + + Indicates if this connection should use compression when communicating with the server. + + + + Gets the current state of the connection. + A bitwise combination of the values. The default is Closed. + + The allowed state changes are: + + + From Closed to Open, using the Open method of the connection object. + + + From Open to Closed, using either the Close method or the Dispose method of the connection object. + + + + The following example creates a , opens it, + displays some of its properties, then closes the connection. + + + Public Sub CreateMySqlConnection(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + MessageBox.Show("ServerVersion: " + myConnection.ServerVersion _ + + ControlChars.Cr + "State: " + myConnection.State.ToString()) + myConnection.Close() + End Sub + + + public void CreateMySqlConnection(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + MessageBox.Show("ServerVersion: " + myConnection.ServerVersion + + "\nState: " + myConnection.State.ToString()); + myConnection.Close(); + } + + + + + Gets a string containing the version of the MySQL server to which the client is connected.The version of the instance of MySQL.The connection is closed. + The following example creates a , opens it, + displays some of its properties, then closes the connection. + + + Public Sub CreateMySqlConnection(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + MessageBox.Show("ServerVersion: " + myConnection.ServerVersion _ + + ControlChars.Cr + "State: " + myConnection.State.ToString()) + myConnection.Close() + End Sub + + + public void CreateMySqlConnection(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + MessageBox.Show("ServerVersion: " + myConnection.ServerVersion + + "\nState: " + myConnection.State.ToString()); + myConnection.Close(); + } + + #if !NETSTANDARD1_6 + + + + Gets or sets the string used to connect to a MySQL Server database. + + + The ConnectionString returned may not be exactly like what was originally + set but will be indentical in terms of keyword/value pairs. Security information + will not be included unless the Persist Security Info value is set to true. + + + You can use the ConnectionString property to connect to a database. + The following example illustrates a typical connection string. + + "Persist Security Info=False;database=MyDB;server=MySqlServer;user id=myUser;Password=myPass" + + The ConnectionString property can be set only when the connection is + closed. Many of the connection string values have corresponding read-only + properties. When the connection string is set, all of these properties are + updated, except when an error is detected. In this case, none of the properties + are updated. properties return only those settings contained in the + ConnectionString. + + + To connect to a local machine, specify "localhost" for the server. If you do not + specify a server, localhost is assumed. + + + Resetting the ConnectionString on a closed connection resets all + connection string values (and related properties) including the password. For + example, if you set a connection string that includes "Database= MyDb", and + then reset the connection string to "Data Source=myserver;User Id=myUser;Password=myPass", + the property is no longer set to MyDb. + + + The connection string is parsed immediately after being set. If errors in + syntax are found when parsing, a runtime exception, such as , + is generated. Other errors can be found only when an attempt is made to open the + connection. + + + The basic format of a connection string consists of a series of keyword/value + pairs separated by semicolons. The equal sign (=) connects each keyword and its + value. To include values that contain a semicolon, single-quote character, or + double-quote character, the value must be enclosed in double quotes. If the + value contains both a semicolon and a double-quote character, the value can be + enclosed in single quotes. The single quote is also useful if the value begins + with a double-quote character. Conversely, the double quote can be used if the + value begins with a single quote. If the value contains both single-quote and + double-quote characters, the quote character used to enclose the value must be + doubled each time it occurs within the value. + + + To include preceding or trailing spaces in the string value, the value must + be enclosed in either single quotes or double quotes. Any leading or trailing + spaces around integer, Boolean, or enumerated values are ignored, even if + enclosed in quotes. However, spaces within a string literal keyword or value are + preserved. Using .NET Framework version 1.1, single or double quotes may be used + within a connection string without using delimiters (for example, Data Source= + my'Server or Data Source= my"Server), unless a quote character is the first or + last character in the value. + + + To include an equal sign (=) in a keyword or value, it must be preceded by + another equal sign. For example, in the hypothetical connection string + + "key==word=value" + + the keyword is "key=word" and the value is "value". + + If a specific keyword in a keyword= value pair occurs multiple times in a + connection string, the last occurrence listed is used in the value set. + + Keywords are not case sensitive. + + The following table lists the valid names for keyword values within the + ConnectionString. + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDefaultDescription
+ Connect Timeout -or- Connection Timeout + 15 + The length of time (in seconds) to wait for a connection to the server before + terminating the attempt and generating an error. +
+ Host -or- Server -or- Data Source -or- + DataSource -or- Address -or- Addr -or- + Network Address + localhost + + The name or network address of the instance of MySQL to which to connect. Multiple hosts can be + specified separated by &. This can be useful where multiple MySQL servers are configured for replication + and you are not concerned about the precise server you are connecting to. No attempt is made by the provider to + synchronize writes to the database so care should be taken when using this option. + + + In Unix environment with Mono, this can be a fully qualified path to MySQL socket filename. With this configuration, the Unix socket will be used instead of TCP/IP socket. + Currently only a single socket name can be given so accessing MySQL in a replicated environment using Unix sockets is not currently supported. + +
Port3306 + The port MySQL is using to listen for connections. This value is ignored if the connection protocol + is anything but socket. +
Protocolsocket + Specifies the type of connection to make to the server.Values can be: + socket or tcp for a socket connection
+ pipe for a named pipe connection
+ unix for a Unix socket connection
+ memory to use MySQL shared memory +
+ CharSet -or Character Set + + + Specifies the character set that should be used to encode all queries sent to the server. + Resultsets are still returned in the character set of the data returned. +
LoggingfalseWhen true, various pieces of information is output to any configured TraceListeners.
Allow Batchtrue + When true, multiple SQL statements can be sent with one command execution.

+ -Note-
+ Starting with MySQL 4.1.1, batch statements should be separated by the server-defined seperator character.
+ Commands sent to earlier versions of MySQL should be seperated with ';'. +
Encryptfalse + When true, SSL/TLS encryption is used for all data sent between the + client and server if the server has a certificate installed. Recognized values + are true, false, yes, and no. +
+ Initial Catalog -or- Database + mysqlThe name of the database to use intially
+ Password -or- pwd + + The password for the MySQL account being used.
Persist Security Infofalse + When set to false or no (strongly recommended), security-sensitive + information, such as the password, is not returned as part of the connection if + the connection is open or has ever been in an open state. Resetting the + connection string resets all connection string values including the password. + Recognized values are true, false, yes, and no. +
+ User Id -or- Username -or- Uid -or- User name + + The MySQL login account being used.
Shared Memory NameMYSQLThe name of the shared memory object to use for communication if the connection protocol is set to memory.
Allow Zero Datetimefalse + True to have MySqlDataReader.GetValue() return a MySqlDateTime for date or datetime columns that have illegal values. + False will cause a DateTime object to be returned for legal values and an exception will be thrown for illegal values. +
Convert Zero Datetimefalse + True to have MySqlDataReader.GetValue() and MySqlDataReader.GetDateTime() + return DateTime.MinValue for date or datetime columns that have illegal values. +
+ Pipe Name -or- Pipe + mysql + When set to the name of a named pipe, the MySqlConnection will attempt to connect to MySQL + on that named pipe.

This settings only applies to the Windows platform. +
+ Use Performance Monitor -or- UsePerformanceMonitor + false + Posts performance data that can be tracked using perfmon +
+ Procedure Cache Size + 25 + How many stored procedure definitions can be held in the cache +
+ Ignore Prepare + true + Instructs the provider to ignore any attempts to prepare commands. This option + was added to allow a user to disable prepared statements in an entire application + without modifying the code. A user might want to do this if errors or bugs are + encountered with MySQL prepared statements. +
Use Procedure Bodiestrue + Instructs the provider to attempt to call the procedure without first resolving the metadata. This + is useful in situations where the calling user does not have access to the mysql.proc table. To + use this mode, the parameters for the procedure must be added to the command in the same order + as they appear in the procedure definition and their types must be explicitly set. +
Auto Enlisttrue + Indicates whether the connection should automatically enlist in the current transaction, + if there is one. +
Respect Binary Flagstrue + Indicates whether the connection should respect all binary flags sent to the client + as part of column metadata. False will cause the connector to behave like + Connector/NET 5.0 and earlier. +
BlobAsUTF8IncludePatternnull + Pattern that should be used to indicate which blob columns should be treated as UTF-8. +
BlobAsUTF8ExcludePatternnull + Pattern that should be used to indicate which blob columns should not be treated as UTF-8. +
Default Command Timeout30 + The default timeout that new MySqlCommand objects will use unless changed. +
Allow User Variablesfalse + Should the provider expect user variables in the SQL. +
Interactive -or- Interactive Sessionfalse + Should this session be considered interactive? +
Functions Return Stringfalse + Set this option to true to force the return value of SQL functions to be string. +
Use Affected Rowsfalse + Set this option to true to cause the affected rows reported to reflect only the + rows that are actually changed. By default, the number of rows that are matched + is returned. +
+
+ + The following table lists the valid names for connection pooling values within + the ConnectionString. For more information about connection pooling, see + Connection Pooling for the MySql Data Provider. + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDefaultDescription
Connection Lifetime0 + When a connection is returned to the pool, its creation time is compared with + the current time, and the connection is destroyed if that time span (in seconds) + exceeds the value specified by Connection Lifetime. This is useful in + clustered configurations to force load balancing between a running server and a + server just brought online. + + A value of zero (0) causes pooled connections to have the maximum connection + timeout. + +
Max Pool Size100The maximum number of connections allowed in the pool.
Min Pool Size0The minimum number of connections allowed in the pool.
Poolingtrue + When true, the MySqlConnection object is drawn from the appropriate + pool, or if necessary, is created and added to the appropriate pool. Recognized + values are true, false, yes, and no. +
Connection Resetfalse + Specifies whether the database connection should be reset when being + drawn from the pool. Leaving this as false will yeild much faster + connection opens but the user should understand the side effects + of doing this such as temporary tables and user variables from the previous + session not being cleared out. +
Cache Server Propertiesfalse + Specifies whether the server variables are cached between pooled connections. + On systems where the variables change infrequently and there are lots of + connection attempts, this can speed up things dramatically. +
+
+ + When setting keyword or connection pooling values that require a Boolean + value, you can use 'yes' instead of 'true', and 'no' instead of 'false'. + + + Note The MySql Data Provider uses the native socket protocol to + communicate with MySQL. Therefore, it does not support the use of an ODBC data source name (DSN) when + connecting to MySQL because it does not add an ODBC layer. + + + CAUTION In this release, the application should use caution when constructing a + connection string based on user input (for example when retrieving user ID and password information from a + dialog box, and appending it to the connection string). The application should + ensure that a user cannot embed extra connection string parameters in these + values (for example, entering a password as "validpassword;database=somedb" in + an attempt to attach to a different database). + +
+ The following example creates a and sets some of its properties + + Public Sub CreateConnection() + Dim myConnection As New MySqlConnection() + myConnection.ConnectionString = "Persist Security Info=False;database=myDB;server=myHost;Connect Timeout=30;user id=myUser; pwd=myPass" + myConnection.Open() + End Sub 'CreateConnection + + + public void CreateConnection() + { + MySqlConnection myConnection = new MySqlConnection(); + myConnection.ConnectionString = "Persist Security Info=False;database=myDB;server=myHost;Connect Timeout=30;user id=myUser; pwd=myPass"; + myConnection.Open(); + } + + + The following example creates a in Unix environment with Mono installed. MySQL socket filename used in this example is "/var/lib/mysql/mysql.sock". The actual filename depends on your MySQL configuration. + + Public Sub CreateConnection() + Dim myConnection As New MySqlConnection() + myConnection.ConnectionString = "database=myDB;server=/var/lib/mysql/mysql.sock;user id=myUser; pwd=myPass" + myConnection.Open() + End Sub 'CreateConnection + + + public void CreateConnection() + { + MySqlConnection myConnection = new MySqlConnection(); + myConnection.ConnectionString = "database=myDB;server=/var/lib/mysql/mysql.sock;user id=myUser; pwd=myPass"; + myConnection.Open(); + } + + +
+ + + Gets a boolean value that indicates whether the password associated to the connection is expired. + + + + Begins a database transaction.An object representing the new transaction.Parallel transactions are not supported. + This command is equivalent to the MySQL BEGIN TRANSACTION command. + + You must explicitly commit or roll back the transaction using the or + method. + + If you do not specify an isolation level, the default isolation level is used. To specify an isolation + level with the method, use the overload that takes the iso parameter. Also + note that any attempt to begin a transaction while a transaction is in progress will throw an exception on MySQL 4.1 and higher. + On MySQL 4.0, an exception will not be thrown because servers 4.0 and earlier did not report their transacation status. + + + + The following example creates a and a + . It also demonstrates how to use the BeginTransaction, a + , and methods. + + Public Sub RunTransaction(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + + Dim myCommand As MySqlCommand = myConnection.CreateCommand() + Dim myTrans As MySqlTransaction + + ' Start a local transaction + myTrans = myConnection.BeginTransaction() + ' Must assign both transaction object and connection + ' to Command object for a pending local transaction + myCommand.Connection = myConnection + myCommand.Transaction = myTrans + + Try + myCommand.CommandText = "Insert into Test (id, desc) VALUES (100, 'Description')" + myCommand.ExecuteNonQuery() + myCommand.CommandText = "Insert into Test (id, desc) VALUES (101, 'Description')" + myCommand.ExecuteNonQuery() + myTrans.Commit() + Console.WriteLine("Both records are written to database.") + Catch e As Exception + Try + myTrans.Rollback() + Catch ex As MySqlException + If Not myTrans.Connection Is Nothing Then + Console.WriteLine("An exception of type " + ex.GetType().ToString() + _ + " was encountered while attempting to roll back the transaction.") + End If + End Try + + Console.WriteLine("An exception of type " + e.GetType().ToString() + _ + "was encountered while inserting the data.") + Console.WriteLine("Neither record was written to database.") + Finally + myConnection.Close() + End Try + End Sub + + + public void RunTransaction(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + + MySqlCommand myCommand = myConnection.CreateCommand(); + MySqlTransaction myTrans; + + // Start a local transaction + myTrans = myConnection.BeginTransaction(); + // Must assign both transaction object and connection + // to Command object for a pending local transaction + myCommand.Connection = myConnection; + myCommand.Transaction = myTrans; + + try + { + myCommand.CommandText = "insert into Test (id, desc) VALUES (100, 'Description')"; + myCommand.ExecuteNonQuery(); + myCommand.CommandText = "insert into Test (id, desc) VALUES (101, 'Description')"; + myCommand.ExecuteNonQuery(); + myTrans.Commit(); + Console.WriteLine("Both records are written to database."); + } + catch(Exception e) + { + try + { + myTrans.Rollback(); + } + catch (SqlException ex) + { + if (myTrans.Connection != null) + { + Console.WriteLine("An exception of type " + ex.GetType() + + " was encountered while attempting to roll back the transaction."); + } + } + + Console.WriteLine("An exception of type " + e.GetType() + + " was encountered while inserting the data."); + Console.WriteLine("Neither record was written to database."); + } + finally + { + myConnection.Close(); + } + } + + + + + Begins a database transaction with the specified isolation level.The isolation level under which the transaction should run. An object representing the new transaction.Parallel exceptions are not supported. + This command is equivalent to the MySQL BEGIN TRANSACTION command. + + You must explicitly commit or roll back the transaction using the or + method. + + If you do not specify an isolation level, the default isolation level is used. To specify an isolation + level with the method, use the overload that takes the iso parameter. + Also note that any attempt to begin a transaction while a transaction is in progress will throw an exception on MySQL 4.1 and higher. + On MySQL 4.0, an exception will not be thrown because servers 4.0 and earlier did not report their transacation status. + + + + The following example creates a and a + . It also demonstrates how to use the BeginTransaction, a + , and methods. + + Public Sub RunTransaction(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + + Dim myCommand As MySqlCommand = myConnection.CreateCommand() + Dim myTrans As MySqlTransaction + + ' Start a local transaction + myTrans = myConnection.BeginTransaction() + ' Must assign both transaction object and connection + ' to Command object for a pending local transaction + myCommand.Connection = myConnection + myCommand.Transaction = myTrans + + Try + myCommand.CommandText = "Insert into Test (id, desc) VALUES (100, 'Description')" + myCommand.ExecuteNonQuery() + myCommand.CommandText = "Insert into Test (id, desc) VALUES (101, 'Description')" + myCommand.ExecuteNonQuery() + myTrans.Commit() + Console.WriteLine("Both records are written to database.") + Catch e As Exception + Try + myTrans.Rollback() + Catch ex As MySqlException + If Not myTrans.Connection Is Nothing Then + Console.WriteLine("An exception of type " + ex.GetType().ToString() + _ + " was encountered while attempting to roll back the transaction.") + End If + End Try + + Console.WriteLine("An exception of type " + e.GetType().ToString() + _ + "was encountered while inserting the data.") + Console.WriteLine("Neither record was written to database.") + Finally + myConnection.Close() + End Try + End Sub + + + public void RunTransaction(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + + MySqlCommand myCommand = myConnection.CreateCommand(); + MySqlTransaction myTrans; + + // Start a local transaction + myTrans = myConnection.BeginTransaction(); + // Must assign both transaction object and connection + // to Command object for a pending local transaction + myCommand.Connection = myConnection; + myCommand.Transaction = myTrans; + + try + { + myCommand.CommandText = "insert into Test (id, desc) VALUES (100, 'Description')"; + myCommand.ExecuteNonQuery(); + myCommand.CommandText = "insert into Test (id, desc) VALUES (101, 'Description')"; + myCommand.ExecuteNonQuery(); + myTrans.Commit(); + Console.WriteLine("Both records are written to database."); + } + catch(Exception e) + { + try + { + myTrans.Rollback(); + } + catch (SqlException ex) + { + if (myTrans.Connection != null) + { + Console.WriteLine("An exception of type " + ex.GetType() + + " was encountered while attempting to roll back the transaction."); + } + } + + Console.WriteLine("An exception of type " + e.GetType() + + " was encountered while inserting the data."); + Console.WriteLine("Neither record was written to database."); + } + finally + { + myConnection.Close(); + } + } + + + + + Changes the current database for an open MySqlConnection.The name of the database to use. + + The value supplied in the database parameter must be a valid database + name. The database parameter cannot contain a null value, an empty + string, or a string with only blank characters. + + + + When you are using connection pooling against MySQL, and you close + the connection, it is returned to the connection pool. The next time the + connection is retrieved from the pool, the reset connection request + executes before the user performs any operations. + + The database name is not valid.The connection is not open.Cannot change the database. + The following example creates a and displays + some of its read-only properties. + + + Public Sub CreateMySqlConnection() + Dim myConnString As String = _ + "Persist Security Info=False;database=test;server=localhost;user id=joeuser;pwd=pass" + Dim myConnection As New MySqlConnection( myConnString ) + myConnection.Open() + MessageBox.Show( "Server Version: " + myConnection.ServerVersion _ + + ControlChars.NewLine + "Database: " + myConnection.Database ) + myConnection.ChangeDatabase( "test2" ) + MessageBox.Show( "ServerVersion: " + myConnection.ServerVersion _ + + ControlChars.NewLine + "Database: " + myConnection.Database ) + myConnection.Close() + End Sub + + + + public void CreateMySqlConnection() + { + string myConnString = + "Persist Security Info=False;database=test;server=localhost;user id=joeuser;pwd=pass"; + MySqlConnection myConnection = new MySqlConnection( myConnString ); + myConnection.Open(); + MessageBox.Show( "Server Version: " + myConnection.ServerVersion + + "\nDatabase: " + myConnection.Database ); + myConnection.ChangeDatabase( "test2" ); + MessageBox.Show( "ServerVersion: " + myConnection.ServerVersion + + "\nDatabase: " + myConnection.Database ); + myConnection.Close(); + } + + + + + + Ping + + + + + Opens a database connection with the property settings specified by the ConnectionString.Cannot open a connection without specifying a data source or server.A connection-level error occurred while opening the connection. + + The draws an open connection from the connection pool if one is available. + Otherwise, it establishes a new connection to an instance of MySQL. + + + The following example creates a , opens it, + displays some of its properties, then closes the connection. + + + Public Sub CreateMySqlConnection(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + MessageBox.Show("ServerVersion: " + myConnection.ServerVersion _ + + ControlChars.Cr + "State: " + myConnection.State.ToString()) + myConnection.Close() + End Sub + + + public void CreateMySqlConnection(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + MessageBox.Show("ServerVersion: " + myConnection.ServerVersion + + "\nState: " + myConnection.State.ToString()); + myConnection.Close(); + } + + + + + + Creates and returns a object associated with the . + + A object. + + + + Closes the connection to the database. This is the preferred method of closing any open connection. + + The Close method rolls back any pending transactions. It then releases + the connection to the connection pool, or closes the connection if connection + pooling is disabled. + + + An application can call Close more than one time. No exception is + generated. + + + The following example creates a , opens it, + displays some of its properties, then closes the connection. + + + Public Sub CreateMySqlConnection(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + MessageBox.Show("ServerVersion: " + myConnection.ServerVersion _ + + ControlChars.Cr + "State: " + myConnection.State.ToString()) + myConnection.Close() + End Sub + + + public void CreateMySqlConnection(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + MessageBox.Show("ServerVersion: " + myConnection.ServerVersion + + "\nState: " + myConnection.State.ToString()); + myConnection.Close(); + } + + + + + + Cancels the query after the specified time interval. + + The length of time (in seconds) to wait for the cancelation of the command execution. + + + + Sets query timeout. If timeout has been set prior and not + yet cleared ClearCommandTimeout(), it has no effect. + + timeout in seconds + true if + + + + Clears query timeout, allowing next SetCommandTimeout() to succeed. + + + + + Gets a schema collection based on the provided restriction values. + + The name of the collection. + The values to restrict. + A schema collection object. + + + Empties the connection pool associated with the specified connection. + The associated with the pool to be cleared. + + + ClearPool clears the connection pool that is associated with the connection. + If additional connections associated with connection are in use at the time of the call, + they are marked appropriately and are discarded (instead of being returned to the pool) + when Close is called on them. + + + + + Clears all connection pools. + + ClearAllPools essentially performs a on all current connection + pools. + + + + + + Initiates the asynchronous execution of a transaction. + + An object representing the new transaction. + + + + Asynchronous version of BeginTransaction. + + The cancellation token. + An object representing the new transaction. + + + + Async version of BeginTransaction + + The isolation level under which the transaction should run. + An object representing the new transaction. + + + + Asynchronous version of BeginTransaction. + + The isolation level under which the transaction should run. + The cancellation token. + An object representing the new transaction. + + + + Asynchronous version of the ChangeDataBase method. + + The name of the database to use. + + + + + Asynchronous version of the ChangeDataBase method. + + The name of the database to use. + The cancellation Token. + + + + + Asynchronous version of the Close method. + + + + + + Asynchronous version of the Close method. + + The cancellation token. + + + + + Asynchronous version of the ClearPool method. + + The connection associated with the pool to be cleared. + + + + + Asynchronous version of the ClearPool method. + + The connection associated with the pool to be cleared. + The cancellation token. + + + + + Async version of ClearAllPools + + + + + + Asynchronous version of the ClearAllPools method. + + The cancellation token. + + + + + Asynchronous version of the GetSchemaCollection method. + + The name of the collection. + The values to restrict. + A collection of schema objects. + + + + Asynchronous version of the GetSchemaCollection method. + + The name of the collection. + The values to restrict. + The cancellation token. + A collection of schema objects. + + + + Returns schema information for the data source of this . + + A that contains schema information. + + + + Returns schema information for the data source of this + using the specified string for the schema name. + + Specifies the name of the schema to return. + A that contains schema information. + + + + Returns schema information for the data source of this + using the specified string for the schema name and the specified string array + for the restriction values. + + Specifies the name of the schema to return. + Specifies a set of restriction values for the requested schema. + A that contains schema information. + + + + Enlists in the specified transaction. + + + A reference to an existing in which to enlist. + + + + + Creates a new MySqlConnection object with the exact same ConnectionString value + + A cloned MySqlConnection object + + + + Represents the method that will handle the event of a + . + + + + + Provides data for the InfoMessage event. This class cannot be inherited. + + + + + Gets or sets an array of MySqlError objects set with the errors found. + + + + + IDisposable wrapper around SetCommandTimeout and ClearCommandTimeout + functionality + + + + + Summary description for Crypt. + + + + + Simple XOR scramble + + Source array + Index inside source array + Destination array + Index inside destination array + Password used to xor the bits + Number of bytes to scramble + + + + Returns a byte array containing the proper encryption of the + given password/seed according to the new 4.1.1 authentication scheme. + + + + + + + + Encrypts a password using the MySql encryption scheme + + The password to encrypt + The encryption seed the server gave us + Indicates if we should use the old or new encryption scheme + + + + + Hashes a password using the algorithm from Monty's code. + The first element in the return is the result of the "old" hash. + The second element is the rest of the "new" hash. + + Password to be hashed + Two element array containing the hashed values + + + + Provides a means of reading a forward-only stream of rows from a MySQL database. This class cannot be inherited. + + + To create a MySQLDataReader, you must call the + method of the object, rather than directly using a constructor. + + + While the MySqlDataReader is in use, the associated + is busy serving the MySqlDataReader, and no other operations can be performed + on the MySqlConnection other than closing it. This is the case until the + method of the MySqlDataReader is called. + + + and + are the only properties that you can call after the MySqlDataReader is + closed. Though the RecordsAffected property may be accessed at any time + while the MySqlDataReader exists, always call Close before returning + the value of RecordsAffected to ensure an accurate return value. + + + For optimal performance, MySqlDataReader avoids creating + unnecessary objects or making unnecessary copies of data. As a result, multiple calls + to methods such as return a reference to the + same object. Use caution if you are modifying the underlying value of the objects + returned by methods such as GetValue. + + + The following example creates a , + a , and a MySqlDataReader. The example reads through + the data, writing it out to the console. Finally, the example closes the MySqlDataReader, then the + MySqlConnection. + + Public Sub ReadMyData(myConnString As String) + Dim mySelectQuery As String = "SELECT OrderID, CustomerID FROM Orders" + Dim myConnection As New MySqlConnection(myConnString) + Dim myCommand As New MySqlCommand(mySelectQuery, myConnection) + myConnection.Open() + Dim myReader As MySqlDataReader + myReader = myCommand.ExecuteReader() + ' Always call Read before accessing data. + While myReader.Read() + Console.WriteLine((myReader.GetInt32(0) & ", " & myReader.GetString(1))) + End While + ' always call Close when done reading. + myReader.Close() + ' Close the connection when done with it. + myConnection.Close() + End Sub 'ReadMyData + + + public void ReadMyData(string myConnString) { + string mySelectQuery = "SELECT OrderID, CustomerID FROM Orders"; + MySqlConnection myConnection = new MySqlConnection(myConnString); + MySqlCommand myCommand = new MySqlCommand(mySelectQuery,myConnection); + myConnection.Open(); + MySqlDataReader myReader; + myReader = myCommand.ExecuteReader(); + // Always call Read before accessing data. + while (myReader.Read()) { + Console.WriteLine(myReader.GetInt32(0) + ", " + myReader.GetString(1)); + } + // always call Close when done reading. + myReader.Close(); + // Close the connection when done with it. + myConnection.Close(); + } + + + + + + Gets the number of columns in the current row. + + + + + Gets a value indicating whether the MySqlDataReader contains one or more rows. + + + + + Gets a value indicating whether the data reader is closed. + + + + + Gets the number of rows changed, inserted, or deleted by execution of the SQL statement. + + + + + Overloaded. Gets the value of a column in its native format. + In C#, this property is the indexer for the MySqlDataReader class. + + + + + Gets the value of a column in its native format. + [C#] In C#, this property is the indexer for the MySqlDataReader class. + + + + + Gets a value indicating the depth of nesting for the current row. This method is not + supported currently and always returns 0. + + + + + Closes the MySqlDataReader object. + + + + + Gets the value of the specified column as a Boolean. + + + + + + + Gets the value of the specified column as a Boolean. + + + + + + + Gets the value of the specified column as a byte. + + + + + + + Gets the value of the specified column as a byte. + + + + + + + Gets the value of the specified column as a sbyte. + + + + + + + Gets the value of the specified column as a sbyte. + + + + + + + Reads a stream of bytes from the specified column offset into the buffer an array starting at the given buffer offset. + + The zero-based column ordinal. + The index within the field from which to begin the read operation. + The buffer into which to read the stream of bytes. + The index for buffer to begin the read operation. + The maximum length to copy into the buffer. + The actual number of bytes read. + + + + + Gets the value of the specified column as a single character. + + + + + + + Gets the value of the specified column as a single character. + + + + + + + Reads a stream of characters from the specified column offset into the buffer as an array starting at the given buffer offset. + + + + + + + + + + + Gets the name of the source data type. + + + + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a DateTime object. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a DateTime object. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a DateTime object. + + + Call IsDBNull to check for null values before calling this method. + + + + MySql allows date columns to contain the value '0000-00-00' and datetime + columns to contain the value '0000-00-00 00:00:00'. The DateTime structure cannot contain + or represent these values. To read a datetime value from a column that might + contain zero values, use . + + + The behavior of reading a zero datetime column using this method is defined by the + ZeroDateTimeBehavior connection string option. For more information on this option, + please refer to . + + + The column name.The value of the specified column. + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a DateTime object. + + + Call IsDBNull to check for null values before calling this method. + + + + MySql allows date columns to contain the value '0000-00-00' and datetime + columns to contain the value '0000-00-00 00:00:00'. The DateTime structure cannot contain + or represent these values. To read a datetime value from a column that might + contain zero values, use . + + + The behavior of reading a zero datetime column using this method is defined by the + ZeroDateTimeBehavior connection string option. For more information on this option, + please refer to . + + + The zero-based column ordinal.The value of the specified column. + + + + Gets the value of the specified column as a MySqlDecimal. + + The name of the colum. + The value of the specified column as a MySqlDecimal. + + + + Gets the value of the specified column as a MySqlDecimal. + + The index of the colum. + The value of the specified column as a MySqlDecimal. + + + + Gets the value of the specified column as a MySqlDecimal. + + The name of the colum. + The value of the specified column as a MySqlDecimal. + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a Decimal object. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinalThe value of the specified column. + + + Gets the value of the specified column as a double-precision floating point number. + + No conversions are performed; therefore, the data retrieved must already be a Double object. + + + Call IsDBNull to check for null values before calling this method. + + The column nameThe value of the specified column. + + + Gets the value of the specified column as a double-precision floating point number. + + No conversions are performed; therefore, the data retrieved must already be a Double object. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal.The value of the specified column. + + + + Gets the type of the field at the specified column. + + The column name. + The data type of the item. + + + + Gets the Type that is the data type of the object. + + + + + + + Gets the value of the specified column as a single-precision floating point number. + + + No conversions are performed; therefore, the data retrieved must already be a Float object. + + + Call IsDBNull to check for null values before calling this method. + + The column nameThe value of the specified column. + + + + Gets the value of the specified column as a single-precision floating point number. + + + No conversions are performed; therefore, the data retrieved must already be a Float object. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal.The value of the specified column. + + + + Gets the value of the specified column as a globally-unique identifier(GUID). + + + + + + + + + Gets the value of the specified column as a 16-bit signed integer. + + No conversions are performed; threfore, the data retrieved must already be a 16 bit integer value. + + + Call IsDBNull to check for null values before calling this method. + + The column nameThe value of the specified column. + + + Gets the value of the specified column as a 16-bit signed integer. + + No conversions are performed; therefore, the data retrieved must already be a 16 bit integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal.The value of the specified column. + + + Gets the value of the specified column as a 32-bit signed integer. + + No conversions are performed; therefore, the data retrieved must already be a 32 bit integer value. + + + Call IsDBNull to check for null values before calling this method. + + The column name.The value of the specified column. + + + Gets the value of the specified column as a 32-bit signed integer. + + No conversions are performed; therefore, the data retrieved must already be a 32 bit integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal.The value of the specified column. + + + Gets the value of the specified column as a 64-bit signed integer. + + No conversions are performed; therefore, the data retrieved must already be a 64 bit integer value. + + + Call IsDBNull to check for null values before calling this method. + + The column name.The value of the specified column. + + + Gets the value of the specified column as a 64-bit signed integer. + + No conversions are performed; therefore, the data retrieved must already be a 64 bit integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal.The value of the specified column. + + + + Gets the name of the specified column. + + + + + + + Gets the column ordinal, given the name of the column. + + + + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a String object. + + + Call IsDBNull to check for null values before calling this method. + + The column name.The value of the specified column. + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a String object. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal.The value of the specified column. + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a Time value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a Time value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + + Gets the value of the specified column in its native format. + + + + + + + Gets all attribute columns in the collection for the current row. + + + + + + Gets the value of the specified column as a 16-bit unsigned integer. + + No conversions are performed; therefore, the data retrieved must already be a 16 bit unsigned integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + Gets the value of the specified column as a 16-bit unsigned integer. + + No conversions are performed; therefore, the data retrieved must already be a 16 bit unsigned integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + Gets the value of the specified column as a 32-bit unsigned integer. + + No conversions are performed; therefore, the data retrieved must already be a 32 bit unsigned integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + Gets the value of the specified column as a 32-bit unsigned integer. + + No conversions are performed; therefore, the data retrieved must already be a 32 bit unsigned integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + Gets the value of the specified column as a 64-bit unsigned integer. + + No conversions are performed; therefore, the data retrieved must already be a 64 bit unsigned integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + Gets the value of the specified column as a 64-bit unsigned integer. + + No conversions are performed; therefore, the data retrieved must already be a 64 bit unsigned integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + + Gets a value indicating whether the column contains non-existent or missing values. + + + + + + + Advances the data reader to the next result, when reading the results of batch SQL statements. + + + + + + Advances the MySqlDataReader to the next record. + + + + + + Gets the value of the specified column as a MySqlGeometry. + + The index of the colum. + The value of the specified column as a MySqlGeometry. + + + + Gets the value of the specified column as a MySqlGeometry. + + The name of the column. + The value of the specified column as a MySqlGeometry. + + + + Returns an that iterates through the . + + + + + Returns a DataTable that describes the column metadata of the MySqlDataReader. + + + + + + Summary description for BaseDriver. + + + + + For pooled connections, time when the driver was + put into idle queue + + + + + Loads the properties from the connected server into a hashtable + + + + + + + Loads all the current character set names and ids for this server + into the charSets hashtable + + + + + The exception that is thrown when MySQL returns an error. This class cannot be inherited. + + + + This class is created whenever the MySql Data Provider encounters an error generated from the server. + + + Any open connections are not automatically closed when an exception is thrown. If + the client application determines that the exception is fatal, it should close any open + objects or objects. + + + The following example generates a MySqlException due to a missing server, + and then displays the exception. + + + Public Sub ShowException() + Dim mySelectQuery As String = "SELECT column1 FROM table1" + Dim myConnection As New MySqlConnection ("Data Source=localhost;Database=Sample;") + Dim myCommand As New MySqlCommand(mySelectQuery, myConnection) + + Try + myCommand.Connection.Open() + Catch e As MySqlException + MessageBox.Show( e.Message ) + End Try + End Sub + + + public void ShowException() + { + string mySelectQuery = "SELECT column1 FROM table1"; + MySqlConnection myConnection = + new MySqlConnection("Data Source=localhost;Database=Sample;"); + MySqlCommand myCommand = new MySqlCommand(mySelectQuery,myConnection); + + try + { + myCommand.Connection.Open(); + } + catch (MySqlException e) + { + MessageBox.Show( e.Message ); + } + } + + + + + + Gets a number that identifies the type of error. + + + + + True if this exception was fatal and cause the closing of the connection, false otherwise. + + + + + Gets the SQL state. + + + + + Gets the numeric code of the exception. + + + + + Summary description for Field. + + + + + We are adding a custom installer class to our assembly so our installer + can make proper changes to the machine.config file. + + + + + We override Install so we can add our assembly to the proper + machine.config files. + + + + + + We override Uninstall so we can remove out assembly from the + machine.config files. + + + + + + Automatically generates single-table commands used to reconcile changes made to a DataSet with the associated MySQL database. This class cannot be inherited. + + + The does not automatically generate the SQL statements required to + reconcile changes made to a DataSet with the associated instance of MySQL. + However, you can create a MySqlCommandBuilder object to automatically generate SQL statements for + single-table updates if you set the SelectCommand property + of the MySqlDataAdapter. Then, any additional SQL statements that you do not set are generated by the + MySqlCommandBuilder. + + + + The MySqlCommandBuilder registers itself as a listener for RowUpdating + events whenever you set the property. You can only associate one + MySqlDataAdapter or MySqlCommandBuilder object with each other at one time. + + + + To generate INSERT, UPDATE, or DELETE statements, the MySqlCommandBuilder uses the + SelectCommand property to retrieve a required set of metadata automatically. If you change + the SelectCommand after the metadata has is retrieved (for example, after the first update), you + should call the method to update the metadata. + + + + The SelectCommand must also return at least one primary key or unique + column. If none are present, an InvalidOperation exception is generated, + and the commands are not generated. + + + + The MySqlCommandBuilder also uses the Connection, + CommandTimeout, and Transaction + properties referenced by the SelectCommand. The user should call + RefreshSchema if any of these properties are modified, or if the + SelectCommand itself is replaced. Otherwise the InsertCommand, + UpdateCommand, and + DeleteCommand properties retain + their previous values. + + + + If you call Dispose, the MySqlCommandBuilder is disassociated + from the MySqlDataAdapter, and the generated commands are no longer used. + + + + Caution must be used when using MySqlCOmmandBuilder on MySql 4.0 systems. With MySql 4.0, + database/schema information is not provided to the connector for a query. This means that + a query that pulls columns from two identically named tables in two or more different databases + will not cause an exception to be thrown but will not work correctly. Even more dangerous + is the situation where your select statement references database X but is executed in + database Y and both databases have tables with similar layouts. This situation can cause + unwanted changes or deletes. + This note does not apply to MySQL versions 4.1 and later. + + + + The following example uses the , along + and , to + select rows from a data source. The example is passed an initialized + , a connection string, a + query string that is a SQL SELECT statement, and a string that is the + name of the database table. The example then creates a MySqlCommandBuilder. + + + Public Shared Function SelectRows(myConnection As String, mySelectQuery As String, myTableName As String) As DataSet + Dim myConn As New MySqlConnection(myConnection) + Dim myDataAdapter As New MySqlDataAdapter() + myDataAdapter.SelectCommand = New MySqlCommand(mySelectQuery, myConn) + Dim cb As SqlCommandBuilder = New MySqlCommandBuilder(myDataAdapter) + + myConn.Open() + + Dim ds As DataSet = New DataSet + myDataAdapter.Fill(ds, myTableName) + + ' Code to modify data in DataSet here + + ' Without the MySqlCommandBuilder this line would fail. + myDataAdapter.Update(ds, myTableName) + + myConn.Close() + End Function 'SelectRows + + + public static DataSet SelectRows(string myConnection, string mySelectQuery, string myTableName) + { + MySqlConnection myConn = new MySqlConnection(myConnection); + MySqlDataAdapter myDataAdapter = new MySqlDataAdapter(); + myDataAdapter.SelectCommand = new MySqlCommand(mySelectQuery, myConn); + MySqlCommandBuilder cb = new MySqlCommandBuilder(myDataAdapter); + + myConn.Open(); + + DataSet ds = new DataSet(); + myDataAdapter.Fill(ds, myTableName); + + //code to modify data in DataSet here + + //Without the MySqlCommandBuilder this line would fail + myDataAdapter.Update(ds, myTableName); + + myConn.Close(); + + return ds; + } + + + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with the associated object. + + The to use. + + + The registers itself as a listener for + events that are generated by the + specified in this property. + + + When you create a new instance MySqlCommandBuilder, any existing + MySqlCommandBuilder associated with this MySqlDataAdapter + is released. + + + + + + Gets or sets a object for which SQL statements are automatically generated. + + A object. + + + The registers itself as a listener for + events that are generated by the + specified in this property. + + + When you create a new instance MySqlCommandBuilder, any existing + MySqlCommandBuilder associated with this MySqlDataAdapter + is released. + + + + + + Retrieves parameter information from the stored procedure specified + in the MySqlCommand and populates the Parameters collection of the + specified MySqlCommand object. + This method is not currently supported since stored procedures are + not available in MySql. + + The MySqlCommand referencing the stored + procedure from which the parameter information is to be derived. + The derived parameters are added to the Parameters collection of the + MySqlCommand. + The command text is not + a valid stored procedure name. + + + + Gets the delete command. + + + + + + Gets the update command. + + + + + + Gets the insert command. + + + + + + + + + + + + + Represents a set of data commands and a database connection that are used to fill a dataset and update a MySQL database. This class cannot be inherited. + + + The MySQLDataAdapter, serves as a bridge between a + and MySQL for retrieving and saving data. The MySQLDataAdapter provides this + bridge by mapping , which changes the data in the + DataSet to match the data in the data source, and , + which changes the data in the data source to match the data in the DataSet, + using the appropriate SQL statements against the data source. + + + When the MySQLDataAdapter fills a DataSet, it will create the necessary + tables and columns for the returned data if they do not already exist. However, primary + key information will not be included in the implicitly created schema unless the + property is set to . + You may also have the MySQLDataAdapter create the schema of the DataSet, + including primary key information, before filling it with data using . + + + MySQLDataAdapter is used in conjunction with + and to increase performance when connecting to a MySQL database. + + + The MySQLDataAdapter also includes the , + , , + , and + properties to facilitate the loading and updating of data. + + + When an instance of MySQLDataAdapter is created, the read/write properties + are set to initial values. For a list of these values, see the MySQLDataAdapter + constructor. + + + Please be aware that the class allows only + Int16, Int32, and Int64 to have the AutoIncrement property set. + If you plan to use autoincremement columns with MySQL, you should consider + using signed integer columns. + + + The following example creates a and a . + The MySqlConnection is opened and set as the for the + MySqlCommand. The example then calls , and closes + the connection. To accomplish this, the ExecuteNonQuery is + passed a connection string and a query string that is a SQL INSERT + statement. + + Public Function SelectRows(dataSet As DataSet, connection As String, query As String) As DataSet + Dim conn As New MySqlConnection(connection) + Dim adapter As New MySqlDataAdapter() + adapter.SelectCommand = new MySqlCommand(query, conn) + adapter.Fill(dataset) + Return dataset + End Function + + + public DataSet SelectRows(DataSet dataset,string connection,string query) + { + MySqlConnection conn = new MySqlConnection(connection); + MySqlDataAdapter adapter = new MySqlDataAdapter(); + adapter.SelectCommand = new MySqlCommand(query, conn); + adapter.Fill(dataset); + return dataset; + } + + + + + + Occurs during Update before a command is executed against the data source. The attempt to update is made, so the event fires. + + + + + Occurs during Update after a command is executed against the data source. The attempt to update is made, so the event fires. + + + + + Initializes a new instance of the MySqlDataAdapter class. + + + When an instance of is created, + the following read/write properties are set to the following initial + values. + + + + Properties + Initial Value + + + + + + + MissingMappingAction.Passthrough + + + + + + + + MissingSchemaAction.Add + + + + + You can change the value of any of these properties through a separate call + to the property. + + + The following example creates a and sets some of + its properties. + + Public Sub CreateSqlDataAdapter() + Dim conn As MySqlConnection = New MySqlConnection("Data Source=localhost;" & _ + "database=test") + Dim da As MySqlDataAdapter = New MySqlDataAdapter + da.MissingSchemaAction = MissingSchemaAction.AddWithKey + + da.SelectCommand = New MySqlCommand("SELECT id, name FROM mytable", conn) + da.InsertCommand = New MySqlCommand("INSERT INTO mytable (id, name) " & _ + "VALUES (@id, @name)", conn) + da.UpdateCommand = New MySqlCommand("UPDATE mytable SET id=@id, name=@name " & _ + "WHERE id=@oldId", conn) + da.DeleteCommand = New MySqlCommand("DELETE FROM mytable WHERE id=@id", conn) + + da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name") + + da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name") + da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original + + da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original + End Sub + + + public static void CreateSqlDataAdapter() + { + MySqlConnection conn = new MySqlConnection("Data Source=localhost;database=test"); + MySqlDataAdapter da = new MySqlDataAdapter(); + da.MissingSchemaAction = MissingSchemaAction.AddWithKey; + + da.SelectCommand = new MySqlCommand("SELECT id, name FROM mytable", conn); + da.InsertCommand = new MySqlCommand("INSERT INTO mytable (id, name) " + + "VALUES (@id, @name)", conn); + da.UpdateCommand = new MySqlCommand("UPDATE mytable SET id=@id, name=@name " + + "WHERE id=@oldId", conn); + da.DeleteCommand = new MySqlCommand("DELETE FROM mytable WHERE id=@id", conn); + + da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name"); + + da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name"); + da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original; + + da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original; + } + + + + + + Initializes a new instance of the class with + the specified as the + property. + + that is a SQL SELECT statement or stored procedure and is set + as the property of the . + + + When an instance of is created, + the following read/write properties are set to the following initial + values. + + + + Properties + Initial Value + + + + + + + MissingMappingAction.Passthrough + + + + + + + + MissingSchemaAction.Add + + + + + You can change the value of any of these properties through a separate call + to the property. + + + When SelectCommand (or any of the other command properties) is assigned + to a previously created , the MySqlCommand is not cloned. + The SelectCommand maintains a reference to the previously created MySqlCommand + object. + + + The following example creates a and sets some of + its properties. + + Public Sub CreateSqlDataAdapter() + Dim conn As MySqlConnection = New MySqlConnection("Data Source=localhost;" & _ + "database=test") + Dim cmd as new MySqlCommand("SELECT id, name FROM mytable", conn) + Dim da As MySqlDataAdapter = New MySqlDataAdapter(cmd) + da.MissingSchemaAction = MissingSchemaAction.AddWithKey + + da.InsertCommand = New MySqlCommand("INSERT INTO mytable (id, name) " & _ + "VALUES (@id, @name)", conn) + da.UpdateCommand = New MySqlCommand("UPDATE mytable SET id=@id, name=@name " & _ + "WHERE id=@oldId", conn) + da.DeleteCommand = New MySqlCommand("DELETE FROM mytable WHERE id=@id", conn) + + da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name") + + da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name") + da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original + + da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original + End Sub + + + public static void CreateSqlDataAdapter() + { + MySqlConnection conn = new MySqlConnection("Data Source=localhost;database=test"); + MySqlCommand cmd = new MySqlCommand("SELECT id, name FROM mytable", conn); + MySqlDataAdapter da = new MySqlDataAdapter(cmd); + da.MissingSchemaAction = MissingSchemaAction.AddWithKey; + + da.InsertCommand = new MySqlCommand("INSERT INTO mytable (id, name) " + + "VALUES (@id, @name)", conn); + da.UpdateCommand = new MySqlCommand("UPDATE mytable SET id=@id, name=@name " + + "WHERE id=@oldId", conn); + da.DeleteCommand = new MySqlCommand("DELETE FROM mytable WHERE id=@id", conn); + + da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name"); + + da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name"); + da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original; + + da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original; + } + + + + + + Initializes a new instance of the class with + a and a object. + + A String that is a SQL SELECT statement or stored procedure to be used by + the property of the . + + A that represents the connection. + + + This implementation of the opens and closes a + if it is not already open. This can be useful in a an application that must call the + method for two or more MySqlDataAdapter objects. + If the MySqlConnection is already open, you must explicitly call + or to close it. + + + When an instance of is created, + the following read/write properties are set to the following initial + values. + + + + Properties + Initial Value + + + + + + + MissingMappingAction.Passthrough + + + + + + + + MissingSchemaAction.Add + + + + + You can change the value of any of these properties through a separate call + to the property. + + + The following example creates a and sets some of + its properties. + + Public Sub CreateSqlDataAdapter() + Dim conn As MySqlConnection = New MySqlConnection("Data Source=localhost;" & _ + "database=test") + Dim da As MySqlDataAdapter = New MySqlDataAdapter("SELECT id, name FROM mytable", conn) + da.MissingSchemaAction = MissingSchemaAction.AddWithKey + + da.InsertCommand = New MySqlCommand("INSERT INTO mytable (id, name) " & _ + "VALUES (@id, @name)", conn) + da.UpdateCommand = New MySqlCommand("UPDATE mytable SET id=@id, name=@name " & _ + "WHERE id=@oldId", conn) + da.DeleteCommand = New MySqlCommand("DELETE FROM mytable WHERE id=@id", conn) + + da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name") + + da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name") + da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original + + da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original + End Sub + + + public static void CreateSqlDataAdapter() + { + MySqlConnection conn = new MySqlConnection("Data Source=localhost;database=test"); + MySqlDataAdapter da = new MySqlDataAdapter("SELECT id, name FROM mytable", conn); + da.MissingSchemaAction = MissingSchemaAction.AddWithKey; + + da.InsertCommand = new MySqlCommand("INSERT INTO mytable (id, name) " + + "VALUES (@id, @name)", conn); + da.UpdateCommand = new MySqlCommand("UPDATE mytable SET id=@id, name=@name " + + "WHERE id=@oldId", conn); + da.DeleteCommand = new MySqlCommand("DELETE FROM mytable WHERE id=@id", conn); + + da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name"); + + da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name"); + da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original; + + da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original; + } + + + + + + Initializes a new instance of the class with + a and a connection string. + + A that is a SQL SELECT statement or stored procedure to + be used by the property of the . + The connection string + + When an instance of is created, + the following read/write properties are set to the following initial + values. + + + + Properties + Initial Value + + + + + + + MissingMappingAction.Passthrough + + + + + + + + MissingSchemaAction.Add + + + + + You can change the value of any of these properties through a separate call + to the property. + + + The following example creates a and sets some of + its properties. + + Public Sub CreateSqlDataAdapter() + Dim da As MySqlDataAdapter = New MySqlDataAdapter("SELECT id, name FROM mytable", "Data Source=localhost;database=test") + Dim conn As MySqlConnection = da.SelectCommand.Connection + da.MissingSchemaAction = MissingSchemaAction.AddWithKey + + da.InsertCommand = New MySqlCommand("INSERT INTO mytable (id, name) " & _ + "VALUES (@id, @name)", conn) + da.UpdateCommand = New MySqlCommand("UPDATE mytable SET id=@id, name=@name " & _ + "WHERE id=@oldId", conn) + da.DeleteCommand = New MySqlCommand("DELETE FROM mytable WHERE id=@id", conn) + + da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name") + + da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name") + da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original + + da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original + End Sub + + + public static void CreateSqlDataAdapter() + { + MySqlDataAdapter da = new MySqlDataAdapter("SELECT id, name FROM mytable", "Data Source=localhost;database=test"); + MySqlConnection conn = da.SelectCommand.Connection; + da.MissingSchemaAction = MissingSchemaAction.AddWithKey; + + da.InsertCommand = new MySqlCommand("INSERT INTO mytable (id, name) " + + "VALUES (@id, @name)", conn); + da.UpdateCommand = new MySqlCommand("UPDATE mytable SET id=@id, name=@name " + + "WHERE id=@oldId", conn); + da.DeleteCommand = new MySqlCommand("DELETE FROM mytable WHERE id=@id", conn); + + da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name"); + + da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name"); + da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original; + + da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original; + } + + + + + + Gets or sets a SQL statement or stored procedure used to delete records from the data set. + + A used during to delete records in the + database that correspond to deleted rows in the . + + + During , if this property is not set and primary key information + is present in the , the DeleteCommand can be generated + automatically if you set the property and use the + . Then, any additional commands that you do not set are + generated by the MySqlCommandBuilder. This generation logic requires key column + information to be present in the DataSet. + + + When DeleteCommand is assigned to a previously created , + the MySqlCommand is not cloned. The DeleteCommand maintains a reference + to the previously created MySqlCommand object. + + + The following example creates a and sets the + and DeleteCommand properties. It assumes you have already + created a object. + + Public Shared Function CreateCustomerAdapter(conn As MySqlConnection) As MySqlDataAdapter + + Dim da As MySqlDataAdapter = New MySqlDataAdapter() + Dim cmd As MySqlCommand + Dim parm As MySqlParameter + + ' Create the SelectCommand. + cmd = New MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn) + + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15) + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15) + + da.SelectCommand = cmd + + ' Create the DeleteCommand. + cmd = New MySqlCommand("DELETE FROM mytable WHERE id=@id", conn) + + parm = cmd.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + parm.SourceVersion = DataRowVersion.Original + + da.DeleteCommand = cmd + + Return da + End Function + + + public static MySqlDataAdapter CreateCustomerAdapter(MySqlConnection conn) + { + MySqlDataAdapter da = new MySqlDataAdapter(); + MySqlCommand cmd; + MySqlParameter parm; + + // Create the SelectCommand. + cmd = new MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn); + + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15); + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15); + + da.SelectCommand = cmd; + + // Create the DeleteCommand. + cmd = new MySqlCommand("DELETE FROM mytable WHERE id=@id", conn); + + parm = cmd.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + parm.SourceVersion = DataRowVersion.Original; + + da.DeleteCommand = cmd; + + return da; + } + + + + + + Gets or sets a SQL statement or stored procedure used to insert records into the data set. + + A used during to insert records into the + database that correspond to new rows in the . + + + During , if this property is not set and primary key information + is present in the , the InsertCommand can be generated + automatically if you set the property and use the + . Then, any additional commands that you do not set are + generated by the MySqlCommandBuilder. This generation logic requires key column + information to be present in the DataSet. + + + When InsertCommand is assigned to a previously created , + the MySqlCommand is not cloned. The InsertCommand maintains a reference + to the previously created MySqlCommand object. + + + If execution of this command returns rows, these rows may be added to the DataSet + depending on how you set the property of the MySqlCommand object. + + + The following example creates a and sets the + and InsertCommand properties. It assumes you have already + created a object. + + Public Shared Function CreateCustomerAdapter(conn As MySqlConnection) As MySqlDataAdapter + + Dim da As MySqlDataAdapter = New MySqlDataAdapter() + Dim cmd As MySqlCommand + Dim parm As MySqlParameter + + ' Create the SelectCommand. + cmd = New MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn) + + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15) + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15) + + da.SelectCommand = cmd + + ' Create the InsertCommand. + cmd = New MySqlCommand("INSERT INTO mytable (id,name) VALUES (@id, @name)", conn) + + cmd.Parameters.Add( "@id", MySqlDbType.VarChar, 15, "id" ) + cmd.Parameters.Add( "@name", MySqlDbType.VarChar, 15, "name" ) + da.InsertCommand = cmd + + Return da + End Function + + + public static MySqlDataAdapter CreateCustomerAdapter(MySqlConnection conn) + { + MySqlDataAdapter da = new MySqlDataAdapter(); + MySqlCommand cmd; + MySqlParameter parm; + + // Create the SelectCommand. + cmd = new MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn); + + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15); + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15); + + da.SelectCommand = cmd; + + // Create the InsertCommand. + cmd = new MySqlCommand("INSERT INTO mytable (id,name) VALUES (@id,@name)", conn); + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15, "id" ); + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15, "name" ); + + da.InsertCommand = cmd; + + return da; + } + + + + + + Gets or sets a SQL statement or stored procedure used to select records in the data source. + + A used during to select records from the + database for placement in the . + + + When SelectCommand is assigned to a previously created , + the MySqlCommand is not cloned. The SelectCommand maintains a reference to the + previously created MySqlCommand object. + + + If the SelectCommand does not return any rows, no tables are added to the + , and no exception is raised. + + + The following example creates a and sets the + and InsertCommand properties. It assumes you have already + created a object. + + Public Shared Function CreateCustomerAdapter(conn As MySqlConnection) As MySqlDataAdapter + + Dim da As MySqlDataAdapter = New MySqlDataAdapter() + Dim cmd As MySqlCommand + Dim parm As MySqlParameter + + ' Create the SelectCommand. + cmd = New MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn) + + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15) + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15) + + da.SelectCommand = cmd + + ' Create the InsertCommand. + cmd = New MySqlCommand("INSERT INTO mytable (id,name) VALUES (@id, @name)", conn) + + cmd.Parameters.Add( "@id", MySqlDbType.VarChar, 15, "id" ) + cmd.Parameters.Add( "@name", MySqlDbType.VarChar, 15, "name" ) + da.InsertCommand = cmd + + Return da + End Function + + + public static MySqlDataAdapter CreateCustomerAdapter(MySqlConnection conn) + { + MySqlDataAdapter da = new MySqlDataAdapter(); + MySqlCommand cmd; + MySqlParameter parm; + + // Create the SelectCommand. + cmd = new MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn); + + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15); + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15); + + da.SelectCommand = cmd; + + // Create the InsertCommand. + cmd = new MySqlCommand("INSERT INTO mytable (id,name) VALUES (@id,@name)", conn); + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15, "id" ); + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15, "name" ); + + da.InsertCommand = cmd; + + return da; + } + + + + + + Gets or sets a SQL statement or stored procedure used to updated records in the data source. + + A used during to update records in the + database with data from the . + + + During , if this property is not set and primary key information + is present in the , the UpdateCommand can be generated + automatically if you set the property and use the + . Then, any additional commands that you do not set are + generated by the MySqlCommandBuilder. This generation logic requires key column + information to be present in the DataSet. + + + When UpdateCommand is assigned to a previously created , + the MySqlCommand is not cloned. The UpdateCommand maintains a reference + to the previously created MySqlCommand object. + + + If execution of this command returns rows, these rows may be merged with the DataSet + depending on how you set the property of the MySqlCommand object. + + + The following example creates a and sets the + and UpdateCommand properties. It assumes you have already + created a object. + + Public Shared Function CreateCustomerAdapter(conn As MySqlConnection) As MySqlDataAdapter + + Dim da As MySqlDataAdapter = New MySqlDataAdapter() + Dim cmd As MySqlCommand + Dim parm As MySqlParameter + + ' Create the SelectCommand. + cmd = New MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn) + + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15) + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15) + + da.SelectCommand = cmd + + ' Create the UpdateCommand. + cmd = New MySqlCommand("UPDATE mytable SET id=@id, name=@name WHERE id=@oldId", conn) + + cmd.Parameters.Add( "@id", MySqlDbType.VarChar, 15, "id" ) + cmd.Parameters.Add( "@name", MySqlDbType.VarChar, 15, "name" ) + + parm = cmd.Parameters.Add("@oldId", MySqlDbType.VarChar, 15, "id") + parm.SourceVersion = DataRowVersion.Original + + da.UpdateCommand = cmd + + Return da + End Function + + + public static MySqlDataAdapter CreateCustomerAdapter(MySqlConnection conn) + { + MySqlDataAdapter da = new MySqlDataAdapter(); + MySqlCommand cmd; + MySqlParameter parm; + + // Create the SelectCommand. + cmd = new MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn); + + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15); + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15); + + da.SelectCommand = cmd; + + // Create the UpdateCommand. + cmd = new MySqlCommand("UPDATE mytable SET id=@id, name=@name WHERE id=@oldId", conn); + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15, "id" ); + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15, "name" ); + + parm = cmd.Parameters.Add( "@oldId", MySqlDbType.VarChar, 15, "id" ); + parm.SourceVersion = DataRowVersion.Original; + + da.UpdateCommand = cmd; + + return da; + } + + + + + + Open connection if it was closed. + Necessary to workaround "connection must be open and valid" error + with batched updates. + + Row state + list of opened connections + If connection is opened by this function, the list is updated + + true if connection was opened + + + + Overridden. See . + + + + + + + + + + Overridden. See . + + + + + + + + + + Overridden. Raises the RowUpdating event. + + A MySqlRowUpdatingEventArgs that contains the event data. + + + + Overridden. Raises the RowUpdated event. + + A MySqlRowUpdatedEventArgs that contains the event data. + + + + Async version of Fill + + Dataset to use + int + + + + Async version of Fill + + Datatable to use + int + + + + Async version of Fill + + DataSet to use + Source table + int + + + + Async version of Fill + + Datatable to use + DataReader to use + int + + + + Async version of Fill + + DataTable to use + DbCommand to use + Command Behavior + int + + + + Async version of Fill + + Start record + Max records + DataTable[] to use + int + + + + Async version of Fill + + DataSet to use + Start record + Max records + Source table + int + + + + Async version of Fill + + DataSet to use + Source table + DataReader to use + Start record + Max records + + + + + Async version of Fill + + DataTable[] to use + Start record + Max records + DbCommand to use + Command Behavior + + + + + Async version of Fill + + DataSet to use + Start record + Max records + Source table + DbCommand to use + Command Behavior + + + + + Async version of FillSchema + + DataSet to use + Schema Type + DataTable[] + + + + Async version of FillSchema + + DataSet to use + Schema Type + Source Table + DataTable[] + + + + Async version of FillSchema + + DataSet to use + Schema Type + Source Table + DataReader to use + DataTable[] + + + + Async version of FillSchema + + DataSet to use + Schema Type + DBCommand to use + Source Table + Command Behavior + DataTable[] + + + + Async version of FillSchema + + DataTable to use + Schema Type + DataTable + + + + Async version of FillSchema + + DataTable to use + Schema Type + DataReader to use + DataTable + + + + Async version of FillSchema + + DataTable to use + Schema Type + DBCommand to use + Command Behavior + DataTable + + + + Async version of Update + + DataRow[] to use + int + + + + Async version of Update + + DataSet to use + int + + + + Async version of Update + + DataTable to use + int + + + + Async version of Update + + DataRow[] to use + Data Table Mapping + int + + + + Async version of Update + + DataSet to use + Source Table + + + + + Represents the method that will handle the event of a . + + + + + Represents the method that will handle the event of a . + + + + + Provides data for the RowUpdating event. This class cannot be inherited. + + + + + Initializes a new instance of the MySqlRowUpdatingEventArgs class. + + The to + . + The to execute during . + One of the values that specifies the type of query executed. + The sent through an . + + + + Gets or sets the MySqlCommand to execute when performing the Update. + + + + + Provides data for the RowUpdated event. This class cannot be inherited. + + + + + Initializes a new instance of the MySqlRowUpdatedEventArgs class. + + The sent through an . + The executed when is called. + One of the values that specifies the type of query executed. + The sent through an . + + + + Gets or sets the MySqlCommand executed when Update is called. + + + + + Enables the provider to help ensure that a user has a security level adequate for accessing data. + + + + + Adds a new connection string with set of restricted keywords to the MySqlClientPermission object + + Settings to be used for the connection + Keywords to define the restrictions + KeyRestrictionBehavior to be used + + + + Returns MySqlClientPermission as an IPermission + + + + + + Associates a security action with a custom security attribute. + + + + + Represents a section within a configuration file. + + + + + Gets the MySQL configuations associated to the current configuration. + + + + + Gets a collection of the exception interceptors available in the current configuration. + + + + + Gets a collection of the command interceptors available in the current configuration. + + + + + Gets a collection of the authentication plugins available in the current configuration. + + + + + Gets or sets the replication configurations. + + + + + Defines the configurations allowed for an authentication plugin. + + + + + Gets or sets the name of the authentication plugin. + + + + + Gets or sets the type of the authentication plugin. + + + + + Defines the configurations allowed for an interceptor. + + + + + Gets or sets the name of the interceptor. + + + + + Gets or sets the type of the interceptor. + + + + + Represents a generic configuration element. + + + + + + Gets an enumerator that iterates through the returned list. + + An enumerator that iterates through the returned list. + + + + Helper class that makes it easier to work with the provider. + + + + + Async version of ExecuteDataRow + + Settings to be used for the connection + Command to execute + Parameters to use for the command + DataRow containing the first row of the resultset + + + + Executes a single SQL command and returns the first row of the resultset. A new MySqlConnection object + is created, opened, and closed during this method. + + Settings to be used for the connection + Command to execute + Parameters to use for the command + DataRow containing the first row of the resultset + + + + Executes a single SQL command and returns the resultset in a . + A new MySqlConnection object is created, opened, and closed during this method. + + Settings to be used for the connection + Command to execute + containing the resultset + + + + Executes a single SQL command and returns the resultset in a . + A new MySqlConnection object is created, opened, and closed during this method. + + Settings to be used for the connection + Command to execute + Parameters to use for the command + containing the resultset + + + + Executes a single SQL command and returns the resultset in a . + The state of the object remains unchanged after execution + of this method. + + object to use + Command to execute + containing the resultset + + + + Executes a single SQL command and returns the resultset in a . + The state of the object remains unchanged after execution + of this method. + + object to use + Command to execute + Parameters to use for the command + containing the resultset + + + + Updates the given table with data from the given + + Settings to use for the update + Command text to use for the update + containing the new data to use in the update + Tablename in the dataset to update + + + + Async version of ExecuteDataset + + Settings to be used for the connection + Command to execute + containing the resultset + + + + Async version of ExecuteDataset + + Settings to be used for the connection + Command to execute + Parameters to use for the command + containing the resultset + + + + Async version of ExecuteDataset + + object to use + Command to execute + containing the resultset + + + + Async version of ExecuteDataset + + object to use + Command to execute + Parameters to use for the command + containing the resultset + + + + Async version of UpdateDataset + + Settings to use for the update + Command text to use for the update + containing the new data to use in the update + Tablename in the dataset to update + + + + Executes a single command against a MySQL database. The is assumed to be + open when the method is called and remains open after the method completes. + + object to use + SQL command to be executed + Array of objects to use with the command. + + + + + Executes a single command against a MySQL database. A new is created + using the given. + + to use + SQL command to be executed + Array of objects to use with the command. + + + + + Executes a single command against a MySQL database, possibly inside an existing transaction. + + object to use for the command + object to use for the command + Command text to use + Array of objects to use with the command + True if the connection should be preserved, false if not + object ready to read the results of the command + + + + Executes a single command against a MySQL database. + + Settings to use for this command + Command text to use + object ready to read the results of the command + + + + Executes a single command against a MySQL database. + + object to use for the command + Command text to use + object ready to read the results of the command + + + + Executes a single command against a MySQL database. + + Settings to use for this command + Command text to use + Array of objects to use with the command + object ready to read the results of the command + + + + Executes a single command against a MySQL database. + + Connection to use for the command + Command text to use + Array of objects to use with the command + object ready to read the results of the command + + + + Execute a single command against a MySQL database. + + Settings to use for the update + Command text to use for the update + The first column of the first row in the result set, or a null reference if the result set is empty. + + + + Execute a single command against a MySQL database. + + Settings to use for the command + Command text to use for the command + Parameters to use for the command + The first column of the first row in the result set, or a null reference if the result set is empty. + + + + Execute a single command against a MySQL database. + + object to use + Command text to use for the command + The first column of the first row in the result set, or a null reference if the result set is empty. + + + + Execute a single command against a MySQL database. + + object to use + Command text to use for the command + Parameters to use for the command + The first column of the first row in the result set, or a null reference if the result set is empty. + + + + Escapes the string. + + The string to escape + The string with all quotes escaped. + + + + Async version of ExecuteNonQuery + + object to use + SQL command to be executed + Array of objects to use with the command. + Rows affected + + + + Async version of ExecuteNonQuery + + to use + SQL command to be executed + Array of objects to use with the command. + Rows affected + + + + Async version of ExecuteReader + + object to use for the command + object to use for the command + Command text to use + Array of objects to use with the command + True if the connection should be preserved, false if not + object ready to read the results of the command + + + + Async version of ExecuteReader + + Settings to use for this command + Command text to use + object ready to read the results of the command + + + + Async version of ExecuteReader + + object to use for the command + Command text to use + object ready to read the results of the command + + + + Async version of ExecuteReader + + Settings to use for this command + Command text to use + Array of objects to use with the command + object ready to read the results of the command + + + + Async version of ExecuteReader + + Connection to use for the command + Command text to use + Array of objects to use with the command + object ready to read the results of the command + + + + Async version of ExecuteScalar + + Settings to use for the update + Command text to use for the update + The first column of the first row in the result set, or a null reference if the result set is empty. + + + + Async version of ExecuteScalar + + Settings to use for the command + Command text to use for the command + Parameters to use for the command + The first column of the first row in the result set, or a null reference if the result set is empty. + + + + Async version of ExecuteScalar + + object to use + Command text to use for the command + The first column of the first row in the result set, or a null reference if the result set is empty. + + + + Async version of ExecuteScalar + + object to use + Command text to use for the command + Parameters to use for the command + The first column of the first row in the result set, or a null reference if the result set is empty. + + + + Represents a parameter to a , This class cannot be inherited. + + + + + Gets or sets the to use when loading . + + + + + Initializes a new instance of the class with the parameter name, the , the size, and the source column name. + + The name of the parameter to map. + One of the values. + The length of the parameter. + The name of the source column. + + + + Initializes a new instance of the class with the parameter name and a value of the new MySqlParameter. + + The name of the parameter to map. + An that is the value of the . + + + + Initializes a new instance of the class with the parameter name and the data type. + + The name of the parameter to map. + One of the values. + + + + Initializes a new instance of the class with the parameter name, the , and the size. + + The name of the parameter to map. + One of the values. + The length of the parameter. + + + + Initializes a new instance of the class with the parameter name, the type of the parameter, the size of the parameter, a , the precision of the parameter, the scale of the parameter, the source column, a to use, and the value of the parameter. + + The name of the parameter to map. + One of the values. + The length of the parameter. + One of the values. + true if the value of the field can be null, otherwise false. + The total number of digits to the left and right of the decimal point to which is resolved. + The total number of decimal places to which is resolved. + The name of the source column. + One of the values. + An that is the value of the . + + + + + Gets or sets a value indicating whether the parameter is input-only, output-only, bidirectional, or a stored procedure return value parameter. + As of MySql version 4.1 and earlier, input-only is the only valid choice. + + + + + Gets or sets a value indicating whether the parameter accepts null values. + + + + + Gets or sets the of the parameter. + + + + + Gets or sets the maximum number of digits used to represent the property. + + + + + Gets or sets the number of decimal places to which is resolved. + + + + + Gets or sets the maximum size, in bytes, of the data within the column. + + + + + Gets or sets the value of the parameter. + + + + + Returns the possible values for this parameter if this parameter is of type + SET or ENUM. Returns null otherwise. + + + + + Gets or sets the name of the source column that is mapped to the and used for loading or returning the . + + + + + Sets or gets a value which indicates whether the source column is nullable. + This allows to correctly generate Update statements + for nullable columns. + + + + + Gets or sets the of the parameter. + + + + + Overridden. Gets a string containing the . + + + + + + Resets the DbType property to its original settings. + + + + + Represents a collection of parameters relevant to a as well as their respective mappings to columns in a . This class cannot be inherited. + + + The number of the parameters in the collection must be equal to the number of + parameter placeholders within the command text, or an exception will be generated. + + The following example creates multiple instances of + through the MySqlParameterCollection collection within the . + These parameters are used to select data within the data source and place the data in + the . This code assumes that a DataSet and a MySqlDataAdapter + have already been created with the appropriate schema, commands, and connection. + + Public Sub AddParameters() + ' ... + ' create myDataSet and myDataAdapter + ' ... + myDataAdapter.SelectCommand.Parameters.Add("@CategoryName", MySqlDbType.VarChar, 80).Value = "toasters" + myDataAdapter.SelectCommand.Parameters.Add("@SerialNum", MySqlDbType.Long).Value = 239 + + myDataAdapter.Fill(myDataSet) + End Sub 'AddSqlParameters + + + public void AddSqlParameters() + { + // ... + // create myDataSet and myDataAdapter + // ... + + myDataAdapter.SelectCommand.Parameters.Add("@CategoryName", MySqlDbType.VarChar, 80).Value = "toasters"; + myDataAdapter.SelectCommand.Parameters.Add("@SerialNum", MySqlDbType.Long).Value = 239; + myDataAdapter.Fill(myDataSet); + + } + + + + + + Gets a value that indicates whether the + has a fixed size. + + + + + Gets a value that indicates whether the + is read-only. + + + + + Gets a value that indicates whether the + is synchronized. + + + + + Gets the number of MySqlParameter objects in the collection. + + + + + Gets the at the specified index. + + Gets the with a specified attribute. + [C#] In C#, this property is the indexer for the class. + + + + + Gets the with the specified name. + + + + + Adds a to the with the parameter name, the data type, the column length, and the source column name. + + The name of the parameter. + One of the values. + The length of the column. + The name of the source column. + The newly added object. + + + + Adds the specified object to the . + + The to add to the collection. + The newly added object. + + + + Adds a to the given the specified parameter name and value. + + The name of the parameter. + The of the to add to the collection. + The newly added object. + + + + Adds a parameter and its value. + + The name of the parameter. + The value of the parameter. + A MySqlParameter object representing the provided values. + + + + Adds a to the given the parameter name and the data type. + + The name of the parameter. + One of the values. + The newly added object. + + + + Adds a to the with the parameter name, the data type, and the column length. + + The name of the parameter. + One of the values. + The length of the column. + The newly added object. + + + + Removes all items from the collection. + + + + + Gets the location of the in the collection with a specific parameter name. + + The name of the object to retrieve. + The zero-based location of the in the collection. + + + + Gets the location of a in the collection. + + The object to locate. + The zero-based location of the in the collection. + Gets the location of a in the collection. + + + + This method will update all the items in the index hashes when + we insert a parameter somewhere in the middle + + + + + + + Adds an array of values to the end of the . + + + + + + Retrieve the parameter with the given name. + + + + + + + Adds the specified object to the . + + The to add to the collection. + The index of the new object. + + + + Gets a value indicating whether a with the specified parameter name exists in the collection. + + The name of the object to find. + true if the collection contains the parameter; otherwise, false. + + + + Gets a value indicating whether a MySqlParameter exists in the collection. + + The value of the object to find. + true if the collection contains the object; otherwise, false. + Gets a value indicating whether a exists in the collection. + + + + Copies MySqlParameter objects from the MySqlParameterCollection to the specified array. + + + + + + + Returns an enumerator that iterates through the . + + + + + + Inserts a MySqlParameter into the collection at the specified index. + + + + + + + Removes the specified MySqlParameter from the collection. + + + + + + Removes the specified from the collection using the parameter name. + + The name of the object to retrieve. + + + + Removes the specified from the collection using a specific index. + + The zero-based index of the parameter. + Removes the specified from the collection. + + + + Gets an object that can be used to synchronize access to the + . + + + + + Represents a single(not nested) TransactionScope + + + + + Defines security permissions assigned to a MySQL object. + + + + + Creates a set of permissions. + + A flag indicating if the reflection permission should be included. + A PermissionSet object representing a collection of permissions. + + + + BaseCommandInterceptor is the base class that should be used for all userland + command interceptors + + + + + Gets the active connection. + + + + + Executes an SQL statements that returns a scalar value such as a calculation. + + The SQL statement to execute. + A scalar value that represents the result returned by the execution of the SQL statement. + false. + This method is intended to be overriden. + + + + Executes an SQL statement that returns the number of affected rows. + + The SQL statement to execute. + The number of affected rows. + false. + + + + Executes an SQL statement that will return a resultset. + + The SQL statement to execute. + A value that describes the results of the query and its effect on the database. + A MySqlDataReader object containing the result of the statement execution. + + + + + Sets the active connection. + + The active connection. + + + + CommandInterceptor is the "manager" class that keeps the list of registered interceptors + for the given connection. + + + + + BaseExceptionInterceptor is the base class that should be used for all userland + exception interceptors + + + + + Returns the received exception. + + The exception to be returned. + The exception originally received. + + + + Gets the active connection. + + + + + Initilizes this object by setting the active connection. + + The connection to become active. + + + + StandardExceptionInterceptor is the standard interceptor that simply throws the exception. + It is the default action. + + + + + ExceptionInterceptor is the "manager" class that keeps the list of registered interceptors + for the given connection. + + + + + Interceptor is the base class for the "manager" classes such as ExceptionInterceptor, + CommandInterceptor, etc + + + + + Return schema information about procedures and functions + Restrictions supported are: + schema, name, type + + + + + + + Return schema information about parameters for procedures and functions + Restrictions supported are: + schema, name, type, parameter name + + + + + Initializes a new row for the procedure parameters table. + + + + + Parses out the elements of a procedure parameter data type. + + + + + Implementation of memcached binary client protocol. + + According to http://code.google.com/p/memcached/wiki/BinaryProtocolRevamped + + + + Sends an store command (add, replace, set). + + + + + + + + + + + Sends a get command. + + + + + + + + + Sends a delete command. + + + + + + + + Sends a command without args (like flush). + + + + + + + + Sends a command with amount (INCR/DECR) + + + + + + + + + Encodes in the binary protocol the a command of the kind set, add or replace. + + + + + + + If true applies to set, add or replace commands; if false applies to append and prepend commands. + + + + + An interface of the client memcached protocol. This class is abstract for + implementation of the Memcached client interface see for the + text protocol version and for the binary protocol version. + + + + + The port used by the connection. + + + + + The server DNS or IP address used by the connection. + + + + + The network stream used by the connecition. + + + + + Factory method for creating instances of that implement a connection with the requested features. + The connection object returned must be explicitely opened see method . + + The Memcached server DNS or IP address. + The port for the Memcached server + A set of flags indicating characterestics requested. + An instance of a client connection ready to be used. + + + + Opens the client connection. + + + + + Closes the client connection. + + + + + Adds a new key/value pair with the given TimeSpan expiration. + + The key for identifying the entry. + The data to associate with the key. + The interval of timespan, use TimeSpan.Zero for no expiration. + + + + Appens the data to the existing data for the associated key. + + The key for identifying the entry. + The data to append with the data associated with the key. + + + + Executes the Check-and-set Memcached operation. + + The key for identifying the entry. + The data to use in the CAS. + The interval of timespan, use TimeSpan.Zero for no expiration. + The CAS unique value to use. + + + + + Decrements the value associated with a key by the given amount. + + The key associated with the value to decrement. + The amount to decrement the value. + + + + Removes they pair key/value given the specified key. + + + + + + Removes all entries from the storage, effectively invalidating the whole cache. + + The interval after which the cache will be cleaned. Can be TimeSpan.Zero for immediately. + + + + Get the key/value pair associated with a given key. + + The key for which to returm the key/value. + The key/value associated with the key or a MemcachedException if it does not exists. + + + + Increments the value associated with a key by the given amount. + + The key associated with the value to increment. + The amount to increment the value. + + + + Prepends the data to the existing data for the associated key. + + The key for identifying the entry. + The data to append with the data associated with the key. + + + + Replaces the value associated with the given key with another value. + + The key for identifying the entry. + The data to replace the value associated with the key. + The interval of timespan, use TimeSpan.Zero for no expiration. + + + + Set the value of a given key. + + The key for identifying the entry. + The data to associate with the given key. + The interval of timespan, use TimeSpan.Zero for no expiration. + + + + A set of flags for requesting new instances of connections + + + + + Requests a connection implememting the text protocol. + + + + + Requests a connection implementing the binary protocol. + + + + + Requests a TCP connection. Currently UDP is not supported. + + + + + The base exception class for all Memcached exceptions. + + + + + Implementation of the Memcached text client protocol. + + + + + Sends a command to the memcached server. + + + + + + + This version is for commands that take a key, data, expiration and casUnique. + + + + Sends a command to the memcached server. + + + + + + This version is for commands that take a key, data and expiration + + + + Send a command to memcached server. + + + + + This version is for commands that don't need flags neither expiration fields. + + + + Sends a command to the server. + + + + This version is for commands that only require a key + + + + Sends a command to the server. + + + + + This version is for commands that only require a key and an integer value. + + + + Sends a command to the server. + + + + This version is for commands that only require a key and expiration. + + + + Abstract class that provides common functionality for connection options that apply for all protocols. + + + + + Gets or sets the name of the server. + + The server. + + + + Gets or sets the name of the database for the initial connection. + + + + + Gets or sets the protocol that should be used for communicating + with MySQL. + + + + + Gets or sets the port number that is used when the socket + protocol is being used. + + + + + Gets or sets the connection timeout. + + + + + Gets or sets the user ID that should be used to connect with. + + + + + Gets or sets the password that should be used to make a connection. + + + + + Gets or sets the path to a certificate in PKCS#12 format (.pfx). + + + + + Gets or sets the password associated to the certificate file. + + + + + Gets or sets the certificate store location for client certificates. + + + + + Gets or sets a certificate thumbprint that can be used together with a certificate to ensure correct identification. + + + + + Indicates whether to use SSL connections and how to handle server certificate errors. + + + + + Gets or sets the idle connection time measured in seconds. + + + + + Gets or sets the character set that should be used for sending queries to the server. + + + + + Gets or sets the authentication mechanism to use with X Protocol connections. + + + + + Gets or sets the path to a local file that contains a list of trusted Certificate Authorities. + + + + + Gets or sets the path to a local file that contains certificate revocation lists. + + + + + Gets the connection string with or without the password. + + Flag to indicate if the password should be included in the connection string. + The connection string associated to this object. + + + + Analyzes the connection string for potential duplicated or invalid connection options. + + Connection string. + + + + Represents a set of methods for creating instances of the MySQL client implementation of the data source classes. + + + + + Gets an instance of the . + This can be used to retrieve strongly typed data objects. + + + + + Returns a strongly typed instance. + + A new strongly typed instance of DbCommand. + + + + Returns a strongly typed instance. + + A new strongly typed instance of DbConnection. + + + + Returns a strongly typed instance. + + A new strongly typed instance of DbParameter. + + + + Returns a strongly typed instance. + + A new strongly typed instance of DbConnectionStringBuilder. + + + + Provide a simple caching layer + + + + + Aids in the creation of connection strings by exposing the connection options as properties. + Contains connection options specific to the Classic protocol. + + + + + Gets or sets the name of the named pipe that should be used + for communicating with MySQL. + + + + + Gets or sets a boolean value that indicates whether this connection + should use compression. + + + + + Gets or sets a boolean value that indicates whether this connection will allow + commands to send multiple SQL statements in one execution. + + + + + Gets or sets a boolean value that indicates whether logging is enabled. + + + + + Gets or sets the base name of the shared memory objects used to + communicate with MySQL when the shared memory protocol is being used. + + + + + Gets or sets the default command timeout. + + + + + Gets or sets a boolean value that indicates if the password should be persisted + in the connection string. + + + + + Gets or sets a boolean value that indicates if Windows authentication should be used. + + + + + Gets or sets a boolean value that indicates whether the RSA public key should be retrieved from the server. + + + + + Gets or sets a boolean value that indicates if zero date time values are supported. + + + + + Gets or sets a boolean value indicating if zero datetime values should be + converted to DateTime.MinValue. + + + + + Gets or sets a boolean value indicating if the Usage Advisor should be enabled. + + + + + Gets or sets the size of the stored procedure cache. + + + + + Gets or sets a boolean value indicating if the permon hooks should be enabled. + + + + + Gets or sets a boolean value indicating if calls to Prepare() should be ignored. + + + + + Gets or sets a boolean value that indicates if an opened connection should particiapte in the current scope. + + + + + Gets or sets a boolean value that indicates if security asserts must be included. + + + + + Gets or sets a boolean value that indicates if column binary flags set by the server are ignored. + + + + + Gets or sets a boolean value that indicates if TINYINT(1) shound be treated as a BOOLEAN. + + + + + Gets or sets a boolean value that indicates if the provider expects user variables in the SQL. + + + + + Gets or sets a boolean value that indicates if the session should be interactive. + + + + + Gets or sets a boolean value that indicates if server functions should be treated as returning a string. + + + + + Gets or sets a boolean value that indicates if the server should report affected rows instead of found rows. + + + + + + + + + + Gets or sets a boolean value that indicates if items of data type BINARY(16) should be treated as guids. + + + + + Gets or sets a boolean value that indicates if caching of TableDirect commands is enabled. + + + + + Gets or sets the seconds for how long a TableDirect result should be cached. + + + + + Gets or sets a boolean value that indicates if stored routine parameters should be checked against the server. + + + + + Gets or sets a boolean value that indicates if this connection will use replication. + + + + + Gets or sets the list of interceptors that can triage thrown MySqlExceptions. + + + + + Gets or sets the list of interceptors that can intercept command operations. + + + + + Gets or sets the lifetime of a pooled connection. + + + + + Gets or sets a boolean value indicating if connection pooling is enabled. + + + + + Gets the minimum connection pool size. + + + + + Gets or sets the maximum connection pool setting. + + + + + Gets or sets a boolean value indicating if the connection should be reset when retrieved + from the pool. + + + + + Gets or sets a boolean value that indicates whether the server variable settings are updated by a SHOW VARIABLES command each time a pooled connection is returned. + + + + + Indicates whether the driver should treat binary blobs as UTF8 + + + + + Gets or sets the pattern that matches the columns that should be treated as UTF8 + + + + + Gets or sets the pattern that matches the columns that should not be treated as UTF8 + + + + + Gets or sets a boolean value that indicates if the command timeout of EFMySqlCommand should be enforced to the value provided in the DefaultCommandTimeout property. + + + + + Summary description for ClientParam. + + + + + DB Operations Code + + + + + Specifies MySQL specific data type of a field, property, for use in a . + + + + + + A fixed precision and scale numeric value between -1038 + -1 and 10 38 -1. + + + + + The signed range is -128 to 127. The unsigned + range is 0 to 255. + + + + + A 16-bit signed integer. The signed range is + -32768 to 32767. The unsigned range is 0 to 65535 + + + + + Specifies a 24 (3 byte) signed or unsigned value. + + + + + A 32-bit signed integer + + + + + A 64-bit signed integer. + + + + + A small (single-precision) floating-point + number. Allowable values are -3.402823466E+38 to -1.175494351E-38, + 0, and 1.175494351E-38 to 3.402823466E+38. + + + + + A normal-size (double-precision) + floating-point number. Allowable values are -1.7976931348623157E+308 + to -2.2250738585072014E-308, 0, and 2.2250738585072014E-308 to + 1.7976931348623157E+308. + + + + + A timestamp. The range is '1970-01-01 00:00:00' to sometime in the + year 2037 + + + + + Date The supported range is '1000-01-01' to '9999-12-31'. + + + + + Time The range is '-838:59:59' to '838:59:59'. + + + + + DateTime The supported range is '1000-01-01 00:00:00' to + '9999-12-31 23:59:59'. + + + + + Datetime The supported range is '1000-01-01 00:00:00' to + '9999-12-31 23:59:59'. + + + + + A year in 2- or 4-digit format (default is 4-digit). The + allowable values are 1901 to 2155, 0000 in the 4-digit year + format, and 1970-2069 if you use the 2-digit format (70-69). + + + + + Obsolete Use Datetime or Date type + + + + + A variable-length string containing 0 to 65535 characters + + + + + Bit-field data type + + + + + JSON + + + + + New Decimal + + + + + An enumeration. A string object that can have only one value, + chosen from the list of values 'value1', 'value2', ..., NULL + or the special "" error value. An ENUM can have a maximum of + 65535 distinct values + + + + + A set. A string object that can have zero or more values, each + of which must be chosen from the list of values 'value1', 'value2', + ... A SET can have a maximum of 64 members. + + + + + A binary column with a maximum length of 255 (2^8 - 1) + characters + + + + + A binary column with a maximum length of 16777215 (2^24 - 1) bytes. + + + + + A binary column with a maximum length of 4294967295 or + 4G (2^32 - 1) bytes. + + + + + A binary column with a maximum length of 65535 (2^16 - 1) bytes. + + + + + A variable-length string containing 0 to 255 bytes. + + + + + A fixed-length string. + + + + + Geometric (GIS) data type. + + + + + Unsigned 8-bit value. + + + + + Unsigned 16-bit value. + + + + + Unsigned 24-bit value. + + + + + Unsigned 32-bit value. + + + + + Unsigned 64-bit value. + + + + + Fixed length binary string. + + + + + Variable length binary string. + + + + + A text column with a maximum length of 255 (2^8 - 1) characters. + + + + + A text column with a maximum length of 16777215 (2^24 - 1) characters. + + + + + A text column with a maximum length of 4294967295 or + 4G (2^32 - 1) characters. + + + + + A text column with a maximum length of 65535 (2^16 - 1) characters. + + + + + A guid column + + + + + Allows the user to specify the type of connection that should + be used. + + + + + TCP/IP style connection. Works everywhere. + + + + + Named pipe connection. Works only on Windows systems. + + + + + Unix domain socket connection. Works only with Unix systems. + + + + + Shared memory connection. Currently works only with Windows systems. + + + + + SSL options for connection. + + + + + Do not use SSL. + + + + + Always use SSL. Deny connection if server does not support SSL. + Do not perform server certificate validation. + This is the default SSL mode when the same isn't specified as part of the connection string. + + + + + Always use SSL. Validate server SSL certificate, but different host name mismatch. + + + + + Always use SSL and perform full certificate validation. + + + + + Specifies the connection types supported + + + + + Use TCP/IP sockets. + + + + + Use client library. + + + + + Use MySQL embedded server. + + + + + Defines the location of the certificate store. + + + + + Do not use certificate store. + + + + + Use certificate store for the current user. + + + + + User certificate store for the machine. + + + + + Specifies the authentication mechanism that should be used. + + + + + If SSL is enabled or Unix sockets are being used, sets PLAIN as the authentication mechanism; + otherwise, it tries to use MYSQL41 and then SHA256_MEMORY. + + + + + Authenticate using PLAIN. + + + + + Authenticate using MYSQL41. + + + + + Authenticate using EXTERNAL. + + + + + Authenticate using SHA256_MEMORY. + + + + + Defines waiting options that may be used with row locking options. + + + + + Waits until the blocking transaction releases the row lock. + + + + + Never waits to acquire a row lock. The query executes immediately, + failing with an error if a requested row is locked. + + + + + Never waits to acquire a row lock. The query executes immediately, + removing locked rows from the result set. + + + + + Collection of error codes that can be returned by the server + + + + + + + + + + + Error level + + + + + Error code + + + + + Error message + + + + + Provides a reference to error codes returned by MySQL. + + + + + ER_HASHCHK + + + + ER_NISAMCHK + + + + ER_NO + + + + ER_YES + + + The file couldn't be created. + ER_CANT_CREATE_FILE + + + The table couldn't be created. + ER_CANT_CREATE_TABLE + + + The database couldn't be created. + ER_CANT_CREATE_DB + + + The database couldn't be created, it already exists. + ER_DB_CREATE_EXISTS + + + The database couldn't be dropped, it doesn't exist. + ER_DB_DROP_EXISTS + + + The database couldn't be dropped, the file can't be deleted. + ER_DB_DROP_DELETE + + + The database couldn't be dropped, the directory can't be deleted. + ER_DB_DROP_RMDIR + + + The file couldn't be deleted. + ER_CANT_DELETE_FILE + + + The record couldn't be read from the system table. + ER_CANT_FIND_SYSTEM_REC + + + The status couldn't be retrieved. + ER_CANT_GET_STAT + + + The working directory couldn't be retrieved. + ER_CANT_GET_WD + + + The file couldn't be locked. + ER_CANT_LOCK + + + The file couldn't be opened. + ER_CANT_OPEN_FILE + + + The file couldn't be found. + ER_FILE_NOT_FOUND + + + The directory couldn't be read. + ER_CANT_READ_DIR + + + The working directory couldn't be entered. + ER_CANT_SET_WD + + + The record changed since it was last read. + ER_CHECKREAD + + + The disk is full. + ER_DISK_FULL + + + + There is already a key with the given values. + + + + An error occurred when closing the file. + ER_ERROR_ON_CLOSE + + + An error occurred when reading from the file. + ER_ERROR_ON_READ + + + An error occurred when renaming then file. + ER_ERROR_ON_RENAME + + + An error occurred when writing to the file. + ER_ERROR_ON_WRITE + + + The file is in use. + ER_FILE_USED + + + Sorting has been aborted. + ER_FILSORT_ABORT + + + The view doesn't exist. + ER_FORM_NOT_FOUND + + + Got the specified error from the table storage engine. + ER_GET_ERRNO + + + The table storage engine doesn't support the specified option. + ER_ILLEGAL_HA + + + + The specified key was not found. + + + + The file contains incorrect information. + ER_NOT_FORM_FILE + + + The key file is incorrect for the table, it should be repaired. + ER_NOT_KEYFILE + + + The key file is old for the table, it should be repaired. + ER_OLD_KEYFILE + + + The table is read-only + ER_OPEN_AS_READONLY + + + The server is out of memory, it should be restarted. + ER_OUTOFMEMORY + + + The server is out of sort-memory, the sort buffer size should be increased. + ER_OUT_OF_SORTMEMORY + + + An unexpected EOF was found when reading from the file. + ER_UNEXPECTED_EOF + + + Too many connections are open. + ER_CON_COUNT_ERROR + + + The server is out of resources, check if MySql or some other process is using all available memory. + ER_OUT_OF_RESOURCES + + + + Given when the connection is unable to successfully connect to host. + + + + The handshake was invalid. + ER_HANDSHAKE_ERROR + + + Access was denied for the specified user using the specified database. + ER_DBACCESS_DENIED_ERROR + + + + Normally returned when an incorrect password is given + + + + No database has been selected. + ER_NO_DB_ERROR + + + The command is unknown. + ER_UNKNOWN_COM_ERROR + + + The specified column cannot be NULL. + ER_BAD_NULL_ERROR + + + The specified database is not known. + + + The specified table already exists. + ER_TABLE_EXISTS_ERROR + + + The specified table is unknown. + ER_BAD_TABLE_ERROR + + + The specified column is ambiguous. + ER_NON_UNIQ_ERROR + + + The server is currently being shutdown. + ER_SERVER_SHUTDOWN + + + The specified columns is unknown. + ER_BAD_FIELD_ERROR + + + The specified column isn't in GROUP BY. + ER_WRONG_FIELD_WITH_GROUP + + + The specified columns cannot be grouped on. + ER_WRONG_GROUP_FIELD + + + There are sum functions and columns in the same statement. + ER_WRONG_SUM_SELECT + + + The column count doesn't match the value count. + ER_WRONG_VALUE_COUNT + + + The identifier name is too long. + ER_TOO_LONG_IDENT + + + The column name is duplicated. + ER_DUP_FIELDNAME + + + + Duplicate Key Name + + + + + Duplicate Key Entry + + + + The column specifier is incorrect. + ER_WRONG_FIELD_SPEC + + + An error occurred when parsing the statement. + ER_PARSE_ERROR + + + The statement is empty. + ER_EMPTY_QUERY + + + The table alias isn't unique. + ER_NONUNIQ_TABLE + + + The default value is invalid for the specified field. + ER_INVALID_DEFAULT + + + The table has multiple primary keys defined. + ER_MULTIPLE_PRI_KEY + + + Too many keys were defined for the table. + ER_TOO_MANY_KEYS + + + Too many parts to the keys were defined for the table. + ER_TOO_MANY_KEY_PARTS + + + The specified key is too long + ER_TOO_LONG_KEY + + + The specified key column doesn't exist in the table. + ER_KEY_COLUMN_DOES_NOT_EXITS + + + The BLOB column was used as a key, this can't be done. + ER_BLOB_USED_AS_KEY + + + The column length is too big for the specified column type. + ER_TOO_BIG_FIELDLENGTH + + + There can only be one auto-column, and it must be defined as a PK. + ER_WRONG_AUTO_KEY + + + The server is ready to accept connections. + ER_READY + + + + ER_NORMAL_SHUTDOWN + + + The server received the specified signal and is aborting. + ER_GOT_SIGNAL + + + The server shutdown is complete. + ER_SHUTDOWN_COMPLETE + + + The server is forcing close of the specified thread. + ER_FORCING_CLOSE + + + An error occurred when creating the IP socket. + ER_IPSOCK_ERROR + + + The table has no index like the one used in CREATE INDEX. + ER_NO_SUCH_INDEX + + + The field separator argument is not what is expected, check the manual. + ER_WRONG_FIELD_TERMINATORS + + + The BLOB columns must terminated, fixed row lengths cannot be used. + ER_BLOBS_AND_NO_TERMINATED + + + The text file cannot be read. + ER_TEXTFILE_NOT_READABLE + + + The specified file already exists. + ER_FILE_EXISTS_ERROR + + + Information returned by the LOAD statement. + ER_LOAD_INFO + + + Information returned by an UPDATE statement. + ER_ALTER_INFO + + + The prefix key is incorrect. + ER_WRONG_SUB_KEY + + + All columns cannot be removed from a table, use DROP TABLE instead. + ER_CANT_REMOVE_ALL_FIELDS + + + Cannot DROP, check that the column or key exists. + ER_CANT_DROP_FIELD_OR_KEY + + + Information returned by an INSERT statement. + ER_INSERT_INFO + + + The target table cannot be specified for update in FROM clause. + ER_UPDATE_TABLE_USED + + + The specified thread ID is unknown. + ER_NO_SUCH_THREAD + + + The thread cannot be killed, the current user is not the owner. + ER_KILL_DENIED_ERROR + + + No tables used in the statement. + ER_NO_TABLES_USED + + + Too many string have been used for the specified column and SET. + ER_TOO_BIG_SET + + + A unique filename couldn't be generated. + ER_NO_UNIQUE_LOGFILE + + + The specified table was locked with a READ lock, and can't be updated. + ER_TABLE_NOT_LOCKED_FOR_WRITE + + + The specified table was not locked with LOCK TABLES. + ER_TABLE_NOT_LOCKED + + + BLOB and Text columns cannot have a default value. + ER_BLOB_CANT_HAVE_DEFAULT + + + The specified database name is incorrect. + ER_WRONG_DB_NAME + + + The specified table name is incorrect. + ER_WRONG_TABLE_NAME + + + The SELECT command would examine more than MAX_JOIN_SIZE rows, check the WHERE clause and use SET SQL_BIG_SELECTS=1 or SET SQL_MAX_JOIN_SIZE=# if the SELECT is ok. + ER_TOO_BIG_SELECT + + + An unknown error occurred. + ER_UNKNOWN_ERROR + + + The specified procedure is unknown. + ER_UNKNOWN_PROCEDURE + + + The number of parameters provided for the specified procedure is incorrect. + ER_WRONG_PARAMCOUNT_TO_PROCEDURE + + + The parameters provided for the specified procedure are incorrect. + ER_WRONG_PARAMETERS_TO_PROCEDURE + + + The specified table is unknown. + ER_UNKNOWN_TABLE + + + The specified column has been specified twice. + ER_FIELD_SPECIFIED_TWICE + + + The group function has been incorrectly used. + ER_INVALID_GROUP_FUNC_USE + + + The specified table uses an extension that doesn't exist in this MySQL version. + ER_UNSUPPORTED_EXTENSION + + + The table must have at least one column. + ER_TABLE_MUST_HAVE_COLUMNS + + + The specified table is full. + ER_RECORD_FILE_FULL + + + The specified character set is unknown. + ER_UNKNOWN_CHARACTER_SET + + + Too many tables, MySQL can only use the specified number of tables in a JOIN. + ER_TOO_MANY_TABLES + + + Too many columns + ER_TOO_MANY_FIELDS + + + The row size is too large, the maximum row size for the used tables (not counting BLOBS) is specified, change some columns or BLOBS. + ER_TOO_BIG_ROWSIZE + + + A thread stack overrun occurred. Stack statistics are specified. + ER_STACK_OVERRUN + + + A cross dependency was found in the OUTER JOIN, examine the ON conditions. + ER_WRONG_OUTER_JOIN + + + The table handler doesn't support NULL in the given index, change specified column to be NOT NULL or use another handler. + ER_NULL_COLUMN_IN_INDEX + + + The specified user defined function cannot be loaded. + ER_CANT_FIND_UDF + + + The specified user defined function cannot be initialised. + ER_CANT_INITIALIZE_UDF + + + No paths are allowed for the shared library. + ER_UDF_NO_PATHS + + + The specified user defined function already exists. + ER_UDF_EXISTS + + + The specified shared library cannot be opened. + ER_CANT_OPEN_LIBRARY + + + The specified symbol cannot be found in the library. + ER_CANT_FIND_DL_ENTRY + + + The specified function is not defined. + ER_FUNCTION_NOT_DEFINED + + + The specified host is blocked because of too many connection errors, unblock with 'mysqladmin flush-hosts'. + ER_HOST_IS_BLOCKED + + + + The given host is not allowed to connect + + + + + The anonymous user is not allowed to connect + + + + + The given password is not allowed + + + + + The given password does not match + + + + Information returned by an UPDATE statement. + ER_UPDATE_INFO + + + A new thread couldn't be created. + ER_CANT_CREATE_THREAD + + + The column count doesn't match the value count. + ER_WRONG_VALUE_COUNT_ON_ROW + + + The specified table can't be re-opened. + ER_CANT_REOPEN_TABLE + + + The NULL value has been used incorrectly. + ER_INVALID_USE_OF_NULL + + + The regular expression contains an error. + ER_REGEXP_ERROR + + + GROUP columns (MIN(), MAX(), COUNT(), ...) cannot be mixes with no GROUP columns if there is not GROUP BY clause. + ER_MIX_OF_GROUP_FUNC_AND_FIELDS + + + + ER_NONEXISTING_GRANT + + + + ER_TABLEACCESS_DENIED_ERROR + + + + ER_COLUMNACCESS_DENIED_ERROR + + + + ER_ILLEGAL_GRANT_FOR_TABLE + + + + ER_GRANT_WRONG_HOST_OR_USER + + + + ER_NO_SUCH_TABLE + + + + ER_NONEXISTING_TABLE_GRANT + + + + ER_NOT_ALLOWED_COMMAND + + + + ER_SYNTAX_ERROR + + + + ER_DELAYED_CANT_CHANGE_LOCK + + + + ER_TOO_MANY_DELAYED_THREADS + + + + ER_ABORTING_CONNECTION + + + + An attempt was made to send or receive a packet larger than + max_allowed_packet_size + + + + + ER_NET_READ_ERROR_FROM_PIPE + + + + ER_NET_FCNTL_ERROR + + + + ER_NET_PACKETS_OUT_OF_ORDER + + + + ER_NET_UNCOMPRESS_ERROR + + + + ER_NET_READ_ERROR + + + + ER_NET_READ_INTERRUPTED + + + + ER_NET_ERROR_ON_WRITE + + + + ER_NET_WRITE_INTERRUPTED + + + + ER_TOO_LONG_STRING + + + + ER_TABLE_CANT_HANDLE_BLOB + + + + ER_TABLE_CANT_HANDLE_AUTO_INCREMENT + + + + ER_DELAYED_INSERT_TABLE_LOCKED + + + + ER_WRONG_COLUMN_NAME + + + + ER_WRONG_KEY_COLUMN + + + + ER_WRONG_MRG_TABLE + + + + ER_DUP_UNIQUE + + + + ER_BLOB_KEY_WITHOUT_LENGTH + + + + ER_PRIMARY_CANT_HAVE_NULL + + + + ER_TOO_MANY_ROWS + + + + ER_REQUIRES_PRIMARY_KEY + + + + ER_NO_RAID_COMPILED + + + + ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE + + + + ER_KEY_DOES_NOT_EXITS + + + + ER_CHECK_NO_SUCH_TABLE + + + + ER_CHECK_NOT_IMPLEMENTED + + + + ER_CANT_DO_THIS_DURING_AN_TRANSACTION + + + + ER_ERROR_DURING_COMMIT + + + + ER_ERROR_DURING_ROLLBACK + + + + ER_ERROR_DURING_FLUSH_LOGS + + + + ER_ERROR_DURING_CHECKPOINT + + + + ER_NEW_ABORTING_CONNECTION + + + + ER_DUMP_NOT_IMPLEMENTED + + + + ER_FLUSH_MASTER_BINLOG_CLOSED + + + + ER_INDEX_REBUILD + + + + ER_MASTER + + + + ER_MASTER_NET_READ + + + + ER_MASTER_NET_WRITE + + + + ER_FT_MATCHING_KEY_NOT_FOUND + + + + ER_LOCK_OR_ACTIVE_TRANSACTION + + + + ER_UNKNOWN_SYSTEM_VARIABLE + + + + ER_CRASHED_ON_USAGE + + + + ER_CRASHED_ON_REPAIR + + + + ER_WARNING_NOT_COMPLETE_ROLLBACK + + + + ER_TRANS_CACHE_FULL + + + + ER_SLAVE_MUST_STOP + + + + ER_SLAVE_NOT_RUNNING + + + + ER_BAD_SLAVE + + + + ER_MASTER_INFO + + + + ER_SLAVE_THREAD + + + + ER_TOO_MANY_USER_CONNECTIONS + + + + ER_SET_CONSTANTS_ONLY + + + + ER_LOCK_WAIT_TIMEOUT + + + + ER_LOCK_TABLE_FULL + + + + ER_READ_ONLY_TRANSACTION + + + + ER_DROP_DB_WITH_READ_LOCK + + + + ER_CREATE_DB_WITH_READ_LOCK + + + + ER_WRONG_ARGUMENTS + + + + ER_NO_PERMISSION_TO_CREATE_USER + + + + ER_UNION_TABLES_IN_DIFFERENT_DIR + + + + ER_LOCK_DEADLOCK + + + + ER_TABLE_CANT_HANDLE_FT + + + + ER_CANNOT_ADD_FOREIGN + + + + ER_NO_REFERENCED_ROW + + + + ER_ROW_IS_REFERENCED + + + + ER_CONNECT_TO_MASTER + + + + ER_QUERY_ON_MASTER + + + + ER_ERROR_WHEN_EXECUTING_COMMAND + + + + ER_WRONG_USAGE + + + + ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT + + + + ER_CANT_UPDATE_WITH_READLOCK + + + + ER_MIXING_NOT_ALLOWED + + + + ER_DUP_ARGUMENT + + + + ER_USER_LIMIT_REACHED + + + + ER_SPECIFIC_ACCESS_DENIED_ERROR + + + + ER_LOCAL_VARIABLE + + + + ER_GLOBAL_VARIABLE + + + + ER_NO_DEFAULT + + + + ER_WRONG_VALUE_FOR_VAR + + + + ER_WRONG_TYPE_FOR_VAR + + + + ER_VAR_CANT_BE_READ + + + + ER_CANT_USE_OPTION_HERE + + + + ER_NOT_SUPPORTED_YET + + + + ER_MASTER_FATAL_ERROR_READING_BINLOG + + + + ER_SLAVE_IGNORED_TABLE + + + + ER_INCORRECT_GLOBAL_LOCAL_VAR + + + + ER_WRONG_FK_DEF + + + + ER_KEY_REF_DO_NOT_MATCH_TABLE_REF + + + + ER_OPERAND_COLUMNS + + + + ER_SUBQUERY_NO_1_ROW + + + + ER_UNKNOWN_STMT_HANDLER + + + + ER_CORRUPT_HELP_DB + + + + ER_CYCLIC_REFERENCE + + + + ER_AUTO_CONVERT + + + + ER_ILLEGAL_REFERENCE + + + + ER_DERIVED_MUST_HAVE_ALIAS + + + + ER_SELECT_REDUCED + + + + ER_TABLENAME_NOT_ALLOWED_HERE + + + + ER_NOT_SUPPORTED_AUTH_MODE + + + + ER_SPATIAL_CANT_HAVE_NULL + + + + ER_COLLATION_CHARSET_MISMATCH + + + + ER_SLAVE_WAS_RUNNING + + + + ER_SLAVE_WAS_NOT_RUNNING + + + + ER_TOO_BIG_FOR_UNCOMPRESS + + + + ER_ZLIB_Z_MEM_ERROR + + + + ER_ZLIB_Z_BUF_ERROR + + + + ER_ZLIB_Z_DATA_ERROR + + + + ER_CUT_VALUE_GROUP_CONCAT + + + + ER_WARN_TOO_FEW_RECORDS + + + + ER_WARN_TOO_MANY_RECORDS + + + + ER_WARN_NULL_TO_NOTNULL + + + + ER_WARN_DATA_OUT_OF_RANGE + + + + WARN_DATA_TRUNCATED + + + + ER_WARN_USING_OTHER_HANDLER + + + + ER_CANT_AGGREGATE_2COLLATIONS + + + + ER_DROP_USER + + + + ER_REVOKE_GRANTS + + + + ER_CANT_AGGREGATE_3COLLATIONS + + + + ER_CANT_AGGREGATE_NCOLLATIONS + + + + ER_VARIABLE_IS_NOT_STRUCT + + + + ER_UNKNOWN_COLLATION + + + + ER_SLAVE_IGNORED_SSL_PARAMS + + + + ER_SERVER_IS_IN_SECURE_AUTH_MODE + + + + ER_WARN_FIELD_RESOLVED + + + + ER_BAD_SLAVE_UNTIL_COND + + + + ER_MISSING_SKIP_SLAVE + + + + ER_UNTIL_COND_IGNORED + + + + ER_WRONG_NAME_FOR_INDEX + + + + ER_WRONG_NAME_FOR_CATALOG + + + + ER_WARN_QC_RESIZE + + + + ER_BAD_FT_COLUMN + + + + ER_UNKNOWN_KEY_CACHE + + + + ER_WARN_HOSTNAME_WONT_WORK + + + + ER_UNKNOWN_STORAGE_ENGINE + + + + ER_WARN_DEPRECATED_SYNTAX + + + + ER_NON_UPDATABLE_TABLE + + + + ER_FEATURE_DISABLED + + + + ER_OPTION_PREVENTS_STATEMENT + + + + ER_DUPLICATED_VALUE_IN_TYPE + + + + ER_TRUNCATED_WRONG_VALUE + + + + ER_TOO_MUCH_AUTO_TIMESTAMP_COLS + + + + ER_INVALID_ON_UPDATE + + + + ER_UNSUPPORTED_PS + + + + ER_GET_ERRMSG + + + + ER_GET_TEMPORARY_ERRMSG + + + + ER_UNKNOWN_TIME_ZONE + + + + ER_WARN_INVALID_TIMESTAMP + + + + ER_INVALID_CHARACTER_STRING + + + + ER_WARN_ALLOWED_PACKET_OVERFLOWED + + + + ER_CONFLICTING_DECLARATIONS + + + + ER_SP_NO_RECURSIVE_CREATE + + + + ER_SP_ALREADY_EXISTS + + + + ER_SP_DOES_NOT_EXIST + + + + ER_SP_DROP_FAILED + + + + ER_SP_STORE_FAILED + + + + ER_SP_LILABEL_MISMATCH + + + + ER_SP_LABEL_REDEFINE + + + + ER_SP_LABEL_MISMATCH + + + + ER_SP_UNINIT_VAR + + + + ER_SP_BADSELECT + + + + ER_SP_BADRETURN + + + + ER_SP_BADSTATEMENT + + + + ER_UPDATE_LOG_DEPRECATED_IGNORED + + + + ER_UPDATE_LOG_DEPRECATED_TRANSLATED + + + + ER_QUERY_INTERRUPTED + + + + ER_SP_WRONG_NO_OF_ARGS + + + + ER_SP_COND_MISMATCH + + + + ER_SP_NORETURN + + + + ER_SP_NORETURNEND + + + + ER_SP_BAD_CURSOR_QUERY + + + + ER_SP_BAD_CURSOR_SELECT + + + + ER_SP_CURSOR_MISMATCH + + + + ER_SP_CURSOR_ALREADY_OPEN + + + + ER_SP_CURSOR_NOT_OPEN + + + + ER_SP_UNDECLARED_VAR + + + + ER_SP_WRONG_NO_OF_FETCH_ARGS + + + + ER_SP_FETCH_NO_DATA + + + + ER_SP_DUP_PARAM + + + + ER_SP_DUP_VAR + + + + ER_SP_DUP_COND + + + + ER_SP_DUP_CURS + + + + ER_SP_CANT_ALTER + + + + ER_SP_SUBSELECT_NYI + + + + ER_STMT_NOT_ALLOWED_IN_SF_OR_TRG + + + + ER_SP_VARCOND_AFTER_CURSHNDLR + + + + ER_SP_CURSOR_AFTER_HANDLER + + + + ER_SP_CASE_NOT_FOUND + + + + ER_FPARSER_TOO_BIG_FILE + + + + ER_FPARSER_BAD_HEADER + + + + ER_FPARSER_EOF_IN_COMMENT + + + + ER_FPARSER_ERROR_IN_PARAMETER + + + + ER_FPARSER_EOF_IN_UNKNOWN_PARAMETER + + + + ER_VIEW_NO_EXPLAIN + + + + ER_FRM_UNKNOWN_TYPE + + + + ER_WRONG_OBJECT + + + + ER_NONUPDATEABLE_COLUMN + + + + ER_VIEW_SELECT_DERIVED + + + + ER_VIEW_SELECT_CLAUSE + + + + ER_VIEW_SELECT_VARIABLE + + + + ER_VIEW_SELECT_TMPTABLE + + + + ER_VIEW_WRONG_LIST + + + + ER_WARN_VIEW_MERGE + + + + ER_WARN_VIEW_WITHOUT_KEY + + + + ER_VIEW_INVALID + + + + ER_SP_NO_DROP_SP + + + + ER_SP_GOTO_IN_HNDLR + + + + ER_TRG_ALREADY_EXISTS + + + + ER_TRG_DOES_NOT_EXIST + + + + ER_TRG_ON_VIEW_OR_TEMP_TABLE + + + + ER_TRG_CANT_CHANGE_ROW + + + + ER_TRG_NO_SUCH_ROW_IN_TRG + + + + ER_NO_DEFAULT_FOR_FIELD + + + + ER_DIVISION_BY_ZERO + + + + ER_TRUNCATED_WRONG_VALUE_FOR_FIELD + + + + ER_ILLEGAL_VALUE_FOR_TYPE + + + + ER_VIEW_NONUPD_CHECK + + + + ER_VIEW_CHECK_FAILED + + + + ER_PROCACCESS_DENIED_ERROR + + + + ER_RELAY_LOG_FAIL + + + + ER_PASSWD_LENGTH + + + + ER_UNKNOWN_TARGET_BINLOG + + + + ER_IO_ERR_LOG_INDEX_READ + + + + ER_BINLOG_PURGE_PROHIBITED + + + + ER_FSEEK_FAIL + + + + ER_BINLOG_PURGE_FATAL_ERR + + + + ER_LOG_IN_USE + + + + ER_LOG_PURGE_UNKNOWN_ERR + + + + ER_RELAY_LOG_INIT + + + + ER_NO_BINARY_LOGGING + + + + ER_RESERVED_SYNTAX + + + + ER_WSAS_FAILED + + + + ER_DIFF_GROUPS_PROC + + + + ER_NO_GROUP_FOR_PROC + + + + ER_ORDER_WITH_PROC + + + + ER_LOGGING_PROHIBIT_CHANGING_OF + + + + ER_NO_FILE_MAPPING + + + + ER_WRONG_MAGIC + + + + ER_PS_MANY_PARAM + + + + ER_KEY_PART_0 + + + + ER_VIEW_CHECKSUM + + + + ER_VIEW_MULTIUPDATE + + + + ER_VIEW_NO_INSERT_FIELD_LIST + + + + ER_VIEW_DELETE_MERGE_VIEW + + + + ER_CANNOT_USER + + + + ER_XAER_NOTA + + + + ER_XAER_INVAL + + + + ER_XAER_RMFAIL + + + + ER_XAER_OUTSIDE + + + + ER_XAER_RMERR + + + + ER_XA_RBROLLBACK + + + + ER_NONEXISTING_PROC_GRANT + + + + ER_PROC_AUTO_GRANT_FAIL + + + + ER_PROC_AUTO_REVOKE_FAIL + + + + ER_DATA_TOO_LONG + + + + ER_SP_BAD_SQLSTATE + + + + ER_STARTUP + + + + ER_LOAD_FROM_FIXED_SIZE_ROWS_TO_VAR + + + + ER_CANT_CREATE_USER_WITH_GRANT + + + + ER_WRONG_VALUE_FOR_TYPE + + + + ER_TABLE_DEF_CHANGED + + + + ER_SP_DUP_HANDLER + + + + ER_SP_NOT_VAR_ARG + + + + ER_SP_NO_RETSET + + + + ER_CANT_CREATE_GEOMETRY_OBJECT + + + + ER_FAILED_ROUTINE_BREAK_BINLOG + + + + ER_BINLOG_UNSAFE_ROUTINE + + + + ER_BINLOG_CREATE_ROUTINE_NEED_SUPER + + + + ER_EXEC_STMT_WITH_OPEN_CURSOR + + + + ER_STMT_HAS_NO_OPEN_CURSOR + + + + ER_COMMIT_NOT_ALLOWED_IN_SF_OR_TRG + + + + ER_NO_DEFAULT_FOR_VIEW_FIELD + + + + ER_SP_NO_RECURSION + + + + ER_TOO_BIG_SCALE + + + + ER_TOO_BIG_PRECISION + + + + ER_M_BIGGER_THAN_D + + + + ER_WRONG_LOCK_OF_SYSTEM_TABLE + + + + ER_CONNECT_TO_FOREIGN_DATA_SOURCE + + + + ER_QUERY_ON_FOREIGN_DATA_SOURCE + + + + ER_FOREIGN_DATA_SOURCE_DOESNT_EXIST + + + + ER_FOREIGN_DATA_STRING_INVALID_CANT_CREATE + + + + ER_FOREIGN_DATA_STRING_INVALID + + + + ER_CANT_CREATE_FEDERATED_TABLE + + + + ER_TRG_IN_WRONG_SCHEMA + + + + ER_STACK_OVERRUN_NEED_MORE + + + + ER_TOO_LONG_BODY + + + + ER_WARN_CANT_DROP_DEFAULT_KEYCACHE + + + + ER_TOO_BIG_DISPLAYWIDTH + + + + ER_XAER_DUPID + + + + ER_DATETIME_FUNCTION_OVERFLOW + + + + ER_CANT_UPDATE_USED_TABLE_IN_SF_OR_TRG + + + + ER_VIEW_PREVENT_UPDATE + + + + ER_PS_NO_RECURSION + + + + ER_SP_CANT_SET_AUTOCOMMIT + + + + ER_MALFORMED_DEFINER + + + + ER_VIEW_FRM_NO_USER + + + + ER_VIEW_OTHER_USER + + + + ER_NO_SUCH_USER + + + + ER_FORBID_SCHEMA_CHANGE + + + + ER_ROW_IS_REFERENCED_2 + + + + ER_NO_REFERENCED_ROW_2 + + + + ER_SP_BAD_VAR_SHADOW + + + + ER_TRG_NO_DEFINER + + + + ER_OLD_FILE_FORMAT + + + + ER_SP_RECURSION_LIMIT + + + + ER_SP_PROC_TABLE_CORRUPT + + + + ER_SP_WRONG_NAME + + + + ER_TABLE_NEEDS_UPGRADE + + + + ER_SP_NO_AGGREGATE + + + + ER_MAX_PREPARED_STMT_COUNT_REACHED + + + + ER_VIEW_RECURSIVE + + + + ER_NON_GROUPING_FIELD_USED + + + + ER_TABLE_CANT_HANDLE_SPKEYS + + + + ER_NO_TRIGGERS_ON_SYSTEM_SCHEMA + + + + ER_REMOVED_SPACES + + + + ER_AUTOINC_READ_FAILED + + + + ER_USERNAME + + + + ER_HOSTNAME + + + + ER_WRONG_STRING_LENGTH + + + + ER_NON_INSERTABLE_TABLE + + + + ER_ADMIN_WRONG_MRG_TABLE + + + + ER_TOO_HIGH_LEVEL_OF_NESTING_FOR_SELECT + + + + ER_NAME_BECOMES_EMPTY + + + + ER_AMBIGUOUS_FIELD_TERM + + + + ER_FOREIGN_SERVER_EXISTS + + + + ER_FOREIGN_SERVER_DOESNT_EXIST + + + + ER_ILLEGAL_HA_CREATE_OPTION + + + + ER_PARTITION_REQUIRES_VALUES_ERROR + + + + ER_PARTITION_WRONG_VALUES_ERROR + + + + ER_PARTITION_MAXVALUE_ERROR + + + + ER_PARTITION_SUBPARTITION_ERROR + + + + ER_PARTITION_SUBPART_MIX_ERROR + + + + ER_PARTITION_WRONG_NO_PART_ERROR + + + + ER_PARTITION_WRONG_NO_SUBPART_ERROR + + + + ER_WRONG_EXPR_IN_PARTITION_FUNC_ERROR + + + + ER_NO_CONST_EXPR_IN_RANGE_OR_LIST_ERROR + + + + ER_FIELD_NOT_FOUND_PART_ERROR + + + + ER_LIST_OF_FIELDS_ONLY_IN_HASH_ERROR + + + + ER_INCONSISTENT_PARTITION_INFO_ERROR + + + + ER_PARTITION_FUNC_NOT_ALLOWED_ERROR + + + + ER_PARTITIONS_MUST_BE_DEFINED_ERROR + + + + ER_RANGE_NOT_INCREASING_ERROR + + + + ER_INCONSISTENT_TYPE_OF_FUNCTIONS_ERROR + + + + ER_MULTIPLE_DEF_CONST_IN_LIST_PART_ERROR + + + + ER_PARTITION_ENTRY_ERROR + + + + ER_MIX_HANDLER_ERROR + + + + ER_PARTITION_NOT_DEFINED_ERROR + + + + ER_TOO_MANY_PARTITIONS_ERROR + + + + ER_SUBPARTITION_ERROR + + + + ER_CANT_CREATE_HANDLER_FILE + + + + ER_BLOB_FIELD_IN_PART_FUNC_ERROR + + + + ER_UNIQUE_KEY_NEED_ALL_FIELDS_IN_PF + + + + ER_NO_PARTS_ERROR + + + + ER_PARTITION_MGMT_ON_NONPARTITIONED + + + + ER_FOREIGN_KEY_ON_PARTITIONED + + + + ER_DROP_PARTITION_NON_EXISTENT + + + + ER_DROP_LAST_PARTITION + + + + ER_COALESCE_ONLY_ON_HASH_PARTITION + + + + ER_REORG_HASH_ONLY_ON_SAME_NO + + + + ER_REORG_NO_PARAM_ERROR + + + + ER_ONLY_ON_RANGE_LIST_PARTITION + + + + ER_ADD_PARTITION_SUBPART_ERROR + + + + ER_ADD_PARTITION_NO_NEW_PARTITION + + + + ER_COALESCE_PARTITION_NO_PARTITION + + + + ER_REORG_PARTITION_NOT_EXIST + + + + ER_SAME_NAME_PARTITION + + + + ER_NO_BINLOG_ERROR + + + + ER_CONSECUTIVE_REORG_PARTITIONS + + + + ER_REORG_OUTSIDE_RANGE + + + + ER_PARTITION_FUNCTION_FAILURE + + + + ER_PART_STATE_ERROR + + + + ER_LIMITED_PART_RANGE + + + + ER_PLUGIN_IS_NOT_LOADED + + + + ER_WRONG_VALUE + + + + ER_NO_PARTITION_FOR_GIVEN_VALUE + + + + ER_FILEGROUP_OPTION_ONLY_ONCE + + + + ER_CREATE_FILEGROUP_FAILED + + + + ER_DROP_FILEGROUP_FAILED + + + + ER_TABLESPACE_AUTO_EXTEND_ERROR + + + + ER_WRONG_SIZE_NUMBER + + + + ER_SIZE_OVERFLOW_ERROR + + + + ER_ALTER_FILEGROUP_FAILED + + + + ER_BINLOG_ROW_LOGGING_FAILED + + + + ER_BINLOG_ROW_WRONG_TABLE_DEF + + + + ER_BINLOG_ROW_RBR_TO_SBR + + + + ER_EVENT_ALREADY_EXISTS + + + + ER_EVENT_STORE_FAILED + + + + ER_EVENT_DOES_NOT_EXIST + + + + ER_EVENT_CANT_ALTER + + + + ER_EVENT_DROP_FAILED + + + + ER_EVENT_INTERVAL_NOT_POSITIVE_OR_TOO_BIG + + + + ER_EVENT_ENDS_BEFORE_STARTS + + + + ER_EVENT_EXEC_TIME_IN_THE_PAST + + + + ER_EVENT_OPEN_TABLE_FAILED + + + + ER_EVENT_NEITHER_M_EXPR_NOR_M_AT + + + + ER_COL_COUNT_DOESNT_MATCH_CORRUPTED + + + + ER_CANNOT_LOAD_FROM_TABLE + + + + ER_EVENT_CANNOT_DELETE + + + + ER_EVENT_COMPILE_ERROR + + + + ER_EVENT_SAME_NAME + + + + ER_EVENT_DATA_TOO_LONG + + + + ER_DROP_INDEX_FK + + + + ER_WARN_DEPRECATED_SYNTAX_WITH_VER + + + + ER_CANT_WRITE_LOCK_LOG_TABLE + + + + ER_CANT_LOCK_LOG_TABLE + + + + ER_FOREIGN_DUPLICATE_KEY + + + + ER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE + + + + ER_TEMP_TABLE_PREVENTS_SWITCH_OUT_OF_RBR + + + + ER_STORED_FUNCTION_PREVENTS_SWITCH_BINLOG_FORMAT + + + + ER_NDB_CANT_SWITCH_BINLOG_FORMAT + + + + ER_PARTITION_NO_TEMPORARY + + + + ER_PARTITION_CONST_DOMAIN_ERROR + + + + ER_PARTITION_FUNCTION_IS_NOT_ALLOWED + + + + ER_DDL_LOG_ERROR + + + + ER_NULL_IN_VALUES_LESS_THAN + + + + ER_WRONG_PARTITION_NAME + + + + ER_CANT_CHANGE_TRANSACTION_ISOLATION + + + + ER_DUP_ENTRY_AUTOINCREMENT_CASE + + + + ER_EVENT_MODIFY_QUEUE_ERROR + + + + ER_EVENT_SET_VAR_ERROR + + + + ER_PARTITION_MERGE_ERROR + + + + ER_CANT_ACTIVATE_LOG + + + + ER_RBR_NOT_AVAILABLE + + + + ER_BASE64_DECODE_ERROR + + + + ER_EVENT_RECURSION_FORBIDDEN + + + + ER_EVENTS_DB_ERROR + + + + ER_ONLY_INTEGERS_ALLOWED + + + + ER_UNSUPORTED_LOG_ENGINE + + + + ER_BAD_LOG_STATEMENT + + + + ER_CANT_RENAME_LOG_TABLE + + + + ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT + + + + ER_WRONG_PARAMETERS_TO_NATIVE_FCT + + + + ER_WRONG_PARAMETERS_TO_STORED_FCT + + + + ER_NATIVE_FCT_NAME_COLLISION + + + + ER_DUP_ENTRY_WITH_KEY_NAME + + + + ER_BINLOG_PURGE_EMFILE + + + + ER_EVENT_CANNOT_CREATE_IN_THE_PAST + + + + ER_EVENT_CANNOT_ALTER_IN_THE_PAST + + + + ER_SLAVE_INCIDENT + + + + ER_NO_PARTITION_FOR_GIVEN_VALUE_SILENT + + + + ER_BINLOG_UNSAFE_STATEMENT + + + + ER_SLAVE_FATAL_ERROR + + + + ER_SLAVE_RELAY_LOG_READ_FAILURE + + + + ER_SLAVE_RELAY_LOG_WRITE_FAILURE + + + + ER_SLAVE_CREATE_EVENT_FAILURE + + + + ER_SLAVE_MASTER_COM_FAILURE + + + + ER_BINLOG_LOGGING_IMPOSSIBLE + + + + ER_VIEW_NO_CREATION_CTX + + + + ER_VIEW_INVALID_CREATION_CTX + + + + ER_SR_INVALID_CREATION_CTX + + + + ER_TRG_CORRUPTED_FILE + + + + ER_TRG_NO_CREATION_CTX + + + + ER_TRG_INVALID_CREATION_CTX + + + + ER_EVENT_INVALID_CREATION_CTX + + + + ER_TRG_CANT_OPEN_TABLE + + + + ER_CANT_CREATE_SROUTINE + + + + ER_SLAVE_AMBIGOUS_EXEC_MODE + + + + ER_NO_FORMAT_DESCRIPTION_EVENT_BEFORE_BINLOG_STATEMENT + + + + ER_SLAVE_CORRUPT_EVENT + + + + ER_LOAD_DATA_INVALID_COLUMN + + + + ER_LOG_PURGE_NO_FILE + + + + ER_XA_RBTIMEOUT + + + + ER_XA_RBDEADLOCK + + + + ER_NEED_REPREPARE + + + + ER_DELAYED_NOT_SUPPORTED + + + + WARN_NO_MASTER_INFO + + + + WARN_OPTION_IGNORED + + + + WARN_PLUGIN_DELETE_BUILTIN + + + + WARN_PLUGIN_BUSY + + + + ER_VARIABLE_IS_READONLY + + + + ER_WARN_ENGINE_TRANSACTION_ROLLBACK + + + + ER_SLAVE_HEARTBEAT_FAILURE + + + + ER_SLAVE_HEARTBEAT_VALUE_OUT_OF_RANGE + + + + ER_NDB_REPLICATION_SCHEMA_ERROR + + + + ER_CONFLICT_FN_PARSE_ERROR + + + + ER_EXCEPTIONS_WRITE_ERROR + + + + ER_TOO_LONG_TABLE_COMMENT + + + + ER_TOO_LONG_FIELD_COMMENT + + + + ER_FUNC_INEXISTENT_NAME_COLLISION + + + + ER_DATABASE_NAME + + + + ER_TABLE_NAME + + + + ER_PARTITION_NAME + + + + ER_SUBPARTITION_NAME + + + + ER_TEMPORARY_NAME + + + + ER_RENAMED_NAME + + + + ER_TOO_MANY_CONCURRENT_TRXS + + + + WARN_NON_ASCII_SEPARATOR_NOT_IMPLEMENTED + + + + ER_DEBUG_SYNC_TIMEOUT + + + + ER_DEBUG_SYNC_HIT_LIMIT + + + + ER_ERROR_LAST + + + + WriteInteger + + + + + + + Summary description for MySqlPool. + + + + + It is assumed that this property will only be used from inside an active + lock. + + + + + Indicates whether this pool is being cleared. + + + + + It is assumed that this method is only called from inside an active lock. + + + + + It is assumed that this method is only called from inside an active lock. + + + + + Removes a connection from the in use pool. The only situations where this method + would be called are when a connection that is in use gets some type of fatal exception + or when the connection is being returned to the pool and it's too old to be + returned. + + + + + + Clears this pool of all idle connections and marks this pool and being cleared + so all other connections are closed when they are returned. + + + + + Remove expired drivers from the idle pool + + + + Closing driver is a potentially lengthy operation involving network + IO. Therefore we do not close expired drivers while holding + idlePool.SyncRoot lock. We just remove the old drivers from the idle + queue and return them to the caller. The caller will need to close + them (or let GC close them) + + + + + Summary description for MySqlPoolManager. + + + + + Remove drivers that have been idle for too long. + + + + + Provides a class capable of executing a SQL script containing + multiple SQL statements including CREATE PROCEDURE statements + that require changing the delimiter + + + + + Handles the event raised whenever a statement is executed. + + + + + Handles the event raised whenever an error is raised by the execution of a script. + + + + + Handles the event raised whenever a script execution is finished. + + + + + Initializes a new instance of the + class. + + + + + Initializes a new instance of the + class. + + The connection. + + + + Initializes a new instance of the + class. + + The query. + + + + Initializes a new instance of the + class. + + The connection. + The query. + + + + Gets or sets the connection. + + The connection. + + + + Gets or sets the query. + + The query. + + + + Gets or sets the delimiter. + + The delimiter. + + + + Executes this instance. + + The number of statements executed as part of the script. + + + + Initiates the asynchronous execution of SQL statements. + + The number of statements executed as part of the script inside. + + + + Initiates the asynchronous execution of SQL statements. + + The cancellation token. + The number of statements executed as part of the script inside. + + + + Represents the method that will handle errors when executing MySQL statements. + + + + + Represents the method that will handle errors when executing MySQL scripts. + + + + + Sets the arguments associated to MySQL scripts. + + + + + Gets the statement text. + + The statement text. + + + + Gets the line. + + The line. + + + + Gets the position. + + The position. + + + + Sets the arguments associated to MySQL script errors. + + + + + Initializes a new instance of the class. + + The exception. + + + + Gets the exception. + + The exception. + + + + Gets or sets a value indicating whether this is ignore. + + true if ignore; otherwise, false. + + + + Summary description for MySqlStream. + + + + + ReadPacket is called by NativeDriver to start reading the next + packet on the stream. + + + + + Reads the specified number of bytes from the stream and stores them at given + offset in the buffer. + Throws EndOfStreamException if not all bytes can be read. + + Stream to read from + Array to store bytes read from the stream + The offset in buffer at which to begin storing the data read from the current stream. + Number of bytes to read + + + + LoadPacket loads up and decodes the header of the incoming packet. + + + + + Traces information about the client execution. + + + + + Gets the list of trace listeners. + + + + + Gets or sets the switch to control tracing and debugging. + + + + + Gets or sets a flag indicating if query analysis is enabled. + + + + + Enables query analysis. + + The host on which to enable query analysis. + The interval of time for logging trace information. + + + + Disables query analysis. + + + + + Specifies the types of warning flags. + + + + + No index exists. + + + + + Bad index exists. + + + + + Rows have been excluded from the result. + + + + + Columns have been excluded from the result. + + + + + Type conversions took place. + + + + + Specifies the event that triggered the trace. + + + + + A connection has been opened. + + + + + A connection has been closed. + + + + + A query has been executed. + + + + + Data has been retrieved from the resultset. + + + + + Data retrieval has ended. + + + + + Query execution has ended. + + + + + The statement to be executed has been created. + + + + + The statement has been executed. + + + + + The statement is no longer required. + + + + + The query provided is of a nonquery type. + + + + + Usage advisor warnings have been requested. + + + + + Noncritical problem. + + + + + An error has been raised during data retrieval. + + + + + The query has been normalized. + + + + + Summary description for Driver. + + + + + Sets the current database for the this connection + + + + + + Return the appropriate set of connection flags for our + server capabilities and our user requested options. + + + + + Query is the method that is called to send all queries to the server + + + + + Sends the specified file to the server. + This supports the LOAD DATA LOCAL INFILE + + + + + + FetchDataRow is the method that the data reader calls to see if there is another + row to fetch. In the non-prepared mode, it will simply read the next data packet. + In the prepared mode (statementId > 0), it will + + + + + Execution timeout, in milliseconds. When the accumulated time for network IO exceeds this value + TimeoutException is thrown. This timeout needs to be reset for every new command + + + + + + Summary description for PreparedStatement. + + + + + Prepares CommandText for use with the Prepare method + + Command text stripped of all paramter names + + Takes the output of TokenizeSql and creates a single string of SQL + that only contains '?' markers for each parameter. It also creates + the parameterMap array list that includes all the paramter names in the + order they appeared in the SQL + + + + + Used to define a Replication configurarion element in configuration file. + + + + + Gets a collection of ReplicationServerGroupConfigurationElement objects representing the server groups. + + + + + Used to define a Replication server group in configuration file. + + + + + Gets or sets the name of the replication server group configuration. + + + + + Gets or sets the group type of the replication server group configuration. + + + + + Gets or sets the number of seconds to wait for retry. + + + + + Gets a collection of ReplicationServerConfigurationElement objects representing the server configurations associated to this group configuration. + + + + + Defines a Replication server in configuration file. + + + + + Gets or sets the name of the replication server configuration. + + + + + Gets or sets whether the replication server is configured as master. + + + + + Gets or sets the connection string associated to this replication server. + + + + + Manager for Replication and Load Balancing features + + + + + Returns Replication Server Group List + + + + + Adds a Default Server Group to the list + + Group name + Time between reconnections for failed servers + Replication Server Group added + + + + Adds a Server Group to the list + + Group name + ServerGroup type reference + Time between reconnections for failed servers + Server Group added + + + + Gets the next server from a replication group + + Group name + True if the server to return must be a master + Replication Server defined by the Load Balancing plugin + + + + Gets a Server Group by name + + Group name + Server Group if found, otherwise throws an MySqlException + + + + Validates if the replication group name exists + + Group name to validate + True if replication group name is found, otherwise false + + + + Assigns a new server driver to the connection object + + Group name + True if the server connection to assign must be a master + MySqlConnection object where the new driver will be assigned + + + + Class that implements Round Robing Load Balancing technique + + + + + Gets an available server based on Round Robin load balancing + + True if the server to return must be a master + Next available server + + + + Represents a server in Replication environment + + + + + Server name + + + + + Defines if the server is master (True) or slave + + + + + Connection string used to connect to the server + + + + + Defines if the server is available to be considered in load balancing + + + + + Base class used to implement load balancing features. + + + + + List of servers available for replication. + + + + Group name + + + + + The name of the group. + + + + + The retry time between connections to failed servers. + + + + + The server list in the group. + + + + + Adds a server into the group. + + The server name. + true if the server to add is master; otherwise false for slave server. + The connection string used by this server. + + + + + Removes a server from a group. + + The server name. + + + + Gets a server by name. + + The server name + A replication server. + + + + Must be implemented. Defines the next server for a custom load balancing implementation. + + Defines if the server to return is a master or any. + Next server based on the load balancing implementation. + null if no available server is found. + + + + + Defines the next server for a custom load balancing implementation. + + Defines if the server to return is a master or any. + Currently not being used. + The next server based on the load balancing implementation. Null if no available server is found. + + + + Handles a failed connection to a server. + This method can be overriden to implement a custom failover handling + + The failed server. + + + + Handles a failed connection to a server. + + The failed server. + The exception that caused the failover. + + + + return the ordinal for the given column name + + + + + + + Retrieve the value as the given column index + + The column value to retrieve + The value as the given column + + + + Closes the current resultset, dumping any data still on the wire + + + + + Loads the column metadata for the current resultset + + + + + Represents a schema and its contents. + + + + + Gets or sets the name of the schema. + + + + + Gets the list of columns in the schema. + + + + + Gets the list of rows in the schema. + + + + + Represents a row within a schema. + + + + + Represents a column within a schema. + + + + + The name of the column. + + + + + The type of the column. + + + + + GetForeignKeysOnTable retrieves the foreign keys on the given table. + Since MySQL supports foreign keys on versions prior to 5.0, we can't use + information schema. MySQL also does not include any type of SHOW command + for foreign keys so we have to resort to use SHOW CREATE TABLE and parsing + the output. + + The table to store the key info in. + The table to get the foeign key info for. + Only get foreign keys that match this name. + Should column information be included in the table. + + + + Serializes the given parameter to the given memory stream + + + This method is called by PrepareSqlBuffers to convert the given + parameter to bytes and write those bytes to the given memory stream. + + + True if the parameter was successfully serialized, false otherwise. + + + + Summary description for StoredProcedure. + + + + + Defines the basic operations to be performed on the table cache. + + + + + The max allowed age for the cache entry. + + + + + Adds the given command and result set to the cache. + + The command to store in the cache. + The resultset associated to the stored command. + + + + Retrieves the specified command from the cache. + + The command to retrieve. + The allowed age for the cache entry. + + + + + Removes the specified command from the cache. + + The command to remove from the cache. + + + + Clears the cache. + + + + + Removes cache entries older than the value defined by MaxCacheAge. + + + + + Stream that supports timeout of IO operations. + This class is used is used to support timeouts for SQL command, where a + typical operation involves several network reads/writes. + Timeout here is defined as the accumulated duration of all IO operations. + + + + + Construct a TimedStream + + Undelying stream + + + + Figure out whether it is necessary to reset timeout on stream. + We track the current value of timeout and try to avoid + changing it too often, because setting Read/WriteTimeout property + on network stream maybe a slow operation that involves a system call + (setsockopt). Therefore, we allow a small difference, and do not + reset timeout if current value is slightly greater than the requested + one (within 0.1 second). + + + + + Common handler for IO exceptions. + Resets timeout to infinity if timeout exception is + detected and stops the times. + + original exception + + + + Represents a SQL transaction to be made in a MySQL database. This class cannot be inherited. + + The application creates a MySqlTransaction object by calling + on the object. All subsequent operations associated with the + transaction (for example, committing or aborting the transaction), are performed on the + MySqlTransaction object. + + The following example creates a and a MySqlTransaction. + It also demonstrates how to use the , + , and methods. + + Public Sub RunTransaction(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + + Dim myCommand As MySqlCommand = myConnection.CreateCommand() + Dim myTrans As MySqlTransaction + + ' Start a local transaction + myTrans = myConnection.BeginTransaction() + ' Must assign both transaction object and connection + ' to Command object for a pending local transaction + myCommand.Connection = myConnection + myCommand.Transaction = myTrans + + Try + myCommand.CommandText = "Insert into Region (RegionID, RegionDescription) VALUES (100, 'Description')" + myCommand.ExecuteNonQuery() + myCommand.CommandText = "Insert into Region (RegionID, RegionDescription) VALUES (101, 'Description')" + myCommand.ExecuteNonQuery() + myTrans.Commit() + Console.WriteLine("Both records are written to database.") + Catch e As Exception + Try + myTrans.Rollback() + Catch ex As MySqlException + If Not myTrans.Connection Is Nothing Then + Console.WriteLine("An exception of type " & ex.GetType().ToString() & _ + " was encountered while attempting to roll back the transaction.") + End If + End Try + + Console.WriteLine("An exception of type " & e.GetType().ToString() & _ + "was encountered while inserting the data.") + Console.WriteLine("Neither record was written to database.") + Finally + myConnection.Close() + End Try + End Sub 'RunTransaction + + + public void RunTransaction(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + + MySqlCommand myCommand = myConnection.CreateCommand(); + MySqlTransaction myTrans; + + // Start a local transaction + myTrans = myConnection.BeginTransaction(); + // Must assign both transaction object and connection + // to Command object for a pending local transaction + myCommand.Connection = myConnection; + myCommand.Transaction = myTrans; + + try + { + myCommand.CommandText = "Insert into Region (RegionID, RegionDescription) VALUES (100, 'Description')"; + myCommand.ExecuteNonQuery(); + myCommand.CommandText = "Insert into Region (RegionID, RegionDescription) VALUES (101, 'Description')"; + myCommand.ExecuteNonQuery(); + myTrans.Commit(); + Console.WriteLine("Both records are written to database."); + } + catch(Exception e) + { + try + { + myTrans.Rollback(); + } + catch (MySqlException ex) + { + if (myTrans.Connection != null) + { + Console.WriteLine("An exception of type " + ex.GetType() + + " was encountered while attempting to roll back the transaction."); + } + } + + Console.WriteLine("An exception of type " + e.GetType() + + " was encountered while inserting the data."); + Console.WriteLine("Neither record was written to database."); + } + finally + { + myConnection.Close(); + } + } + + + + + + Gets the object associated with the transaction, or a null reference (Nothing in Visual Basic) if the transaction is no longer valid. + + The object associated with this transaction. + + A single application may have multiple database connections, each + with zero or more transactions. This property enables you to + determine the connection object associated with a particular + transaction created by . + + + + + Specifies the for this transaction. + + + The for this transaction. The default is ReadCommitted. + + + Parallel transactions are not supported. Therefore, the IsolationLevel + applies to the entire transaction. + + + + + Commits the database transaction. + + The Commit method is equivalent to the MySQL SQL statement + COMMIT. + + The following example creates a and a + . It also demonstrates how to use the + , , and Rollback + methods. + + Public Sub RunSqlTransaction(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + + Dim myCommand As MySqlCommand = myConnection.CreateCommand() + Dim myTrans As MySqlTransaction + + ' Start a local transaction + myTrans = myConnection.BeginTransaction() + + ' Must assign both transaction object and connection + ' to Command object for a pending local transaction + myCommand.Connection = myConnection + myCommand.Transaction = myTrans + + Try + myCommand.CommandText = "Insert into mytable (id, desc) VALUES (100, 'Description')" + myCommand.ExecuteNonQuery() + myCommand.CommandText = "Insert into mytable (id, desc) VALUES (101, 'Description')" + myCommand.ExecuteNonQuery() + myTrans.Commit() + Console.WriteLine("Success.") + Catch e As Exception + Try + myTrans.Rollback() + Catch ex As MySqlException + If Not myTrans.Connection Is Nothing Then + Console.WriteLine("An exception of type " & ex.GetType().ToString() & _ + " was encountered while attempting to roll back the transaction.") + End If + End Try + + Console.WriteLine("An exception of type " & e.GetType().ToString() & _ + "was encountered while inserting the data.") + Console.WriteLine("Neither record was written to database.") + Finally + myConnection.Close() + End Try + End Sub + + + public void RunSqlTransaction(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + + MySqlCommand myCommand = myConnection.CreateCommand(); + MySqlTransaction myTrans; + + // Start a local transaction + myTrans = myConnection.BeginTransaction(); + // Must assign both transaction object and connection + // to Command object for a pending local transaction + myCommand.Connection = myConnection; + myCommand.Transaction = myTrans; + + try + { + myCommand.CommandText = "Insert into mytable (id, desc) VALUES (100, 'Description')"; + myCommand.ExecuteNonQuery(); + myCommand.CommandText = "Insert into mytable (id, desc) VALUES (101, 'Description')"; + myCommand.ExecuteNonQuery(); + myTrans.Commit(); + Console.WriteLine("Both records are written to database."); + } + catch(Exception e) + { + try + { + myTrans.Rollback(); + } + catch (MySqlException ex) + { + if (myTrans.Connection != null) + { + Console.WriteLine("An exception of type " + ex.GetType() + + " was encountered while attempting to roll back the transaction."); + } + } + + Console.WriteLine("An exception of type " + e.GetType() + + " was encountered while inserting the data."); + Console.WriteLine("Neither record was written to database."); + } + finally + { + myConnection.Close(); + } + } + + + + + + Rolls back a transaction from a pending state. + + The Rollback method is equivalent to the MySQL statement ROLLBACK. + The transaction can only be rolled back from a pending state + (after BeginTransaction has been called, but before Commit is + called). + + The following example creates a and a + . It also demonstrates how to use the + , , and Rollback + methods. + + Public Sub RunSqlTransaction(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + + Dim myCommand As MySqlCommand = myConnection.CreateCommand() + Dim myTrans As MySqlTransaction + + ' Start a local transaction + myTrans = myConnection.BeginTransaction() + + ' Must assign both transaction object and connection + ' to Command object for a pending local transaction + myCommand.Connection = myConnection + myCommand.Transaction = myTrans + + Try + myCommand.CommandText = "Insert into mytable (id, desc) VALUES (100, 'Description')" + myCommand.ExecuteNonQuery() + myCommand.CommandText = "Insert into mytable (id, desc) VALUES (101, 'Description')" + myCommand.ExecuteNonQuery() + myTrans.Commit() + Console.WriteLine("Success.") + Catch e As Exception + Try + myTrans.Rollback() + Catch ex As MySqlException + If Not myTrans.Connection Is Nothing Then + Console.WriteLine("An exception of type " & ex.GetType().ToString() & _ + " was encountered while attempting to roll back the transaction.") + End If + End Try + + Console.WriteLine("An exception of type " & e.GetType().ToString() & _ + "was encountered while inserting the data.") + Console.WriteLine("Neither record was written to database.") + Finally + myConnection.Close() + End Try + End Sub + + + public void RunSqlTransaction(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + + MySqlCommand myCommand = myConnection.CreateCommand(); + MySqlTransaction myTrans; + + // Start a local transaction + myTrans = myConnection.BeginTransaction(); + // Must assign both transaction object and connection + // to Command object for a pending local transaction + myCommand.Connection = myConnection; + myCommand.Transaction = myTrans; + + try + { + myCommand.CommandText = "Insert into mytable (id, desc) VALUES (100, 'Description')"; + myCommand.ExecuteNonQuery(); + myCommand.CommandText = "Insert into mytable (id, desc) VALUES (101, 'Description')"; + myCommand.ExecuteNonQuery(); + myTrans.Commit(); + Console.WriteLine("Both records are written to database."); + } + catch(Exception e) + { + try + { + myTrans.Rollback(); + } + catch (MySqlException ex) + { + if (myTrans.Connection != null) + { + Console.WriteLine("An exception of type " + ex.GetType() + + " was encountered while attempting to roll back the transaction."); + } + } + + Console.WriteLine("An exception of type " + e.GetType() + + " was encountered while inserting the data."); + Console.WriteLine("Neither record was written to database."); + } + finally + { + myConnection.Close(); + } + } + + + + + + Defines the data type associated with a column. + + + + + This class is modeled after .NET Stopwatch. It provides better + performance (no system calls).It is however less precise than + .NET Stopwatch, measuring in milliseconds. It is adequate to use + when high-precision is not required (e.g for measuring IO timeouts), + but not for other tasks. + + + + + Wrapper around NetworkStream. + + MyNetworkStream is equivalent to NetworkStream, except + 1. It throws TimeoutException if read or write timeout occurs, instead + of IOException, to match behavior of other streams (named pipe and + shared memory). This property comes handy in TimedStream. + + 2. It implements workarounds for WSAEWOULDBLOCK errors, that can start + occuring after stream has times out. For a discussion about the CLR bug, + refer to http://tinyurl.com/lhgpyf. This error should never occur, as + we're not using asynchronous operations, but apparerntly it does occur + directly after timeout has expired. + The workaround is hinted in the URL above and implemented like this: + For each IO operation, if it throws WSAEWOULDBLOCK, we explicitely set + the socket to Blocking and retry the operation once again. + + + + + Set keepalive + timeout on socket. + + socket + keepalive timeout, in seconds + + + + Read a single quoted identifier from the stream + + + + + + + Helper class to encapsulate shared memory functionality + Also cares of proper cleanup of file mapping object and cew + + + + + Summary description for SharedMemoryStream. + + + + + By creating a private ctor, we keep the compiler from creating a default ctor + + + + + Mark - or + signs that are unary ops as no output + + + + + + Retrieve client SSL certificates. Dependent on connection string + settings we use either file or store based certificates. + + + + + Summary description for StreamCreator. + + + + + Set the keepalive timeout on the socket. + + The socket object. + The keepalive timeout, in seconds. + + + + Summary description for Version. + + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + + Looks up a localized string similar to Improper MySqlCommandBuilder state: adapter is null. + + + + + Looks up a localized string similar to Improper MySqlCommandBuilder state: adapter's SelectCommand is null. + + + + + Looks up a localized string similar to Invalid attempt to access a field before calling Read(). + + + + + Looks up a localized string similar to Authentication to host '{0}' for user '{1}' using method '{2}' failed with message: {3}. + + + + + Looks up a localized string similar to Authentication method '{0}' not supported by any of the available plugins.. + + + + + Looks up a localized string similar to Version string not in acceptable format. + + + + + Looks up a localized string similar to The buffer cannot be null. + + + + + Looks up a localized string similar to Buffer is not large enough. + + + + + Looks up a localized string similar to Canceling an executing query requires MySQL 5.0 or higher.. + + + + + Looks up a localized string similar to Canceling an active query is only supported on MySQL 5.0.0 and above. . + + + + + Looks up a localized string similar to Parameters can only be derived for commands using the StoredProcedure command type.. + + + + + Looks up a localized string similar to MySqlCommandBuilder does not support multi-table statements. + + + + + Looks up a localized string similar to MySqlCommandBuilder cannot operate on tables with no unique or key columns. + + + + + Looks up a localized string similar to Chaos isolation level is not supported . + + + + + Looks up a localized string similar to The CommandText property has not been properly initialized.. + + + + + Looks up a localized string similar to Compression is not supported.. + + + + + Looks up a localized string similar to The connection is already open.. + + + + + Looks up a localized string similar to Connection unexpectedly terminated.. + + + + + Looks up a localized string similar to Connection must be valid and open. + + + + + Looks up a localized string similar to The connection is not open.. + + + + + Looks up a localized string similar to The connection property has not been set or is null.. + + + + + Looks up a localized string similar to Could not find specified column in results: {0}. + + + + + Looks up a localized string similar to Count cannot be negative. + + + + + Looks up a localized string similar to SetLength is not a valid operation on CompressedStream. + + + + + Looks up a localized string similar to The given value was not in a supported format.. + + + + + Looks up a localized string similar to There is already an open DataReader associated with this Connection which must be closed first.. + + + + + Looks up a localized string similar to The default connection encoding was not found. Please report this as a bug along with your connection string and system details.. + + + + + Looks up a localized string similar to MySQL Connector/NET does not currently support distributed transactions.. + + + + + Looks up a localized string similar to SSL connection option '{0}' is duplicated.. + + + + + Looks up a localized string similar to Error creating socket connection. + + + + + Looks up a localized string similar to Fatal error encountered during command execution.. + + + + + Looks up a localized string similar to Fatal error encountered during data read.. + + + + + Looks up a localized string similar to Fatal error encountered attempting to read the resultset.. + + + + + Looks up a localized string similar to File based certificates are only supported when connecting to MySQL Server 5.1 or greater.. + + + + + Looks up a localized string similar to From index and length use more bytes than from contains. + + + + + Looks up a localized string similar to From index must be a valid index inside the from buffer. + + + + + Looks up a localized string similar to Call to GetHostEntry failed after {0} while querying for hostname '{1}': SocketErrorCode={2}, ErrorCode={3}, NativeErrorCode={4}.. + + + + + Looks up a localized string similar to Retrieving procedure metadata for {0} from server.. + + + + + Looks up a localized string similar to Value has an unsupported format.. + + + + + Looks up a localized string similar to An incorrect response was received from the server.. + + + + + Looks up a localized string similar to Index and length use more bytes than to has room for. + + + + + Looks up a localized string similar to Index must be a valid position in the buffer. + + + + + Looks up a localized string similar to You have specified an invalid column ordinal.. + + + + + Looks up a localized string similar to The requested value '{0}' is invalid for the given keyword '{1}'.. + + + + + Looks up a localized string similar to Microsecond must be a value between 0 and 999999.. + + + + + Looks up a localized string similar to Millisecond must be a value between 0 and 999. For more precision use Microsecond.. + + + + + Looks up a localized string similar to No other SSL options are accepted when SSL Mode is set to None.. + + + + + Looks up a localized string similar to Procedure or function '{0}' cannot be found in database '{1}'.. + + + + + Looks up a localized string similar to '{0}' is an illegal value for a boolean option.. + + + + + Looks up a localized string similar to Keyword does not allow null values.. + + + + + Looks up a localized string similar to Option not supported.. + + + + + Looks up a localized string similar to ACCESSIBLE + ADD + ALL + ALTER + ANALYZE + AND + AS + ASC + ASENSITIVE + BEFORE + BEGIN + BETWEEN + BIGINT + BINARY + BLOB + BOTH + BY + CALL + CASCADE + CASE + CHANGE + CHAR + CHARACTER + CHECK + COLLATE + COLUMN + COMMIT + CONDITION + CONNECTION + CONSTRAINT + CONTINUE + CONVERT + CREATE + CROSS + CURRENT_DATE + CURRENT_TIME + CURRENT_TIMESTAMP + CURRENT_USER + CURSOR + DATABASE + DATABASES + DAY_HOUR + DAY_MICROSECOND + DAY_MINUTE + DAY_SECOND + DEC + DECIMAL + DECLARE + DEFAULT + DELAYED + DELETE + DESC + DESCRIBE + DETERMINISTIC + DISTINCT + DISTINCTROW + D [rest of string was truncated]";. + + + + + Looks up a localized string similar to Mixing named and unnamed parameters is not allowed.. + + + + + Looks up a localized string similar to INTERNAL ERROR: More than one output parameter row detected.. + + + + + Looks up a localized string similar to Multiple simultaneous connections or connections with different connection strings inside the same transaction are not currently supported.. + + + + + Looks up a localized string similar to NamedPipeStream does not support seeking. + + + + + Looks up a localized string similar to NamedPipeStream doesn't support SetLength. + + + + + Looks up a localized string similar to The new value must be a MySqlParameter object.. + + + + + Looks up a localized string similar to Invalid attempt to call NextResult when the reader is closed.. + + + + + Looks up a localized string similar to When calling stored procedures and 'Use Procedure Bodies' is false, all parameters must have their type explicitly set.. + + + + + Looks up a localized string similar to Nested transactions are not supported.. + + + + + Looks up a localized string similar to The host {0} does not support SSL connections.. + + + + + Looks up a localized string similar to Unix sockets are not supported on Windows.. + + + + + Looks up a localized string similar to Cannot retrieve Windows identity for current user. Connections that use IntegratedSecurity cannot be pooled. Use either 'ConnectionReset=true' or 'Pooling=false' in the connection string to fix.. + + + + + Looks up a localized string similar to The object is not open or has been disposed.. + + + + + Looks up a localized string similar to Offset cannot be negative. + + + + + Looks up a localized string similar to Offset must be a valid position in buffer. + + + + + Looks up a localized string similar to Authentication with old password no longer supported, use 4.1 style passwords.. + + + + + Looks up a localized string similar to The option '{0}' is not currently supported.. + + + + + Looks up a localized string similar to Parameter '{0}' has already been defined.. + + + + + Looks up a localized string similar to Parameter cannot have a negative value. + + + + + Looks up a localized string similar to Parameter cannot be null. + + + + + Looks up a localized string similar to Parameter index was not found in Parameter Collection.. + + + + + Looks up a localized string similar to Parameter is invalid.. + + + + + Looks up a localized string similar to Parameter '{0}' must be defined.. + + + + + Looks up a localized string similar to Parameter '{0}' was not found during prepare.. + + + + + Looks up a localized string similar to Parameter can't be null or empty.. + + + + + Looks up a localized string similar to Password must be valid and contain length characters. + + + + + Looks up a localized string similar to This category includes a series of counters for MySQL. + + + + + Looks up a localized string similar to .NET Data Provider for MySQL. + + + + + Looks up a localized string similar to The number of times a procedures metadata had to be queried from the server.. + + + + + Looks up a localized string similar to Hard Procedure Queries. + + + + + Looks up a localized string similar to The number of times a procedures metadata was retrieved from the client-side cache.. + + + + + Looks up a localized string similar to Soft Procedure Queries. + + + + + Looks up a localized string similar to same name are not supported.. + + + + + Looks up a localized string similar to Packets larger than max_allowed_packet are not allowed.. + + + + + Looks up a localized string similar to Reading from the stream has failed.. + + + + + Looks up a localized string similar to Invalid attempt to read a prior column using SequentialAccess. + + + + + Looks up a localized string similar to Replicated connections allow only readonly statements.. + + + + + Looks up a localized string similar to Attempt to connect to '{0}' server failed.. + + + + + Looks up a localized string similar to No available server found.. + + + + + Looks up a localized string similar to Replication group '{0}' not found.. + + + + + Looks up a localized string similar to Replicated server not found: '{0}'. + + + + + Looks up a localized string similar to Routine '{0}' cannot be found. Either check the spelling or make sure you have sufficient rights to execute the routine.. + + + + + Looks up a localized string similar to Attempt to call stored function '{0}' without specifying a return parameter. + + + + + Looks up a localized string similar to Retrieval of the RSA public key is not enabled for insecure connections.. + + + + + Looks up a localized string similar to Connector/NET no longer supports server versions prior to 5.0. + + + + + Looks up a localized string similar to Snapshot isolation level is not supported.. + + + + + Looks up a localized string similar to Socket streams do not support seeking. + + + + + Looks up a localized string similar to Retrieving procedure metadata for {0} from procedure cache.. + + + + + Looks up a localized string similar to Stored procedures are not supported on this version of MySQL. + + + + + Looks up a localized string similar to SSL Connection error.. + + + + + Looks up a localized string similar to The stream has already been closed. + + + + + Looks up a localized string similar to The stream does not support reading. + + + + + Looks up a localized string similar to The stream does not support writing. + + + + + Looks up a localized string similar to String can't be empty.. + + + + + Looks up a localized string similar to Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.. + + + + + Looks up a localized string similar to error connecting: Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached.. + + + + + Looks up a localized string similar to {0}: Connection Closed. + + + + + Looks up a localized string similar to Unable to trace. There are more than Int32.MaxValue connections in use.. + + + + + Looks up a localized string similar to {0}: Error encountered during row fetch. Number = {1}, Message={2}. + + + + + Looks up a localized string similar to {0}: Connection Opened: connection string = '{1}'. + + + + + Looks up a localized string similar to {0}: Error encountered attempting to open result: Number={1}, Message={2}. + + + + + Looks up a localized string similar to {0}: Query Closed. + + + + + Looks up a localized string similar to {0}: Query Normalized: {2}. + + + + + Looks up a localized string similar to {0}: Query Opened: {2}. + + + + + Looks up a localized string similar to {0}: Resultset Opened: field(s) = {1}, affected rows = {2}, inserted id = {3}. + + + + + Looks up a localized string similar to {0}: Resultset Closed. Total rows={1}, skipped rows={2}, size (bytes)={3}. + + + + + Looks up a localized string similar to {0}: Set Database: {1}. + + + + + Looks up a localized string similar to {0}: Statement closed: statement id = {1}. + + + + + Looks up a localized string similar to {0}: Statement executed: statement id = {1}. + + + + + Looks up a localized string similar to {0}: Statement prepared: sql='{1}', statement id={2}. + + + + + Looks up a localized string similar to {0}: Usage Advisor Warning: Query is using a bad index. + + + + + Looks up a localized string similar to {0}: Usage Advisor Warning: The field '{2}' was converted to the following types: {3}. + + + + + Looks up a localized string similar to {0}: Usage Advisor Warning: Query does not use an index. + + + + + Looks up a localized string similar to {0}: Usage Advisor Warning: The following columns were not accessed: {2}. + + + + + Looks up a localized string similar to {0}: Usage Advisor Warning: Skipped {2} rows. Consider a more focused query.. + + + + + Looks up a localized string similar to {0}: MySql Warning: Level={1}, Code={2}, Message={3}. + + + + + Looks up a localized string similar to Type '{0}' is not derived from BaseCommandInterceptor. + + + + + Looks up a localized string similar to Type '{0}' is not derived from BaseExceptionInterceptor. + + + + + Looks up a localized string similar to Unable to connect to any of the specified MySQL hosts.. + + + + + Looks up a localized string similar to Unable to create plugin for authentication method '{0}'. Please see inner exception for details.. + + + + + Looks up a localized string similar to Unable to derive stored routine parameters. The 'Parameters' information schema table is not available and access to the stored procedure body has been disabled.. + + + + + Looks up a localized string similar to Unable to enable query analysis. Be sure the MySql.Data.EMTrace assembly is properly located and registered.. + + + + + Looks up a localized string similar to An error occured attempting to enumerate the user-defined functions. Do you have SELECT privileges on the mysql.func table?. + + + + + Looks up a localized string similar to Unable to execute stored procedure '{0}'.. + + + + + Looks up a localized string similar to There was an error parsing the foreign key definition.. + + + + + Looks up a localized string similar to Error encountered reading the RSA public key.. + + + + + Looks up a localized string similar to Unable to retrieve stored procedure metadata for routine '{0}'. Either grant SELECT privilege to mysql.proc for this user or use "check parameters=false" with your connection string.. + + + + + Looks up a localized string similar to Unable to start a second async operation while one is running.. + + + + + Looks up a localized string similar to Unix sockets are not supported on Windows. + + + + + Looks up a localized string similar to Unknown authentication method '{0}' was requested.. + + + + + Looks up a localized string similar to Unknown connection protocol. + + + + + Looks up a localized string similar to Value '{0}' is not of the correct type.. + + + + + Looks up a localized string similar to The requested column value could not be treated as or conveted to a Guid.. + + + + + Looks up a localized string similar to Windows authentication connections are not supported on {0}. + + + + + Looks up a localized string similar to Writing to the stream failed.. + + + + + Looks up a localized string similar to Parameter '{0}' is not found but a parameter with the name '{1}' is found. Parameter names must include the leading parameter marker.. + + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + + Looks up a localized string similar to Appdata path is not defined.. + + + + + Looks up a localized string similar to Authentication failed using MYSQL41 and SHA256_MEMORY. Check the user name and password or try using a secure connection.. + + + + + Looks up a localized string similar to This feature is currently not supported.. + + + + + Looks up a localized string similar to This functionality is only supported in MySQL {0} and higher.. + + + + + Looks up a localized string similar to Collation with id '{0}' not found.. + + + + + Looks up a localized string similar to Connection Data is incorrect.. + + + + + Looks up a localized string similar to The connection string is invalid.. + + + + + Looks up a localized string similar to '{0}' is not a valid connection string attribute.. + + + + + Looks up a localized string similar to Decimal (BCD) format is invalid.. + + + + + Looks up a localized string similar to Field type with name '{0}' not found.. + + + + + Looks up a localized string similar to Index type with name '{0}' not found.. + + + + + Looks up a localized string similar to {0} is not a valid column name in the row.. + + + + + Looks up a localized string similar to {0} is not a valid index for the row.. + + + + + Looks up a localized string similar to Invalid Uri . + + + + + Looks up a localized string similar to Invalid uri query value. + + + + + Looks up a localized string similar to Json configuration must contain 'uri' or 'host' but not both.. + + + + + Looks up a localized string similar to Keyword '{0}' not found.. + + + + + Looks up a localized string similar to Keyword not supported.. + + + + + Looks up a localized string similar to Field '{0}' is mandatory.. + + + + + Looks up a localized string similar to More than one document id was generated. Please use the DocumentIds property instead.. + + + + + Looks up a localized string similar to There is no data at index {0}. + + + + + Looks up a localized string similar to No 'host' has been specified.. + + + + + Looks up a localized string similar to No more data in resultset.. + + + + + Looks up a localized string similar to Object '{0}' not found. + + + + + Looks up a localized string similar to No placeholders.. + + + + + Looks up a localized string similar to {0} must be a value greater than 0.. + + + + + Looks up a localized string similar to Path not found '{0}'.. + + + + + Looks up a localized string similar to Providing a port number as part of the host address isn't supported when using connection strings in basic format or anonymous objects. Use URI format instead.. + + + + + Looks up a localized string similar to You must either assign no priority to any of the hosts or give a priority for every host.. + + + + + Looks up a localized string similar to The priority must be between 0 and 100.. + + + + + Looks up a localized string similar to ProgramData path is not defined.. + + + + + Looks up a localized string similar to Removing a document from a collection requires an _id property.. + + + + + Looks up a localized string similar to The process of closing the resultset and resulted in results being lost.. + + + + + Looks up a localized string similar to Unable to connect to any specified host.. + + + + + Looks up a localized string similar to Unable to read or decode data value.. + + + + + Looks up a localized string similar to Unexpected end of packet found while reading data values. + + + + + Looks up a localized string similar to Field name '{0}' is not allowed.. + + + + + Looks up a localized string similar to Unknown placeholder :{0}. + + + + + Looks up a localized string similar to Value '{0}' is not of the correct type.. + + + + + Summary description for MySqlUInt64. + + + + + An exception thrown by MySQL when a type conversion does not succeed. + + + + Initializes a new instance of the class with a specified error message. + Message describing the error. + + + + Represents a datetime data type object in a MySql database. + + + + + Defines whether the UTF or local timezone will be used. + + + + + Constructs a new MySqlDateTime object by setting the individual time properties to + the given values. + + The year to use. + The month to use. + The day to use. + The hour to use. + The minute to use. + The second to use. + The microsecond to use. + + + + Constructs a new MySqlDateTime object by using values from the given object. + + The object to copy. + + + + Constructs a new MySqlDateTime object by copying the current value of the given object. + + The MySqlDateTime object to copy. + + + + Enables the contruction of a MySqlDateTime object by parsing a string. + + + + + Indicates if this object contains a value that can be represented as a DateTime + + + + Returns the year portion of this datetime + + + Returns the month portion of this datetime + + + Returns the day portion of this datetime + + + Returns the hour portion of this datetime + + + Returns the minute portion of this datetime + + + Returns the second portion of this datetime + + + + Returns the milliseconds portion of this datetime + expressed as a value between 0 and 999 + + + + + Returns the microseconds portion of this datetime (6 digit precision) + + + + + Returns true if this datetime object has a null value + + + + + Retrieves the value of this as a DateTime object. + + + + Returns this value as a DateTime + + + Returns a MySQL specific string representation of this value + + + + + + + + + Represents a decimal data type object in a MySql database. + + + + + Gets a boolean value signaling if the type is null. + + + + + Gets or sets the decimal precision of the type. + + + + + Gets or sets the scale of the type. + + + + + Gets the decimal value associated to this type. + + + + + Converts this decimal value to a double value. + + The value of this type converted to a dobule value. + + + + Represents a geometry data type object in a MySql database. + + + + + Gets the x coordinate. + + + + + Gets the y coordinate. + + + + + Gets the SRID value. + + + + + Gets a boolean value that signals if the type is null. + + + + + Gets the value associated to this type. + + + + Returns the Well-Known Text representation of this value + POINT({0} {1})", longitude, latitude + http://dev.mysql.com/doc/refman/4.1/en/gis-wkt-format.html + + + + Get value from WKT format + SRID=0;POINT (x y) or POINT (x y) + + WKT string format + + + + Try to get value from WKT format + SRID=0;POINT (x y) or POINT (x y) + + WKT string format + Out mysqlGeometryValue + + + + Sets the DSInfo when GetSchema is called for the DataSourceInformation collection. + + The schema collection. + + + + Gets the well-known text representation of the geomtry object. + + A string representation of the WKT. + + + + Implementation of EXTERNAL authentication type. + + + + + Implementation of MySQL41 authentication type. + + + + + Implementation of PLAIN authentication type. + + + + + Compares two Guids in string format. + + The first string to compare. + The first string to compare. + An integer that indicates the lexical relationship between the two comparands, similar to + + + + Compares two objects. + + The first to compare. + The second to compare. + An integer that indicates the lexical relationship between the two comparands, similar to + + + + Gets and sets the host list. + + + + + Gets the active host. + + + + + Active host. + + + + + Sets the initial active host. + + + + + Determines the next host. + + object that represents the next available host. + + + + Implements common elements that allow to manage the hosts available for client side failover. + + + + + Gets and sets the failover group which consists of a host list. + + + + + Resets the manager. + + + + + Sets the host list to be used during failover operations. + + The host list. + The failover method. + + + + Attempts to establish a connection to a host specified from the list. + + The original connection string set by the user. + An out parameter that stores the updated connection string. + An instance if the connection was succesfully established, a exception is thrown otherwise. + + + + Attempts the next host in the list. Moves to the first element if the end of the list is reached. + + + + + Determines the next host on which to attempt a connection by checking the value of the Priority property in descending order. + + + + + Manages the hosts available for client side failover using the Sequential Failover method. + The Sequential Failover method attempts to connect to the hosts specified in the list one after another until the initial host is reached. + + + + + The index of the current host. + + + + + Sets the initial active host. + + + + + Determines the next host. + + A object that represents the next available host. + + + + Depicts a host which can be failed over to. + + + + + Gets and sets the name or address of the host. + + + + + Gets and sets the port number. + + + + + Gets a value between 0 and 100 which represents the priority of the host. + + + + + Flag to indicate if this host is currently being used. + + + + + Abstract class for the protocol base operations in client/server communication. + + + + + + Reads a row from the base result. + + The base result to be queried. + A list containing a byte representation of the value for each field found in the row. + + + + Executes an SQL statement. + + The statement to be executed. + The arguments associated to the SQL statement. + + + + Determines if the base result contains retrievable items. + + The base result to be queried. + true if the base result contains data; otherwise, false. + + + + Loads metadata associated to the retrieved columns. + + A list of Column objects containing metadata for each column. + + + + Closes the base result preventing the retrieval of data. + + The base result to close. + + + Expression parser for MySQL-X protocol. + + + string being parsed. + + + Token stream produced by lexer. + + + Parser's position in token stream. + + + Mapping of names to positions for named placeholders. Used for both string values ":arg" and numeric values ":2". + + + Number of positional placeholders. + + + Are relational columns identifiers allowed? + + + Token types used by the lexer. + + + Token. Includes type and string value of the token. + + + Mapping of reserved words to token types. + + + Does the next character equal the given character? (respects bounds) + + + Helper function to match integer or floating point numbers. This function should be called when the position is on the first character of the number (a + digit or '.'). + + @param i The current position in the string + @return the next position in the string after the number. + + + Lexer for MySQL-X expression language. + + + Assert that the token at pos is of type type. + + + Does the current token have type `t'? + + + Does the next token have type `t'? + + + Does the token at position `pos' have type `t'? + + + Consume token. + + @return the string value of the consumed token + + + Parse a paren-enclosed expression list. This is used for function params or IN params. + + @return a List of expressions + + + Parse a function call of the form: IDENTIFIER PAREN_EXPR_LIST. + + @return an Expr representing the function call. + + + Parse an identifier for a function call: [schema.]name + + + Parse a document path member. + + + Parse a document path array index. + + + Parse a JSON-style document path, like WL#7909, but prefix by @. instead of $. + + + Parse a document field. + + + Parse a column identifier (which may optionally include a JSON document path). + + + Build a unary operator expression. + + + Parse an atomic expression. (c.f. grammar at top) + + + Parse a left-associated binary operator. + + @param types + The token types that denote this operator. + @param innerParser + The inner parser that should be called to parse operands. + @return an expression tree of the binary operator or a single operand + + + Parse the entire string as an expression. + + @return an X-protocol expression tree + + + + Parse an ORDER BY specification which is a comma-separated list of expressions, each may be optionally suffixed by ASC/DESC. + + + Parse a SELECT projection which is a comma-separated list of expressions, each optionally suffixed with a target alias. + + + Parse an INSERT field name. + @todo unit test + + + Parse an UPDATE field which can include can document paths. + + + Parse a document projection which is similar to SELECT but with document paths as the target alias. + + + Parse a list of expressions used for GROUP BY. + + + @return the number of positional placeholders in the expression. + + + @return a mapping of parameter names to positions. + + + Proto-buf helper to build a LITERAL Expr with a Scalar NULL type. + + + Proto-buf helper to build a LITERAL Expr with a Scalar DOUBLE type (wrapped in Any). + + + Proto-buf helper to build a LITERAL Expr with a Scalar SINT (signed int) type (wrapped in Any). + + + Proto-buf helper to build a LITERAL Expr with a Scalar UINT (unsigned int) type (wrapped in Any). + + + Proto-buf helper to build a LITERAL Expr with a Scalar STRING type (wrapped in Any). + + + Proto-buf helper to build a LITERAL Expr with a Scalar OCTETS type (wrapped in Any). + + + Proto-buf helper to build a LITERAL Expr with a Scalar BOOL type (wrapped in Any). + + + Wrap an Any value in a LITERAL expression. + + + Build an Any with a string value. + + + + Parses an anonymous object into a dictionary. + + The object to parse. + A dictionary if the provided object is an anonymous object; otherwise, null. + + + List of operators which will be serialized as infix operators. + + + Scalar to string. + + + JSON document path to string. + + + Column identifier (or JSON path) to string. + + + Function call to string. + + + Create a string from a list of (already stringified) parameters. Surround by parens and separate by commas. + + + Convert an operator to a string. Includes special cases for chosen infix operators (AND, OR) and special forms such as LIKE and BETWEEN. + + + Escape a string literal. + + + Quote a named identifer. + + + Serialize an expression to a string. + + + + Sends the delete documents message + + + + + Sends the CRUD modify message + + + + + Class implementation for a default communication kind. + + + + + Constructor method for the communication routing service + + A MySqlXConnectionStringBuilder setted with the information to use in the connection + + + + Gets the current connection base on the connection mode + + One of the values of ConnectionMode Offline, ReadOnly, WriteOnly, ReadWrite + + + + + Abstract class used to define the kind of server in environments with multiple types of distributed systems. + + + + + Main class for parsing json strings. + + + + + Initializes a new instance of the JsonParser class. + + + + + Parses the received string into a dictionary. + + The string to parse. + A object that represents the parsed string. + + + + Abstract class to manage and encapsulate one or more actual connections. + + + + + Creates a new session object with the values of the settings parameter. + + Settings to be used in the session object + + + + Sets the connection's charset default collation. + + The opened session. + The character set. + + + + Gets the version of the server. + + An instance of containing the server version. + + + + Implementation class for object that manages low-level work of queuing tasks onto threads. + + + + + Implementation class of InternalSession to manage connections using the Xprotocol type object. + + + + + Represents a base class for a Session. + + + + + Gets the connection settings for this session. + + + + + Gets the currently active schema. + + + + + Gets the default schema provided when creating the session. + + + + + Gets the connection uri representation of the connection options provided during the creation of the session. + + + + + Initializes a new instance of the BaseSession class based on the specified connection string. + + The connection used to create the session. + is null. + Unable to parse the when + in URI format. + + When using Unix sockets the protocol=unix or protocol=unixsocket connection option is required. + This will enable elements passed in the server connection option to be treated as Unix sockets. The user is also required + to explicitly set sslmode to none since X Plugin does not support SSL when using Unix sockets. Note that + protocol=unix and protocol=unixsocket are synonyms. +   + Multiple hosts can be specified as part of the , + which will enable client side failover when trying to establish a connection. +   + Connection string examples (in URI format): + - mysqlx://test:test@[192.1.10.10,localhost] + - mysqlx://test:test@[192.1.10.10,127.0.0.1] + - mysqlx://root:@[../tmp/mysqlx.sock,/tmp/mysqld.sock]?protocol=unix&sslmode=none + - mysqlx://test:test@[192.1.10.10:33060,127.0.0.1:33060] + - mysqlx://test:test@[192.1.10.10,120.0.0.2:22000,[::1]:33060]/test?connectiontimeout=10 + - mysqlx://test:test@[(address=server.example,priority=20),(address=127.0.0.1,priority=100)] + - mysqlx://test:test@[(address=server.example,priority=100),(address=127.0.0.1,priority=75),(address=192.0.10.56,priority=25)] + +   + Connection string examples (in basic format): + - server=10.10.10.10,localhost;port=33060;uid=test;password=test; + - host=10.10.10.10,192.101.10.2,localhost;port=5202;uid=test;password=test; + - host=./tmp/mysqld.sock,/var/run/mysqldx.sock;port=5202;uid=root;protocol=unix;sslmode=none; + - server=(address=server.example,priority=20),(address=127.0.0.1,priority=100);port=33060;uid=test;password=test; + - server=(address=server.example,priority=100),(address=127.0.0.1,priority=75),(address=192.0.10.56,priority=25);port=33060;uid=test;password=test; + +   + Failover methods + - Sequential: Connection attempts will be performed in a sequential order, that is, one after another until + a connection is successful or all the elements from the list have been tried. + + - Priority based: If a priority is provided, the connection attemps will be performed in descending order, starting + with the host with the highest priority. Priority must be a value between 0 and 100. Additionally, it is required to either + give a priority for every host or no priority to any host. + + + + + + Initializes a new instance of the BaseSession class based on the specified anonymous type object. + + The connection data as an anonymous type used to create the session. + is null. + + Multiple hosts can be specified as part of the , which will enable client-side failover when trying to + establish a connection. +   + To assign multiple hosts create a property similar to the connection string examples (in basic format) shown in + . Note that the value of the property must be a string. + + + + + + Drops the database/schema with the given name. + + The name of the schema. + is null. + + + + Creates a schema/database with the given name. + + The name of the schema/database. + A object that matches the recently created schema/database. + + + + Gets the schema with the given name. + + The name of the schema. + A object set with the provided schema name. + + + + Gets a list of schemas/databases in this session. + + A list containing all existing schemas/databases. + + + + Starts a new transaction. + + + + + Commits the current transaction. + + A object containing the results of the commit operation. + + + + Rolls back the current transaction. + + + + + Closes this session. + + + + + Sets a transaction savepoint with an autogenerated name. + + The autogenerated name of the transaction savepoint. + + + + Sets a named transaction savepoint. + + The name of the transaction savepoint. + The name of the transaction savepoint. + + + + Removes the named savepoint from the set of savepoints within the current transaction. + + The name of the transaction savepoint. + + + + Rolls back a transaction to the named savepoint without terminating the transaction. + + The name of the transaction savepoint. + + + + Parses the connection string. + + The connection string in basic or URI format. + An updated connection string in basic format. + The format (basic or URI) of the connection string is determined as well as the + prescence of multiple hosts. + + + + Parses a connection string in URI format. + + The connection string to parse. + A connection string in basic format. + + + + Validates if the string provided is a Unix socket. + + The Unix socket to evaluate. + true if is a valid Unix socket; otherwise, false. + + + + Converts the URI object into a connection string in basic format. + + An instance with the values for the provided connection options. + The path of the Unix socket. + if true the will replace the value for the server connection option; otherwise, false + A connection string in basic format. + + + + Parses a connection string in basic format. + + The connection string to parse. + The parsed connection string. + + + + Initializes the if more than one host is found. + + A string containing an unparsed host list. + True if the connection string is in URI format, false otherwise. + The number of hosts found, -1 if an error was raised during parsing. + + + + Creates a object based on the provided parameters. + + The host string which can be a simple host name or a host name and port. + True if the connection string is in URI format, false otherwise. + The priority of the host. + The port number of the host. + + + + + Normalizes the Unix socket by removing leading and ending parenthesis as well as removing special characters. + + The Unix socket to normalize. + A normalized Unix socket. + + + + Disposes the current object. Disposes of the managed state if the flag is set to true. + + Flag to indicate if the managed state is to be disposed. + + + + Disposes the current object. Code added to correctly implement the disposable pattern. + + + + + Describes the state of the session. + + + + + The session is closed. + + + + + The session is open. + + + + + The session object is connecting to the data source. + + + + + The session object is executing a command. + + + + + Represents a collection of documents. + + + + + Creates an containing the provided objects that can be used to add + one or more items to a collection. + + The objects to add. + An object containing the objects to add. + is null. + This method can take anonymous objects, domain objects, or just plain JSON strings. + The statement can be further modified before execution. + + + + Creates a with the given condition that can be used to remove + one or more documents from a collection.The statement can then be further modified before execution. + + The condition to match documents. + A object set with the given condition. + is null or white space. + The statement can then be further modified before execution. + + + + Creates a with the given identifier that can be used to remove a single + document from a collection. + + The identifier to match the document. + A object set with the given identifier. + The statement can then be further modified before execution. + + + + Creates a containing the identifier of the provided document that can + be used to remove a single document from a collection. + + The representing the document to remove. + A object set with the given document's identifier. + No identifier for the document was provided. + The remove statement can then be further modified before execution. + + + + Removes the document with the given identifier. + + The unique identifier of the document to replace. + A object containing the results of the execution. + is null or white space. + This is a direct execution method. + + + + Creates a with the given condition that can be used to modify one or more + documents from a collection. + + The condition to match documents. + A object set with the given condition. + is null or white space. + The statement can then be further modified before execution. + + + + Replaces the document matching the given identifier. + + The unique identifier of the document to replace. + The document to replace the matching document. + A object containing the results of the execution. + is null or whitespace. + is null. + This is a direct execution method. Operation succeeds even if no matching document was found; + in which case, the Result.RecordsAffected property is zero. If the new document contains an identifier, the value + is ignored. + + + + Adds the given document to the collection unless the identifier or any other field that has a unique index + already exists, in which case it will update the matching document. + + The unique identifier of the document to replace. + The document to replace the matching document. + A object containing the results of the execution. + The server version is lower than 8.0.3. + is null or white space. + is null. + The is different from the one in . + This is a direct execution method. + + + + Returns the number of documents in this collection on the server. + + The number of documents found. + + + + Creates a with the given condition which can be used to find documents in a + collection. + + An optional condition to match documents. + A object set with the given condition. + The statement can then be further modified before execution. + + + + Creates an index based on the properties provided in the JSON document. + + The index name. + JSON document describing the index to be created. + + is a JSON document with the following fields: + + - fields: array of IndexField objects, each describing a single document member to be + included in the index (see below). + - type: string, (optional) the type of index. One of INDEX or SPATIAL. Default is INDEX and may + be omitted. + +   + A single IndexField description consists of the following fields: + + - field: string, the full document path to the document member or field to be indexed. + - type: string, one of the supported SQL column types to map the field into (see the following list). + For numeric types, the optional UNSIGNED keyword may follow. For the TEXT type, the length to consider for + indexing may be added. + - required: bool, (optional) true if the field is required to exist in the document. defaults to + false, except for GEOJSON where it defaults to true. + - options: int, (optional) special option flags for use when decoding GEOJSON data. + - srid: int, (optional) srid value for use when decoding GEOJSON data. + +   + Supported SQL column types: + + - INT [UNSIGNED] + - TINYINT [UNSIGNED] + - SMALLINT [UNSIGNED] + - MEDIUMINT [UNSIGNED] + - INTEGER [UNSIGNED] + - BIGINT [UNSIGNED] + - REAL [UNSIGNED] + - FLOAT [UNSIGNED] + - DOUBLE [UNSIGNED] + - DECIMAL [UNSIGNED] + - NUMERIC [UNSIGNED] + - DATE + - TIME + - TIMESTAMP + - DATETIME + - TEXT[(length)] + - GEOJSON (extra options: options, srid) + + + + + + Drops a collection index. + + The index name. + is null or white space. + + + + Verifies if the current collection exists in the server schema. + + true if the collection exists; otherwise, false. + + + + Returns the document with the given identifier. + + The unique identifier of the document to replace. + A object if a document matching given identifier exists; otherwise, null. + is null or white space. + This is a direct execution method. + + + + Base abstract class that defines elements inherited by all result types. + + + + + Gets the number of records affected by the statement that generated this result. + + + + + Gets the object of the session. + + + + + Gets a read-only collection of objects derived from statement execution. + + + + + Gets the number of warnings in the collection derived from statement execution. + + + + + Gets the number of warnings in the collection derived from statement execution. + + + + + No action is performed by this method. It is intended to be overriden by child classes if required. + + + + + Base abstract class for API statement. + + + + + + Initializes a new instance of the BaseStatement class based on the specified session. + + The session where the statement will be executed. + + + + Gets the that owns the statement. + + + + + Executes the base statements. This method is intended to be defined by child classes. + + A result object containing the details of the execution. + + + + Executes a statement asynchronously. + + A result object containing the details of the execution. + + + + Abstract class for buffered results. + + Generic result type. + + + + Index of the current item. + + + + + List of generic items in this buffered result. + + + + + Flag that indicates if all items have been read. + + + + + Gets a dictionary containing the column names and their index. + + + + + Gets the page size set for this buffered result. + + + + + Loads the column data into the field. + + + + + Retrieves a read-only list of the generic items associated to this buffered result. + + A generic list representing items in this buffered result. + + + + Retrieves one element from the generic items associated to this buffered result. + + A generic object that corresponds to the current or default item. + + + + Determines if all items have already been read. + + True if all items have been retrived, false otherwise. + + + + Gets the current item. + + All items have already been read. + + + + Determines if all items have already been read. + + True if all items have been retrived, false otherwise. + + + + Resets the value of the field to zero. + + + + + Gets an representation of this object. + + An representation of this object. + + + + Gets an representation of this object. + + An representation of this object. + + + + Retrieves a read-only list of the generic items associated to this buffered result. + + A generic list representing items in this buffered result. + + + + No body has been defined for this method. + + + + + Class to represent an error in this result. + + + + + Numeric code. + + + + + Return code indicating the outcome of the executed SQL statement. + + + + + Error message. + + + + + Initializes a new instance of the ErrorInfo class. + + + + + Abstract class for filterable statements. + + The filterable statement. + The database object. + The type of result. + + + + Initializes a new instance of the FiltarableStatement class based on the target and condition. + + The database object. + The optional filter condition. + + + + Allows the user to set the where condition for this operation. + + The Where condition. + The implementing statement type. + + + + Sets the number of items to be returned by the operation. + + The number of items to be returned. + The implementing statement type. + is equal or lower than 0. + + + + Sets the number of items to be skipped before including them into the result. + + The number of items to be skipped. + The implementing statement type. + + + + Binds the parameter values in filter expression. + + The parameter name. + The value of the parameter. + A generic object representing the implementing statement type. + + + + Binds the parameter values in filter expression. + + The parameters as a DbDoc object. + A generic object representing the implementing statement type. + + + + Binds the parameter values in filter expression. + + The parameters as a JSON string. + The implementing statement type. + + + + Binds the parameter values in filter expression. + + The parameters as an anonymous object: new { param1 = value1, param2 = value2, ... }. + The implementing statement type. + + + + Executes the statement. + + The function to execute. + The generic object to use. + A generic result object containing the results of the execution. + + + + Clones the filterable data but Session and Target remain the + same. + + A clone of this filterable statement. + + + + Represents a general statement result. + + + + + Gets the number of records affected by the statement that generated this result. + + + + + Gets the last inserted identifier (if there is one) by the statement that generated this result. + + + + + Gets the list of generated identifiers in the order of the Add() calls. + + + + + Abstract class to select a database object target. + + The database object. + The execution result. + + + + Initializes a new instance of the TargetedBaseStatement class based on the provided target. + + The database object. + + + + Gets the database target. + + + + + Represents a warning in this result. + + + + + Numeric value associated to the warning message. + + + + + Error message. + + + + + Strict level for the warning. + + + + + Initializes a new instance of the WarningInfo class based on the code and msg. + + The code for the warning. + The error message for the warning. + + + + Represents a chaining collection insert statement. + + + + + Adds documents to the collection. + + The documents to add. + This object. + The array is null. + + + + Executes the Add statement. + + A object containing the results of the execution. + + + + Implementation class for CRUD statements with collections using an index. + + + + + Executes this statement. + + A object containing the results of the execution. + + + + Represents a collection statement. + + + + + + Converts base s into objects. + + Array of objects to be converted to objects. + An enumerable collection of objects. + + + + Represents the result of an operation that includes a collection of documents. + + + + + Represents a chaining collection find statement. + + + + + List of column projections that shall be returned. + + List of columns. + This object set with the specified columns or fields. + + + + Executes the Find statement. + + A object containing the results of execution and data. + + + + Allows the user to set the limit and offset for the operation. + + Number of items to be returned. + Number of items to be skipped. + This same object set with the specified limit. + + + + Locks matching rows against updates. + + Optional row lock option to use. + This same object set with the lock shared option. + The server version is lower than 8.0.3. + + + + Locks matching rows so no other transaction can read or write to it. + + Optional row lock option to use. + This same object set with the lock exclusive option. + The server version is lower than 8.0.3. + + + + Sets the collection aggregation. + + The field list for aggregation. + This same object set with the specified group-by criteria. + + + + Filters criteria for aggregated groups. + + The filter criteria for aggregated groups. + This same object set with the specified filter criteria. + + + + Sets user-defined sorting criteria for the operation. The strings use normal SQL syntax like + "order ASC" or "pages DESC, age ASC". + + The order criteria. + A generic object representing the implementing statement type. + + + + Represents a chaining collection modify statement. + + + + + Sets key and value. + + The document path key. + The new value. + This object. + + + + Changes value for a key. + + The document path key. + The new value. + This object. + + + + Removes keys or values from a document. + + An array of document paths representing the keys to be removed. + This object. + + + + Creates a object set with the changes to be applied to all matching documents. + + The JSON-formatted object describing the set of changes. + A object set with the changes described in . + can be a object, an anonymous object, or a JSON string. + is null. + is null or white space. + + + + Inserts an item into the specified array. + + The document path key including the index on which the item will be inserted. + The value to insert into the array. + A object containing the updated array. + + + + Appends an item to the specified array. + + The document path key. + The value to append to the array. + A object containing the updated array. + + + + Allows the user to set the sorting criteria for the operation. The strings use normal SQL syntax like + "order ASC" or "pages DESC, age ASC". + + The order criteria. + A generic object representing the implementing statement type. + + + + Executes the modify statement. + + A object containing the results of the execution. + + + + Represents a chaining collection remove statement. + + + + + Sets user-defined sorting criteria for the operation. The strings use normal SQL syntax like + "order ASC" or "pages DESC, age ASC". + + The order criteria. + A generic object representing the implementing statement type. + + + + Executes the remove statement. + + A object containing the results of the execution. + + + + Represents a database object. + + + + + Gets the session that owns the database object. + + + + + Gets the schema that owns the database object. + + + + + Gets the database object name. + + + + + Verifies that the database object exists in the database. + + True if the object exists in database, false otherwise. + + + + Represents a generic document in JSON format. + + + + + Initializes a new instance of the DbDoc class based on the object provided. The value can be a domain object, anonymous object, or JSON string. + + The value for this DbDoc. + + + + Gets the value of a document property. + + The key path for the property. + + + + + Gets the identifier of the document. + + + + + Gets a value indicating if this document has an identifier (property named _id with a value). + + + + + Sets a property on this document. + + The key of the property. + The new property value. + + + + Returns this document in Json format. + + A Json formatted string. + + + + Compares this DbDoc with another one. + + The DbDoc to compare to. + True if they are equal, false otherwise. + + + + Gets a value that serves as a hash function for a particular type. + + A hash code for the current object. + + + + Represents a collection of documents with a generic type. + + + + + Initializes a new instance of the generic Collection class based on the specified schema + and name. + + The object associated to this collection. + The name of the collection. + + + + Creates an containing the provided generic object. The add + statement can be further modified before execution. + + The generic object to add. + An object containing the object to add. + + + + Defines elements that allow to iterate through the contents of various items. + + + + + Initializes a new instance of the Iterator class. + + + + + This method is not yet implemented. + + + + Exception is always thrown since the body of the method is not yet implemented. + + + + Encapsulates a string that is meant to be a MySQL expression. + + + + + Gets the string representation of the MySQL expression. + + + + + Main class for session operations related to Connector/NET implementation of the X DevAPI. + + + + + Opens a session to the server given or to the first available server if multiple servers were specified. + + The connection string in basic or URI format. + A object representing the established session. + Multiple hosts can be specified as part of the which + will enable client side failover when trying to establish a connection. For additional details and syntax + examples refer to the remarks section. + + + + Opens a session to the server given. + + The connection data for the server. + A object representing the established session. + + + + Enables the creation of connection strings by exposing the connection options as properties. + Contains connection options specific to the X protocol. + + + + + Gets or sets the authentication mechanism to use with X Protocol connections. + + + + + Gets or sets the path to a local file that contains a list of trusted Certificate Authorities. + + + + + Gets or sets the path to a local file that contains certificate revocation lists. + + + + + Represents a table column. + + + + + Gets the original column name. + + + + + Gets the alias of the column name. + + + + + Gets the table name the column orginates from. + + + + + Gets the alias of the table name . + + + + + Gets the schema name the column originates from. + + + + + Gets the catalog the schema originates from. + In MySQL protocol this is `def` by default. + + + + + Gets the collation used for this column. + + + + + Gets the character set used for this column. + + + + + Gets the column length. + + + + + Gets the fractional decimal digits for floating point and fixed point numbers. + + + + + Gets the Mysql data type. + + + + + Gets the .NET Clr data type. + + + + + True if it's a signed number. + + + + + True if column is UINT zerofill or BYTES rightpad. + + + + + Initializes a new instance of the Column class. + + + + + Represents a resultset that contains rows of data. + + + + + Gets the columns in this resultset. + + + + + Gets the number of columns in this resultset. + + + + + Gets a list containing the column names in this resultset. + + + + + Gets the rows of this resultset. This collection will be incomplete unless all the rows have been read + either by using the Next method or the Buffer method. + + + + + Gets the value of the column value at the current index. + + The column index. + The CLR value at the column index. + + + + Allows getting the value of the column value at the current index. + + The column index. + The CLR value at the column index. + + + + Returns the index of the given column name. + + The name of the column to find. + The numeric index of column. + + + + Represents a single row of data in a table. + + + + + Gets the value of the row at the given index. + + The column index to retrieve the value. + The value at the index. + + + + Gets the value of the column as a string. + + The name of the column. + The value of the column as a string. + + + + Gets a string based indexer into the row. Returns the value as a CLR type. + + The column index to get. + The CLR value for the column. + + + + Inherits from . Creates a resultset that contains rows of data. + + + + + Represents a resultset that contains rows of data for relational operations. + + + + + Gets a boolean value indicating if this result has data. + + + + + Gets the number of records affected by the statement that generated this result. + + + + + Gets the last inserted identifier (if there is one) by the statement that generated this result. + + + + + Moves to next resultset. + + True if there is a new resultset, false otherwise. + + + + Represents a sql statement. + + + + + Initializes a new instance of the SqlStament class bassed on the session and sql statement. + + The session the Sql statement belongs to. + The Sql statement. + + + + Gets the current Sql statement. + + + + + Gets the list of parameters associated to this Sql statement. + + + + + Executes the current Sql statement. + + A object with the resultset and execution status. + + + + Binds the parameters values by position. + + The parameter values. + This set with the binded parameters. + + + + Represents a server Table or View. + + + + + Gets a value indicating whether the object is + a View (True) or a Table (False). + + + + + Creates a set with the columns to select. The table select + statement can be further modified before execution. This method is intended to select a set + of table rows. + + The optional column names to select. + A object for select chain operations. + + + + Creates a set with the fileds to insert to. The table + insert statement can be further modified before exeuction. This method is intended to + insert one or multiple rows into a table. + + The list of fields to insert. + A object for insert chain operations. + + + + Creates a . This method is intended to update table rows + values. + + A object for update chain operations. + + + + Creates a . This method is intended to delete rows from a + table. + + A object for delete chain operations. + + + + Returns the number of rows in the table on the server. + + The number of rows. + + + + Verifies if the table exists in the database. + + true if the table exists; otherwise, false. + + + + Represents a chaining table delete statement. + + + + + Sets user-defined sorting criteria for the operation. The strings use normal SQL syntax like + "order ASC" or "pages DESC, age ASC". + + The order criteria. + A generic object representing the implementing statement type. + + + + Executes the delete statement. + + A object containing the results of the delete execution. + + + + Represents a chaining table insert statement. + + + + + Executes the insert statement. + + A object containing the results of the insert statement. + + + + Values to be inserted. + Multiple rows supported. + + The values to be inserted. + This same object. + + + + Represents a chaining table select statement. + + + + + Executes the select statement. + + A object containing the results of the execution and data. + + + + Sets user-defined limit and offset for the operation. + + The number of items to be returned. + The number of items to be skipped. + This same object set with the specified limit. + + + + Locks matching rows against updates. + + Optional row lock option to use. + This same object set with lock shared option. + The server version is lower than 8.0.3. + + + + Locks matching rows so no other transaction can read or write to it. + + Optional row lock option to use. + This same object set with the lock exclusive option. + The server version is lower than 8.0.3. + + + + Sets the table aggregation. + + The column list for aggregation. + This same object set with the specified group-by criteria. + + + + Filters criteria for aggregated groups. + + The filter criteria for aggregated groups. + This same object set with the specified filter criteria. + + + + Sets user-defined sorting criteria for the operation. The strings use normal SQL syntax like + "order ASC" or "pages DESC, age ASC". + + The order criteria. + A generic object that represents the implementing statement type. + + + + Represents a chaining table update statement. + + + + + Executes the update statement. + + A object ocntaining the results of the update statement execution. + + + + Column and value to be updated. + + Column name. + Value to be updated. + This same object. + + + + Sets user-defined sorting criteria for the operation. The strings use normal SQL syntax like + "order ASC" or "pages DESC, age ASC". + + The order criteria. + A generic object that represents the implementing statement type. + + + + Represents a schema or database. + + + + + Session related to current schema. + + + + + Returns a list of all collections in this schema. + + A list representing all found collections. + + + + Returns a list of all tables in this schema. + + A list representing all found tables. + + + + Gets a collection by name. + + The name of the collection to get. + Ensures the collection exists in the schema. + A object matching the given name. + + + + Gets a typed collection object. This is useful for using domain objects. + + The type of collection returned. + The name of collection to get. + A generic object set with the given name. + + + + Gets the given collection as a table. + + The name of the collection. + A object set with the given name. + + + + Gets a table object. Upon return the object may or may not be valid. + + The name of the table object. + A object set with the given name. + + + + Creates a collection. + + The name of the collection to create. + If false, it will throw an exception if collection exists. + Collection referente. + + + + Drops the given collection. + + The name of the collection to drop. + is null. + + + + Determines if this schema actually exists. + + True if exists, false otherwise. + + + + Represents a single server session. + + + + + Returns a object that can be used to execute the given SQL. + + The SQL to execute. + A object set with the provided SQL. + + + + Sets the schema in the database. + + The schema name to be set. + + + + Executes a query in the database to get the current schema. + + Current database object or null if no schema is selected. + + + Holder for reflection information generated from mysqlx.proto + + + File descriptor for mysqlx.proto + + + + IDs of messages that can be sent from client to the server + + .. note:: + this message is never sent on the wire. It is only used to let ``protoc`` + + * generate constants + * check for uniqueness + + + + Container for nested types declared in the ClientMessages message type. + + + + IDs of messages that can be sent from server to client + + .. note:: + this message is never sent on the wire. It is only used to let ``protoc`` + + * generate constants + * check for uniqueness + + + + Container for nested types declared in the ServerMessages message type. + + + + NOTICE has to stay at 11 forever + + + + + generic Ok message + + + + Field number for the "msg" field. + + + + optional + + + + + generic Error message + + A ``severity`` of ``ERROR`` indicates the current message sequence is + aborted for the given error and the session is ready for more. + + In case of a ``FATAL`` error message the client should not expect + the server to continue handling any further messages and should + close the connection. + + :param severity: severity of the error message + :param code: error-code + :param sql_state: SQL state + :param msg: human readable error message + + + + Field number for the "severity" field. + + + + optional [ default = ERROR ] + + + + Field number for the "code" field. + + + + required + + + + Field number for the "sql_state" field. + + + + required + + + + Field number for the "msg" field. + + + + required + + + + Container for nested types declared in the Error message type. + + + Holder for reflection information generated from mysqlx_connection.proto + + + File descriptor for mysqlx_connection.proto + + + + a Capability + + a tuple of a ``name`` and a :protobuf:msg:`Mysqlx.Datatypes::Any` + + + + Field number for the "name" field. + + + + required + + + + Field number for the "value" field. + + + + required + + + + + Capabilities + + + + Field number for the "capabilities" field. + + + + get supported connection capabilities and their current state + + :returns: :protobuf:msg:`Mysqlx.Connection::Capabilities` or :protobuf:msg:`Mysqlx::Error` + + + + + sets connection capabilities atomically + + only provided values are changed, other values are left unchanged. + If any of the changes fails, all changes are discarded. + + :precond: active sessions == 0 + :returns: :protobuf:msg:`Mysqlx::Ok` or :protobuf:msg:`Mysqlx::Error` + + + + Field number for the "capabilities" field. + + + + required + + + + + announce to the server that the client wants to close the connection + + it discards any session state of the server + + :Returns: :protobuf:msg:`Mysqlx::Ok` + + + + Holder for reflection information generated from mysqlx_crud.proto + + + File descriptor for mysqlx_crud.proto + + + + DataModel to use for filters, names, ... + + + + + ViewAlgorithm defines how MySQL Server processes the view + + + + + MySQL chooses which algorithm to use + + + + + the text of a statement that refers to the view and the view definition are merged + + + + + the view are retrieved into a temporary table + + + + + ViewSqlSecurity defines the security context in which the view is going to be + executed, this means that VIEW can be executed with current user permissions or + with permissions of the uses who defined the VIEW + + + + + ViewCheckOption limits the write operations done on a `VIEW` + (`INSERT`, `UPDATE`, `DELETE`) to rows in which the `WHERE` clause is `TRUE` + + + + + the view WHERE clause is checked, but no underlying views are checked + + + + + the view WHERE clause is checked, then checking recurses to underlying views + + + + + column definition + + + + Field number for the "name" field. + + + + optional + + + + Field number for the "alias" field. + + + + optional + + + + Field number for the "document_path" field. + + + + a projection + + :param source: the expression identifying an element from the source data + which can include a column identifier or any expression + :param alias: optional alias. Required for DOCUMENTs (clients may use + the source string as default) + + + + Field number for the "source" field. + + + + required + + + + Field number for the "alias" field. + + + + optional + + + + + collection + + + + Field number for the "name" field. + + + + required + + + + Field number for the "schema" field. + + + + optional + + + + + limit + + :param row_count: maximum rows to filter + :param offset: maximum rows to skip before applying the row_count + + + + Field number for the "row_count" field. + + + + required + + + + Field number for the "offset" field. + + + + optional + + + + + sort order + + + + Field number for the "expr" field. + + + + required + + + + Field number for the "direction" field. + + + + optional//[ default=ASC ] + + + + Container for nested types declared in the Order message type. + + + + update operations + + :param source: specification of the value to be updated + if data_model is TABLE, a column name may be specified and also a document path, if the column has type JSON + if data_model is DOCUMENT, only document paths are allowed + in both cases, schema and table must be not set + :param operation: the type of operation to be performed + :param value: an expression to be computed as the new value for the operation + + + + Field number for the "source" field. + + + + required + + + + Field number for the "operation" field. + + + + required + + + + Field number for the "value" field. + + + + optional + + + + Container for nested types declared in the UpdateOperation message type. + + + + only allowed for TABLE + + + + + no value (removes the identified path from a object or array) + + + + + sets the new value on the identified path + + + + + replaces a value if the path exists + + + + + source and value must be documents + + + + + insert the value in the array at the index identified in the source path + + + + + append the value on the array at the identified path + + + + + merge JSON object value with the provided patch expression + + + + + Find Documents/Rows in a Collection/Table + + .. uml:: + + client -> server: Find + ... one or more Resultset ... + + :param collection: collection to insert into + :param data_model: datamodel that the operations refer to + :param projection: list of column projections that shall be returned + :param args: values for parameters used in filter expression + :param criteria: filter criteria + :param limit: numbers of rows that shall be skipped and returned + :param order: sort-order in which the rows/document shall be returned in + :param grouping: column expression list for aggregation (GROUP BY) + :param grouping_criteria: filter criteria for aggregated groups + :param locking: perform row locking on matches + :param locking_options: additional options how to handle locked rows + :Returns: :protobuf:msg:`Mysqlx.Resultset::` + + + + Field number for the "collection" field. + + + + required + + + + Field number for the "data_model" field. + + + + optional + + + + Field number for the "projection" field. + + + Field number for the "criteria" field. + + + + optional + + + + Field number for the "args" field. + + + Field number for the "limit" field. + + + + optional + + + + Field number for the "order" field. + + + Field number for the "grouping" field. + + + Field number for the "grouping_criteria" field. + + + + optional + + + + Field number for the "locking" field. + + + + optional + + + + Field number for the "locking_options" field. + + + + optional + + + + Container for nested types declared in the Find message type. + + + + Lock matching rows against updates + + + + + Lock matching rows so no other transaction can read or write to it + + + + + Do not wait to acquire row lock, fail with an error if a requested row is locked + + + + + Do not wait to acquire a row lock, remove locked rows from the result set + + + + + Insert documents/rows into a collection/table + + :param collection: collection to insert into + :param data_model: datamodel that the operations refer to + :param projection: name of the columns to insert data into (empty if data_model is DOCUMENT) + :param row: set of rows to insert into the collection/table (a single expression with a JSON document literal or an OBJECT expression) + :param args: values for parameters used in row expressions + :param upsert: true if this should be treated as an Upsert (that is, update on duplicate key) + :Returns: :protobuf:msg:`Mysqlx.Resultset::` + + + + Field number for the "collection" field. + + + + required + + + + Field number for the "data_model" field. + + + + optional + + + + Field number for the "projection" field. + + + Field number for the "row" field. + + + Field number for the "args" field. + + + Field number for the "upsert" field. + + + + optional//[default = false] + + + + Container for nested types declared in the Insert message type. + + + Field number for the "field" field. + + + + Update documents/rows in a collection/table + + :param collection: collection to change + :param data_model: datamodel that the operations refer to + :param criteria: filter expression to match rows that the operations will apply on + :param args: values for parameters used in filter expression + :param limit: limits the number of rows to match + :param order: specifies order of matched rows + :param operation: list of operations to be applied. Valid operations will depend on the data_model. + :Returns: :protobuf:msg:`Mysqlx.Resultset::` + + + + Field number for the "collection" field. + + + + required + + + + Field number for the "data_model" field. + + + + optional + + + + Field number for the "criteria" field. + + + + optional + + + + Field number for the "args" field. + + + Field number for the "limit" field. + + + + optional + + + + Field number for the "order" field. + + + Field number for the "operation" field. + + + + Delete documents/rows from a Collection/Table + + :param collection: collection to change + :param data_model: datamodel that the operations refer to + :param criteria: filter expression to match rows that the operations will apply on + :param args: values for parameters used in filter expression + :param limit: limits the number of rows to match + :param order: specifies order of matched rows + :Returns: :protobuf:msg:`Mysqlx.Resultset::` + + + + Field number for the "collection" field. + + + + required + + + + Field number for the "data_model" field. + + + + optional + + + + Field number for the "criteria" field. + + + + optional + + + + Field number for the "args" field. + + + Field number for the "limit" field. + + + + optional + + + + Field number for the "order" field. + + + Field number for the "collection" field. + + + + required + + + + Field number for the "definer" field. + + + + optional + + + + Field number for the "algorithm" field. + + + + optional//[default = UNDEFINED] + + + + Field number for the "security" field. + + + + optional//[default = DEFINER] + + + + Field number for the "check" field. + + + + optional + + + + Field number for the "column" field. + + + Field number for the "stmt" field. + + + + required + + + + Field number for the "replace_existing" field. + + + + optional//[default = false] + + + + Field number for the "collection" field. + + + + required + + + + Field number for the "definer" field. + + + + optional + + + + Field number for the "algorithm" field. + + + + optional + + + + Field number for the "security" field. + + + + optional + + + + Field number for the "check" field. + + + + optional + + + + Field number for the "column" field. + + + Field number for the "stmt" field. + + + + optional + + + + Field number for the "collection" field. + + + + required + + + + Field number for the "if_exists" field. + + + + optional//[ default = false ] + + + + Holder for reflection information generated from mysqlx_datatypes.proto + + + File descriptor for mysqlx_datatypes.proto + + + + a scalar + + + + Field number for the "type" field. + + + + required + + + + Field number for the "v_signed_int" field. + + + + optional + + + + Field number for the "v_unsigned_int" field. + + + + optional + + + + Field number for the "v_octets" field. + + + + 4 is unused, was Null which doesn't have a storage anymore + + + + Field number for the "v_double" field. + + + + optional + + + + Field number for the "v_float" field. + + + + optional + + + + Field number for the "v_bool" field. + + + + optional + + + + Field number for the "v_string" field. + + + + optional + + + + Enum of possible cases for the "default_oneof" oneof. + + + Container for nested types declared in the Scalar message type. + + + + a string with a charset/collation + + + + Field number for the "value" field. + + + + required + + + + Field number for the "collation" field. + + + + optional + + + + + an opaque octet sequence, with an optional content_type + See ``Mysqlx.Resultset.ContentType_BYTES`` for list of known values. + + + + Field number for the "value" field. + + + + required + + + + Field number for the "content_type" field. + + + + optional + + + + + a object + + + + Field number for the "fld" field. + + + Container for nested types declared in the Object message type. + + + Field number for the "key" field. + + + + required + + + + Field number for the "value" field. + + + + required + + + + + a Array + + + + Field number for the "value" field. + + + + a helper to allow all field types + + + + Field number for the "type" field. + + + + required + + + + Field number for the "scalar" field. + + + + optional + + + + Field number for the "obj" field. + + + + optional + + + + Field number for the "array" field. + + + + optional + + + + Container for nested types declared in the Any message type. + + + Holder for reflection information generated from mysqlx_expect.proto + + + File descriptor for mysqlx_expect.proto + + + + open an Expect block and set/unset the conditions that have to be fulfilled + + if any of the conditions fail, all enclosed messages will fail with + a Mysqlx.Error message. + + :returns: :protobuf:msg:`Mysqlx::Ok` on success, :protobuf:msg:`Mysqlx::Error` on error + + + + Field number for the "op" field. + + + + [ default = EXPECT_CTX_COPY_PREV ];//optional + + + + Field number for the "cond" field. + + + Container for nested types declared in the Open message type. + + + + copy the operations from the parent Expect-block + + + + + start with a empty set of operations + + + + Field number for the "condition_key" field. + + + + required + + + + Field number for the "condition_value" field. + + + + optional + + + + Field number for the "op" field. + + + + [ default = EXPECT_OP_SET ];//optional + + + + Container for nested types declared in the Condition message type. + + + + Change error propagation behaviour + + + + + Check if X Protocol field exists + + + + + Check if X Protocol support document _id generation + + + + + set the condition + + set, if not set + overwrite, if set + + + + + unset the condition + + + + + close a Expect block + + closing a Expect block restores the state of the previous Expect block + for the following messages + + :returns: :protobuf:msg:`Mysqlx::Ok` on success, :protobuf:msg:`Mysqlx::Error` on error + + + + Holder for reflection information generated from mysqlx_expr.proto + + + File descriptor for mysqlx_expr.proto + + + + Expressions + + the "root" of the expression tree + + .. productionlist:: + expr: `operator` | + : `identifier` | + : `function_call` | + : variable | + : `literal` | + : placeholder + + If expression type is PLACEHOLDER then it refers to the value of a parameter + specified when executing a statement (see `args` field of `StmtExecute` command). + Field `position` (which must be present for such an expression) gives 0-based + position of the parameter in the parameter list. + + + + Field number for the "type" field. + + + + required + + + + Field number for the "identifier" field. + + + + optional + + + + Field number for the "variable" field. + + + + optional + + + + Field number for the "literal" field. + + + + optional + + + + Field number for the "function_call" field. + + + + optional + + + + Field number for the "operator" field. + + + + optional + + + + Field number for the "position" field. + + + + optional + + + + Field number for the "object" field. + + + + optional + + + + Field number for the "array" field. + + + + optional + + + + Container for nested types declared in the Expr message type. + + + + identifier: name, schame.name + + .. productionlist:: + identifier: string "." string | + : string + + + + Field number for the "name" field. + + + + required + + + + Field number for the "schema_name" field. + + + + optional + + + + + DocumentPathItem + + .. productionlist:: + document_path: path_item | path_item document_path + path_item : member | array_index | "**" + member : "." string | "." "*" + array_index : "[" number "]" | "[" "*" "]" + + + + Field number for the "type" field. + + + + required + + + + Field number for the "value" field. + + + + optional + + + + Field number for the "index" field. + + + + optional + + + + Container for nested types declared in the DocumentPathItem message type. + + + + .member + + + + + .* + + + + + [index] + + + + + [*] + + + + + ** + + + + + col_identifier (table): col@doc_path, tbl.col@doc_path col, tbl.col, schema.tbl.col + col_identifier (document): doc_path + + .. productionlist:: + col_identifier: string "." string "." string | + : string "." string | + : string | + : string "." string "." string "@" document_path | + : string "." string "@" document_path | + : string "@" document_path | + : document_path + document_path: member | arrayLocation | doubleAsterisk + member = "." string | "." "*" + arrayLocation = "[" index "]" | "[" "*" "]" + doubleAsterisk = "**" + + + + Field number for the "document_path" field. + + + Field number for the "name" field. + + + + optional + + + + Field number for the "table_name" field. + + + + optional + + + + Field number for the "schema_name" field. + + + + optional + + + + + function call: ``func(a, b, "1", 3)`` + + .. productionlist:: + function_call: `identifier` "(" [ `expr` ["," `expr` ]* ] ")" + + + + Field number for the "name" field. + + + + required + + + + Field number for the "param" field. + + + + operator: ``<<(a, b)`` + + .. note:: + + Non-authoritative list of operators implemented (case sensitive): + + Nullary + * ``*`` + * ``default`` + + Unary + * ``!`` + * ``sign_plus`` + * ``sign_minus`` + * ``~`` + + Binary + * ``&&`` + * ``||`` + * ``xor`` + * ``==`` + * ``!=`` + * ``>`` + * ``>=`` + * ``<`` + * ``<=`` + * ``&`` + * ``|`` + * ``^`` + * ``<<`` + * ``>>`` + * ``+`` + * ``-`` + * ``*`` + * ``/`` + * ``div`` + * ``%`` + * ``is`` + * ``is_not`` + * ``regexp`` + * ``not_regexp`` + * ``like`` + * ``not_like`` + * ``cast`` + * ``cont_in`` + * ``not_cont_in`` + + Using special representation, with more than 2 params + * ``in`` (param[0] IN (param[1], param[2], ...)) + * ``not_in`` (param[0] NOT IN (param[1], param[2], ...)) + + Ternary + * ``between`` + * ``between_not`` + * ``date_add`` + * ``date_sub`` + + Units for date_add/date_sub + * ``MICROSECOND`` + * ``SECOND`` + * ``MINUTE`` + * ``HOUR`` + * ``DAY`` + * ``WEEK`` + * ``MONTH`` + * ``QUARTER`` + * ``YEAR`` + * ``SECOND_MICROSECOND`` + * ``MINUTE_MICROSECOND`` + * ``MINUTE_SECOND`` + * ``HOUR_MICROSECOND`` + * ``HOUR_SECOND`` + * ``HOUR_MINUTE`` + * ``DAY_MICROSECOND`` + * ``DAY_SECOND`` + * ``DAY_MINUTE`` + * ``DAY_HOUR`` + + Types for cast + * ``BINARY[(N)]`` + * ``CHAR[(N)]`` + * ``DATE`` + * ``DATETIME`` + * ``DECIMAL[(M[,D])]`` + * ``JSON`` + * ``SIGNED [INTEGER]`` + * ``TIME`` + * ``UNSIGNED [INTEGER]`` + + .. productionlist:: + operator: `name` "(" [ `expr` ["," `expr` ]* ] ")" + + + + Field number for the "name" field. + + + + required + + + + Field number for the "param" field. + + + + an object (with expression values) + + + + Field number for the "fld" field. + + + Container for nested types declared in the Object message type. + + + Field number for the "key" field. + + + + required + + + + Field number for the "value" field. + + + + required + + + + + a Array of expressions + + + + Field number for the "value" field. + + + Holder for reflection information generated from mysqlx_notice.proto + + + File descriptor for mysqlx_notice.proto + + + + Common Frame for all Notices + + ===================================================== ===== + .type value + ===================================================== ===== + :protobuf:msg:`Mysqlx.Notice::Warning` 1 + :protobuf:msg:`Mysqlx.Notice::SessionVariableChanged` 2 + :protobuf:msg:`Mysqlx.Notice::SessionStateChanged` 3 + ===================================================== ===== + + :param type: the type of the payload + :param payload: the payload of the notification + :param scope: global or local notification + + + + Field number for the "type" field. + + + + required + + + + Field number for the "scope" field. + + + + [ default = GLOBAL ];//optional + + + + Field number for the "payload" field. + + + + optional + + + + Container for nested types declared in the Frame message type. + + + + Server-side warnings and notes + + ``.scope`` == ``local`` + ``.level``, ``.code`` and ``.msg`` map the content of + + .. code-block:: sql + + SHOW WARNINGS + + ``.scope`` == ``global`` + (undefined) will be used for global, unstructured messages like: + + * server is shutting down + * a node disconnected from group + * schema or table dropped + + ========================================== ======================= + :protobuf:msg:`Mysqlx.Notice::Frame` field value + ========================================== ======================= + ``.type`` 1 + ``.scope`` ``local`` or ``global`` + ========================================== ======================= + + :param level: warning level: Note or Warning + :param code: warning code + :param msg: warning message + + + + Field number for the "level" field. + + + + [ default = WARNING ];//optional + + + + Field number for the "code" field. + + + + required + + + + Field number for the "msg" field. + + + + required + + + + Container for nested types declared in the Warning message type. + + + + Notify clients about changes to the current session variables + + Every change to a variable that is accessible through: + + .. code-block:: sql + + SHOW SESSION VARIABLES + + ========================================== ========= + :protobuf:msg:`Mysqlx.Notice::Frame` field value + ========================================== ========= + ``.type`` 2 + ``.scope`` ``local`` + ========================================== ========= + + :param namespace: namespace that param belongs to + :param param: name of the variable + :param value: the changed value of param + + + + Field number for the "param" field. + + + + required + + + + Field number for the "value" field. + + + + optional + + + + + Notify clients about changes to the internal session state + + ========================================== ========= + :protobuf:msg:`Mysqlx.Notice::Frame` field value + ========================================== ========= + ``.type`` 3 + ``.scope`` ``local`` + ========================================== ========= + + :param param: parameter key + :param value: updated value + + + + Field number for the "param" field. + + + + required + + + + Field number for the "value" field. + + + Container for nested types declared in the SessionStateChanged message type. + + + + .. more to be added + + + + Holder for reflection information generated from mysqlx_resultset.proto + + + File descriptor for mysqlx_resultset.proto + + + + a hint about the higher-level encoding of a BYTES field + + ====== ====== =========== + type value description + ====== ====== =========== + BYTES 0x0001 GEOMETRY (WKB encoding) + BYTES 0x0002 JSON (text encoding) + BYTES 0x0003 XML (text encoding) + ====== ====== =========== + + .. note:: + this list isn't comprehensive. As guideline: the field's value is expected + to pass a validator check on client and server if this field is set. + If the server adds more internal datatypes that rely on BLOB storage + like image manipulation, seeking into complex types in BLOBs, ... more + types will be added. + + + + + a hint about the higher-level encoding of a DATETIME field + + ====== ====== =========== + type value description + ======== ====== =========== + DATE 0x0001 DATETIME contains only date part + DATETIME 0x0002 DATETIME contains both date and time parts + ====== ====== =========== + + + + + resultsets are finished, OUT paramset is next + + + + + resultset and out-params are finished, but more resultsets available + + + + + all resultsets are finished + + + + + meta data of a Column + + .. note:: the encoding used for the different ``bytes`` fields in the meta data is externally + controlled. + .. seealso:: https://dev.mysql.com/doc/refman/8.0/en/charset-connection.html + + .. note:: + The server may not set the ``original_{table|name}`` fields if they are equal to the plain + ``{table|name}`` field. + + A client has to reconstruct it like:: + + if .original_name is empty and .name is not empty: + .original_name = .name + + if .original_table is empty and .table is not empty: + .original_table = .table + + .. note:: + ``compact metadata format`` can be requested by the client. In that case only ``.type`` is set and + all other fields are empty. + + :param type: + .. table:: Expected Datatype of Mysqlx.Resultset.Row per SQL Type for non NULL values + + ================= ============ ======= ========== ====== ======== + SQL Type .type .length .frac_dig .flags .charset + ================= ============ ======= ========== ====== ======== + TINY SINT x + TINY UNSIGNED UINT x x + SHORT SINT x + SHORT UNSIGNED UINT x x + INT24 SINT x + INT24 UNSIGNED UINT x x + INT SINT x + INT UNSIGNED UINT x x + LONGLONG SINT x + LONGLONG UNSIGNED UINT x x + DOUBLE DOUBLE x x x + FLOAT FLOAT x x x + DECIMAL DECIMAL x x x + VARCHAR,CHAR,... BYTES x x x + GEOMETRY BYTES + TIME TIME x + DATE DATETIME x + DATETIME DATETIME x + YEAR UINT x x + TIMESTAMP DATETIME x + SET SET x + ENUM ENUM x + NULL BYTES + BIT BIT x + ================= ============ ======= ========== ====== ======== + + .. note:: the SQL "NULL" value is sent as an empty field value in :protobuf:msg:`Mysqlx.Resultset::Row` + .. seealso:: protobuf encoding of primitive datatypes are decribed in https://developers.google.com/protocol-buffers/docs/encoding + + SINT + + ``.length`` + maximum number of displayable decimal digits (including minus sign) of the type + + .. note:: + valid range is 0-255, but usually you'll see 1-20 + + =============== == + SQL Type max digits per type + =============== == + TINY SIGNED 4 + SHORT SIGNED 6 + INT24 SIGNED 8 + INT SIGNED 11 + LONGLONG SIGNED 20 + =============== == + + .. seealso:: definition of ``M`` in https://dev.mysql.com/doc/refman/8.0/en/numeric-type-overview.html + + ``value`` + variable length encoded signed 64 integer + + UINT + + ``.flags & 1`` (zerofill) + the client has to left pad with 0's up to .length + + ``.length`` + maximum number of displayable decimal digits of the type + + .. note:: + valid range is 0-255, but usually you'll see 1-20 + + ================= == + SQL Type max digits per type + ================= == + TINY UNSIGNED 3 + SHORT UNSIGNED 5 + INT24 UNSIGNED 8 + INT UNSIGNED 10 + LONGLONG UNSIGNED 20 + ================= == + + .. seealso:: definition of ``M`` in https://dev.mysql.com/doc/refman/8.0/en/numeric-type-overview.html + + ``value`` + variable length encoded unsigned 64 integer + + BIT + + ``.length`` + maximum number of displayable binary digits + + .. note:: valid range for M of the ``BIT`` type is 1 - 64 + .. seealso:: https://dev.mysql.com/doc/refman/8.0/en/numeric-type-overview.html + + ``value`` + variable length encoded unsigned 64 integer + + DOUBLE + + ``.length`` + maximum number of displayable decimal digits (including the decimal point and ``.fractional_digits``) + + ``.fractional_digits`` + maximum number of displayable decimal digits following the decimal point + + ``value`` + encoded as Protobuf's 'double' + + FLOAT + + ``.length`` + maximum number of displayable decimal digits (including the decimal point and ``.fractional_digits``) + + ``.fractional_digits`` + maximum number of displayable decimal digits following the decimal point + + ``value`` + encoded as Protobuf's 'float' + + BYTES, ENUM + BYTES is used for all opaque byte strings that may have a charset + + * TINYBLOB, BLOB, MEDIUMBLOB, LONGBLOB + * TINYTEXT, TEXT, MEDIUMTEXT, LONGTEXT + * VARCHAR, VARBINARY + * CHAR, BINARY + * ENUM + + ``.length`` + the maximum length of characters of the underlying type + + ``.flags & 1`` (rightpad) + if the length of the field is less than ``.length``, the receiver is + supposed to add padding characters to the right end of the string. + If the ``.charset`` is "binary", the padding character is ``0x00``, + otherwise it is a space character as defined by that character set. + + ============= ======= ======== ======= + SQL Type .length .charset .flags + ============= ======= ======== ======= + TINYBLOB 256 binary + BLOB 65535 binary + VARCHAR(32) 32 utf8 + VARBINARY(32) 32 utf8_bin + BINARY(32) 32 binary rightpad + CHAR(32) 32 utf8 rightpad + ============= ======= ======== ======= + + ``value`` + sequence of bytes with added one extra '\0' byte at the end. To obtain the + original string, the extra '\0' should be removed. + .. note:: the length of the string can be acquired with protobuf's field length() method + length of sequence-of-bytes = length-of-field - 1 + .. note:: the extra byte allows to distinguish between a NULL and empty byte sequence + + TIME + A time value. + + ``value`` + the following bytes sequence: + + ``| negate [ | hour | [ | minutes | [ | seconds | [ | useconds | ]]]]`` + + * negate - one byte, should be one of: 0x00 for "+", 0x01 for "-" + * hour - optional variable length encoded unsigned64 value for the hour + * minutes - optional variable length encoded unsigned64 value for the minutes + * seconds - optional variable length encoded unsigned64 value for the seconds + * useconds - optional variable length encoded unsigned64 value for the microseconds + + .. seealso:: protobuf encoding in https://developers.google.com/protocol-buffers/docs/encoding + .. note:: hour, minutes, seconds, useconds are optional if all the values to the right are 0 + + Example: 0x00 -> +00:00:00.000000 + + DATETIME + A date or date and time value. + + ``value`` + a sequence of variants, arranged as follows: + + ``| year | month | day | [ | hour | [ | minutes | [ | seconds | [ | useconds | ]]]]`` + + * year - variable length encoded unsigned64 value for the year + * month - variable length encoded unsigned64 value for the month + * day - variable length encoded unsigned64 value for the day + * hour - optional variable length encoded unsigned64 value for the hour + * minutes - optional variable length encoded unsigned64 value for the minutes + * seconds - optional variable length encoded unsigned64 value for the seconds + * useconds - optional variable length encoded unsigned64 value for the microseconds + + .. note:: hour, minutes, seconds, useconds are optional if all the values to the right are 0 + + ``.flags & 1`` (timestamp) + + ============= ======= + SQL Type .flags + ============= ======= + DATETIME + TIMESTAMP 1 + + DECIMAL + An arbitrary length number. The number is encoded as a single byte + indicating the position of the decimal point followed by the Packed BCD + encoded number. Packed BCD is used to simplify conversion to and + from strings and other native arbitrary precision math datatypes. + .. seealso:: packed BCD in https://en.wikipedia.org/wiki/Binary-coded_decimal + + ``.length`` + maximum number of displayable decimal digits (*excluding* the decimal point and sign, but including ``.fractional_digits``) + + .. note:: should be in the range of 1 - 65 + + ``.fractional_digits`` + is the decimal digits to display out of length + + .. note:: should be in the range of 0 - 30 + + ``value`` + the following bytes sequence: + + ``| scale | BCD | sign | [0x0] |`` + + * scale - 8bit scale value (number of decimal digit after the '.') + * BCD - BCD encoded digits (4 bits for each digit) + * sign - sign encoded on 4 bits (0xc = "+", 0xd = "-") + * 0x0 - last 4bits if length(digits) % 2 == 0 + + Example: x04 0x12 0x34 0x01 0xd0 -> -12.3401 + + SET + A list of strings representing a SET of values. + + ``value`` + A sequence of 0 or more of protobuf's bytes (length prepended octets) or one of + the special sequences with a predefined meaning listed below. + + Example (length of the bytes array shown in brackets): + * ``[0]`` - the NULL value + * ``[1] 0x00`` - a set containing a blank string '' + * ``[1] 0x01`` - this would be an invalid value, but is to be treated as the empty set + * ``[2] 0x01 0x00`` - a set with a single item, which is the '\0' character + * ``[8] 0x03 F O O 0x03 B A R`` - a set with 2 items: FOO,BAR + + :param name: name of the column + :param original_name: name of the column before an alias was applied + :param table: name of the table the column orginates from + :param original_table: name of the table the column orginates from before an alias was applied + :param schema: schema the column originates from + :param catalog: + catalog the schema originates from + + .. note:: + as there is current no support for catalogs in MySQL, don't expect this field to be set. + In the MySQL C/S protocol the field had the value ``def`` all the time. + + :param fractional_digits: displayed factional decimal digits for floating point and fixed point numbers + :param length: maximum count of displayable characters of .type + :param flags: + ``.type`` specific flags + + ======= ====== =========== + type value description + ======= ====== =========== + UINT 0x0001 zerofill + DOUBLE 0x0001 unsigned + FLOAT 0x0001 unsigned + DECIMAL 0x0001 unsigned + BYTES 0x0001 rightpad + ======= ====== =========== + + ====== ================ + value description + ====== ================ + 0x0010 NOT_NULL + 0x0020 PRIMARY_KEY + 0x0040 UNIQUE_KEY + 0x0080 MULTIPLE_KEY + 0x0100 AUTO_INCREMENT + ====== ================ + + default: 0 + :param content_type: + a hint about the higher-level encoding of a BYTES field, for more informations + please refer to Mysqlx.Resultset.ContentType_BYTES enum. + + + + Field number for the "type" field. + + + + datatype of the field in a row + + + + Field number for the "name" field. + + + + optional + + + + Field number for the "original_name" field. + + + + optional + + + + Field number for the "table" field. + + + + optional + + + + Field number for the "original_table" field. + + + + optional + + + + Field number for the "schema" field. + + + + optional + + + + Field number for the "catalog" field. + + + + optional + + + + Field number for the "collation" field. + + + + optional + + + + Field number for the "fractional_digits" field. + + + + optional + + + + Field number for the "length" field. + + + + optional + + + + Field number for the "flags" field. + + + + optional + + + + Field number for the "content_type" field. + + + + optional + + + + Container for nested types declared in the ColumnMetaData message type. + + + + Row in a Resultset + + a row is represented as a list of fields encoded as byte blobs. + Blob of size 0 represents the NULL value. Otherwise, if it contains at least + one byte, it encodes a non-null value of the field using encoding appropriate for the + type of the value given by ``ColumnMetadata``, as specified + in the :protobuf:msg:`Mysqlx.Resultset::ColumnMetaData` description. + + + + Field number for the "field" field. + + + Holder for reflection information generated from mysqlx_session.proto + + + File descriptor for mysqlx_session.proto + + + + the initial message send from the client to the server to start the + authentication proccess + + :param mech_name: authentication mechanism name + :param auth_data: authentication data + :param initial_response: initial response + :Returns: :protobuf:msg:`Mysqlx.Session::AuthenticateContinue` + + + + Field number for the "mech_name" field. + + + + required + + + + Field number for the "auth_data" field. + + + + optional + + + + Field number for the "initial_response" field. + + + + optional + + + + + send by client or server after a :protobuf:msg:`Mysqlx.Session::AuthenticateStart` to + exchange more auth data + + :param auth_data: authentication data + :Returns: :protobuf:msg:`Mysqlx.Session::AuthenticateContinue` + + + + Field number for the "auth_data" field. + + + + required + + + + + sent by the server after successful authentication + + :param auth_data: authentication data + + + + Field number for the "auth_data" field. + + + + optional + + + + + reset the current session + + :Returns: :protobuf:msg:`Mysqlx::Ok` + + + + + close the current session + + :Returns: :protobuf:msg:`Mysqlx::Ok` + + + + Holder for reflection information generated from mysqlx_sql.proto + + + File descriptor for mysqlx_sql.proto + + + + execute a statement in the given namespace + + .. uml:: + + client -> server: StmtExecute + ... zero or more Resultsets ... + server --> client: StmtExecuteOk + + Notices: + This message may generate a notice containing WARNINGs generated by its execution. + This message may generate a notice containing INFO messages generated by its execution. + + :param namespace: namespace of the statement to be executed + :param stmt: statement that shall be executed. + :param args: values for wildcard replacements + :param compact_metadata: send only type information for :protobuf:msg:`Mysqlx.Resultset::ColumnMetadata`, skipping names and others + :returns: + * zero or one :protobuf:msg:`Mysqlx.Resultset::` followed by :protobuf:msg:`Mysqlx.Sql::StmtExecuteOk` + + + + Field number for the "namespace" field. + + + + optional [ default = "sql" ] + + + + Field number for the "stmt" field. + + + + required + + + + Field number for the "args" field. + + + Field number for the "compact_metadata" field. + + + + optional [ default = false ] + + + + + statement executed successful + + +
+
diff --git a/bin/x64/Debug/net461/PCSC.Iso7816.dll b/bin/x64/Debug/net461/PCSC.Iso7816.dll new file mode 100644 index 0000000..eb2b19a Binary files /dev/null and b/bin/x64/Debug/net461/PCSC.Iso7816.dll differ diff --git a/bin/x64/Debug/net461/PCSC.Iso7816.xml b/bin/x64/Debug/net461/PCSC.Iso7816.xml new file mode 100644 index 0000000..7dea6ad --- /dev/null +++ b/bin/x64/Debug/net461/PCSC.Iso7816.xml @@ -0,0 +1,1192 @@ + + + + PCSC.Iso7816 + + + + Application Protocol Data Unit (APDU), defined by the ISO/IEC 7816 standards + + + The currently used ISO case. + + + The currently used protocol. + + + Converts the APDU structure to a transmittable byte array. + A byte array containing the APDU parameters and data in the correct order. + + + Indicates if the APDU is valid. + if the APDU is valid. + + + Converts the APDU structure to a transmittable byte array. + The APDU. + The supplied APDU as byte array. + + + + Coding and meaning of the class byte + + + + The structure and coding of command and response are as described in ISO/IEC 7816. 'x' contains the options for secure messaging and the logical channel. + + + Reserved for future use. + + + Reserved for future use. + + + Reserved for future use. + + + Reserved for future use. + + + Reserved for future use. + + + Reserved for future use. + + + Reserved for future use. + + + The structure of command and response are as described in ISO/IEC 7816. 'x' contains the options for secure messaging and the logical channel. + The coding (and meaning) of command and response are proprietary. + + + The structure of command and response are as described in ISO/IEC 7816. 'x' contains the options for secure messaging and the logical channel. + The coding (and meaning) of command and response are proprietary. + + + If not specified by the application context, structure and coding of command and response are as described in ISO/IEC 7816. 'x' contains the options for secure messaging and the logical channel. + + + The structure of command and response are as described in ISO/IEC 7816. + + + The structure of command and response are as described in ISO/IEC 7816. + + + The structure of command and response are proprietary. + + + The structure of command and response are proprietary. + + + The structure of command and response are proprietary. + + + A class the can be used to build or parse the CLA (Class byte) of a APDU. + + + Initializes a new instance of the class. + The CLA as byte that will be parsed. + + + Initializes a new instance of the class. + The high part of the CLA + The secure messaging format. + The logical channel number. + logicalChannelNumber;Logical channels must be in the range between 0 and 3. + + + Returns the CLA as byte. + + + Gets or sets the high part of the CLA + The high part of the CLA. + + + Gets or sets the secure messaging (SM) format. + + + Gets or sets the logical channel number. + The logical channel number. + value;Logical channels must be in the range between 0 and 3. + + + Implicitly converts a to a . + + The CLA as byte + + + Implicitly converts a to an instance. + CLA as byte. + The parsed CLA. + + + A Command Application Protocol Data Unit (APDU), defined by the ISO/IEC 7816 standards + + A can be build using one of the following : + + CaseAPDU structure + 1CLA INS P1 P2 + 2CLA INS P1 P2 Le + 3CLA INS P1 P2 Lc Data + 4CLA INS P1 P2 Lc Data Le + + See the documentation for for more information. + + + + Initializes a new instance of the class. + The ISO case to use. + The protocol. + + + Gets or sets the CLA byte. + You can use the class to build a well formed CLA byte. + + + Gets the CLA. + The as instance. + + + Gets the instruction byte info. + The as instance. + + + Gets or sets the instruction. + + + Sets the instruction. + + + The first parameter (P1) + + + The second parameter (P2) + + + A combination of parameter P1 and P2 + + + Command APDU data to be transmitted. + You can only set data if you created the with ISO case 3 or 4. + + + Length command + + + The third parameter (P3 or Le) + + + Length expected. + This is the expected number of response data bytes. Do not take account of the status word (SW1 and SW2) here! + + + The expected response size (Le + SW1SW2) + + + Calculates the APDU size in bytes. + The APDU size in bytes depending on the currently selected ISO case. + + + Converts the command APDU to a transmittable byte array. + The command APDU as byte array. + If the command APDU is in an invalid state. + + + Indicates if the command APDU is valid. + if the APDU is valid. + + + Creates a clone of the current instance. The data is NOT copied. + A clone of the current instance. + + + + Creates a GET RESPONSE command after receiving SW1=0x61 (More data available) + + The initial command that has been sent to the card + The received response + The expected size + A GET RESPONSE APDU + + + Category of file types + + + Working elementary file (Working EF) that is intended for storing data not interpreted by the card. + + + Internal elementary file (Internal EF) that is intended for storing data interpreted and/or analyzed by the card and for control purposes. + + + Proprietary file type. + + + Dedicated file (DF) that is used for logical organization of data in a card. + + + A file descriptor. See ISO/IEC7816-4 File control information (FCI) for more information. + + + File type bit mask. + + + Dedicated file (DF) bit. + + + Working elementary file (EF) bit. + + + Internal elementary file (EF) bit. + + + Sharemode bit mask. + + + Shareable bit. + + + Non shareable bit. + + + The file descriptor as single byte structure. + + + Gets the file type. + + + Gets the extended file type. + + + Gets the file sharing mode. + + + Gets file structure information. + + + Initializes a new instance of the class. + The file descriptor byte that shall be parsed. + + + Determines whether the specified bits are set. + The a bit mask. + The bits to check for. + + true if the specified bits are set; otherwise, false. + + + Implicitly converts a to a single byte. + The file descriptor. + A file descriptor as byte. + + + Implicitly converts a single byte to a . + The file descriptor as byte. + A instance as parsed result. + + + + File share mode + + + + Shareable file that supports at least concurrent access on different logical channels. + + + Non shareable file. + + + File structure information for elementary file (EF). + + + File structure mask bits. + + + File has not structure information bit. + + + Transparent bit. + + + Linear fixed bit. + + + Linear fixed TLV bit. + + + Linear variable bit. + + + Linear variable TLV bit. + + + Cyclic bit. + + + Cyclic TLV bit. + + + Initializes a new instance of the class. + The file descriptor containing the file structure information. + + + Gets the file structure type. + + + Gets a value indicating whether the structuring method is a transparent EF. + + + Gets the record information. + Returns a instance if the file structuring method is a record EF. Otherwise . + + + Gets the file descriptor. + The file descriptor as byte. + + + Gets a value indicating whether the structuring method is a record EF. + + true if the EF is record; otherwise, false. + + + File structure types + The following structures of elementary files are defined: + + Transparent structure; the EF contains a sequence of data units. + Record structure; the EF contains a sequence of individually identifiable records. + + When using a record structure, the size of the particular records is either fixed or variable. Furthermore records are organized as a sequence (linear) or as a ring (cyclic). + + + + No information about file structure given + + + Transparent. The EF has a sequence of data units + + + Linear fixed, no further info + + + Linear fixed SIMPLE-TLV (Type-length-value) + + + Linear variable, no further info + + + Linear variable SIMPLE-TLV (Type-length-value) + + + Cyclic, no further info + + + Cyclic, SIMPLE-TLV (Type-length-value) + + + File type + + + Dedicated file (DF) that is used for logical organization of data in the card. + + + Elementary file (EF) that is used for storing data. + The data may or may not be interpreted/analyzed by the card. You need to check the extended file type . + + + A ISO/IEC 7816 compliant reader. + + + Gets the name of the reader. + + + Gets the active protocol. + + + Gets the current share mode. + + + Gets or sets the wait time in milliseconds that is used if an APDU needs to be retransmitted. + + + Gets the maximum number of bytes that can be received. + + + Constructs a command APDU using the active protocol of the reader. + The ISO case that shall be used for this command. + An empty command APDU. + + + Connects the specified reader. + Name of the reader. + The share mode. + The communication protocol. + + + Disconnects the currently connected reader. + The action that shall be executed after disconnect. + + + Transmits the specified command APDU. + The command APDU. + A response containing one ore more . + + + A class that describes the instruction of a command APDU. + + + Initializes a new instance of the class. + The instruction code. + + + Initializes a new instance of the class. + The instruction as byte. + + + Gets or sets the instruction code. + + + Gets or sets the instruction as value. + + + Implicitly converts a to a single INS byte. + A byte containing INS. + + + Implicitly converts a byte to a instance. + The instruction as byte. + A class + + + Implicitly converts a to a instance. + The instruction code. + A instance + + + + Basic instruction codes defined in ISO/IEC 7816-4 + + + + Erase binary + + + Verify + + + Manage channel + + + External authenticate + + + Get challenge + + + Internal authenticate + + + Select file + + + Read binary + + + Read record(s) + + + Get response + + + Envelope + + + Get data + + + Write binary + + + Write record + + + Update binary + + + Put data + + + Update data + + + Append record + + + Decrement value + + + Increment value + + + The APDU is invalid. + + + + APDU bytes + + + + + APDU + + + + Initializes a new instance of the class. + The error message. + + + Initializes a new instance of the class. + The error message. + The inner exception. + + + Initializes a new instance of the class. + The error message. + The APDU. + The inner exception. + + + + Initializes a new instance of the class. + + + + + + APDU message structure for the command-response pair. + + + ISO caseCommand data, Expected response data + 1Command: no data, Expected response: no data + 2Command: no data, Expected response: data + 3Command: data, Expected response: no data + 4Command: data, Expected response: data + + In the card capabilities, the card states that the Lc and the Le field should either be short or extended. A short command has one byte for each length field, an extended command has two bytes for each length field. + + + + No command data. No response data. + + + Lc is valued to 0. + Le is valued to 0. + No data byte is present. + + + + + No command data. Expected response data. + + + Lc is valued to 0. + Le is valued from 1 to 256. + No data byte is present. + + + + + Command data. No response data. + + + Lc is valued from 1 to 255. + Le is valued to 0. + Lc data bytes are present. + + + + + Command data. Expected response data. + + + Lc is valued from 1 to 255. + Le is valued from 1 to 256. + Lc data bytes are present. + + + + + No command data. Expected response data. + + + Lc is valued to 0. + Le is valued from 1 to 65536. + No data byte is present. + + + + + Command data. No response data. + + + Lc is valued from 1 to 65536. + Le is valued to 0. + Lc data bytes are present. + + + + + Command data. Expected response data. + + + Lc is valued from 1 to 65535. + Le is valued from 1 to 65536. + Lc data bytes are present. + + + + + A ISO/IEC 7816 compliant reader. + + + Gets the name of the reader. + + + Gets the active protocol. + + + Gets the current share mode. + + + Gets or sets the wait time in milliseconds that is used if an APDU needs to be retransmitted. + Default is 0 ms + + + Gets the maximum number of bytes that can be received (le) when using a command. + Default is 128 bytes. + + + Finalizes an instance of the class. + + + Initializes a new instance of the class. + The supplied reader will be used for communication with the smart card. + if set to true the supplied will be disconnected on . + If reader is + + + Initializes a new instance of the class and immediately connects to the reader. + The supplied reader will be used for communication with the smart card. + Name of the reader to connect with. + The share mode. + The communication protocol. + if set to true the supplied will be disconnected on . + + + Initializes a new instance of the class that will create its own instance of a . + A context to the PC/SC Resource Manager. + if set to true the will be released on . + If is + + + Initializes a new instance of the class that will create its own instance of a and immediately connect. + A context to the PC/SC Resource Manager. + Name of the reader to connect with. + The share mode. + The communication protocol. + if set to true the will be released on . + + + Initializes a new instance of the class that will create its own instance of a and immediately connect. + A context to the PC/SC Resource Manager. + Name of the reader to connect with. + The share mode. + The communication protocol. + if set to true the will be released on . + Sets the maximum number of bytes that can be received (Le) when using a command. + + + Constructs a command APDU using the active protocol of the reader. + The ISO case that shall be used for this command. + An empty command APDU. + + + Connects the specified reader. + Name of the reader. + The share mode. + The communication protocol. + + + Disconnects the currently connected reader. + The action that shall be executed after disconnect. + + + Transmits the specified command APDU. + The command APDU. + A response containing one ore more . + + + Transmits the specified command APDU. + The command APDU. + A method that will be called if the card signals more data available (SW1=0x61) + A response containing one ore more . + + + + Creates a GET RESPONSE command after receiving SW1=0x61 (More data available) + + The initial command that has been sent to the card + The received response + The expected size + A GET RESPONSE APDU + + + + Releases unmanaged and managed resources. + + + + + Releases unmanaged and - optionally - managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + Record structure information. + Elementary files (EF) that have a sequence of individually identifiable records should use one of the following methods for structuring: + + Linear elementary file (EF) with records of variable size. + Linear elementary file (EF) with records of fixed size. + Cyclic elementary file (EF) with records of fixed size. + + + + + File structuring mask bits. + + + Linear fixed bit. + + + Linear variable bit. + + + Cyclic bit. + + + Initializes a new instance of the class. + The file descriptor. + + + Gets a value indicating whether the EF has cyclic records. + true if the EF is cyclic; otherwise, false. + + + Gets a value indicating whether the EF has linear records. + true if the EF is linear; otherwise, false. + + + Gets a value indicating whether the EF's record size is fixed. + true if the record's size is fixed; otherwise, false. + + + Gets a value indicating whether the EF's record size is variable. + true if the record's size is variable; otherwise, false. + + + Gets a value indicating whether the EF contains simple TLV records. + true if the EF contains simple TLV records; otherwise, false. + + + Gets the file descriptor. + The file descriptor as byte. + + + An aggregation of instances. + When using the result can consist of one or more . If the receives a SW1=0x61 status word, it will automatically transmit a GET RESPONSE command to reader (after waiting ms) to catch all remaining . + + + Gets the at the specified index. + The . + The index. + The at the specified index. + + + The SW1 status of the last received . + + + The SW2 status of the last received . + + + Gets the number of received . + + + Gets the number of received . + + + A combination of SW1 and SW2 as 16bit status word. + It contains the status word of the last received . + + + + if at least one contains data bytes. + + + Initializes a new instance of the class. + + + + Creates a new instance. + + The s in correct order. + The in correct order. + + + Adds the specified response APDU. + The response APDU. + + + Adds the specified PCI. + The PCI. + + + An aggregation of all data bytes in receive order. + An aggregation of all data bytes from all . + + + Gets the of the specified index. + The index. + The of the specified index. + + + Gets the of the specified index. + The index. + The of the specified index. + + + + + + + + + A response APDU + + + Initializes a new instance of the class. + The response as byte array that shall be parsed. + The ISO case that was used when sending the . + The communication protocol. + + + Initializes a new instance of the class. + The response as byte array that shall be parsed. + The ISO case that was used when sending the . + The communication protocol. + If the bytes of the supplied response will be copied. + + + Initializes a new instance of the class. + The response as byte array that shall be parsed. + The size of the response. + The ISO case that was used when sending the . + The communication protocol. + If is greater than the size. + + + Initializes a new instance of the class. + The response as byte array that shall be parsed. + The size of the response. + The ISO case that was used when sending the . + The communication protocol. + If the bytes of the supplied response will be copied. + If is greater than the size. + + + Gets a value indicating whether this response has data. + + true if this response has data; otherwise, false. + + + Indicates if the response APDU is valid. + + if the response APDU is valid. + + + Gets the SW1 status byte. + The response APDU is invalid. + + + Gets the SW1 status byte. + The response APDU is invalid. + + + Gets the combination of SW1 and SW2 as 16bit status word. + The response APDU is invalid. + + + + Gets the length of the response APDU + + + + + Gets the size of the data. + + + + + Gets the full response APDU. + + + The full APDU as byte array. + + + + + Gets the data. + + The data. + The response APDU is invalid. + + + Converts the APDU structure to a transmittable byte array. + A byte array containing the APDU parameters and data in the correct order. + + + + Creates a clone. + + A clone of the current instance. + + + + A enumerator. + + + + + Returns the current element. + + The current element. + if the enumerator reaches the end and therefore is invalid. + + + + Returns the current element. + + The current element. + if the enumerator reaches the end and therefore is invalid. + + + + Initializes a new instance of the class. + + A list of . + + + + Initializes a new instance of the class. + + An enumeration of . + + + + Initializes a new instance of the class. + + An array of . + + + + Returns an enumerator. + + + A objekt, that can be used to enumerate through all . + + + + + Returns an enumerator. + + + A objekt, that can be used to enumerate through all . + + + + + Sets the enumerator the the next element. + + true if there exists another element. Otherwise false. + + + + Resets the enumerator to the beginning. + + + + + Disposes the enumerator and releases all managed resources. + + + + + Releases unmanaged and - optionally - managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Secure messaging (SM) format + + + + No secure messaging + + + Proprietary secure messaging format + + + Command header not authenticated + + + Command header authenticated + + + Meaning for the first status word SW1 (ISO7816-4). + + + Normal data response. SW2 indicates the number of remaining response bytes. + + + Warning. The state of non-volatile memory has not been changed. + SW2 could have one of the following values: + + SW2Meaning + 0x00No information. + 0x81Returned data may be corrupted. + 0x82End of file or end of record reached. The number of bytes read is less than specified in + 0x83The selected file invalidated. + 0x84FCI is not correctly formatted. + + + + + Warning. The state of non-volatile memory has been changed. + SW2 could have one of the following values: + + SW2Meaning + 0x00No information. + 0x81File filled up. + + + + + An error occurred. The state of non-volatile memory has not been changed. + SW2 should be 0x00. + + + An error occurred. The state of non-volatile memory has been changed. + SW2 could have one of the following values: + + SW2Meaning + 0x00No information. + 0x81Memory failure. + + + + + An security error occurred. + + + Error wrong length. + + + The function defined in CLA is not supported. + SW2 could have one of the following values: + + SW2Meaning + 0x00No information. + 0x81Logical channel not supported + 0x82Secure messaging not supported + + + + + Error command not allowed + SW2 could have one of the following values: + + SW2Meaning + 0x00No information. + 0x81The command is not compatible with the file structure. + 0x82The security status is not satisfied. + 0x83The authentication method is blocked. + 0x84The referenced data has been invalidated. + 0x85The conditions are not satisfied. + 0x86The command is not allowed. No current elementary file (EF). + 0x87Expected secure messaging data objects are missing. + 0x88Secure messaging data objects are incorrect. + + + + + Error wrong parameters P1 and P2 + SW2 could have one of the following values: + + SW2Meaning + 0x00No information. + 0x80The parameters in the data field are incorrect. + 0x81The requested function is not supported. + 0x82File not found. + 0x83Record not found. + 0x84The file has not enough free space. + 0x85The parameter is inconsistent with the TLV structure. + 0x86The parameters and are incorrect. + 0x87 is not consistent with . + 0x88The referenced data was not found. + + + + + Error wrong parameters P1 and P2 + + + has the wrong length. + SW2 contains the exact length. + + + The instruction code is invalid or not supported. + + + The Class is not supported. + + + No precise diagnosis available. + + + Normal data response. + + + Error purse balance. + + + Memory error. + + + File error. + + + Error authorization. + + + Normal GET response + + + TLV (tag-length-value) type. + + + Simple + + + ASN.1 (abstract syntax notation) structured using basic encoding rules defined in ISO/IEC8825. + + + diff --git a/bin/x64/Debug/net461/PCSC.dll b/bin/x64/Debug/net461/PCSC.dll new file mode 100644 index 0000000..3f20c09 Binary files /dev/null and b/bin/x64/Debug/net461/PCSC.dll differ diff --git a/bin/x64/Debug/net461/PCSC.xml b/bin/x64/Debug/net461/PCSC.xml new file mode 100644 index 0000000..33c75b8 --- /dev/null +++ b/bin/x64/Debug/net461/PCSC.xml @@ -0,0 +1,5507 @@ + + + + PCSC + + + + + + + + + + + + + + + + + + + + + + + + + + Creates a new instance + + The application context to the PC/SC Resource Manager that will be used for and + + + + + + + + + + + + + + + + Dispose this instance + + true if the user called otherwise false if called from GC finalizer. + + + + + + + + + + + + + + + + + + + + + + + + + Creates a instance + + A connected card/reader handle + + + + Creates a instance + + A connected card/reader handle + If set to true, the reader will destroy the on + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dispose this instance + + If true, all managed resources will be disposed. + + + + Smart card context factory + + + + + Default factory instance. + + + + + Create and establish a new smart card context. + + Scope of the establishment. This can either be a local or remote connection. + A new established smart card context + + + + A communication error occurred. + + + + + Creates a new instance. + + Error number. + + + + Creates a new instance. + + System's error code + Error message + + + + Creates a new instance. + + System's error code + Error message + Inner exception. + + + + Serialization constructor + + + + + + + A supplied buffer is insufficient. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + An internal error occurred. + + + + + Creates a new instance. + + System's error code + + + + Creates a new instance. + + System's error code + Error message + + + + Creates a new instance. + + System's error code + Error message + Inner exception + + + + Serialization constructor + + + + + + + Invalid PC/SC context exception. + + + + + Creates a new instance. + + System's error code + + + + Creates a new instance. + + System's error code + Error message + + + + Creates a new instance. + + System's error code + Error message + Inner exception + + + + Serialization constructor + + + + + + + One or more arguments contain invalid parameters. + + + + + Creates a new instance. + + System's error code + + + + Creates a new instance. + + System's error code + Error message + + + + Creates a new instance. + + System's error code + Error message + Inner exception + + + + Serialization constructor + + + + + + + An invalid protocol has been requested. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + Invalid PC/SC scope exception. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + The share mode is invalid. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + One or more arguments contain invalid values. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + The group does not contain any reader + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + The PC/SC service is not running. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + No smart card is currently inserted. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + The reader or the smart card is not ready. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + A general PC/SC exception. + + + + + Serialization name for property + + + + + The system's error code. + + + + + Creates a new instance. + + System's error code + + + + Creates a new instance. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + Gets data for serialization + + + + + + + The requested reader is unavailable. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + A smart card has been removed. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + A sharing violation occurred. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + Operation exited successfully + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + The requested reader name is unknown. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + The smart card is unpowered. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + The smart card is unresponsive. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + The requested feature is unsupported. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + A supplied buffer is insufficient. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + CardError extensions methods + + + + + Throws an exception if is not . + + error code to check + + + + Throws a specific exception + + error code to check + + + + Extension methods for + + + + + Checks if a card is absent + + State to check + true if the card is absent + + + + Checks if a card is present + + State to check + true if a card is present + + + + Encapsulates a handle to a connected card / or a directly connected reader + + + + + The card handle + + + + The connected reader's friendly name. + A human readable string of the reader name or if the reader object is currently not connected. + + + The current mode of connection type: exclusive, shared or direct. + + + The currently used protocol to communicate with the card. + + if not connected. + + + The current connection state of the reader. + if the reader is connected. Otherwise . + + + Establishes a connection to the Smart Card reader. + Reader name to connect to. + Mode of connection type: exclusive or shared. + + ValueDescription + This application will allow others to share the reader. (SCARD_SHARE_SHARED) + This application will NOT allow others to share the reader. (SCARD_SHARE_EXCLUSIVE) + + + Desired protocol use. + + + is a bit mask of acceptable protocols for the connection. You can use ( | ) if you do not have a preferred protocol. + This method calls the API function SCardConnect(). + + + + Terminates a connection made through . + Reader function to execute. + + This method calls the API function SCardDisconnect(). + + + + Reestablishes a connection to a reader that was previously connected to using + + . + Mode of connection type: exclusive/shared. + + + ValueDescription + + + + + + This application will allow others to share the reader. (SCARD_SHARE_SHARED) + + + + + + This application will NOT allow others to share the reader. (SCARD_SHARE_EXCLUSIVE) + + + + Desired protocol use. + Desired action taken on the card/reader before reconnect. + + + is a bit mask of acceptable protocols for the connection. You can use ( | ) if you do not have a preferred protocol. The protocol used with this connection will be stored in . + This method calls the API function SCardReconnect(). + + + + A reader class that implements the most basic PC/SC functions to operate on smart cards, RFID tags and so on. + + + The connected reader's friendly name. + A human readable string of the reader name. + + + The current mode of connection type: exclusive, shared or direct. + + + The currently used protocol to communicate with the card. + + + + Card or reader handle. can be used for C API calls + + + + Connection state of the reader. + if the reader is connected. Otherwise . + + + Reestablishes a connection to a reader that was previously connected to using + + . + Mode of connection type: exclusive/shared. + + + ValueDescription + + + + + + This application will allow others to share the reader. (SCARD_SHARE_SHARED) + + + + + + This application will NOT allow others to share the reader. (SCARD_SHARE_EXCLUSIVE) + + + + + + Direct connection to the reader. (SCARD_SHARE_DIRECT) + + + + Desired protocol use. + Desired action taken on the card/reader before reconnect. + + + is a bit mask of acceptable protocols for the connection. You can use ( | ) if you do not have a preferred protocol. The protocol used with this connection will be stored in . + This method calls the API function SCardReconnect(). + + + + Establishes a temporary exclusive access mode for doing a serie of commands in a transaction. + Action to be taken on the reader if the user ends the transaction. + + You might want to use this when you are selecting a few files and then writing a large file so you can make sure that another application will not change the current file. If another application has a lock on this reader or this application is in + there will be no action taken. + This method calls the API function SCardBeginTransaction(). SCardEndTransaction() will be called when you dispose the returned value + + An anonymous instance implementing that must be disposed to end the transaction. + + + Sends an APDU to the smart card. + APDU to send to the card. + Response from the card. + + + This method will only work if the reader has been connected with one of the following protocols: + + ProtocolDescription + T=0 active protocol. + T=1 active protocol. + Raw active protocol. + + + + + The number of bytes written to the + + + Sends an APDU to the smart card. + A pointer to the protocol header structure for the instruction. This buffer is in the format of an SCARD_IO_REQUEST structure, followed by the specific protocol control information (PCI). You can use one of the following: + + + Protocol Control Information + Description + + + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + + + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + + + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + + + + APDU to send to the card. + Response from the card. + The number of bytes written to the + + + Sends an APDU to the smart card. + Protocol Control Information in the format of an SCARD_IO_REQUEST structure, followed by the specific protocol control information (PCI) + APDU to send to the card. + Response from the card. + The number of bytes written to the + + + Sends an APDU to the smart card. + A pointer to the protocol header structure for the instruction. This buffer is in the format of an SCARD_IO_REQUEST structure, followed by the specific protocol control information (PCI). You can use one of the following: + + + Protocol Control Information + Description + + + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + + + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + + + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + + + + APDU to send to the card. + The buffer size of in bytes. + Pointer to the protocol header structure for the instruction, followed by a buffer in which to receive any returned protocol control information (PCI) specific to the protocol in use. This parameter can be NULL if no PCI is returned. + Response from the card. + The buffer size of in bytes. + The number of bytes written to the + + + Sends an APDU to the smart card. + A pointer to the protocol header structure for the instruction. This buffer is in the format of an SCARD_IO_REQUEST structure, followed by the specific protocol control information (PCI). You can use one of the following: + + + Protocol Control Information + Description + + + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + + + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + + + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + + + + APDU to send to the card. + The buffer size of in bytes. + Response from the card. + The buffer size of in bytes. + The number of bytes written to the + + + Sends an APDU to the smart card. + A pointer to the protocol header structure for the instruction. This buffer is in the format of an SCARD_IO_REQUEST structure, followed by the specific protocol control information (PCI). You can use one of the following: + + + Protocol Control Information + Description + + + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + + + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + + + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + + + + APDU to send to the card. + The buffer size of in bytes. + Structure of Protocol Header Information followed by a buffer in which to receive any returned protocol control information (PCI) specific to the protocol in use. This parameter can be null if no PCI is returned. + Response from the card. + The buffer size of in bytes. + The number of bytes written to the + + + Sends an APDU to the smart card. + Protocol Control Information in the format of an SCARD_IO_REQUEST structure, followed by the specific protocol control information (PCI) + APDU to send to the card. + The buffer size of in bytes. + Structure of Protocol Header Information followed by a buffer in which to receive any returned protocol control information (PCI) specific to the protocol in use. This parameter can be null if no PCI is returned. + Response from the card. + The buffer size of in bytes. + The number of bytes written to the + + + Sends an APDU to the smart card. + Protocol Control Information in the format of an SCARD_IO_REQUEST structure, followed by the specific protocol control information (PCI) + APDU to send to the card. + The buffer size of in bytes. + Response from the card. + The buffer size of in bytes. + The number of bytes written to the + + + Sends a command directly to the IFD Handler (reader driver) to be processed by the reader. + Control code for the operation. + Command to send to the reader. + size + Response from the reader. + size + + This method is useful for creating client side reader drivers for functions like PIN pads, biometrics, or other extensions to the normal smart card reader that are not normally handled by PC/SC. + This method calls the API function SCardControl(). + + The number of bytes written to the + + + Sends a command directly to the IFD Handler (reader driver) to be processed by the reader. + Control code for the operation. + Command to send to the reader. + Response from the reader. + + This method is useful for creating client side reader drivers for functions like PIN pads, biometrics, or other extensions to the normal smart card reader that are not normally handled by PC/SC. + This method calls the API function SCardControl(). + + The number of bytes written to the + + + Returns the current status of the reader and the connected card. + A reader status instance + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + A buffer that receives the attribute. + size. + This method calls the API function SCardGetAttrib(). + The number of bytes written to the attributebuffer OR the required buffer size if is null. + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + A buffer that receives the attribute. + This method calls the API function SCardGetAttrib(). + The number of bytes written to the attributebuffer OR the required buffer size if is null. + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + A buffer that receives the attribute. + size. + This method calls the API function SCardGetAttrib(). + The number of bytes written to the attributebuffer OR the required buffer size if is null. + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + A buffer that receives the attribute. + This method calls the API function SCardGetAttrib(). + The number of bytes written to the attributebuffer OR the required buffer size if is null. + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + This method calls the API function SCardGetAttrib(). + The attribute bytes + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + This method calls the API function SCardGetAttrib(). + The attribute bytes + + + Set an attribute of the IFD Handler. + Identifier for the attribute to set. + Buffer that contains the new value of the attribute. + Length of the buffer in bytes. + + The list of attributes you can set depends on the IFD handler you are using. + This method calls the API function SCardSetAttrib(). + + + + Set an attribute of the IFD Handler. + Identifier for the attribute to set. + Buffer that contains the new value of the attribute. + + The list of attributes you can set depends on the IFD handler you are using. + This method calls the API function SCardSetAttrib(). + + + + Set an attribute of the IFD Handler. + Identifier for the attribute to set. + Buffer that contains the new value of the attribute. + Length of the buffer in bytes. + + The list of attributes you can set depends on the IFD handler you are using. + This method calls the API function SCardSetAttrib(). + + + + Set an attribute of the IFD Handler. + Identifier for the attribute to set. + Buffer that contains the new value of the attribute. + + The list of attributes you can set depends on the IFD handler you are using. + This method calls the API function SCardSetAttrib(). + + + + Terminates a connection and invalidates the card handle." />. + Reader function to execute. + + This method calls the API function SCardDisconnect(). You cannot Reconnect after calling this method. + + + + + Smart card context factory + + + + + Create and establish a new smart card context. + + Scope of the establishment. This can either be a local or remote connection. + A new established smart card context + + + + Gives access to the system's smart card API + + + + + PC/SC API for Linux (x86/x64) + + + + + PC/SC API for MacOS X + + + + + Platform selector (Windows or UNIX) + + + + + Returns true if the operation system runs on Windows. false otherwise. + + + + + Platform smart card library. + + + + State of the smart card in the reader. + Is a bit mask that represents the current reader status. + + + Unknown status. + + + There is no card in the reader. + + + There is a card in the reader, but it has not been moved into position for use. + + + There is a card in the reader in position for use. The card is not powered. + + + Power is being provided to the card, but the reader driver is unaware of the mode of the card. + + + The card has been reset and is awaiting PTS negotiation. + + + The card has been reset and specific communication protocols have been established. + + + + PC/SC API for Microsoft Win32/Win64 (x86/x64/IA64) + + + + An application context to the PC/SC Resource Manager. + Each thread of an application shall use its own context. + + + A pointer (Application Context) that can be used for C API calls. + The returned Application Context handle. Is if not context has been established. + This is the Application Context handle that is returned when calling the C API function SCardEstablishContext(). + + + Maximum ATR size. + + + PlatformMaximum ATR size + + Windows (Winscard.dll) + 36 + + + UNIX/Linux (PC/SClite) + 33 + + + + Attention: Size depends on platform. + + + Infinite timeout. + 0xFFFFFFFF + + + Creates an Application Context to the PC/SC Resource Manager. + Scope of the establishment. This can either be a local or remote connection. + + Creates an Application Context for a client. This must be the first WinSCard function called in a PC/SC application. Each thread of an application shall use its own . + This method calls the API function SCardEstablishContext(). + + + + Destroys a communication context to the PC/SC Resource Manager and frees unmanaged resources. + + This must be the last method called in a PC/SC application. calls this method silently. + This method calls the API function SCardReleaseContext(). + + + + Checks the validity of the current context. + + + + Return value + Description + + + + + + The context is valid. (SCARD_S_SUCCESS) + + + + + + The context is invalid. (SCARD_E_INVALID_HANDLE) + + + + + Call this function to determine whether a smart card context handle is still valid. After a smart card context handle has been set by , it may become not valid if the resource manager service has been shut down. + This method calls the API function SCardIsValidContext(). + + + + Checks the validity of the current context. + if the context is valid. + Call this function to determine whether a smart card context handle is still valid. After a smart card context handle has been set by , it may become not valid if the resource manager service has been shut down. + + + + Returns a list of currently available readers. + List of groups to list readers. + An array of s containing all Smart Card readers found by the PC/SC Resource Manager. + + Groups are not used on Linux/UNIX machines using the PC/SC Lite daemon. + This method calls the API function SCardListReaders(). + + + + Returns a list of currently available readers. + An array of s containing all Smart Card readers found by the PC/SC Resource Manager. + + This method calls the API function SCardListReaders(). + + + + Returns a list of currently available reader groups. + An array of s containing all Smart Card reader groups found by the PC/SC Resource Manager. + + This method calls the API function SCardListReaderGroups(). + + + + Establishes a connection to the Smart Card reader and returns a handle + Reader name to connect to. + Mode of connection type: exclusive or shared. + + ValueDescription + This application will allow others to share the reader. (SCARD_SHARE_SHARED) + This application will NOT allow others to share the reader. (SCARD_SHARE_EXCLUSIVE) + Direct connection to the reader. (SCARD_SHARE_DIRECT) + + + Desired protocol use. + + + is a bit mask of acceptable protocols for the connection. You can use ( | ) if you do not have a preferred protocol. + This method calls the API function SCardConnect(). + + A handle to the smartcard or reader + + + Establishes a connection to the Smart Card reader and returns a reader instance + Reader name to connect to. + Mode of connection type: exclusive or shared. + + ValueDescription + This application will allow others to share the reader. (SCARD_SHARE_SHARED) + This application will NOT allow others to share the reader. (SCARD_SHARE_EXCLUSIVE) + Direct connection to the reader. (SCARD_SHARE_DIRECT) + + + Desired protocol use. + + + is a bit mask of acceptable protocols for the connection. You can use ( | ) if you do not have a preferred protocol. + This method calls the API function SCardConnect(). + + A reader instance + + + Returns the current reader status. + The requested reader. + A that contains the current reader status. + + This method uses the method with a timeout of zero. + + + + Returns the current reader status of all requested readers. + Requested reader names. + An array of s that contains the current reader status of each requested reader. + + This method uses the method with a timeout of zero. + + + + Blocks execution until the current availability of the cards in a specific set of readers changes. + Maximum waiting time (in milliseconds) for status change, zero or for infinite. + Structures of readers with current states. + + A indicating an error or the success.The caller receives status changes through the array. + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + Server is not running (SCARD_E_NO_SERVICE) + + + + + + + is invalid or (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid States, reader name, etc (SCARD_E_INVALID_VALUE) + + + + + + Invalid context (SCARD_E_INVALID_HANDLE) + + + + + + The reader is unavailable (SCARD_E_READER_UNAVAILABLE) + + + + + + The user-specified timeout value has expired (SCARD_E_TIMEOUT) + + + + + This method receives a structure or list of structures containing reader names. It then blocks for a change in state to occur for a maximum blocking time of or forever if is used. + The new event state will be contained in . A status change might be a card insertion or removal event, a change in ATR, etc. + To wait for a reader event (reader added or removed) you may use the special reader name "\\?PnP?\Notification". If a reader event occurs the state of this reader will change and the bit will be set. + This method calls the API function SCardGetStatusChange(). + + + + Cancels all pending blocking requests on the method. + + + Return valueDescription + Successful (SCARD_S_SUCCESS) + Invalid context (SCARD_E_INVALID_HANDLE) + Server is not running (SCARD_E_NO_SERVICE) + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + This method calls the API function SCardCancel(). + + + Common functions that are needed to operate on Smart Card readers. + See . + + + Establishes a connection to the Smart Card reader. + Reader name to connect to. + Mode of connection type: exclusive or shared. + + ValueDescription + This application will allow others to share the reader. (SCARD_SHARE_SHARED) + This application will NOT allow others to share the reader. (SCARD_SHARE_EXCLUSIVE) + + + Desired protocol use. + An error code / return value: + + + Error codeDescription + Successful (SCARD_S_SUCCESS) + Invalid context handle (SCARD_E_INVALID_HANDLE) + is invalid or (SCARD_E_INVALID_PARAMETER) + Invalid sharing mode, requested protocol, or reader name (SCARD_E_INVALID_VALUE) + The server is not runing (SCARD_E_NO_SERVICE) + No smart card present (SCARD_E_NO_SMARTCARD) + Could not allocate the desired port (SCARD_E_NOT_READY) + Requested protocol is unknown (SCARD_E_PROTO_MISMATCH) + Could not power up the reader or card (SCARD_E_READER_UNAVAILABLE) + Someone else has exclusive rights (SCARD_E_SHARING_VIOLATION) + The reader name is (SCARD_E_UNKNOWN_READER) + Protocol not supported (SCARD_E_UNSUPPORTED_FEATURE) + An internal communications error has been detected (SCARD_F_COMM_ERROR) + An internal consistency check failed (SCARD_F_INTERNAL_ERROR) + Card is not powered (SCARD_W_UNPOWERED_CARD) + Card is mute (SCARD_W_UNRESPONSIVE_CARD) + + + + + + is a bit mask of acceptable protocols for the connection. You can use ( | ) if you do not have a preferred protocol. The protocol used with this connection will be stored in . + This method calls the API function SCardConnect(). + + + + Terminates a connection made through . + Reader function to execute. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + Invalid (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + No smart card present (SCARD_E_NO_SMARTCARD) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + This method calls the API function SCardDisconnect(). + + + + Reestablishes a connection to a reader that was previously connected to using + + . + Mode of connection type: exclusive/shared. + + + ValueDescription + + + + + + This application will allow others to share the reader. (SCARD_SHARE_SHARED) + + + + + + This application will NOT allow others to share the reader. (SCARD_SHARE_EXCLUSIVE) + + + + Desired protocol use. + Desired action taken on the card/reader before reconnect. + An error code / return value: + + + Error codeDescription + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + Invalid context handle (SCARD_E_INVALID_HANDLE) + + + + + + + is invalid or (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid sharing mode, requested protocol, or reader name (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + No smart card present (SCARD_E_NO_SMARTCARD) + + + + + + Could not allocate the desired port (SCARD_E_NOT_READY) + + + + + + Requested protocol is unknown (SCARD_E_PROTO_MISMATCH) + + + + + + Could not power up the reader or card (SCARD_E_READER_UNAVAILABLE) + + + + + + Someone else has exclusive rights (SCARD_E_SHARING_VIOLATION) + + + + + + Protocol not supported (SCARD_E_UNSUPPORTED_FEATURE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + An internal consistency check failed (SCARD_F_INTERNAL_ERROR) + + + + + + The smart card has been removed (SCARD_W_REMOVED_CARD) + + + + + + Card is mute (SCARD_W_UNRESPONSIVE_CARD) + + + + + + is a bit mask of acceptable protocols for the connection. You can use ( | ) if you do not have a preferred protocol. The protocol used with this connection will be stored in . + This method calls the API function SCardReconnect(). + + + + Establishes a temporary exclusive access mode for doing a serie of commands in a transaction. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + Someone else has exclusive rights (SCARD_E_SHARING_VIOLATION) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + You might want to use this when you are selecting a few files and then writing a large file so you can make sure that another application will not change the current file. If another application has a lock on this reader or this application is in + there will be no action taken. + This method calls the API function SCardBeginTransaction(). + + + + Ends a previously begun transaction. + Action to be taken on the reader. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + Invalid value for (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + Someone else has exclusive rights (SCARD_E_SHARING_VIOLATION) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + The calling application must be the owner of the previously begun transaction or an error will occur. + This method calls the API function SCardEndTransaction(). + + The disposition action is not currently used in PC/SC Lite on UNIX/Linux machines. + + + + + Sends an APDU to the smart card that was previously connected by . + A pointer to a pre-defined Structure of Protocol Control Information. You can use one of the following: + Protocol Control InformationDescriptionPre-defined T=0 PCI structure. (SCARD_PCI_T0)Pre-defined T=1 PCI structure. (SCARD_PCI_T1)Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + APDU to send to the card. + The buffer size of in bytes. + Structure of protocol information. + Response from the card. + The buffer size of in bytes. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + or are too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + + or or is (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid Protocol, reader name, etc (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + APDU exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + Connect protocol is different than desired (SCARD_E_PROTO_MISMATCH) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + The card has been reset by another application (SCARD_W_RESET_CARD) + + + + + + The card has been removed from the reader (SCARD_W_REMOVED_CARD) + + + + + The card responds from the APDU and stores this response in . The size of the returned data will be stored in . This method will return with error code if the buffer size of is too small for the result. If one of the parameters or is invalid, the method will throw an . + This method calls the API function SCardTransmit(). The pointers to the pre-defined / built-in PCI structures are determinated with dlsym() on UNIX/Linux hosts and GetProcAddress() on Windows hosts. + + + + Sends an APDU to the smart card that was previously connected by . + A pointer to a pre-defined Structure of Protocol Control Information. You can use one of the following: + Protocol Control InformationDescriptionPre-defined T=0 PCI structure. (SCARD_PCI_T0)Pre-defined T=1 PCI structure. (SCARD_PCI_T1)Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + APDU to send to the card. + Structure of protocol information. + Response from the card. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + or are too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + + or or is (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid Protocol, reader name, etc (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + APDU exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + Connect protocol is different than desired (SCARD_E_PROTO_MISMATCH) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + The card has been reset by another application (SCARD_W_RESET_CARD) + + + + + + The card has been removed from the reader (SCARD_W_REMOVED_CARD) + + + + + The card responds from the APDU and stores this response in . is a structure containing the following (implemented in ) + + + + Sends an APDU to the smart card that was previously connected by . + A pointer to a pre-defined Structure of Protocol Control Information. You can use one of the following: + + Protocol Control InformationDescription + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + + APDU to send to the card. + Response from the card. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + or are too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + + or or is (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid Protocol, reader name, etc (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + APDU exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + Connect protocol is different than desired (SCARD_E_PROTO_MISMATCH) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + The card has been reset by another application (SCARD_W_RESET_CARD) + + + + + + The card has been removed from the reader (SCARD_W_REMOVED_CARD) + + + + + The card responds from the APDU and stores this response in . + This method calls the API function SCardTransmit(). The pointers to the pre-defined / built-in PCI structures are determinated with dlsym() on UNIX/Linux hosts and GetProcAddress() on Windows hosts. + + + + Sends an APDU to the smart card that was previously connected by . + Structure of Protocol Control Information. + APDU to send to the card. + Structure of protocol information. + Response from the card. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + or are too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + + or or is (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid Protocol, reader name, etc (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + APDU exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + Connect protocol is different than desired (SCARD_E_PROTO_MISMATCH) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + The card has been reset by another application (SCARD_W_RESET_CARD) + + + + + + The card has been removed from the reader (SCARD_W_REMOVED_CARD) + + + + + The card responds from the APDU and stores this response in . and are structures containing the following (implemented in ): + + typedef struct { + DWORD dwProtocol; // SCARD_PROTOCOL_T0 or SCARD_PROTOCOL_T1 + DWORD cbPciLength; // Length of this structure - not used + } SCARD_IO_REQUEST; + + + It is recommended to use pre-defined / built-in PCI structures by calling one of the following methods: + + + + This method calls the API function SCardTransmit(). The pointers to the pre-defined / built-in PCI structures are determinated with dlsym() on UNIX/Linux hosts and GetProcAddress() on Windows hosts. + + + + Sends an APDU to the smart card that was previously connected by . + APDU to send to the card. + The buffer size of in bytes. + Response from the card. + The buffer size of in bytes. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + or are too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + + or is (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid Protocol, reader name, etc (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + APDU exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + Connect protocol is different than desired (SCARD_E_PROTO_MISMATCH) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + The card has been reset by another application (SCARD_W_RESET_CARD) + + + + + + The card has been removed from the reader (SCARD_W_REMOVED_CARD) + + + + + The card responds from the APDU and stores this response in . The buffer must be initialized. The size of the returned data will be stored in . This method will return with error code if the buffer size of is too small for the result. If one of the parameters or is invalid, the method will throw an . + This method calls the API function SCardTransmit(). + + This method will only work if the reader has been connected with one of the following protocols: + + ProtocolDescription + T=0 active protocol. + T=1 active protocol. + Raw active protocol. + + + + + + Sends an APDU to the smart card that was previously connected by . + APDU to send to the card. + Response from the card. + The buffer size of in bytes. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + or are too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + + or is (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid Protocol, reader name, etc (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + APDU exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + Connect protocol is different than desired (SCARD_E_PROTO_MISMATCH) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + The card has been reset by another application (SCARD_W_RESET_CARD) + + + + + + The card has been removed from the reader (SCARD_W_REMOVED_CARD) + + + + + The card responds from the APDU and stores this response in . The buffer must be initialized. The size of the returned data will be stored in . This method will return with error code if the buffer size of is too small for the result. If the parameter is invalid, the method will throw an . + This method calls the API function SCardTransmit(). + + This method will only work if the reader has been connected with one of the following protocols: + ProtocolDescriptionT=0 active protocol.T=1 active protocol.Raw active protocol. + + + + + Sends an APDU to the smart card that was previously connected by . + APDU to send to the card. + Response from the card. + + Return valueDescription + Successful (SCARD_S_SUCCESS) + or are too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + + or is (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid Protocol, reader name, etc (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + APDU exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + Connect protocol is different than desired (SCARD_E_PROTO_MISMATCH) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + The card has been reset by another application (SCARD_W_RESET_CARD) + + + + + + The card has been removed from the reader (SCARD_W_REMOVED_CARD) + + + + + The card responds from the APDU and stores this response in . The buffer must be initialized and will be resized, if the buffer was too big. + This method calls the API function SCardTransmit(). + + This method will only work if the reader has been connected with one of the following protocols: + + ProtocolDescription + T=0 active protocol. + T=1 active protocol. + Raw active protocol. + + + + + + Sends a command directly to the IFD Handler (reader driver) to be processed by the reader. + Control code for the operation. + Command to send to the reader. + Response from the reader. + + + + Return code + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + or are too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + + is and the IFDHandler is version 2.0 (without + + ) (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid value was presented (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed(SCARD_E_READER_UNAVAILABLE) + + + + + + Driver does not support (SCARD_E_UNSUPPORTED_FEATURE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + The card has been removed from the reader(SCARD_W_REMOVED_CARD) + + + + + + The card has been reset by another application (SCARD_W_RESET_CARD) + + + + + This method is useful for creating client side reader drivers for functions like PIN pads, biometrics, or other extensions to the normal smart card reader that are not normally handled by PC/SC. + This method calls the API function SCardControl(). + + The API of this function changed. In pcsc-lite 1.2.0 and before the API was not Windows(R) PC/SC compatible. This has been corrected. + + + + + Returns the current status of the reader and the connected card. + The connected readers's friendly name. + The current state. + The card's currently used protocol. + The card's ATR. + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + The reader object did not allocate enough memory for or for (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + The reader object got invalid. Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + The reader object passed a size of null for or (SCARD_E_INVALID_PARAMETER) + + + + + + Memory allocation failed (SCARD_E_NO_MEMORY) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + An internal consistency check failed (SCARD_F_INTERNAL_ERROR) + + + + + + The smart card has been removed (SCARD_W_REMOVED_CARD) + + + + + + The smart card has been reset (SCARD_W_RESET_CARD) + + + + + The connected readers's friendly name will be stored in . The card's ATR will be stored in . The current state, and protocol will be stored in and respectively. + This method calls the API function SCardStatus(). + + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + A buffer that receives the attribute. + Size of the result contained in attribute (in bytes). + + + + Return code + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + is too big - indicates an error in the PC/SC class library. (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Reader buffer not large enough - indicates an error in the PC/SC class library. (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + A parameter is and should not (SCARD_E_INVALID_PARAMETER) + + + + + + Memory allocation failed (SCARD_E_NO_MEMORY) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + The method will return if is + or if the buffer size is not sufficient. + contains the required amount of bytes (size). + If the method returned with then contains the exact size of the result in + + . + For an example please see . + + This method calls the API function SCardGetAttrib(). + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + A buffer that receives the attribute. + + + + Return code + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + is too big - indicates an error in the PC/SC class library. (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Reader buffer not large enough - indicates an error in the PC/SC class library. (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + A parameter is and should not (SCARD_E_INVALID_PARAMETER) + + + + + + Memory allocation failed (SCARD_E_NO_MEMORY) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + This method calls the API function SCardGetAttrib(). + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + A buffer that receives the attribute. + Size of the result contained in attribute (in bytes). + + + + Return code + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + is too big - indicates an error in the PC/SC class library. (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Reader buffer not large enough - indicates an error in the PC/SC class library. (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + A parameter is and should not (SCARD_E_INVALID_PARAMETER) + + + + + + Memory allocation failed (SCARD_E_NO_MEMORY) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + The method will return if is + or if the buffer size is not sufficient. + contains the required amount of bytes (size). + If the method returned with then contains the exact size of the result in + + . + For an example please see . + + This method calls the API function SCardGetAttrib(). + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + A buffer that receives the attribute. + + + + Return code + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + is too big - indicates an error in the PC/SC class library. (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Reader buffer not large enough - indicates an error in the PC/SC class library. (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + A parameter is and should not (SCARD_E_INVALID_PARAMETER) + + + + + + Memory allocation failed (SCARD_E_NO_MEMORY) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + This method calls the API function SCardGetAttrib(). + + + Set an attribute of the IFD Handler. + Identifier for the attribute to set. + Buffer that contains the new value of the attribute. + Length of the buffer in bytes. + + + + Column + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + attribute is too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + A parameter is and should not (SCARD_E_INVALID_PARAMETER) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + The list of attributes you can set depends on the IFD handler you are using. + This method calls the API function SCardSetAttrib(). + + + + Set an attribute of the IFD Handler. + Identifier for the attribute to set. + Buffer that contains the new value of the attribute. + + + + Column + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + attribute is too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + A parameter is and should not (SCARD_E_INVALID_PARAMETER) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + The list of attributes you can set depends on the IFD handler you are using. + This method calls the API function SCardSetAttrib(). + + + + Set an attribute of the IFD Handler. + Identifier for the attribute to set. + Buffer that contains the new value of the attribute. + Length of the buffer in bytes. + + + Column + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + attribute is too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + A parameter is and should not (SCARD_E_INVALID_PARAMETER) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + The list of attributes you can set depends on the IFD handler you are using. + This method calls the API function SCardSetAttrib(). + + + + Set an attribute of the IFD Handler. + Identifier for the attribute to set. + Buffer that contains the new value of the attribute. + + + + Value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + attribute is too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + A parameter is and should not (SCARD_E_INVALID_PARAMETER) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + The list of attributes you can set depends on the IFD handler you are using. + This method calls the API function SCardSetAttrib(). + + + + The connected reader's friendly name. + A human readable string of the reader name or if the reader object is currently not connected. + + + The Smart Card context that will be used for this connection. + + if the reader is not connected. + + + The current mode of connection type: exclusive or shared. + + + The currently used protocol to communicate with the card. + + if not connected. + + + A pointer (Card Handle) that can be used for C API calls. + 0 if not connected. + + This is the card handle that is returned when calling the C API function SCardConnect(). + + + + The current connection state of the reader. + if the reader is connected. Otherwise . + + + + Smart card event. + + + + + Name of the reader that has raised the event. + + A human readable string of the reader name. + + + + The card's ATR (if present), otherwise null. + + + + + Creates a new instance. + + + + + Creates a new instance. + + Name of the reader that has raised the event. + The card's ATR (if present), otherwise null. + + + The reader has been Initialized. + The sender object. + Reader status information. + + + + // Create a monitor object with its own PC/SC context. + SCardMonitor monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System); + + // Point the callback function(s) to the pre-defined method MyCardInitializedMethod. + monitor.Initialized += new CardInitializedEvent(MyCardInitializedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + A new card has been inserted. + The sender object + Reader status information. + + + + // Create a monitor object with its own PC/SC context. + SCardMonitor monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System); + + // Point the callback function(s) to the pre-defined method MyCardInsertedMethod. + monitor.CardInserted += new CardInsertedEvent(MyCardInsertedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + A card has been removed. + The sender object. + Reader status information. + + + + // Create a monitor object with its own PC/SC context. + SCardMonitor monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System); + + // Point the callback function(s) to the pre-defined method MyCardRemovedMethod. + monitor.CardRemoved += new CardRemovedEvent(MyCardRemovedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + + Information about a smart card reader status. + + + + The current reader status. + + + Is a bit mask containing one or more of the following values: + + + + State + Description + + + + + + The application is unaware of the current state, and would like to know. The use of this value results in an immediate return from state transition monitoring services. This is represented by all bits set to zero. + + + + + + This reader should be ignored + + + + + + There is a difference between the state believed by the application, and the state known by the resource manager. When this bit is set, the application may assume a significant state change has occurred on this reader. + + + + + + + The given reader name is not recognized by the resource manager. If this bit is set, then + + and + + will also be set + + + + + + + The actual state of this reader is not available. If this bit is set, then all the following bits are clear. + + + + + + There is no card in the reader. If this bit is set, all the following bits will be clear + + + + + + There is a card in the reader + + + + + + + The card in the reader is allocated for exclusive use by another application. If this bit is set, + + will also be set. + + + + + + + + The card in the reader is in use by one or more other applications, but may be connected to in shared mode. If this bit is set, + + will also be set. + + + + + + + There is an unresponsive card in the reader. + + + + + + + Creates a new instance. + + + + + Creates a new instance. + + Name of the smard card reader + The reader's state + The card's ATR. + + + + A smartcard device status change + + The sender object. + Reader device changes. + + + Information about attached and detached smart card reader devices. + + + + All connected smartcard reader devices + + + + + Recently attached (added) smartcard reader devices + + + + + Recently detached (removed) smartcard reader devices + + + + + Creates a new instance + + All connected smartcard reader devices + Attached/added smartcard reader devices + Detached/removed smartcard reader devices + + + Monitors for attached and detached smartcard reader devices. + + + + The monitor object has been initialized. + + + + + New reader(s) have been attached and/or detached. + + + + An PC/SC error occurred during monitoring. + + + + Creates a new instance + + + + + + Creates a new instance + + Context factory used for this monitor + Scope of the establishment. This can either be a local or remote connection. + + + + Finalizer + + + + + Starts monitoring for device status changes + + + + Cancels the monitoring. + This will end the monitoring. The method calls the method of its Application Context to the PC/SC Resource Manager. + + + Disposes the object. + Dispose will call in order to stop the background thread. The application context will be disposed if you configured the monitor to do so at construction time. + + + An PC/SC error occurred during device monitoring. + The sender object. + Argument that contains the exception. + + + + Information about a device monitor exception + + + + + Exception that occurred in device monitor thread + + + + + Creates an instance + + Exception that occurred in monitoring thread + + + + Smartcard reader device monitoring factory + + + + + Default factory instance. Uses for context creation. + + + + + Creates a monitor instance + + Context factory to use + + + + + + + + + Monitors for attached and detached smartcard reader devices. + + + + The monitor object has been initialized. + + + + + New reader(s) have been attached and/or detached. + + + + An PC/SC error occurred during monitoring. + + + + Starts monitoring for device status changes + + + + Cancels the monitoring. + This will end the monitoring. The method calls the method of its Application Context to the PC/SC Resource Manager. + + + + Smartcard reader device monitoring factory + + + + + Creates a device monitor + + Scope of the establishment. This can either be a local or remote connection. + A + + + + Releases the smartcard device monitor and its dependencies using the method. + + Smartcard device monitor that shall be stopped and disposed. + + + + Smart card monitor factory + + + + + Creates a smart card event monitor + + Scope of the establishment. This can either be a local or remote connection. + A + + + + Releases the smart card monitor and its dependencies using the method. + + Smart card monitor that shall be stopped and disposed. + + + Monitors a Smart Card reader and triggers events on status changes. + + + A general reader status change. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + // Point the callback function(s) to the pre-defined method MyStatusChangedMethod. + monitor.StatusChanged += new StatusChangeEvent(MyStatusChangedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + A new card has been inserted. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + monitor.CardInserted += new CardInsertedEvent(MyCardInsertedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + A card has been removed. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + monitor.CardRemoved += new CardRemovedEvent(MyCardRemovedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + The monitor object has been initialized. + + This event appears only once for each reader after calling or . + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + monitor.Initialized += new CardInitializedEvent(MyCardInitializedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + An PC/SC error occurred during monitoring. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + monitor.MonitorException += new MonitorExceptionEvent(MyMonitorExceptionMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + All readers that are currently being monitored. + A array of reader names. if no readers is being monitored. + + + Indicates if there are readers currently monitored. + + + + Value + Description + + + + + + Monitoring process ongoing. + + + + + + No monitoring. + + + + + + The number of readers that currently being monitored. + Return 0 if no reader is being monitored. + + + Returns the current state of a reader that is currently being monitored. + The number of the desired reader. The index must be between 0 and ( - 1). + The current state of reader with index number . + This method will throw an if the specified is invalid. You can enumerate all readers currently monitored with the property. + If the specified is invalid. + + + Returns the current state of a reader that is currently being monitored. + The number of the desired reader. The index must be between 0 and ( - 1). + The current state of reader with index number . + This method will throw an if the specified is invalid. You can enumerate all readers currently monitored with the property. + If the specified is invalid. + + + Returns the reader name of a given . + The number of the desired reader. The index must be between 0 and ( - 1). + A reader name. + This method will throw an if the specified is invalid. You can enumerate all readers currently monitored with the property. + If the specified is invalid. + + + Cancels the monitoring of all readers that are currently being monitored. + This will end the monitoring. The method calls the method of its Application Context to the PC/SC Resource Manager. + + + The Smart Card reader that shall be monitored. + Starts to monitor a single Smart Card reader for status changes. + + + + // Create a new monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + // Start to monitor a single reader. + monitor.Start("OMNIKEY CardMan 5x21 00 00"); + + + Do not forget to register for at least one event: + + EventDescription + A new card has been inserted. + A card has been removed. + Initial status. + A general status change. + An error occurred. + + + + + A array of reader names that shall be monitored. + Starts to monitor a range Smart Card readers for status changes. + + + + string [] readerNames; + using (var ctx = new SCardContext()) { + ctx.Establish(SCardScope.System); + // Retrieve the names of all installed readers. + readerNames = ctx.GetReaders(); + ctx.Release(); + } + + // Create a new monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + foreach (string reader in readerNames) { + Console.WriteLine("Start monitoring for reader {0}.", reader); + } + + // Start monitoring multiple readers. + monitor.Start(readerNames); + + + Do not forget to register for at least one event: + + EventDescription + A new card has been inserted. + A card has been removed. + Initial status. + A general status change. + An error occurred. + + + + + An PC/SC error occurred during monitoring. + The sender object. + An exception containting the PC/SC error code returned from the native library. + + + + Smart card monitor factory + + + + + Default factory instance. Uses for context creation. + + + + + Creates a new monitor factory. + + Context factory that creates for the new instances. + + + + + + + + + Monitors a Smart Card reader and triggers events on status changes. + Creates a new thread and calls the of the given object. + + + A general reader status change. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + // Point the callback function(s) to the pre-defined method MyStatusChangedMethod. + monitor.StatusChanged += new StatusChangeEvent(MyStatusChangedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + A new card has been inserted. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + monitor.CardInserted += new CardInsertedEvent(MyCardInsertedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + A card has been removed. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + monitor.CardRemoved += new CardRemovedEvent(MyCardRemovedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + The monitor object has been initialized. + + This event appears only once for each reader after calling or . + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + monitor.Initialized += new CardInitializedEvent(MyCardInitializedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + An PC/SC error occurred during monitoring. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + monitor.MonitorException += new MonitorExceptionEvent(MyMonitorExceptionMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + All readers that are currently being monitored. + A array of reader names. if no readers is being monitored. + + + Indicates if there are readers currently monitored. + + + + Value + Description + + + + + + Monitoring process ongoing. + + + + + + No monitoring. + + + + + + + Releases unmanaged resources and stops the background thread (if running). + + + + Creates a new SCardMonitor object that is able to listen for certain smart card / reader changes. + A smartcard context factory + Scope of the establishment. This can either be a local or remote connection. + + + Returns the current state of a reader that is currently being monitored. + The number of the desired reader. The index must be between 0 and ( - 1). + The current state of reader with index number . + This method will throw an if the specified is invalid. You can enumerate all readers currently monitored with the property. + If the specified is invalid. + + + Returns the current state of a reader that is currently being monitored. + The number of the desired reader. The index must be between 0 and ( - 1). + The current state of reader with index number . + This method will throw an if the specified is invalid. You can enumerate all readers currently monitored with the property. + If the specified is invalid. + + + Returns the reader name of a given . + The number of the desired reader. The index must be between 0 and ( - 1). + A reader name. + This method will throw an if the specified is invalid. You can enumerate all readers currently monitored with the property. + If the specified is invalid. + + + The number of readers that currently being monitored. + Return 0 if no reader is being monitored. + + + Disposes the object. + Dispose will call in order to stop the background thread. The application context will be disposed if you configured the monitor to do so at construction time. + + + Disposes the object. + Ignored. It will call in order to stop the background thread. The application context will be disposed if the user configured the monitor to do so at construction time. + + + Cancels the monitoring of all readers that are currently being monitored. + This will end the monitoring. The method calls the method of its Application Context to the PC/SC Resource Manager. + + + The Smart Card reader that shall be monitored. + Starts to monitor a single Smart Card reader for status changes. + + + + // Create a new monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + // Start to monitor a single reader. + monitor.Start("OMNIKEY CardMan 5x21 00 00"); + + + Do not forget to register for at least one event: + + EventDescription + A new card has been inserted. + A card has been removed. + Initial status. + A general status change. + An error occurred. + + + + + A array of reader names that shall be monitored. + Starts to monitor a range Smart Card readers for status changes. + + + + string [] readerNames; + using (var ctx = new SCardContext()) { + ctx.Establish(SCardScope.System); + // Retrieve the names of all installed readers. + readerNames = ctx.GetReaders(); + ctx.Release(); + } + + // Create a new monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + foreach (string reader in readerNames) { + Console.WriteLine("Start monitoring for reader {0}.", reader); + } + + // Start monitoring multiple readers. + monitor.Start(readerNames); + + + Do not forget to register for at least one event: + + EventDescription + A new card has been inserted. + A card has been removed. + Initial status. + A general status change. + An error occurred. + + + + + A general reader status change. + The sender object. + Reader status information. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + // Point the callback function(s) to the pre-defined method MyStatusChangedMethod. + monitor.StatusChanged += new StatusChangeEvent(MyStatusChangedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + Information about a smart card reader status change. + + + The reader's status before this event. + + Is a bit mask containing one or more of the following values: + + StateDescription + The application is unaware of the current state, and would like to know. The use of this value results in an immediate return from state transition monitoring services. This is represented by all bits set to zero. + This reader should be ignored + There is a difference between the state believed by the application, and the state known by the resource manager. When this bit is set, the application may assume a significant state change has occurred on this reader. + The given reader name is not recognized by the resource manager. If this bit is set, then and will also be set + The actual state of this reader is not available. If this bit is set, then all the following bits are clear. + There is no card in the reader. If this bit is set, all the following bits will be clear + There is a card in the reader + The card in the reader is allocated for exclusive use by another application. If this bit is set, will also be set. + The card in the reader is in use by one or more other applications, but may be connected to in shared mode. If this bit is set, will also be set. + There is an unresponsive card in the reader. + + + + + The new status of this reader. + + Is a bit mask containing one or more of the following values: + + StateDescription + The application is unaware of the current state, and would like to know. The use of this value results in an immediate return from state transition monitoring services. This is represented by all bits set to zero. + This reader should be ignored + There is a difference between the state believed by the application, and the state known by the resource manager. When this bit is set, the application may assume a significant state change has occurred on this reader. + The given reader name is not recognized by the resource manager. If this bit is set, then and will also be set + The actual state of this reader is not available. If this bit is set, then all the following bits are clear. + There is no card in the reader. If this bit is set, all the following bits will be clear + There is a card in the reader + The card in the reader is allocated for exclusive use by another application. If this bit is set, will also be set. + The card in the reader is in use by one or more other applications, but may be connected to in shared mode. If this bit is set, will also be set. + There is an unresponsive card in the reader. + + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + Name of the reader. + The last state. + The new state. + The card's ATR. + + + + Holds information about the reader status. + + + + + A bit mask that represents the reader status + + + + + The reader's currently used protocol. + + + + + A list of the reader's friendly names + + + + + Gets the card's ATR. + + A byte array containing the ATR or null if no card connected. + + + + Creates a new instance + + The reader's friendly names + A bit mask that represents the reader status + The reader's currently used protocol. + The card's ATR if available + + + Smart card reader attribute enumeration. + Can be used as parameter for the following methods: + + + + + + + + + + Vendor name. (SCARD_ATTR_VENDOR_NAME) + + + + + Vendor-supplied interface device type (model designation of reader). (SCARD_ATTR_VENDOR_IFD_TYPE) + + + + + Vendor-supplied interface device version (DWORD in the form 0xMMmmbbbb where MM = major version, mm = minor version, and bbbb = build number). (SCARD_ATTR_VENDOR_IFD_VERSION) + + + + + Vendor-supplied interface device serial number. (SCARD_ATTR_VENDOR_IFD_SERIAL_NO) + + + + + DWORD encoded as 0xDDDDCCCC, where DDDD = data channel type and CCCC = channel number (SCARD_ATTR_CHANNEL_ID) + + + + + Asynchronous protocol types (SCARD_ATTR_ASYNC_PROTOCOL_TYPES) + + + + + Default clock rate, in kHz. (SCARD_ATTR_DEFAULT_CLK) + + + + + Maximum clock rate, in kHz. (SCARD_ATTR_MAX_CLK) + + + + + Default data rate, in bps. (SCARD_ATTR_DEFAULT_DATA_RATE) + + + + + Maximum data rate, in bps. (SCARD_ATTR_MAX_DATA_RATE) + + + + + Maximum bytes for information file size device. (SCARD_ATTR_MAX_IFSD) + + + + + Synchronous protocol types (SCARD_ATTR_SYNC_PROTOCOL_TYPES) + + + + + Zero if device does not support power down while smart card is inserted. Nonzero otherwise. (SCARD_ATTR_POWER_MGMT_SUPPORT) + + + + + User to card authentication device (SCARD_ATTR_USER_TO_CARD_AUTH_DEVICE) + + + + + User authentication input device (SCARD_ATTR_USER_AUTH_INPUT_DEVICE) + + + + + DWORD indicating which mechanical characteristics are supported. If zero, no special characteristics are supported. Note that multiple bits can be set (SCARD_ATTR_CHARACTERISTICS) + + + + + Current protocol type (SCARD_ATTR_CURRENT_PROTOCOL_TYPE) + + + + + Current clock rate, in kHz. (SCARD_ATTR_CURRENT_CLK) + + + + + Clock conversion factor. (SCARD_ATTR_CURRENT_F) + + + + + Bit rate conversion factor. (SCARD_ATTR_CURRENT_D) + + + + + Current guard time. (SCARD_ATTR_CURRENT_N) + + + + + Current work waiting time. (SCARD_ATTR_CURRENT_W) + + + + + Current byte size for information field size card. (SCARD_ATTR_CURRENT_IFSC) + + + + + Current byte size for information field size device. (SCARD_ATTR_CURRENT_IFSD) + + + + + Current block waiting time. (SCARD_ATTR_CURRENT_BWT) + + + + + Current character waiting time. (SCARD_ATTR_CURRENT_CWT) + + + + + Current error block control encoding. (SCARD_ATTR_CURRENT_EBC_ENCODING) + + + + + Extended block wait time. (SCARD_ATTR_EXTENDED_BWT) + + + + + Single byte indicating smart card presence(SCARD_ATTR_ICC_PRESENCE) + + + + + Single byte. Zero if smart card electrical contact is not active; nonzero if contact is active. (SCARD_ATTR_ICC_INTERFACE_STATUS) + + + + + Current IO state (SCARD_ATTR_CURRENT_IO_STATE) + + + + + Answer to reset (ATR) string. (SCARD_ATTR_ATR_STRING) + + + + + Answer to reset (ATR) string. (SCARD_ATTR_ATR_STRING) + + + + + Single byte indicating smart card type (SCARD_ATTR_ICC_TYPE_PER_ATR) + + + + + Esc reset (SCARD_ATTR_ESC_RESET) + + + + + Esc cancel (SCARD_ATTR_ESC_CANCEL) + + + + + Esc authentication request (SCARD_ATTR_ESC_AUTHREQUEST) + + + + + Maximum input (SCARD_ATTR_MAXINPUT) + + + + + Instance of this vendor's reader attached to the computer. The first instance will be device unit 0, the next will be unit 1 (if it is the same brand of reader) and so on. Two different brands of readers will both have zero for this value. (SCARD_ATTR_DEVICE_UNIT) + + + + + Reserved for future use. (SCARD_ATTR_DEVICE_IN_USE) + + + + + Device friendly name ASCII (SCARD_ATTR_DEVICE_FRIENDLY_NAME_A) + + + + + Device system name ASCII (SCARD_ATTR_DEVICE_SYSTEM_NAME_A) + + + + + Device friendly name UNICODE (SCARD_ATTR_DEVICE_FRIENDLY_NAME_W) + + + + + Device system name UNICODE (SCARD_ATTR_DEVICE_SYSTEM_NAME_W) + + + + + Supress T1 information file size request (SCARD_ATTR_SUPRESS_T1_IFS_REQUEST) + + + + + Device friendly name (SCARD_ATTR_DEVICE_FRIENDLY_NAME) + + + + + Device system name (SCARD_ATTR_DEVICE_SYSTEM_NAME) + + + + + Smart card class + + + + Vendor information definitions + + + Communication definitions + + + Protocol definitions + + + Power Management definitions + + + Security Assurance definitions + + + Mechanical characteristic definitions + + + Vendor specific definitions + + + Interface Device Protocol options + + + ICC State specific definitions + + + System-specific definitions + + + Manages an application context to the PC/SC Resource Manager. + Each thread of an application shall use its own SCardContext. + + + + + + + + + + + + Maximum ATR size. + + + PlatformMaximum ATR size + + Windows (Winscard.dll) + 36 + + + UNIX/Linux (PC/SClite) + 33 + + + + Attention: Size depends on platform. + + + Infinite timeout. + 0xFFFFFFFF + + + + Destroys application context to the PC/SC Resource Manager. + + + + + Creates a new context instance + + + + + + + + + + + + + + + + + + + + + + + + + Disposes a PC/SC application context. + Ignored. If an application context to the PC/SC Resource Manager has been established it will call the method. + + + + + + + + + + + + + + + + + + + + + + + + Error and return codes. + + + No error. (SCARD_S_SUCCESS) + + + An internal consistency check failed. (SCARD_F_INTERNAL_ERROR) + + + The action was cancelled by an request. (SCARD_E_CANCELLED) + + + The supplied handle was invalid. (SCARD_E_INVALID_HANDLE) + + + The supplied handle was invalid. (ERROR_INVALID_HANDLE) + + + One or more of the supplied parameters could not be properly interpreted. (SCARD_E_INVALID_PARAMETER) + + + Registry startup information is missing or invalid. (SCARD_E_INVALID_TARGET) + + + Not enough memory available to complete this command. (SCARD_E_NO_MEMORY) + + + An internal consistency timer has expired. (SCARD_F_WAITED_TOO_LONG) + + + The data buffer to receive returned data is too small for the returned data. (SCARD_E_INSUFFICIENT_BUFFER) + + + Windows error ERROR_INSUFFICIENT_BUFFER: The data area passed to a system call is too small. + + + The specified reader name is not recognized. (SCARD_E_UNKNOWN_READER) + + + The user-specified timeout value has expired. (SCARD_E_TIMEOUT) + + + The smart card cannot be accessed because of other connections outstanding. (SCARD_E_SHARING_VIOLATION) + + + The operation requires a Smart Card, but no Smart Card is currently in the device. (SCARD_E_NO_SMARTCARD) + + + The specified smart card name is not recognized. (SCARD_E_UNKNOWN_CARD) + + + The system could not dispose of the media in the requested manner. (SCARD_E_CANT_DISPOSE) + + + The requested protocols are incompatible with the protocol currently in use with the smart card. (SCARD_E_PROTO_MISMATCH) + + + The reader or smart card is not ready to accept commands. (SCARD_E_NOT_READY) + + + One or more of the supplied parameters values could not be properly interpreted. (SCARD_E_INVALID_VALUE) + + + The action was cancelled by the system, presumably to log off or shut down. (SCARD_E_SYSTEM_CANCELLED) + + + An internal communications error has been detected. (SCARD_F_COMM_ERROR) + + + An internal error has been detected, but the source is unknown. (SCARD_F_UNKNOWN_ERROR) + + + An ATR obtained from the registry is not a valid ATR string. (SCARD_E_INVALID_ATR) + + + An attempt was made to end a non-existent transaction. (SCARD_E_NOT_TRANSACTED) + + + The specified reader is not currently available for use. (SCARD_E_READER_UNAVAILABLE) + + + The operation has been aborted to allow the server application to exit. (SCARD_P_SHUTDOWN) + + + The reader cannot communicate with the card, due to ATR string configuration conflicts. (SCARD_W_UNSUPPORTED_CARD) + + + The smart card is not responding to a reset. (SCARD_W_UNRESPONSIVE_CARD) + + + Power has been removed from the smart card, so that further communication is not possible. (SCARD_W_UNPOWERED_CARD) + + + The smart card has been reset, so any shared state information is invalid. (SCARD_W_RESET_CARD) + + + The smart card has been removed, so further communication is not possible. (SCARD_W_REMOVED_CARD) + + + The PCI Receive buffer was too small. (SCARD_E_PCI_TOO_SMALL) + + + The reader driver does not meet minimal requirements for support. (SCARD_E_READER_UNSUPPORTED) + + + The reader driver did not produce a unique reader name. (SCARD_E_DUPLICATE_READER) + + + The smart card does not meet minimal requirements for support. (SCARD_E_CARD_UNSUPPORTED) + + + The Smart card resource manager is not running. (SCARD_E_NO_SERVICE) + + + The Smart card resource manager has shut down. (SCARD_E_SERVICE_STOPPED) + + + An unexpected card error has occurred. (SCARD_E_UNEXPECTED) + + + Cannot find a smart card reader. (SCARD_E_NO_READERS_AVAILABLE) + + + PC/SC Lite specific extensions + Feature not supported. (SCARD_E_UNSUPPORTED_FEATURE) + + + No primary provider can be found for the smart card. (SCARD_E_ICC_INSTALLATION) + + + The requested order of object creation is not supported. (SCARD_E_ICC_CREATEORDER) + + + The identified directory does not exist in the smart card. (SCARD_E_DIR_NOT_FOUND) + + + The identified file does not exist in the smart card. (SCARD_E_FILE_NOT_FOUND) + + + The supplied path does not represent a smart card directory. (SCARD_E_NO_DIR) + + + The supplied path does not represent a smart card file. (SCARD_E_NO_FILE) + + + Access is denied to this file. (SCARD_E_NO_ACCESS) + + + The smart card does not have enough memory to store the information. (SCARD_E_WRITE_TOO_MANY) + + + There was an error trying to set the smart card file object pointer. (SCARD_E_BAD_SEEK) + + + The supplied PIN is incorrect. (SCARD_E_INVALID_CHV) + + + An unrecognized error code was returned from a layered component. (SCARD_E_UNKNOWN_RES_MNG) + + + The requested certificate does not exist. (SCARD_E_NO_SUCH_CERTIFICATE) + + + The requested certificate could not be obtained. (SCARD_E_CERTIFICATE_UNAVAILABLE) + + + A communications error with the smart card has been detected. (SCARD_E_COMM_DATA_LOST) + + + The requested key container does not exist on the smart card. (SCARD_E_NO_KEY_CONTAINER) + + + The Smart Card Resource Manager is too busy to complete this operation. (SCARD_E_SERVER_TOO_BUSY) + + + Access was denied because of a security violation. (SCARD_W_SECURITY_VIOLATION) + + + The card cannot be accessed because the wrong PIN was presented. (SCARD_W_WRONG_CHV) + + + The card cannot be accessed because the maximum number of PIN entry attempts has been reached. (SCARD_W_CHV_BLOCKED) + + + The end of the smart card file has been reached. (SCARD_W_EOF) + + + The user pressed "Cancel" on a Smart Card Selection Dialog. (SCARD_W_CANCELLED_BY_USER) + + + No PIN was presented to the smart card. (SCARD_W_CARD_NOT_AUTHENTICATED) + + + Structure of protocol control information. + + Is a structure containing the following: + + + + typedef struct { + DWORD dwProtocol; // SCARD_PROTOCOL_T0 or SCARD_PROTOCOL_T1 + DWORD cbPciLength; // Length of this structure - not used + } SCARD_IO_REQUEST; + + + + The pointers to the pre-defined / built-in PCI structures are determinated with dlsym() on UNIX/Linux hosts and GetProcAddress() on Windows hosts. + + + + Destroys the object and frees unmanaged memory. + + + Initializes a new instance of the class. + + + Creates a new SCardPCI object. + + Protocol Control InformationDescription + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + + + Size of this structure in bytes. + + + Creates a new SCardPCI object. + + + Protocol Control InformationDescription + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + + + User data. + + + Disposes the instance and frees unmanaged memory. + + + + Disposes the instance and frees unmanaged memory. + + Ignored + + + Protocol + + + Protocol Control InformationDescription + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + + + + + Size of this structure in bytes. + + + User data. + + + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + A pointer to the C structure in the system library. + This pointer to the pre-defined / built-in PCI structure is determinated with dlsym() on UNIX/Linux hosts and GetProcAddress() on Windows hosts. + + + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + A pointer to the C structure in the system library. + This pointer to the pre-defined / built-in PCI structure is determinated with dlsym() on UNIX/Linux hosts and GetProcAddress() on Windows hosts. + + + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + A pointer to the C structure in the system library. + This pointer to the pre-defined / built-in PCI structure is determinated with dlsym() on UNIX/Linux hosts and GetProcAddress() on Windows hosts. + + + Receives a PCI pointer to a given protocol. + The desired protocol. + A pointer to the PCI structure in the native system library. + + + Communication protocol use with the Smart Card. + This is a bit mask of acceptable protocols for the connection. You can use ( | ) if you do not have a preferred protocol. + + + + Protocol not defined. + + + + T=0 active protocol. + + + T=1 active protocol. + + + Raw active protocol. Use with memory type cards. + + + T=15 protocol. + + + ( | ). IFD (Interface device) determines protocol. + + + A reader class that implements the most basic PC/SC functions to operate on smart cards, RFID tags and so on. + It will use the system's native PC/SC API. + + + + + + + + + + + + + + + + + + + + + Unmanaged resources (card handle) are released! + + + Creates a new smart card reader object. + Connection context to the PC/SC Resource Manager. + + + + // Create PC/SC context + var ctx = new SCardContext(); + ctx.Establish(SCardScope.System); + + // Create reader object and connect to the Smart Card + var myReader = new SCardReader(ctx); + var rc = myReader.Connect( + "OMNIKEY CardMan 5321", + SCardShareMode.Shared, + SCardProtocol.T1); + + + + If is + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This will disconnect the reader if it is currently connected using . + Ignored. The reader will be disconnected. + + + Action to be taken on the reader. + The disposition action is not currently used in PC/SC Lite. + + + Do nothing. (SCARD_LEAVE_CARD) + + + Reset the card. (SCARD_RESET_CARD) + + + Unpower the card. (SCARD_UNPOWER_CARD) + + + Eject the card. (SCARD_EJECT_CARD) + + + A structures that contains the old and the new Smart Card reader status. + + Is used as parameter in . + The new event state will be contained in . A status change might be a card insertion or removal event, a change in ATR, etc. To wait for a reader event (reader added or removed) you may use the special reader name "\\?PnP?\Notification". If a reader event occurs the state of this reader will change and the bit will be set. + + + + + Frees unmanaged resources. + + + + + Frees unmanaged resources. + + + + + Frees unmanaged resources. + + Ignored. + + + + Initializes a new instance of the class. + + + + + User defined data. + + + + + User defined data. + + + + + Current state of reader. + + + + + Current state of reader. + + + + + Reader state after a state change. + + + + + Reader state after a state change. + + + + + Number of change events. + + + + + The reader's name. + + + + + Answer To Reset (ATR) + + + + Scope of the establishment. + The following scopes are not used on Linux/UNIX machines using the PC/SC Lite daemon: + + + + + + + + Scope in user space. + + + Scope in terminal. + + + Scope in system. Service on the local machine. + + + PC/SC Lite specific extensions + Scope is global. + + + Mode of connection type: exclusive or shared. + + can be used before using to send control commands to the reader even if a card is not present in the reader. Contrary to Windows winscard behavior, the reader is accessed in shared mode and not exclusive mode. + + + This application will NOT allow others to share the reader. (SCARD_SHARE_EXCLUSIVE) + + + This application will allow others to share the reader. (SCARD_SHARE_SHARED) + + + Direct control of the reader, even without a card. (SCARD_SHARE_DIRECT) + + + State of the smart card in the reader. + Is a bit mask that represents the current reader status. + + + Unknown status. + + + There is no card in the reader. + + + There is a card in the reader, but it has not been moved into position for use. + + + There is a card in the reader in position for use. The card is not powered. + + + Power is being provided to the card, but the reader driver is unaware of the mode of the card. + + + The card has been reset and is awaiting PTS negotiation. + + + The card has been reset and specific communication protocols have been established. + + + Reader state. + + + The application is unaware of the current state, and would like to know. The use of this value results in an immediate return from state transition monitoring services. This is represented by all bits set to zero. (SCARD_STATE_UNAWARE) + + + This reader should be ignored. (SCARD_STATE_IGNORE) + + + There is a difference between the state believed by the application, and the state known by the resource manager. When this bit is set, the application may assume a significant state change has occurred on this reader. (SCARD_STATE_CHANGED) + + + The given reader name is not recognized by the resource manager. If this bit is set, then and will also be set. (SCARD_STATE_UNKNOWN) + + + The actual state of this reader is not available. If this bit is set, then all the following bits are clear. (SCARD_STATE_UNAVAILABLE) + + + There is no card in the reader. If this bit is set, all the following bits will be clear. (SCARD_STATE_EMPTY) + + + There is a card in the reader. (SCARD_STATE_PRESENT) + + + There is a card in the reader with an ATR matching one of the target cards. If this bit is set, will also be set. This bit is only returned on the SCardLocateCards() function. (SCARD_STATE_ATRMATCH) + + + The card in the reader is allocated for exclusive use by another application. If this bit is set, will also be set. (SCARD_STATE_EXCLUSIVE) + + + The card in the reader is in use by one or more other applications, but may be connected to in shared mode. If this bit is set, will also be set. (SCARD_STATE_INUSE) + + + There is an unresponsive card in the reader. (SCARD_STATE_MUTE) + + + The card is unpowered. (SCARD_STATE_UNPOWERED) + + + + Helper class that offers methods to convert various values into strings. + + + + + Returns a human readable text for the given PC/SC error code. + + Error or return code. + A human readable string. + Warning! This method behaves differently compared to the original PC/SC-Lite pcsc_stringify_error function. Instead of the (const) variable name it returns a short text description. + + + + Returns a description string of an enumeration attribute. + + attribute type + attribute + If available: a description string of the specified attribute. Otherwise null. + + + diff --git a/bin/x64/Debug/net461/QRkakuninn.png b/bin/x64/Debug/net461/QRkakuninn.png new file mode 100644 index 0000000..032ca20 Binary files /dev/null and b/bin/x64/Debug/net461/QRkakuninn.png differ diff --git a/bin/x64/Debug/net461/SOM_config.dat b/bin/x64/Debug/net461/SOM_config.dat new file mode 100644 index 0000000..4bd1ebe --- /dev/null +++ b/bin/x64/Debug/net461/SOM_config.dat @@ -0,0 +1,34 @@ +127.0.0.1 +root +root +so-manager2 +3306 +0 +34 +用紙の残量が少なくなりました。交換してください。 +C:\SoM_PrnControl\log\ +SOM_LOG +1 +60 +https://so-manager.com/api/getgip.php +稼働中 +停止中 +0 +COM3 +https://rrmt.kessai.info/KessaiTest/Yoyaku.asmx +192.168.0.179 +SRJ00001 +vuOIM66.6B +41226 +SRJ +00001 +SRJ +SRI00001 +vuNIM66.6B +41225 +SRI +00001 +SRI +So-Manager駐輪場 +03-5856-4720(受付時間12:00-22:00) +TYPE-OTHER \ No newline at end of file diff --git a/bin/x64/Debug/net461/SoM_PrnControl.exe.1 b/bin/x64/Debug/net461/SoM_PrnControl.exe.1 new file mode 100644 index 0000000..97508bb Binary files /dev/null and b/bin/x64/Debug/net461/SoM_PrnControl.exe.1 differ diff --git a/bin/x64/Debug/net461/SoM_PrnControl.exe.config b/bin/x64/Debug/net461/SoM_PrnControl.exe.config new file mode 100644 index 0000000..0cbb707 --- /dev/null +++ b/bin/x64/Debug/net461/SoM_PrnControl.exe.config @@ -0,0 +1,339 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/bin/x64/Debug/net461/System.AppContext.dll b/bin/x64/Debug/net461/System.AppContext.dll new file mode 100644 index 0000000..4ccc058 Binary files /dev/null and b/bin/x64/Debug/net461/System.AppContext.dll differ diff --git a/bin/x64/Debug/net461/System.Collections.Concurrent.dll b/bin/x64/Debug/net461/System.Collections.Concurrent.dll new file mode 100644 index 0000000..26f10d1 Binary files /dev/null and b/bin/x64/Debug/net461/System.Collections.Concurrent.dll differ diff --git a/bin/x64/Debug/net461/System.Collections.NonGeneric.dll b/bin/x64/Debug/net461/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..9da235a Binary files /dev/null and b/bin/x64/Debug/net461/System.Collections.NonGeneric.dll differ diff --git a/bin/x64/Debug/net461/System.Collections.Specialized.dll b/bin/x64/Debug/net461/System.Collections.Specialized.dll new file mode 100644 index 0000000..fbd4fc7 Binary files /dev/null and b/bin/x64/Debug/net461/System.Collections.Specialized.dll differ diff --git a/bin/x64/Debug/net461/System.Collections.dll b/bin/x64/Debug/net461/System.Collections.dll new file mode 100644 index 0000000..72ac205 Binary files /dev/null and b/bin/x64/Debug/net461/System.Collections.dll differ diff --git a/bin/x64/Debug/net461/System.ComponentModel.EventBasedAsync.dll b/bin/x64/Debug/net461/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..37742d4 Binary files /dev/null and b/bin/x64/Debug/net461/System.ComponentModel.EventBasedAsync.dll differ diff --git a/bin/x64/Debug/net461/System.ComponentModel.Primitives.dll b/bin/x64/Debug/net461/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..b0c4b68 Binary files /dev/null and b/bin/x64/Debug/net461/System.ComponentModel.Primitives.dll differ diff --git a/bin/x64/Debug/net461/System.ComponentModel.TypeConverter.dll b/bin/x64/Debug/net461/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..fb42b44 Binary files /dev/null and b/bin/x64/Debug/net461/System.ComponentModel.TypeConverter.dll differ diff --git a/bin/x64/Debug/net461/System.ComponentModel.dll b/bin/x64/Debug/net461/System.ComponentModel.dll new file mode 100644 index 0000000..8e2d829 Binary files /dev/null and b/bin/x64/Debug/net461/System.ComponentModel.dll differ diff --git a/bin/x64/Debug/net461/System.Console.dll b/bin/x64/Debug/net461/System.Console.dll new file mode 100644 index 0000000..fe61bcc Binary files /dev/null and b/bin/x64/Debug/net461/System.Console.dll differ diff --git a/bin/x64/Debug/net461/System.Data.Common.dll b/bin/x64/Debug/net461/System.Data.Common.dll new file mode 100644 index 0000000..05e3481 Binary files /dev/null and b/bin/x64/Debug/net461/System.Data.Common.dll differ diff --git a/bin/x64/Debug/net461/System.Diagnostics.Contracts.dll b/bin/x64/Debug/net461/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..98f40eb Binary files /dev/null and b/bin/x64/Debug/net461/System.Diagnostics.Contracts.dll differ diff --git a/bin/x64/Debug/net461/System.Diagnostics.Debug.dll b/bin/x64/Debug/net461/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..a51c0cf Binary files /dev/null and b/bin/x64/Debug/net461/System.Diagnostics.Debug.dll differ diff --git a/bin/x64/Debug/net461/System.Diagnostics.FileVersionInfo.dll b/bin/x64/Debug/net461/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..3c203b0 Binary files /dev/null and b/bin/x64/Debug/net461/System.Diagnostics.FileVersionInfo.dll differ diff --git a/bin/x64/Debug/net461/System.Diagnostics.Process.dll b/bin/x64/Debug/net461/System.Diagnostics.Process.dll new file mode 100644 index 0000000..b537e62 Binary files /dev/null and b/bin/x64/Debug/net461/System.Diagnostics.Process.dll differ diff --git a/bin/x64/Debug/net461/System.Diagnostics.StackTrace.dll b/bin/x64/Debug/net461/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..5dfaad6 Binary files /dev/null and b/bin/x64/Debug/net461/System.Diagnostics.StackTrace.dll differ diff --git a/bin/x64/Debug/net461/System.Diagnostics.TextWriterTraceListener.dll b/bin/x64/Debug/net461/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..a5720da Binary files /dev/null and b/bin/x64/Debug/net461/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/bin/x64/Debug/net461/System.Diagnostics.Tools.dll b/bin/x64/Debug/net461/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..bd9deae Binary files /dev/null and b/bin/x64/Debug/net461/System.Diagnostics.Tools.dll differ diff --git a/bin/x64/Debug/net461/System.Diagnostics.TraceSource.dll b/bin/x64/Debug/net461/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..5474eb2 Binary files /dev/null and b/bin/x64/Debug/net461/System.Diagnostics.TraceSource.dll differ diff --git a/bin/x64/Debug/net461/System.Diagnostics.Tracing.dll b/bin/x64/Debug/net461/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..5b8b2b4 Binary files /dev/null and b/bin/x64/Debug/net461/System.Diagnostics.Tracing.dll differ diff --git a/bin/x64/Debug/net461/System.Drawing.Primitives.dll b/bin/x64/Debug/net461/System.Drawing.Primitives.dll new file mode 100644 index 0000000..1eeacc4 Binary files /dev/null and b/bin/x64/Debug/net461/System.Drawing.Primitives.dll differ diff --git a/bin/x64/Debug/net461/System.Dynamic.Runtime.dll b/bin/x64/Debug/net461/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..d34b388 Binary files /dev/null and b/bin/x64/Debug/net461/System.Dynamic.Runtime.dll differ diff --git a/bin/x64/Debug/net461/System.Globalization.Calendars.dll b/bin/x64/Debug/net461/System.Globalization.Calendars.dll new file mode 100644 index 0000000..4a198bc Binary files /dev/null and b/bin/x64/Debug/net461/System.Globalization.Calendars.dll differ diff --git a/bin/x64/Debug/net461/System.Globalization.Extensions.dll b/bin/x64/Debug/net461/System.Globalization.Extensions.dll new file mode 100644 index 0000000..99f9e4a Binary files /dev/null and b/bin/x64/Debug/net461/System.Globalization.Extensions.dll differ diff --git a/bin/x64/Debug/net461/System.Globalization.dll b/bin/x64/Debug/net461/System.Globalization.dll new file mode 100644 index 0000000..dd3d2e3 Binary files /dev/null and b/bin/x64/Debug/net461/System.Globalization.dll differ diff --git a/bin/x64/Debug/net461/System.IO.Compression.ZipFile.dll b/bin/x64/Debug/net461/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..345acbd Binary files /dev/null and b/bin/x64/Debug/net461/System.IO.Compression.ZipFile.dll differ diff --git a/bin/x64/Debug/net461/System.IO.Compression.dll b/bin/x64/Debug/net461/System.IO.Compression.dll new file mode 100644 index 0000000..ebbb503 Binary files /dev/null and b/bin/x64/Debug/net461/System.IO.Compression.dll differ diff --git a/bin/x64/Debug/net461/System.IO.FileSystem.DriveInfo.dll b/bin/x64/Debug/net461/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..5c59398 Binary files /dev/null and b/bin/x64/Debug/net461/System.IO.FileSystem.DriveInfo.dll differ diff --git a/bin/x64/Debug/net461/System.IO.FileSystem.Primitives.dll b/bin/x64/Debug/net461/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..de4c49f Binary files /dev/null and b/bin/x64/Debug/net461/System.IO.FileSystem.Primitives.dll differ diff --git a/bin/x64/Debug/net461/System.IO.FileSystem.Watcher.dll b/bin/x64/Debug/net461/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..228d60b Binary files /dev/null and b/bin/x64/Debug/net461/System.IO.FileSystem.Watcher.dll differ diff --git a/bin/x64/Debug/net461/System.IO.FileSystem.dll b/bin/x64/Debug/net461/System.IO.FileSystem.dll new file mode 100644 index 0000000..6934080 Binary files /dev/null and b/bin/x64/Debug/net461/System.IO.FileSystem.dll differ diff --git a/bin/x64/Debug/net461/System.IO.IsolatedStorage.dll b/bin/x64/Debug/net461/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..356e123 Binary files /dev/null and b/bin/x64/Debug/net461/System.IO.IsolatedStorage.dll differ diff --git a/bin/x64/Debug/net461/System.IO.MemoryMappedFiles.dll b/bin/x64/Debug/net461/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..add3b29 Binary files /dev/null and b/bin/x64/Debug/net461/System.IO.MemoryMappedFiles.dll differ diff --git a/bin/x64/Debug/net461/System.IO.Pipes.dll b/bin/x64/Debug/net461/System.IO.Pipes.dll new file mode 100644 index 0000000..e5690c4 Binary files /dev/null and b/bin/x64/Debug/net461/System.IO.Pipes.dll differ diff --git a/bin/x64/Debug/net461/System.IO.UnmanagedMemoryStream.dll b/bin/x64/Debug/net461/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..cdd7427 Binary files /dev/null and b/bin/x64/Debug/net461/System.IO.UnmanagedMemoryStream.dll differ diff --git a/bin/x64/Debug/net461/System.IO.dll b/bin/x64/Debug/net461/System.IO.dll new file mode 100644 index 0000000..e9eb534 Binary files /dev/null and b/bin/x64/Debug/net461/System.IO.dll differ diff --git a/bin/x64/Debug/net461/System.Linq.Expressions.dll b/bin/x64/Debug/net461/System.Linq.Expressions.dll new file mode 100644 index 0000000..63b570c Binary files /dev/null and b/bin/x64/Debug/net461/System.Linq.Expressions.dll differ diff --git a/bin/x64/Debug/net461/System.Linq.Parallel.dll b/bin/x64/Debug/net461/System.Linq.Parallel.dll new file mode 100644 index 0000000..d8d097e Binary files /dev/null and b/bin/x64/Debug/net461/System.Linq.Parallel.dll differ diff --git a/bin/x64/Debug/net461/System.Linq.Queryable.dll b/bin/x64/Debug/net461/System.Linq.Queryable.dll new file mode 100644 index 0000000..404bbe2 Binary files /dev/null and b/bin/x64/Debug/net461/System.Linq.Queryable.dll differ diff --git a/bin/x64/Debug/net461/System.Linq.dll b/bin/x64/Debug/net461/System.Linq.dll new file mode 100644 index 0000000..42cd93b Binary files /dev/null and b/bin/x64/Debug/net461/System.Linq.dll differ diff --git a/bin/x64/Debug/net461/System.Net.Http.dll b/bin/x64/Debug/net461/System.Net.Http.dll new file mode 100644 index 0000000..1c5c6fd Binary files /dev/null and b/bin/x64/Debug/net461/System.Net.Http.dll differ diff --git a/bin/x64/Debug/net461/System.Net.NameResolution.dll b/bin/x64/Debug/net461/System.Net.NameResolution.dll new file mode 100644 index 0000000..e8a65c0 Binary files /dev/null and b/bin/x64/Debug/net461/System.Net.NameResolution.dll differ diff --git a/bin/x64/Debug/net461/System.Net.NetworkInformation.dll b/bin/x64/Debug/net461/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..543a6cf Binary files /dev/null and b/bin/x64/Debug/net461/System.Net.NetworkInformation.dll differ diff --git a/bin/x64/Debug/net461/System.Net.Ping.dll b/bin/x64/Debug/net461/System.Net.Ping.dll new file mode 100644 index 0000000..eeb4666 Binary files /dev/null and b/bin/x64/Debug/net461/System.Net.Ping.dll differ diff --git a/bin/x64/Debug/net461/System.Net.Primitives.dll b/bin/x64/Debug/net461/System.Net.Primitives.dll new file mode 100644 index 0000000..8a929ae Binary files /dev/null and b/bin/x64/Debug/net461/System.Net.Primitives.dll differ diff --git a/bin/x64/Debug/net461/System.Net.Requests.dll b/bin/x64/Debug/net461/System.Net.Requests.dll new file mode 100644 index 0000000..5cf38f8 Binary files /dev/null and b/bin/x64/Debug/net461/System.Net.Requests.dll differ diff --git a/bin/x64/Debug/net461/System.Net.Security.dll b/bin/x64/Debug/net461/System.Net.Security.dll new file mode 100644 index 0000000..eacb8a1 Binary files /dev/null and b/bin/x64/Debug/net461/System.Net.Security.dll differ diff --git a/bin/x64/Debug/net461/System.Net.Sockets.dll b/bin/x64/Debug/net461/System.Net.Sockets.dll new file mode 100644 index 0000000..9716795 Binary files /dev/null and b/bin/x64/Debug/net461/System.Net.Sockets.dll differ diff --git a/bin/x64/Debug/net461/System.Net.WebHeaderCollection.dll b/bin/x64/Debug/net461/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..0238e69 Binary files /dev/null and b/bin/x64/Debug/net461/System.Net.WebHeaderCollection.dll differ diff --git a/bin/x64/Debug/net461/System.Net.WebSockets.Client.dll b/bin/x64/Debug/net461/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..3275912 Binary files /dev/null and b/bin/x64/Debug/net461/System.Net.WebSockets.Client.dll differ diff --git a/bin/x64/Debug/net461/System.Net.WebSockets.dll b/bin/x64/Debug/net461/System.Net.WebSockets.dll new file mode 100644 index 0000000..7a74189 Binary files /dev/null and b/bin/x64/Debug/net461/System.Net.WebSockets.dll differ diff --git a/bin/x64/Debug/net461/System.ObjectModel.dll b/bin/x64/Debug/net461/System.ObjectModel.dll new file mode 100644 index 0000000..37e1189 Binary files /dev/null and b/bin/x64/Debug/net461/System.ObjectModel.dll differ diff --git a/bin/x64/Debug/net461/System.Reflection.Extensions.dll b/bin/x64/Debug/net461/System.Reflection.Extensions.dll new file mode 100644 index 0000000..6d12687 Binary files /dev/null and b/bin/x64/Debug/net461/System.Reflection.Extensions.dll differ diff --git a/bin/x64/Debug/net461/System.Reflection.Primitives.dll b/bin/x64/Debug/net461/System.Reflection.Primitives.dll new file mode 100644 index 0000000..2c160e9 Binary files /dev/null and b/bin/x64/Debug/net461/System.Reflection.Primitives.dll differ diff --git a/bin/x64/Debug/net461/System.Reflection.dll b/bin/x64/Debug/net461/System.Reflection.dll new file mode 100644 index 0000000..ec0b3d2 Binary files /dev/null and b/bin/x64/Debug/net461/System.Reflection.dll differ diff --git a/bin/x64/Debug/net461/System.Resources.Reader.dll b/bin/x64/Debug/net461/System.Resources.Reader.dll new file mode 100644 index 0000000..a34c693 Binary files /dev/null and b/bin/x64/Debug/net461/System.Resources.Reader.dll differ diff --git a/bin/x64/Debug/net461/System.Resources.ResourceManager.dll b/bin/x64/Debug/net461/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..c4a14ce Binary files /dev/null and b/bin/x64/Debug/net461/System.Resources.ResourceManager.dll differ diff --git a/bin/x64/Debug/net461/System.Resources.Writer.dll b/bin/x64/Debug/net461/System.Resources.Writer.dll new file mode 100644 index 0000000..0ce2946 Binary files /dev/null and b/bin/x64/Debug/net461/System.Resources.Writer.dll differ diff --git a/bin/x64/Debug/net461/System.Runtime.CompilerServices.VisualC.dll b/bin/x64/Debug/net461/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..30a2f81 Binary files /dev/null and b/bin/x64/Debug/net461/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/bin/x64/Debug/net461/System.Runtime.Extensions.dll b/bin/x64/Debug/net461/System.Runtime.Extensions.dll new file mode 100644 index 0000000..eb0e80b Binary files /dev/null and b/bin/x64/Debug/net461/System.Runtime.Extensions.dll differ diff --git a/bin/x64/Debug/net461/System.Runtime.Handles.dll b/bin/x64/Debug/net461/System.Runtime.Handles.dll new file mode 100644 index 0000000..37f15ff Binary files /dev/null and b/bin/x64/Debug/net461/System.Runtime.Handles.dll differ diff --git a/bin/x64/Debug/net461/System.Runtime.InteropServices.RuntimeInformation.dll b/bin/x64/Debug/net461/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..c3e0c71 Binary files /dev/null and b/bin/x64/Debug/net461/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/bin/x64/Debug/net461/System.Runtime.InteropServices.dll b/bin/x64/Debug/net461/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..ab54429 Binary files /dev/null and b/bin/x64/Debug/net461/System.Runtime.InteropServices.dll differ diff --git a/bin/x64/Debug/net461/System.Runtime.Numerics.dll b/bin/x64/Debug/net461/System.Runtime.Numerics.dll new file mode 100644 index 0000000..3202cd9 Binary files /dev/null and b/bin/x64/Debug/net461/System.Runtime.Numerics.dll differ diff --git a/bin/x64/Debug/net461/System.Runtime.Serialization.Formatters.dll b/bin/x64/Debug/net461/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..06b5480 Binary files /dev/null and b/bin/x64/Debug/net461/System.Runtime.Serialization.Formatters.dll differ diff --git a/bin/x64/Debug/net461/System.Runtime.Serialization.Json.dll b/bin/x64/Debug/net461/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..1f30098 Binary files /dev/null and b/bin/x64/Debug/net461/System.Runtime.Serialization.Json.dll differ diff --git a/bin/x64/Debug/net461/System.Runtime.Serialization.Primitives.dll b/bin/x64/Debug/net461/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..19a6dd2 Binary files /dev/null and b/bin/x64/Debug/net461/System.Runtime.Serialization.Primitives.dll differ diff --git a/bin/x64/Debug/net461/System.Runtime.Serialization.Xml.dll b/bin/x64/Debug/net461/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..3a839e2 Binary files /dev/null and b/bin/x64/Debug/net461/System.Runtime.Serialization.Xml.dll differ diff --git a/bin/x64/Debug/net461/System.Runtime.dll b/bin/x64/Debug/net461/System.Runtime.dll new file mode 100644 index 0000000..344ee77 Binary files /dev/null and b/bin/x64/Debug/net461/System.Runtime.dll differ diff --git a/bin/x64/Debug/net461/System.Security.Claims.dll b/bin/x64/Debug/net461/System.Security.Claims.dll new file mode 100644 index 0000000..9cb6423 Binary files /dev/null and b/bin/x64/Debug/net461/System.Security.Claims.dll differ diff --git a/bin/x64/Debug/net461/System.Security.Cryptography.Algorithms.dll b/bin/x64/Debug/net461/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..01b7bb5 Binary files /dev/null and b/bin/x64/Debug/net461/System.Security.Cryptography.Algorithms.dll differ diff --git a/bin/x64/Debug/net461/System.Security.Cryptography.Csp.dll b/bin/x64/Debug/net461/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..d7721e7 Binary files /dev/null and b/bin/x64/Debug/net461/System.Security.Cryptography.Csp.dll differ diff --git a/bin/x64/Debug/net461/System.Security.Cryptography.Encoding.dll b/bin/x64/Debug/net461/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..f588614 Binary files /dev/null and b/bin/x64/Debug/net461/System.Security.Cryptography.Encoding.dll differ diff --git a/bin/x64/Debug/net461/System.Security.Cryptography.Primitives.dll b/bin/x64/Debug/net461/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..35a21ef Binary files /dev/null and b/bin/x64/Debug/net461/System.Security.Cryptography.Primitives.dll differ diff --git a/bin/x64/Debug/net461/System.Security.Cryptography.X509Certificates.dll b/bin/x64/Debug/net461/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..53d05b2 Binary files /dev/null and b/bin/x64/Debug/net461/System.Security.Cryptography.X509Certificates.dll differ diff --git a/bin/x64/Debug/net461/System.Security.Principal.dll b/bin/x64/Debug/net461/System.Security.Principal.dll new file mode 100644 index 0000000..6d7c2ba Binary files /dev/null and b/bin/x64/Debug/net461/System.Security.Principal.dll differ diff --git a/bin/x64/Debug/net461/System.Security.SecureString.dll b/bin/x64/Debug/net461/System.Security.SecureString.dll new file mode 100644 index 0000000..355a050 Binary files /dev/null and b/bin/x64/Debug/net461/System.Security.SecureString.dll differ diff --git a/bin/x64/Debug/net461/System.Text.Encoding.Extensions.dll b/bin/x64/Debug/net461/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..4f2b83d Binary files /dev/null and b/bin/x64/Debug/net461/System.Text.Encoding.Extensions.dll differ diff --git a/bin/x64/Debug/net461/System.Text.Encoding.dll b/bin/x64/Debug/net461/System.Text.Encoding.dll new file mode 100644 index 0000000..557551f Binary files /dev/null and b/bin/x64/Debug/net461/System.Text.Encoding.dll differ diff --git a/bin/x64/Debug/net461/System.Text.RegularExpressions.dll b/bin/x64/Debug/net461/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..1a64a17 Binary files /dev/null and b/bin/x64/Debug/net461/System.Text.RegularExpressions.dll differ diff --git a/bin/x64/Debug/net461/System.Threading.Overlapped.dll b/bin/x64/Debug/net461/System.Threading.Overlapped.dll new file mode 100644 index 0000000..5d7e7b7 Binary files /dev/null and b/bin/x64/Debug/net461/System.Threading.Overlapped.dll differ diff --git a/bin/x64/Debug/net461/System.Threading.Tasks.Parallel.dll b/bin/x64/Debug/net461/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..c4df330 Binary files /dev/null and b/bin/x64/Debug/net461/System.Threading.Tasks.Parallel.dll differ diff --git a/bin/x64/Debug/net461/System.Threading.Tasks.dll b/bin/x64/Debug/net461/System.Threading.Tasks.dll new file mode 100644 index 0000000..25999be Binary files /dev/null and b/bin/x64/Debug/net461/System.Threading.Tasks.dll differ diff --git a/bin/x64/Debug/net461/System.Threading.Thread.dll b/bin/x64/Debug/net461/System.Threading.Thread.dll new file mode 100644 index 0000000..9b7da65 Binary files /dev/null and b/bin/x64/Debug/net461/System.Threading.Thread.dll differ diff --git a/bin/x64/Debug/net461/System.Threading.ThreadPool.dll b/bin/x64/Debug/net461/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..9405b8f Binary files /dev/null and b/bin/x64/Debug/net461/System.Threading.ThreadPool.dll differ diff --git a/bin/x64/Debug/net461/System.Threading.Timer.dll b/bin/x64/Debug/net461/System.Threading.Timer.dll new file mode 100644 index 0000000..c9eae71 Binary files /dev/null and b/bin/x64/Debug/net461/System.Threading.Timer.dll differ diff --git a/bin/x64/Debug/net461/System.Threading.dll b/bin/x64/Debug/net461/System.Threading.dll new file mode 100644 index 0000000..deae2be Binary files /dev/null and b/bin/x64/Debug/net461/System.Threading.dll differ diff --git a/bin/x64/Debug/net461/System.ValueTuple.dll b/bin/x64/Debug/net461/System.ValueTuple.dll new file mode 100644 index 0000000..502f8cd Binary files /dev/null and b/bin/x64/Debug/net461/System.ValueTuple.dll differ diff --git a/bin/x64/Debug/net461/System.Xml.ReaderWriter.dll b/bin/x64/Debug/net461/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..24df9a0 Binary files /dev/null and b/bin/x64/Debug/net461/System.Xml.ReaderWriter.dll differ diff --git a/bin/x64/Debug/net461/System.Xml.XDocument.dll b/bin/x64/Debug/net461/System.Xml.XDocument.dll new file mode 100644 index 0000000..cbbc4f0 Binary files /dev/null and b/bin/x64/Debug/net461/System.Xml.XDocument.dll differ diff --git a/bin/x64/Debug/net461/System.Xml.XPath.XDocument.dll b/bin/x64/Debug/net461/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..0830ed1 Binary files /dev/null and b/bin/x64/Debug/net461/System.Xml.XPath.XDocument.dll differ diff --git a/bin/x64/Debug/net461/System.Xml.XPath.dll b/bin/x64/Debug/net461/System.Xml.XPath.dll new file mode 100644 index 0000000..8327f2e Binary files /dev/null and b/bin/x64/Debug/net461/System.Xml.XPath.dll differ diff --git a/bin/x64/Debug/net461/System.Xml.XmlDocument.dll b/bin/x64/Debug/net461/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..4f044b1 Binary files /dev/null and b/bin/x64/Debug/net461/System.Xml.XmlDocument.dll differ diff --git a/bin/x64/Debug/net461/System.Xml.XmlSerializer.dll b/bin/x64/Debug/net461/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..7b47de8 Binary files /dev/null and b/bin/x64/Debug/net461/System.Xml.XmlSerializer.dll differ diff --git a/bin/x64/Debug/net461/adachiku.CLF b/bin/x64/Debug/net461/adachiku.CLF new file mode 100644 index 0000000..2f83514 --- /dev/null +++ b/bin/x64/Debug/net461/adachiku.CLF @@ -0,0 +1,7480 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +iVBORw0KGgoAAAANSUhEUgAAAG4AAADICAYAAAAJHtQIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAACJISURBVHhe7d0HlCxFFQZgzAkDZgwIIuaAGAAVAyIoipgVA/GBWcScAUUxgoigBEHFLKCoCIpPERFQgigq5ow559yer5i71hY9PT2zM/um3+v/nHt2Zrqnt6f/qltVN9VaVY9Ooieuo+iJ6yh64jqKnriOoieuo+iJ6yh64jqKnriOoieuo5gKcZ/73Oeqddddt/rNb34z+GQxfL7++utXf/7zn6tXvepV1S677FL94Ac/qB74wAcukn/84x+Db1TVBz/4weq2t73t4F1VnX766dVpp522IF/96lcHR6rq17/+dXWXu9yl+u1vfzv4pKq23HLL6l3vetfg3f/x7ne/O91DiP8DT33qU6vHPe5x1Z/+9Kf0fhg23njj6vDDDx+8uyT++Mc/Vs94xjPSb3XP17rWtdJn/s/b3va26r///e/gzKVhIuL8+Lvd7W4L4gFf7nKXW/QZ+eQnP5lu1ANE7AknnFA95jGPqbbYYovqpJNOqi51qUtVr3nNa6rnPe951VprrVX97W9/SyT47u1ud7tqnXXWSa8POOCA6hGPeER1jWtco7rjHe9Y3frWt6623XbbdC/f+ta30vcf9ahHVa997WsTqRqF63lwGg35+9//ns6/z33uU22//fbpOhrQcccdlz6/6KKLqnvc4x7V6173uvQePPD895ArXvGK1a1udatFnz396U8ffONibLXVVtWBBx5YvfGNb0yvkXjLW96yestb3jI4Y+mYiDg/Dlla3jC58Y1vnAj+z3/+Uz360Y+urnrVq1Y77rhjdfvb3z71vsMOOywRB9/5zncWiPvXv/5VnXzyyYmEq1zlKtVHP/rRdPzf//53tcEGGyQyHAviHvawh1WXucxlqk996lPVta997eqcc86pnvjEJ6br5XLkkUem8xF3/etfv7r61a9erbfeetUb3vCG1BCI+4rXn/nMZxLZ5e+6znWuk3pn/tnHPvaxdG1A5HWve910jatd7Wrpnm50oxule7j5zW9e3fnOdx6cuTRMTNwDHvCA6jnPeU71yEc+8hLih1EpiAO9yA846KCDqm222SYRecEFF6Qf43zX8hpx8OAHP7i6xS1ukQi5053ulHouwq585StXv/rVrxYR94tf/CI1hpvc5CbVk5/85OrUU0+trnCFK6Se99Of/jTJJptssog4xN773veu9t577+rrX/969YEPfCAJrUEDeO178Lvf/a662c1uljQGcU/XvOY1F97f7373S+cFfv7zn6fvfvjDH073e+6556aGEtf82c9+NjhzaZiIOL3CeHTooYemH//Sl740PfinPe1p6f0rX/nK1Fr1EkCcH+vYve51rwXi9DikvOMd71ggTg/13Xe+851JLe2zzz5JEPiCF7wg9SwqzfgUoJY0FJ/tvvvu1fHHH19997vfHRytqs0222wRcRqFh+k773//+9PngHAPugSCXvGKV6Te77Xf6/X973//pHIDe+yxR3WlK10pyeUvf/nq0pe+dHrtr/dxbKeddhp8Y3IsaXLykpe8JI1biPTgv/nNb1b//Oc/U6vLgTgPhZq4wQ1usIg4yFUlVaelUivOQ8pb3/rW1Eu0fg9qo402qn784x+n71K/1B7VbOy54Q1vWH35y19Oava8885L55TE6W3GHGOdz/fff//qmc98ZupNj33sY9Prv/71r+l8QJZx2TjrutSh1ze96U0XEfe9732v+vznP5+GEaqSljj77LOT6Jn+56c//elFjWpSTEycnqHlfuhDH1ogzphBn6+99tqDsy4G4qiyb3/726lX5qqSGnIsiNPbPvvZz1YXXnjhglzveter3vzmNy/67Ec/+lG6toezcuXKpC5NBvQM6ugJT3hCdc973jP1+jvc4Q4LxFHfb3rTm9KE4ilPeUpSy3rQihUrEnEPechD0uu//OUv6XwN0bi29dZbp55irL7vfe+bXvv9OXFIoxn0qjg/xHBgjHatI444YvCNyTExccYGD/uoo45aIO6ss85KJOXLAtN2N62lauF+rF7xwhe+MLVK52uRQZz3m2+++YIg1jHqJv/8Wc96Vrr+e97znvTw73rXu6Yxjvozk/3a175WHX300enB+75ZLHjoT3rSk6rtttsu9T7fDdSpSjNC41UIFfviF7944b1JTGCvvfaq9txzz9TzqGCTE8OD82ga4xwNoocvFRMRpxVbd3mAfohJh4dDVZb4/e9/n34c9XTIIYekh6WXaoXx0HJVmYOqQ5z1VZCNiBwvf/nLU49BnEakRf/yl78cHK3Sa9f+xje+ke6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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +14 + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +48 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/x64/Debug/net461/arakawa.CLF b/bin/x64/Debug/net461/arakawa.CLF new file mode 100644 index 0000000..d26ab5c --- /dev/null +++ b/bin/x64/Debug/net461/arakawa.CLF @@ -0,0 +1,7480 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +iVBORw0KGgoAAAANSUhEUgAAAG4AAADICAYAAAAJHtQIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAACN8SURBVHhe7d0F2CxVGQdw7O5uFPQqioIdYF6xuwtRr41gYYAKJraiGKBiIiogNirYiordgo2F3R3j8zt87/V8587szmx9Ox/zf5732d3Z2dmZ+c855z1vna2qAb3EQFxPMRDXUwzE9RQDcT3FQFxPMRDXUwzE9RTrhri//vWv1b/+9a+VT8uBf/7zn9Xf/va3lU+zxUyI+/SnP11d6lKXqr785S+vbNkSN77xjau3vOUt1cc//vFqxx13TBf03ve+t3rFK16xWf7973+v7F1Vn/vc56rtttuu+stf/pI+f//736+++tWvbpYf/OAHaXvgyU9+cvWoRz1q5VNVvfnNb6723HPPlU//xzvf+c5V/3nIIYek7V/60peqq13tatWvfvWr9LkJj370o6v9999/5VM9DjzwwOqNb3xjOuZFL3rR6o9//GP1ohe9qHrBC15Q/fe//13ZazpMRNy3vvWt6la3utVmufa1r11ttdVW1Q1ucINV2z/ykY+k/RF6yUtesnr605+eTv4CF7hAIvBmN7tZdaMb3ah6yEMekn4fT+emTZuq6173utUZznCG6ta3vnUi4DWveU11kYtcJH32m1ve8pZpX3CDznKWs1RHHnlk9dKXvrT6/e9/X932tretnvCEJ6zs8X/E/13wghes9ttvv+qDH/xg2u6huepVr1o9+9nPTp8Dru3c5z73ZjnjGc9YnfnMZ161zX/leMxjHpOu8bnPfW618847p/M5+9nPXj3/+c9f2WN6TEScFna2s52t+tSnPtUol73sZatDDz007f+mN70p3aj73Oc+iZRznetc1XOe85xq48aN6fW73/3uKuJ++MMfphvoP7SQn/70p6kbvPCFL1x99KMfTTckiDv44IOrc57znKm13eQmN6nud7/7pRvlt/e85z2rxz3ucUne9ra3pf0Rd6UrXSkRfc1rXjM9TG5o7Bfyvve9L+0PH/jAB9J5EL+/4x3vuPmz88nx+Mc/vrrWta5VXeYyl0niWj2E2267bXWNa1wjtdhZYCLiPOFXuMIVqte//vWN4mRdWODyl7986opc1MUudrG0TatEqIvKifv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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +14 + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS UI Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +21.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +11.25 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +60 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +18 + +110 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +80 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +85 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +85 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/x64/Debug/net461/homeButton.png b/bin/x64/Debug/net461/homeButton.png new file mode 100644 index 0000000..723b7a2 Binary files /dev/null and b/bin/x64/Debug/net461/homeButton.png differ diff --git a/bin/x64/Debug/net461/katsushika-1.CLF b/bin/x64/Debug/net461/katsushika-1.CLF new file mode 100644 index 0000000..58f416a --- /dev/null +++ b/bin/x64/Debug/net461/katsushika-1.CLF @@ -0,0 +1,8007 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +15 + + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>3.67 +<_y>16.44 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + + +タグ +Millimeter + +<_x>25.485620784759533 +<_y>34.17238206863405 +<_width>12.611807346343994 +<_height>5.7326416969299316 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>3.67 +<_y>16.44 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>25.485620784759533 +<_y>34.17238206863405 +<_width>12.611807346343994 +<_height>5.7326416969299316 + + +100 +false +true +true +true + + +Text + +タグ + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>3.67 +<_y>16.44 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>25.485620784759533 +<_y>34.17238206863405 +<_width>12.611807346343994 +<_height>5.7326416969299316 + + +100 +false +true +true +true + +タグ + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +24 + +90 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +21.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS UI Gothic +Point +11.25 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +60 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +18 + +110 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +80 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +85 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +85 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +18 + +110 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/x64/Debug/net461/katsushika.CLF b/bin/x64/Debug/net461/katsushika.CLF new file mode 100644 index 0000000..58f416a --- /dev/null +++ b/bin/x64/Debug/net461/katsushika.CLF @@ -0,0 +1,8007 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +15 + + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>3.67 +<_y>16.44 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + + +タグ +Millimeter + +<_x>25.485620784759533 +<_y>34.17238206863405 +<_width>12.611807346343994 +<_height>5.7326416969299316 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>3.67 +<_y>16.44 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>25.485620784759533 +<_y>34.17238206863405 +<_width>12.611807346343994 +<_height>5.7326416969299316 + + +100 +false +true +true +true + + +Text + +タグ + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>3.67 +<_y>16.44 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>25.485620784759533 +<_y>34.17238206863405 +<_width>12.611807346343994 +<_height>5.7326416969299316 + + +100 +false +true +true +true + +タグ + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +24 + +90 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +21.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS UI Gothic +Point +11.25 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +60 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +18 + +110 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +80 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +85 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +85 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +18 + +110 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/x64/Debug/net461/kessaiCancelButton.png b/bin/x64/Debug/net461/kessaiCancelButton.png new file mode 100644 index 0000000..91e9da5 Binary files /dev/null and b/bin/x64/Debug/net461/kessaiCancelButton.png differ diff --git a/bin/x64/Debug/net461/kessaiChangeButton.png b/bin/x64/Debug/net461/kessaiChangeButton.png new file mode 100644 index 0000000..a720b73 Binary files /dev/null and b/bin/x64/Debug/net461/kessaiChangeButton.png differ diff --git a/bin/x64/Debug/net461/kessaiCompleteButton.png b/bin/x64/Debug/net461/kessaiCompleteButton.png new file mode 100644 index 0000000..8a351cd Binary files /dev/null and b/bin/x64/Debug/net461/kessaiCompleteButton.png differ diff --git a/bin/x64/Debug/net461/kessaiKikanButton_1.png b/bin/x64/Debug/net461/kessaiKikanButton_1.png new file mode 100644 index 0000000..61d4b84 Binary files /dev/null and b/bin/x64/Debug/net461/kessaiKikanButton_1.png differ diff --git a/bin/x64/Debug/net461/kessaiKikanButton_12.png b/bin/x64/Debug/net461/kessaiKikanButton_12.png new file mode 100644 index 0000000..8988c11 Binary files /dev/null and b/bin/x64/Debug/net461/kessaiKikanButton_12.png differ diff --git a/bin/x64/Debug/net461/kessaiKikanButton_2.png b/bin/x64/Debug/net461/kessaiKikanButton_2.png new file mode 100644 index 0000000..aaf3f19 Binary files /dev/null and b/bin/x64/Debug/net461/kessaiKikanButton_2.png differ diff --git a/bin/x64/Debug/net461/kessaiKikanButton_3.png b/bin/x64/Debug/net461/kessaiKikanButton_3.png new file mode 100644 index 0000000..aaef815 Binary files /dev/null and b/bin/x64/Debug/net461/kessaiKikanButton_3.png differ diff --git a/bin/x64/Debug/net461/kessaiKikanButton_6.png b/bin/x64/Debug/net461/kessaiKikanButton_6.png new file mode 100644 index 0000000..5928c0f Binary files /dev/null and b/bin/x64/Debug/net461/kessaiKikanButton_6.png differ diff --git a/bin/x64/Debug/net461/kessaiOKButton.png b/bin/x64/Debug/net461/kessaiOKButton.png new file mode 100644 index 0000000..4f27a3a Binary files /dev/null and b/bin/x64/Debug/net461/kessaiOKButton.png differ diff --git a/bin/x64/Debug/net461/kessaiPrintButton.png b/bin/x64/Debug/net461/kessaiPrintButton.png new file mode 100644 index 0000000..becc734 Binary files /dev/null and b/bin/x64/Debug/net461/kessaiPrintButton.png differ diff --git a/bin/x64/Debug/net461/kita.CLF b/bin/x64/Debug/net461/kita.CLF new file mode 100644 index 0000000..fe68c96 --- /dev/null +++ b/bin/x64/Debug/net461/kita.CLF @@ -0,0 +1,7480 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +iVBORw0KGgoAAAANSUhEUgAAAG4AAADICAYAAAAJHtQIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAACH6SURBVHhe7d0HlCxFFQZgjKiYI2YxPUyAiiCYUMEcURQDYkBRMD0FBUxgQp+oGBDBhD5FRcwBFQyYs2DOWcw5x/Z8xdyltuye6Zmd2Z2e1/859+x0T8/sdP1dt6puqs2qHp1ET1xH0RPXUfTEdRQ9cR1FT1xH0RPXUfTEdRQLQ9xf//rX6l//+tfgaD7wz3/+s/rb3/42OJoupkLci170ouo617lOarw6/Pa3v62ueMUrVt/97ner5z3vedX97ne/dP4Vr3hFdfTRRyd505velM4FPvvZz1bXvOY1q7/85S/p+Hvf+171pS99aUm+//3vp/OBJz3pSdX69esHR1V1/PHHV4961KMGR2fh7W9/+9L/JK985SvT+S9+8YvV9a9//epXv/pVOm7CYx7zmOrwww8fHNXjxS9+cbVx48b0nZe5zGWqP/7xj9Xzn//86rnPfW713//+d3DVyjARcW9+85ur29/+9kuybt266tznPveyc+QXv/hF+qHvfOc7q80226x629veVt3//vevbnGLW1Sf+9znqgtf+MLVXnvtVd3hDndIjRbYZ599qp133rk617nOld5DAJIvfelLp+Ob3/zm1e1ud7vB1Wc2+nnPe970uzxEv//976s73elO1UEHHTS44iz47EMf+tDqkpe8ZHXooYdW73//+9P5f//739X1rne96lnPelY6DtzwhjdMvzPEfZ7nPOdZds7/yvHYxz62usQlLlFt2LChuslNbpJ+z/nPf/7qiCOOGFyxckxE3HOe85x0Qx//+Mdr5ZRTTklE/eAHP0jEPeUpT0nHesWuu+5abbvttulJd9Ouf/WrX72MOJ/TgFtssUXqIT/96U+TGtxyyy2rD3/4w6lBgrhjjz22uuAFL5h62y1vecvqAQ94QGoon733ve9dPe5xj0tywgknpOsRd+1rXzsRvcMOO1RPe9rTUoPGdSHvec970vXwvve9L/0O4vO777770rHfk+Pxj398teOOO1ZXvvKVk1zoQhdKD+FVr3rV6gY3uEHqsdPARMS97GUvq25961unBq8T7/vRP/nJT9L1v/71rxNxu+22W3X1q1+9uuc975nOI+5KV7pSUic5cV/72tdS453vfOdLxFCxeqjG/vnPf1499alPTY0XoH4333zzRMTXv/716olPfGK13Xbbpc8S/xehoOH1Sqr73e9+dzqHVNdtvfXW1Z577plef/rTn07vgZ7uwXB+p512Svfu9QMf+MDqute97uCqM/GjH/2o+upXv1p95jOfSQ+UB/QCF7hAehCc/+EPfzi4cmWYeIzTuI985COT3O1ud0uNGscHHnjg4KozEcRRSw9+8IOXEeepfcELXrBE3J///Od0TD1SlXvssUd117veNakcKui4445L4+kLX/jCdL2x71WvelXqYW94wxvSQ6C3fuc730nvg8/lxJU9LqDHxvfmQNxNb3rT9FsQbmjw2udz4l73utelawlV7J5pCffhXuO9/fbbb/CJybGiyckxxxyTntoPfehDSac3IYjTgDe72c2WEYck6iWI+/vf/17tv//+aSBHtM8+4xnPSCrmP//5T7qe6jXhAWMkMq5whStUV7nKVdKDYfKDABMCKIlz3vXGXP/PGGm8oyVue9vbptff/OY30/Wgsd/61rdWv/vd71KP9HB67f5z4qhzE7QPfOAD1cUvfvHqve99bzr+wx/+kB62hz/84Wmi8o9//GPwicmxIuLobioDcec85zmr7bfffknixj35JgOIe8hDHpL0P3X56Ec/Oqk3DUn3B3Fu0nu5GNipxvL8GWeckT6jUU16HvSgB6WZokmRsdP4ohFz4pB+97vfPQlNoad+9KMfTWT6Xf6P13pywJhsbPaZ6HFe64XOB5Ckt1/0ohdNkreHIcHDQl7+8pcPPjE5JibuN7/5TXWRi1wk9QbE+aHf/va3l8STDG7GMV1PLVJrr3/966uvfOUrqdHKyYnrqcMQ45GZ3NnPfvbqsMMOW/aeXmfMoPaoH8TFwwRU5ze+8Y3qvve9b5qig6feA0TVmd1e7GIXS+ehVJW+23idizHuNre5zf+d/+Uvf5keil122SXdm3v2QB5wwAHp9VZbbVW95S1vqU488cRadTwuJiaO6rrsZS+bnqBb3epWQ1WlCQOSqRYNaLCmDi93ucsl9ZITl8N797rXvdL4FuoNGflC+13vele1zTbbpN+DuLvc5S5pYpPDDDiecr/TGHeNa1wjfW4YcSYTGj6Xa13rWmlsK8+blFhsU+dgaeI+f/zjH6e14Tn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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +14 + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +true +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS UI Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +48 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/x64/Debug/net461/kokubunnji.CLF b/bin/x64/Debug/net461/kokubunnji.CLF new file mode 100644 index 0000000..fe68c96 --- /dev/null +++ b/bin/x64/Debug/net461/kokubunnji.CLF @@ -0,0 +1,7480 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +iVBORw0KGgoAAAANSUhEUgAAAG4AAADICAYAAAAJHtQIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAACH6SURBVHhe7d0HlCxFFQZgjKiYI2YxPUyAiiCYUMEcURQDYkBRMD0FBUxgQp+oGBDBhD5FRcwBFQyYs2DOWcw5x/Z8xdyltuye6Zmd2Z2e1/859+x0T8/sdP1dt6puqs2qHp1ET1xH0RPXUfTEdRQ9cR1FT1xH0RPXUfTEdRQLQ9xf//rX6l//+tfgaD7wz3/+s/rb3/42OJoupkLci170ouo617lOarw6/Pa3v62ueMUrVt/97ner5z3vedX97ne/dP4Vr3hFdfTRRyd505velM4FPvvZz1bXvOY1q7/85S/p+Hvf+171pS99aUm+//3vp/OBJz3pSdX69esHR1V1/PHHV4961KMGR2fh7W9/+9L/JK985SvT+S9+8YvV9a9//epXv/pVOm7CYx7zmOrwww8fHNXjxS9+cbVx48b0nZe5zGWqP/7xj9Xzn//86rnPfW713//+d3DVyjARcW9+85ur29/+9kuybt266tznPveyc+QXv/hF+qHvfOc7q80226x629veVt3//vevbnGLW1Sf+9znqgtf+MLVXnvtVd3hDndIjRbYZ599qp133rk617nOld5DAJIvfelLp+Ob3/zm1e1ud7vB1Wc2+nnPe970uzxEv//976s73elO1UEHHTS44iz47EMf+tDqkpe8ZHXooYdW73//+9P5f//739X1rne96lnPelY6DtzwhjdMvzPEfZ7nPOdZds7/yvHYxz62usQlLlFt2LChuslNbpJ+z/nPf/7qiCOOGFyxckxE3HOe85x0Qx//+Mdr5ZRTTklE/eAHP0jEPeUpT0nHesWuu+5abbvttulJd9Ouf/WrX72MOJ/TgFtssUXqIT/96U+TGtxyyy2rD3/4w6lBgrhjjz22uuAFL5h62y1vecvqAQ94QGoon733ve9dPe5xj0tywgknpOsRd+1rXzsRvcMOO1RPe9rTUoPGdSHvec970vXwvve9L/0O4vO777770rHfk+Pxj398teOOO1ZXvvKVk1zoQhdKD+FVr3rV6gY3uEHqsdPARMS97GUvq25961unBq8T7/vRP/nJT9L1v/71rxNxu+22W3X1q1+9uuc975nOI+5KV7pSUic5cV/72tdS453vfOdLxFCxeqjG/vnPf1499alPTY0XoH4333zzRMTXv/716olPfGK13Xbbpc8S/xehoOH1Sqr73e9+dzqHVNdtvfXW1Z577plef/rTn07vgZ7uwXB+p512Svfu9QMf+MDqute97uCqM/GjH/2o+upXv1p95jOfSQ+UB/QCF7hAehCc/+EPfzi4cmWYeIzTuI985COT3O1ud0uNGscHHnjg4KozEcRRSw9+8IOXEeepfcELXrBE3J///Od0TD1SlXvssUd117veNakcKui4445L4+kLX/jCdL2x71WvelXqYW94wxvSQ6C3fuc730nvg8/lxJU9LqDHxvfmQNxNb3rT9FsQbmjw2udz4l73utelawlV7J5pCffhXuO9/fbbb/CJybGiyckxxxyTntoPfehDSac3IYjTgDe72c2WEYck6iWI+/vf/17tv//+aSBHtM8+4xnPSCrmP//5T7qe6jXhAWMkMq5whStUV7nKVdKDYfKDABMCKIlz3vXGXP/PGGm8oyVue9vbptff/OY30/Wgsd/61rdWv/vd71KP9HB67f5z4qhzE7QPfOAD1cUvfvHqve99bzr+wx/+kB62hz/84Wmi8o9//GPwicmxIuLobioDcec85zmr7bfffknixj35JgOIe8hDHpL0P3X56Ec/Oqk3DUn3B3Fu0nu5GNipxvL8GWeckT6jUU16HvSgB6WZokmRsdP4ohFz4pB+97vfPQlNoad+9KMfTWT6Xf6P13pywJhsbPaZ6HFe64XOB5Ckt1/0ohdNkreHIcHDQl7+8pcPPjE5JibuN7/5TXWRi1wk9QbE+aHf/va3l8STDG7GMV1PLVJrr3/966uvfOUrqdHKyYnrqcMQ45GZ3NnPfvbqsMMOW/aeXmfMoPaoH8TFwwRU5ze+8Y3qvve9b5qig6feA0TVmd1e7GIXS+ehVJW+23idizHuNre5zf+d/+Uvf5keil122SXdm3v2QB5wwAHp9VZbbVW95S1vqU488cRadTwuJiaO6rrsZS+bnqBb3epWQ1WlCQOSqRYNaLCmDi93ucsl9ZITl8N797rXvdL4FuoNGflC+13vele1zTbbpN+DuLvc5S5pYpPDDDiecr/TGHeNa1wjfW4YcSYTGj6Xa13rWmlsK8+blFhsU+dgaeI+f/zjH6e14Tn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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +14 + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +true +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS UI Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +48 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/x64/Debug/net461/koutou.CLF b/bin/x64/Debug/net461/koutou.CLF new file mode 100644 index 0000000..fe68c96 --- /dev/null +++ b/bin/x64/Debug/net461/koutou.CLF @@ -0,0 +1,7480 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +iVBORw0KGgoAAAANSUhEUgAAAG4AAADICAYAAAAJHtQIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAACH6SURBVHhe7d0HlCxFFQZgjKiYI2YxPUyAiiCYUMEcURQDYkBRMD0FBUxgQp+oGBDBhD5FRcwBFQyYs2DOWcw5x/Z8xdyltuye6Zmd2Z2e1/859+x0T8/sdP1dt6puqs2qHp1ET1xH0RPXUfTEdRQ9cR1FT1xH0RPXUfTEdRQLQ9xf//rX6l//+tfgaD7wz3/+s/rb3/42OJoupkLci170ouo617lOarw6/Pa3v62ueMUrVt/97ner5z3vedX97ne/dP4Vr3hFdfTRRyd505velM4FPvvZz1bXvOY1q7/85S/p+Hvf+171pS99aUm+//3vp/OBJz3pSdX69esHR1V1/PHHV4961KMGR2fh7W9/+9L/JK985SvT+S9+8YvV9a9//epXv/pVOm7CYx7zmOrwww8fHNXjxS9+cbVx48b0nZe5zGWqP/7xj9Xzn//86rnPfW713//+d3DVyjARcW9+85ur29/+9kuybt266tznPveyc+QXv/hF+qHvfOc7q80226x629veVt3//vevbnGLW1Sf+9znqgtf+MLVXnvtVd3hDndIjRbYZ599qp133rk617nOld5DAJIvfelLp+Ob3/zm1e1ud7vB1Wc2+nnPe970uzxEv//976s73elO1UEHHTS44iz47EMf+tDqkpe8ZHXooYdW73//+9P5f//739X1rne96lnPelY6DtzwhjdMvzPEfZ7nPOdZds7/yvHYxz62usQlLlFt2LChuslNbpJ+z/nPf/7qiCOOGFyxckxE3HOe85x0Qx//+Mdr5ZRTTklE/eAHP0jEPeUpT0nHesWuu+5abbvttulJd9Ouf/WrX72MOJ/TgFtssUXqIT/96U+TGtxyyy2rD3/4w6lBgrhjjz22uuAFL5h62y1vecvqAQ94QGoon733ve9dPe5xj0tywgknpOsRd+1rXzsRvcMOO1RPe9rTUoPGdSHvec970vXwvve9L/0O4vO777770rHfk+Pxj398teOOO1ZXvvKVk1zoQhdKD+FVr3rV6gY3uEHqsdPARMS97GUvq25961unBq8T7/vRP/nJT9L1v/71rxNxu+22W3X1q1+9uuc975nOI+5KV7pSUic5cV/72tdS453vfOdLxFCxeqjG/vnPf1499alPTY0XoH4333zzRMTXv/716olPfGK13Xbbpc8S/xehoOH1Sqr73e9+dzqHVNdtvfXW1Z577plef/rTn07vgZ7uwXB+p512Svfu9QMf+MDqute97uCqM/GjH/2o+upXv1p95jOfSQ+UB/QCF7hAehCc/+EPfzi4cmWYeIzTuI985COT3O1ud0uNGscHHnjg4KozEcRRSw9+8IOXEeepfcELXrBE3J///Od0TD1SlXvssUd117veNakcKui4445L4+kLX/jCdL2x71WvelXqYW94wxvSQ6C3fuc730nvg8/lxJU9LqDHxvfmQNxNb3rT9FsQbmjw2udz4l73utelawlV7J5pCffhXuO9/fbbb/CJybGiyckxxxyTntoPfehDSac3IYjTgDe72c2WEYck6iWI+/vf/17tv//+aSBHtM8+4xnPSCrmP//5T7qe6jXhAWMkMq5whStUV7nKVdKDYfKDABMCKIlz3vXGXP/PGGm8oyVue9vbptff/OY30/Wgsd/61rdWv/vd71KP9HB67f5z4qhzE7QPfOAD1cUvfvHqve99bzr+wx/+kB62hz/84Wmi8o9//GPwicmxIuLobioDcec85zmr7bfffknixj35JgOIe8hDHpL0P3X56Ec/Oqk3DUn3B3Fu0nu5GNipxvL8GWeckT6jUU16HvSgB6WZokmRsdP4ohFz4pB+97vfPQlNoad+9KMfTWT6Xf6P13pywJhsbPaZ6HFe64XOB5Ckt1/0ohdNkreHIcHDQl7+8pcPPjE5JibuN7/5TXWRi1wk9QbE+aHf/va3l8STDG7GMV1PLVJrr3/966uvfOUrqdHKyYnrqcMQ45GZ3NnPfvbqsMMOW/aeXmfMoPaoH8TFwwRU5ze+8Y3qvve9b5qig6feA0TVmd1e7GIXS+ehVJW+23idizHuNre5zf+d/+Uvf5keil122SXdm3v2QB5wwAHp9VZbbVW95S1vqU488cRadTwuJiaO6rrsZS+bnqBb3epWQ1WlCQOSqRYNaLCmDi93ucsl9ZITl8N797rXvdL4FuoNGflC+13vele1zTbbpN+DuLvc5S5pYpPDDDiecr/TGHeNa1wjfW4YcSYTGj6Xa13rWmlsK8+blFhsU+dgaeI+f/zjH6e14Tn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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +14 + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +true +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS UI Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +48 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/x64/Debug/net461/matudo.CLF b/bin/x64/Debug/net461/matudo.CLF new file mode 100644 index 0000000..6f9421f --- /dev/null +++ b/bin/x64/Debug/net461/matudo.CLF @@ -0,0 +1,6424 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +12 + + + + + + + + + + + + + + +0 + + + +駐車場名 +Millimeter + +<_x>3.3379562585949936 +<_y>57.260420989990266 +<_width>33.072920307517052 +<_height>13.758327960968018 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.10162657356261845 +<_y>5.131249999999997 +<_width>39.952085971832275 +<_height>5.2916655540466309 + + +100 +true +true +true +true + +FieldText + + + + + + +定期種別 +Millimeter + +<_x>7.3741664123535156 +<_y>22.319167556762682 +<_width>7.4083395004272461 +<_height>5.2916665077209473 + + +100 +false +true +true +true + +FieldText + + + + + + +有効期限年 +Millimeter + +<_x>2.6587856634855163 +<_y>36.396873378753668 +<_width>32.8083348274231 +<_height>5.0270819664001465 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン +Millimeter + +<_x>21.090561620831476 +<_y>25.41249618530275 +<_width>16.139584064483635 +<_height>9.5250039100646973 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車位置_ラベル +Millimeter + +<_x>1.618687139391926 +<_y>28.322917556762711 +<_width>18.785419940948479 +<_height>6.6145825386047363 + + +100 +false +true +true +true + +FieldText + + + + + + +許可番号ラベル +Millimeter + +<_x>2.1473299577236267 +<_y>10.582288837432865 +<_width>25.929171085357666 +<_height>5.0270819664001536 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者連番 +Millimeter + +<_x>2.1473299577236267 +<_y>15.203124904632547 +<_width>35.454172909259796 +<_height>6.3499979972839524 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>4.1785805627107582 +<_y>41.901040744781525 +<_width>20.974740366608245 +<_height>15.345839023590088 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.989235634930282 +<_y>51.426049900054956 +<_width>12.100811526291254 +<_height>5.8208298683166539 + + +100 +false +true +true +true + +FieldText + + + + + + +タグ +Millimeter + +<_x>27.90873886931309 +<_y>44.095817470550571 +<_width>6.2618050575256348 +<_height>5.7326416969299316 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>22.077287960052558 +<_y>22.353633594512935 +<_width>15.874998569488525 +<_height>5.0270829200744629 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>3.3379562585949936 +<_y>57.260420989990266 +<_width>33.072920307517052 +<_height>13.758327960968018 + + +100 +false +true +true +true + + +Text + +松戸駅西口第5自転車駐車場ssssssssssssssssssssssssssssssssss + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.10162657356261845 +<_y>5.131249999999997 +<_width>39.952085971832275 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期使用シール + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>7.3741664123535156 +<_y>22.319167556762682 +<_width>7.4083395004272461 +<_height>5.2916665077209473 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>2.6587856634855163 +<_y>36.396873378753668 +<_width>32.8083348274231 +<_height>5.0270819664001465 + + +100 +false +true +true +true + + +Text + +有効期限0000年 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>21.090561620831476 +<_y>25.41249618530275 +<_width>16.139584064483635 +<_height>9.5250039100646973 + + +100 +false +true +true +true + + +Text + +大型 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.618687139391926 +<_y>28.322917556762711 +<_width>18.785419940948479 +<_height>6.6145825386047363 + + +100 +false +true +true +true + + +Text + +駐車位置 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>2.1473299577236267 +<_y>10.582288837432865 +<_width>25.929171085357666 +<_height>5.0270819664001536 + + +100 +false +true +true +true + + +Text + +許可番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>2.1473299577236267 +<_y>15.203124904632547 +<_width>35.454172909259796 +<_height>6.3499979972839524 + + +100 +false +true +true +true + + +Text + +0000000000 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>4.1785805627107582 +<_y>41.901040744781525 +<_width>20.974740366608245 +<_height>15.345839023590088 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.989235634930282 +<_y>51.426049900054956 +<_width>12.100811526291254 +<_height>5.8208298683166539 + + +100 +false +true +true +true + + +Text + +月末 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>27.90873886931309 +<_y>44.095817470550571 +<_width>6.2618050575256348 +<_height>5.7326416969299316 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>22.077287960052558 +<_y>22.353633594512935 +<_width>15.874998569488525 +<_height>5.0270829200744629 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>3.3379562585949936 +<_y>57.260420989990266 +<_width>33.072920307517052 +<_height>13.758327960968018 + + +100 +false +true +true +true + +松戸駅西口第5自転車駐車場ssssssssssssssssssssssssssssssssss + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.10162657356261845 +<_y>5.131249999999997 +<_width>39.952085971832275 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期使用シール + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>7.3741664123535156 +<_y>22.319167556762682 +<_width>7.4083395004272461 +<_height>5.2916665077209473 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>2.6587856634855163 +<_y>36.396873378753668 +<_width>32.8083348274231 +<_height>5.0270819664001465 + + +100 +false +true +true +true + +有効期限0000年 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>21.090561620831476 +<_y>25.41249618530275 +<_width>16.139584064483635 +<_height>9.5250039100646973 + + +100 +false +true +true +true + +大型 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.618687139391926 +<_y>28.322917556762711 +<_width>18.785419940948479 +<_height>6.6145825386047363 + + +100 +false +true +true +true + +駐車位置 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>2.1473299577236267 +<_y>10.582288837432865 +<_width>25.929171085357666 +<_height>5.0270819664001536 + + +100 +false +true +true +true + +許可番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>2.1473299577236267 +<_y>15.203124904632547 +<_width>35.454172909259796 +<_height>6.3499979972839524 + + +100 +false +true +true +true + +0000000000 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>4.1785805627107582 +<_y>41.901040744781525 +<_width>20.974740366608245 +<_height>15.345839023590088 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.989235634930282 +<_y>51.426049900054956 +<_width>12.100811526291254 +<_height>5.8208298683166539 + + +100 +false +true +true +true + +月末 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>27.90873886931309 +<_y>44.095817470550571 +<_width>6.2618050575256348 +<_height>5.7326416969299316 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>22.077287960052558 +<_y>22.353633594512935 +<_width>15.874998569488525 +<_height>5.0270829200744629 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Bottom +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +12 + +80 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +15 + +90 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Bottom +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +20 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Bottom +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +20 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Bottom +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +40 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS UI Gothic +Point +15 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +15 + +110 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Bottom +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +12 + +110 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/x64/Debug/net461/netstandard.dll b/bin/x64/Debug/net461/netstandard.dll new file mode 100644 index 0000000..1f1ab22 Binary files /dev/null and b/bin/x64/Debug/net461/netstandard.dll differ diff --git a/bin/x64/Debug/net461/pic0.png b/bin/x64/Debug/net461/pic0.png new file mode 100644 index 0000000..8a70912 Binary files /dev/null and b/bin/x64/Debug/net461/pic0.png differ diff --git a/bin/x64/Debug/net461/pic1.png b/bin/x64/Debug/net461/pic1.png new file mode 100644 index 0000000..20be2ff Binary files /dev/null and b/bin/x64/Debug/net461/pic1.png differ diff --git a/bin/x64/Debug/net461/pic1_B.png b/bin/x64/Debug/net461/pic1_B.png new file mode 100644 index 0000000..cf700dc Binary files /dev/null and b/bin/x64/Debug/net461/pic1_B.png differ diff --git a/bin/x64/Debug/net461/pic1_C.png b/bin/x64/Debug/net461/pic1_C.png new file mode 100644 index 0000000..1821ffe Binary files /dev/null and b/bin/x64/Debug/net461/pic1_C.png differ diff --git a/bin/x64/Debug/net461/pic1_D.png b/bin/x64/Debug/net461/pic1_D.png new file mode 100644 index 0000000..8dcc237 Binary files /dev/null and b/bin/x64/Debug/net461/pic1_D.png differ diff --git a/bin/x64/Debug/net461/pic2-1.png b/bin/x64/Debug/net461/pic2-1.png new file mode 100644 index 0000000..80c1832 Binary files /dev/null and b/bin/x64/Debug/net461/pic2-1.png differ diff --git a/bin/x64/Debug/net461/pic2.png b/bin/x64/Debug/net461/pic2.png new file mode 100644 index 0000000..57e9540 Binary files /dev/null and b/bin/x64/Debug/net461/pic2.png differ diff --git a/bin/x64/Debug/net461/pic3.png b/bin/x64/Debug/net461/pic3.png new file mode 100644 index 0000000..e3323fc Binary files /dev/null and b/bin/x64/Debug/net461/pic3.png differ diff --git a/bin/x64/Debug/net461/pic4.png b/bin/x64/Debug/net461/pic4.png new file mode 100644 index 0000000..e7630ab Binary files /dev/null and b/bin/x64/Debug/net461/pic4.png differ diff --git a/bin/x64/Debug/net461/pic5.png b/bin/x64/Debug/net461/pic5.png new file mode 100644 index 0000000..a52a954 Binary files /dev/null and b/bin/x64/Debug/net461/pic5.png differ diff --git a/bin/x64/Debug/net461/pic6.png b/bin/x64/Debug/net461/pic6.png new file mode 100644 index 0000000..e372181 Binary files /dev/null and b/bin/x64/Debug/net461/pic6.png differ diff --git a/bin/x64/Debug/net461/pic7.png b/bin/x64/Debug/net461/pic7.png new file mode 100644 index 0000000..266080f Binary files /dev/null and b/bin/x64/Debug/net461/pic7.png differ diff --git a/bin/x64/Debug/net461/pic8_1.png b/bin/x64/Debug/net461/pic8_1.png new file mode 100644 index 0000000..20be2ff Binary files /dev/null and b/bin/x64/Debug/net461/pic8_1.png differ diff --git a/bin/x64/Debug/net461/pic8_2.png b/bin/x64/Debug/net461/pic8_2.png new file mode 100644 index 0000000..4725ff5 Binary files /dev/null and b/bin/x64/Debug/net461/pic8_2.png differ diff --git a/bin/x64/Debug/net461/pic_err_201.png b/bin/x64/Debug/net461/pic_err_201.png new file mode 100644 index 0000000..354a3d9 Binary files /dev/null and b/bin/x64/Debug/net461/pic_err_201.png differ diff --git a/bin/x64/Debug/net461/pic_err_202.png b/bin/x64/Debug/net461/pic_err_202.png new file mode 100644 index 0000000..8230f9b Binary files /dev/null and b/bin/x64/Debug/net461/pic_err_202.png differ diff --git a/bin/x64/Debug/net461/pic_err_203.png b/bin/x64/Debug/net461/pic_err_203.png new file mode 100644 index 0000000..a53202e Binary files /dev/null and b/bin/x64/Debug/net461/pic_err_203.png differ diff --git a/bin/x64/Debug/net461/pic_err_204.png b/bin/x64/Debug/net461/pic_err_204.png new file mode 100644 index 0000000..71dc025 Binary files /dev/null and b/bin/x64/Debug/net461/pic_err_204.png differ diff --git a/bin/x64/Debug/net461/pic_err_205.png b/bin/x64/Debug/net461/pic_err_205.png new file mode 100644 index 0000000..ba8f702 Binary files /dev/null and b/bin/x64/Debug/net461/pic_err_205.png differ diff --git a/bin/x64/Debug/net461/pic_genmen_120.png b/bin/x64/Debug/net461/pic_genmen_120.png new file mode 100644 index 0000000..d6e1c5d Binary files /dev/null and b/bin/x64/Debug/net461/pic_genmen_120.png differ diff --git a/bin/x64/Debug/net461/pic_kessai_0.png b/bin/x64/Debug/net461/pic_kessai_0.png new file mode 100644 index 0000000..a620dbf Binary files /dev/null and b/bin/x64/Debug/net461/pic_kessai_0.png differ diff --git a/bin/x64/Debug/net461/pic_kessai_1.png b/bin/x64/Debug/net461/pic_kessai_1.png new file mode 100644 index 0000000..df21e72 Binary files /dev/null and b/bin/x64/Debug/net461/pic_kessai_1.png differ diff --git a/bin/x64/Debug/net461/pic_kessai_1_2.png b/bin/x64/Debug/net461/pic_kessai_1_2.png new file mode 100644 index 0000000..e1b3616 Binary files /dev/null and b/bin/x64/Debug/net461/pic_kessai_1_2.png differ diff --git a/bin/x64/Debug/net461/pic_kessai_2.png b/bin/x64/Debug/net461/pic_kessai_2.png new file mode 100644 index 0000000..7a06ce8 Binary files /dev/null and b/bin/x64/Debug/net461/pic_kessai_2.png differ diff --git a/bin/x64/Debug/net461/pic_kessai_3.png b/bin/x64/Debug/net461/pic_kessai_3.png new file mode 100644 index 0000000..1b98d04 Binary files /dev/null and b/bin/x64/Debug/net461/pic_kessai_3.png differ diff --git a/bin/x64/Debug/net461/pic_kessai_4-1.png b/bin/x64/Debug/net461/pic_kessai_4-1.png new file mode 100644 index 0000000..f37990a Binary files /dev/null and b/bin/x64/Debug/net461/pic_kessai_4-1.png differ diff --git a/bin/x64/Debug/net461/pic_kessai_4.png b/bin/x64/Debug/net461/pic_kessai_4.png new file mode 100644 index 0000000..d444c32 Binary files /dev/null and b/bin/x64/Debug/net461/pic_kessai_4.png differ diff --git a/bin/x64/Debug/net461/pic_kessai_5.png b/bin/x64/Debug/net461/pic_kessai_5.png new file mode 100644 index 0000000..7657667 Binary files /dev/null and b/bin/x64/Debug/net461/pic_kessai_5.png differ diff --git a/bin/x64/Debug/net461/pic_kessai_err_00.png b/bin/x64/Debug/net461/pic_kessai_err_00.png new file mode 100644 index 0000000..507b6af Binary files /dev/null and b/bin/x64/Debug/net461/pic_kessai_err_00.png differ diff --git a/bin/x64/Debug/net461/pic_kessai_err_01.jpg b/bin/x64/Debug/net461/pic_kessai_err_01.jpg new file mode 100644 index 0000000..04d0469 Binary files /dev/null and b/bin/x64/Debug/net461/pic_kessai_err_01.jpg differ diff --git a/bin/x64/Debug/net461/pic_kessai_err_01.png b/bin/x64/Debug/net461/pic_kessai_err_01.png new file mode 100644 index 0000000..5cd4aff Binary files /dev/null and b/bin/x64/Debug/net461/pic_kessai_err_01.png differ diff --git a/bin/x64/Debug/net461/pic_kessai_err_02.png b/bin/x64/Debug/net461/pic_kessai_err_02.png new file mode 100644 index 0000000..145b654 Binary files /dev/null and b/bin/x64/Debug/net461/pic_kessai_err_02.png differ diff --git a/bin/x64/Debug/net461/pic_kessai_err_c_open.png b/bin/x64/Debug/net461/pic_kessai_err_c_open.png new file mode 100644 index 0000000..fb34eb5 Binary files /dev/null and b/bin/x64/Debug/net461/pic_kessai_err_c_open.png differ diff --git a/bin/x64/Debug/net461/pic_kessai_err_p_out.png b/bin/x64/Debug/net461/pic_kessai_err_p_out.png new file mode 100644 index 0000000..18923b0 Binary files /dev/null and b/bin/x64/Debug/net461/pic_kessai_err_p_out.png differ diff --git a/bin/x64/Debug/net461/print_layout22.CLF b/bin/x64/Debug/net461/print_layout22.CLF new file mode 100644 index 0000000..2f83514 --- /dev/null +++ b/bin/x64/Debug/net461/print_layout22.CLF @@ -0,0 +1,7480 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +iVBORw0KGgoAAAANSUhEUgAAAG4AAADICAYAAAAJHtQIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAACJISURBVHhe7d0HlCxFFQZgzAkDZgwIIuaAGAAVAyIoipgVA/GBWcScAUUxgoigBEHFLKCoCIpPERFQgigq5ow559yer5i71hY9PT2zM/um3+v/nHt2Zrqnt6f/qltVN9VaVY9Ooieuo+iJ6yh64jqKnriOoieuo+iJ6yh64jqKnriOoieuo5gKcZ/73Oeqddddt/rNb34z+GQxfL7++utXf/7zn6tXvepV1S677FL94Ac/qB74wAcukn/84x+Db1TVBz/4weq2t73t4F1VnX766dVpp522IF/96lcHR6rq17/+dXWXu9yl+u1vfzv4pKq23HLL6l3vetfg3f/x7ne/O91DiP8DT33qU6vHPe5x1Z/+9Kf0fhg23njj6vDDDx+8uyT++Mc/Vs94xjPSb3XP17rWtdJn/s/b3va26r///e/gzKVhIuL8+Lvd7W4L4gFf7nKXW/QZ+eQnP5lu1ANE7AknnFA95jGPqbbYYovqpJNOqi51qUtVr3nNa6rnPe951VprrVX97W9/SyT47u1ud7tqnXXWSa8POOCA6hGPeER1jWtco7rjHe9Y3frWt6623XbbdC/f+ta30vcf9ahHVa997WsTqRqF63lwGg35+9//ns6/z33uU22//fbpOhrQcccdlz6/6KKLqnvc4x7V6173uvQePPD895ArXvGK1a1udatFnz396U8ffONibLXVVtWBBx5YvfGNb0yvkXjLW96yestb3jI4Y+mYiDg/Dlla3jC58Y1vnAj+z3/+Uz360Y+urnrVq1Y77rhjdfvb3z71vsMOOywRB9/5zncWiPvXv/5VnXzyyYmEq1zlKtVHP/rRdPzf//53tcEGGyQyHAviHvawh1WXucxlqk996lPVta997eqcc86pnvjEJ6br5XLkkUem8xF3/etfv7r61a9erbfeetUb3vCG1BCI+4rXn/nMZxLZ5e+6znWuk3pn/tnHPvaxdG1A5HWve910jatd7Wrpnm50oxule7j5zW9e3fnOdx6cuTRMTNwDHvCA6jnPeU71yEc+8hLih1EpiAO9yA846KCDqm222SYRecEFF6Qf43zX8hpx8OAHP7i6xS1ukQi5053ulHouwq585StXv/rVrxYR94tf/CI1hpvc5CbVk5/85OrUU0+trnCFK6Se99Of/jTJJptssog4xN773veu9t577+rrX/969YEPfCAJrUEDeO178Lvf/a662c1uljQGcU/XvOY1F97f7373S+cFfv7zn6fvfvjDH073e+6556aGEtf82c9+NjhzaZiIOL3CeHTooYemH//Sl740PfinPe1p6f0rX/nK1Fr1EkCcH+vYve51rwXi9DikvOMd71ggTg/13Xe+851JLe2zzz5JEPiCF7wg9SwqzfgUoJY0FJ/tvvvu1fHHH19997vfHRytqs0222wRcRqFh+k773//+9PngHAPugSCXvGKV6Te77Xf6/X973//pHIDe+yxR3WlK10pyeUvf/nq0pe+dHrtr/dxbKeddhp8Y3IsaXLykpe8JI1biPTgv/nNb1b//Oc/U6vLgTgPhZq4wQ1usIg4yFUlVaelUivOQ8pb3/rW1Eu0fg9qo402qn784x+n71K/1B7VbOy54Q1vWH35y19Oava8885L55TE6W3GHGOdz/fff//qmc98ZupNj33sY9Prv/71r+l8QJZx2TjrutSh1ze96U0XEfe9732v+vznP5+GEaqSljj77LOT6Jn+56c//elFjWpSTEycnqHlfuhDH1ogzphBn6+99tqDsy4G4qiyb3/726lX5qqSGnIsiNPbPvvZz1YXXnjhglzveter3vzmNy/67Ec/+lG6toezcuXKpC5NBvQM6ugJT3hCdc973jP1+jvc4Q4LxFHfb3rTm9KE4ilPeUpSy3rQihUrEnEPechD0uu//OUv6XwN0bi29dZbp55irL7vfe+bXvv9OXFIoxn0qjg/xHBgjHatI444YvCNyTExccYGD/uoo45aIO6ss85KJOXLAtN2N62lauF+rF7xwhe+MLVK52uRQZz3m2+++YIg1jHqJv/8Wc96Vrr+e97znvTw73rXu6Yxjvozk/3a175WHX300enB+75ZLHjoT3rSk6rtttsu9T7fDdSpSjNC41UIFfviF7944b1JTGCvvfaq9txzz9TzqGCTE8OD82ga4xwNoocvFRMRpxVbd3mAfohJh4dDVZb4/e9/n34c9XTIIYekh6WXaoXx0HJVmYOqQ5z1VZCNiBwvf/nLU49BnEakRf/yl78cHK3Sa9f+xje+ke6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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +14 + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +48 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/x64/Debug/net461/print_layout47.CLF b/bin/x64/Debug/net461/print_layout47.CLF new file mode 100644 index 0000000..2f83514 --- /dev/null +++ b/bin/x64/Debug/net461/print_layout47.CLF @@ -0,0 +1,7480 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +iVBORw0KGgoAAAANSUhEUgAAAG4AAADICAYAAAAJHtQIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAACJISURBVHhe7d0HlCxFFQZgzAkDZgwIIuaAGAAVAyIoipgVA/GBWcScAUUxgoigBEHFLKCoCIpPERFQgigq5ow559yer5i71hY9PT2zM/um3+v/nHt2Zrqnt6f/qltVN9VaVY9Ooieuo+iJ6yh64jqKnriOoieuo+iJ6yh64jqKnriOoieuo5gKcZ/73Oeqddddt/rNb34z+GQxfL7++utXf/7zn6tXvepV1S677FL94Ac/qB74wAcukn/84x+Db1TVBz/4weq2t73t4F1VnX766dVpp522IF/96lcHR6rq17/+dXWXu9yl+u1vfzv4pKq23HLL6l3vetfg3f/x7ne/O91DiP8DT33qU6vHPe5x1Z/+9Kf0fhg23njj6vDDDx+8uyT++Mc/Vs94xjPSb3XP17rWtdJn/s/b3va26r///e/gzKVhIuL8+Lvd7W4L4gFf7nKXW/QZ+eQnP5lu1ANE7AknnFA95jGPqbbYYovqpJNOqi51qUtVr3nNa6rnPe951VprrVX97W9/SyT47u1ud7tqnXXWSa8POOCA6hGPeER1jWtco7rjHe9Y3frWt6623XbbdC/f+ta30vcf9ahHVa997WsTqRqF63lwGg35+9//ns6/z33uU22//fbpOhrQcccdlz6/6KKLqnvc4x7V6173uvQePPD895ArXvGK1a1udatFnz396U8ffONibLXVVtWBBx5YvfGNb0yvkXjLW96yestb3jI4Y+mYiDg/Dlla3jC58Y1vnAj+z3/+Uz360Y+urnrVq1Y77rhjdfvb3z71vsMOOywRB9/5zncWiPvXv/5VnXzyyYmEq1zlKtVHP/rRdPzf//53tcEGGyQyHAviHvawh1WXucxlqk996lPVta997eqcc86pnvjEJ6br5XLkkUem8xF3/etfv7r61a9erbfeetUb3vCG1BCI+4rXn/nMZxLZ5e+6znWuk3pn/tnHPvaxdG1A5HWve910jatd7Wrpnm50oxule7j5zW9e3fnOdx6cuTRMTNwDHvCA6jnPeU71yEc+8hLih1EpiAO9yA846KCDqm222SYRecEFF6Qf43zX8hpx8OAHP7i6xS1ukQi5053ulHouwq585StXv/rVrxYR94tf/CI1hpvc5CbVk5/85OrUU0+trnCFK6Se99Of/jTJJptssog4xN773veu9t577+rrX/969YEPfCAJrUEDeO178Lvf/a662c1uljQGcU/XvOY1F97f7373S+cFfv7zn6fvfvjDH073e+6556aGEtf82c9+NjhzaZiIOL3CeHTooYemH//Sl740PfinPe1p6f0rX/nK1Fr1EkCcH+vYve51rwXi9DikvOMd71ggTg/13Xe+851JLe2zzz5JEPiCF7wg9SwqzfgUoJY0FJ/tvvvu1fHHH19997vfHRytqs0222wRcRqFh+k773//+9PngHAPugSCXvGKV6Te77Xf6/X973//pHIDe+yxR3WlK10pyeUvf/nq0pe+dHrtr/dxbKeddhp8Y3IsaXLykpe8JI1biPTgv/nNb1b//Oc/U6vLgTgPhZq4wQ1usIg4yFUlVaelUivOQ8pb3/rW1Eu0fg9qo402qn784x+n71K/1B7VbOy54Q1vWH35y19Oava8885L55TE6W3GHGOdz/fff//qmc98ZupNj33sY9Prv/71r+l8QJZx2TjrutSh1ze96U0XEfe9732v+vznP5+GEaqSljj77LOT6Jn+56c//elFjWpSTEycnqHlfuhDH1ogzphBn6+99tqDsy4G4qiyb3/726lX5qqSGnIsiNPbPvvZz1YXXnjhglzveter3vzmNy/67Ec/+lG6toezcuXKpC5NBvQM6ugJT3hCdc973jP1+jvc4Q4LxFHfb3rTm9KE4ilPeUpSy3rQihUrEnEPechD0uu//OUv6XwN0bi29dZbp55irL7vfe+bXvv9OXFIoxn0qjg/xHBgjHatI444YvCNyTExccYGD/uoo45aIO6ss85KJOXLAtN2N62lauF+rF7xwhe+MLVK52uRQZz3m2+++YIg1jHqJv/8Wc96Vrr+e97znvTw73rXu6Yxjvozk/3a175WHX300enB+75ZLHjoT3rSk6rtttsu9T7fDdSpSjNC41UIFfviF7944b1JTGCvvfaq9txzz9TzqGCTE8OD82ga4xwNoocvFRMRpxVbd3mAfohJh4dDVZb4/e9/n34c9XTIIYekh6WXaoXx0HJVmYOqQ5z1VZCNiBwvf/nLU49BnEakRf/yl78cHK3Sa9f+xje+ke6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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +14 + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +48 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/x64/Debug/net461/print_layout5.CLF b/bin/x64/Debug/net461/print_layout5.CLF new file mode 100644 index 0000000..2f83514 --- /dev/null +++ b/bin/x64/Debug/net461/print_layout5.CLF @@ -0,0 +1,7480 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +iVBORw0KGgoAAAANSUhEUgAAAG4AAADICAYAAAAJHtQIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAACJISURBVHhe7d0HlCxFFQZgzAkDZgwIIuaAGAAVAyIoipgVA/GBWcScAUUxgoigBEHFLKCoCIpPERFQgigq5ow559yer5i71hY9PT2zM/um3+v/nHt2Zrqnt6f/qltVN9VaVY9Ooieuo+iJ6yh64jqKnriOoieuo+iJ6yh64jqKnriOoieuo5gKcZ/73Oeqddddt/rNb34z+GQxfL7++utXf/7zn6tXvepV1S677FL94Ac/qB74wAcukn/84x+Db1TVBz/4weq2t73t4F1VnX766dVpp522IF/96lcHR6rq17/+dXWXu9yl+u1vfzv4pKq23HLL6l3vetfg3f/x7ne/O91DiP8DT33qU6vHPe5x1Z/+9Kf0fhg23njj6vDDDx+8uyT++Mc/Vs94xjPSb3XP17rWtdJn/s/b3va26r///e/gzKVhIuL8+Lvd7W4L4gFf7nKXW/QZ+eQnP5lu1ANE7AknnFA95jGPqbbYYovqpJNOqi51qUtVr3nNa6rnPe951VprrVX97W9/SyT47u1ud7tqnXXWSa8POOCA6hGPeER1jWtco7rjHe9Y3frWt6623XbbdC/f+ta30vcf9ahHVa997WsTqRqF63lwGg35+9//ns6/z33uU22//fbpOhrQcccdlz6/6KKLqnvc4x7V6173uvQePPD895ArXvGK1a1udatFnz396U8ffONibLXVVtWBBx5YvfGNb0yvkXjLW96yestb3jI4Y+mYiDg/Dlla3jC58Y1vnAj+z3/+Uz360Y+urnrVq1Y77rhjdfvb3z71vsMOOywRB9/5zncWiPvXv/5VnXzyyYmEq1zlKtVHP/rRdPzf//53tcEGGyQyHAviHvawh1WXucxlqk996lPVta997eqcc86pnvjEJ6br5XLkkUem8xF3/etfv7r61a9erbfeetUb3vCG1BCI+4rXn/nMZxLZ5e+6znWuk3pn/tnHPvaxdG1A5HWve910jatd7Wrpnm50oxule7j5zW9e3fnOdx6cuTRMTNwDHvCA6jnPeU71yEc+8hLih1EpiAO9yA846KCDqm222SYRecEFF6Qf43zX8hpx8OAHP7i6xS1ukQi5053ulHouwq585StXv/rVrxYR94tf/CI1hpvc5CbVk5/85OrUU0+trnCFK6Se99Of/jTJJptssog4xN773veu9t577+rrX/969YEPfCAJrUEDeO178Lvf/a662c1uljQGcU/XvOY1F97f7373S+cFfv7zn6fvfvjDH073e+6556aGEtf82c9+NjhzaZiIOL3CeHTooYemH//Sl740PfinPe1p6f0rX/nK1Fr1EkCcH+vYve51rwXi9DikvOMd71ggTg/13Xe+851JLe2zzz5JEPiCF7wg9SwqzfgUoJY0FJ/tvvvu1fHHH19997vfHRytqs0222wRcRqFh+k773//+9PngHAPugSCXvGKV6Te77Xf6/X973//pHIDe+yxR3WlK10pyeUvf/nq0pe+dHrtr/dxbKeddhp8Y3IsaXLykpe8JI1biPTgv/nNb1b//Oc/U6vLgTgPhZq4wQ1usIg4yFUlVaelUivOQ8pb3/rW1Eu0fg9qo402qn784x+n71K/1B7VbOy54Q1vWH35y19Oava8885L55TE6W3GHGOdz/fff//qmc98ZupNj33sY9Prv/71r+l8QJZx2TjrutSh1ze96U0XEfe9732v+vznP5+GEaqSljj77LOT6Jn+56c//elFjWpSTEycnqHlfuhDH1ogzphBn6+99tqDsy4G4qiyb3/726lX5qqSGnIsiNPbPvvZz1YXXnjhglzveter3vzmNy/67Ec/+lG6toezcuXKpC5NBvQM6ugJT3hCdc973jP1+jvc4Q4LxFHfb3rTm9KE4ilPeUpSy3rQihUrEnEPechD0uu//OUv6XwN0bi29dZbp55irL7vfe+bXvv9OXFIoxn0qjg/xHBgjHatI444YvCNyTExccYGD/uoo45aIO6ss85KJOXLAtN2N62lauF+rF7xwhe+MLVK52uRQZz3m2+++YIg1jHqJv/8Wc96Vrr+e97znvTw73rXu6Yxjvozk/3a175WHX300enB+75ZLHjoT3rSk6rtttsu9T7fDdSpSjNC41UIFfviF7944b1JTGCvvfaq9txzz9TzqGCTE8OD82ga4xwNoocvFRMRpxVbd3mAfohJh4dDVZb4/e9/n34c9XTIIYekh6WXaoXx0HJVmYOqQ5z1VZCNiBwvf/nLU49BnEakRf/yl78cHK3Sa9f+xje+ke6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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +14 + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +48 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/x64/Debug/net461/shinki_btn.png b/bin/x64/Debug/net461/shinki_btn.png new file mode 100644 index 0000000..a78e3c7 Binary files /dev/null and b/bin/x64/Debug/net461/shinki_btn.png differ diff --git a/bin/x64/Debug/net461/stdole.dll b/bin/x64/Debug/net461/stdole.dll new file mode 100644 index 0000000..9673c81 Binary files /dev/null and b/bin/x64/Debug/net461/stdole.dll differ diff --git a/bin/x64/Debug/net461/syuuryou_btn.png b/bin/x64/Debug/net461/syuuryou_btn.png new file mode 100644 index 0000000..b09b122 Binary files /dev/null and b/bin/x64/Debug/net461/syuuryou_btn.png differ diff --git a/bin/x64/Debug/net461/名称未設定.CLF b/bin/x64/Debug/net461/名称未設定.CLF new file mode 100644 index 0000000..0f2fce0 --- /dev/null +++ b/bin/x64/Debug/net461/名称未設定.CLF @@ -0,0 +1,3791 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>100.33 +<_height>152.4 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +false + + + +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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +7 + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>49.159570217132568 +<_y>15.906748294830322 +<_width>38.10000467300415 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>38.973123073577881 +<_y>14.716125965118408 +<_width>38.893751621246338 +<_height>9.789583683013916 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>33.284575939178467 +<_y>16.171333789825439 +<_width>38.364588260650635 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>35.665834903717041 +<_y>8.4984221458435059 +<_width>21.960413455963135 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>40.296037197113037 +<_y>25.828632831573486 +<_width>11.906250476837158 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>22.833540439605713 +<_y>4.661963939666748 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>20.849170207977291 +<_y>29.929672718048096 +<_width>13.758327960968021 +<_height>5.5562500953674352 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>49.159570217132568 +<_y>15.906748294830322 +<_width>38.10000467300415 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>38.973123073577881 +<_y>14.716125965118408 +<_width>38.893751621246338 +<_height>9.789583683013916 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>33.284575939178467 +<_y>16.171333789825439 +<_width>38.364588260650635 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>35.665834903717041 +<_y>8.4984221458435059 +<_width>21.960413455963135 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>40.296037197113037 +<_y>25.828632831573486 +<_width>11.906250476837158 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>22.833540439605713 +<_y>4.661963939666748 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>20.849170207977291 +<_y>29.929672718048096 +<_width>13.758327960968021 +<_height>5.5562500953674352 + + +100 +false +true +true +true + + +Text + +月まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>49.159570217132568 +<_y>15.906748294830322 +<_width>38.10000467300415 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>38.973123073577881 +<_y>14.716125965118408 +<_width>38.893751621246338 +<_height>9.789583683013916 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>33.284575939178467 +<_y>16.171333789825439 +<_width>38.364588260650635 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>35.665834903717041 +<_y>8.4984221458435059 +<_width>21.960413455963135 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>40.296037197113037 +<_y>25.828632831573486 +<_width>11.906250476837158 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>22.833540439605713 +<_y>4.661963939666748 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>20.849170207977291 +<_y>29.929672718048096 +<_width>13.758327960968021 +<_height>5.5562500953674352 + + +100 +false +true +true +true + +月まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +48 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/x86/Debug/net461/AxInterop.QRMAKERADLib.dll b/bin/x86/Debug/net461/AxInterop.QRMAKERADLib.dll new file mode 100644 index 0000000..3014ebb Binary files /dev/null and b/bin/x86/Debug/net461/AxInterop.QRMAKERADLib.dll differ diff --git a/bin/x86/Debug/net461/CSJLabelLib.dll b/bin/x86/Debug/net461/CSJLabelLib.dll new file mode 100644 index 0000000..0800d74 Binary files /dev/null and b/bin/x86/Debug/net461/CSJLabelLib.dll differ diff --git a/bin/x86/Debug/net461/CSJLabelLibW32.dll b/bin/x86/Debug/net461/CSJLabelLibW32.dll new file mode 100644 index 0000000..e366d77 Binary files /dev/null and b/bin/x86/Debug/net461/CSJLabelLibW32.dll differ diff --git a/bin/x86/Debug/net461/CSJLabelLibW64.dll b/bin/x86/Debug/net461/CSJLabelLibW64.dll new file mode 100644 index 0000000..c39fda5 Binary files /dev/null and b/bin/x86/Debug/net461/CSJLabelLibW64.dll differ diff --git a/bin/x86/Debug/net461/Citizen.LayoutUtilities.Common.dll b/bin/x86/Debug/net461/Citizen.LayoutUtilities.Common.dll new file mode 100644 index 0000000..de61d8b Binary files /dev/null and b/bin/x86/Debug/net461/Citizen.LayoutUtilities.Common.dll differ diff --git a/bin/x86/Debug/net461/Citizen.LayoutUtilities.Printing.dll b/bin/x86/Debug/net461/Citizen.LayoutUtilities.Printing.dll new file mode 100644 index 0000000..3e62032 Binary files /dev/null and b/bin/x86/Debug/net461/Citizen.LayoutUtilities.Printing.dll differ diff --git a/bin/x86/Debug/net461/Google.Protobuf.dll b/bin/x86/Debug/net461/Google.Protobuf.dll new file mode 100644 index 0000000..6ea720d Binary files /dev/null and b/bin/x86/Debug/net461/Google.Protobuf.dll differ diff --git a/bin/x86/Debug/net461/Google.Protobuf.xml b/bin/x86/Debug/net461/Google.Protobuf.xml new file mode 100644 index 0000000..ebbf629 --- /dev/null +++ b/bin/x86/Debug/net461/Google.Protobuf.xml @@ -0,0 +1,7470 @@ + + + + Google.Protobuf + + + + + Provides a utility routine to copy small arrays much more quickly than Buffer.BlockCopy + + + + + The threshold above which you should use Buffer.BlockCopy rather than ByteArray.Copy + + + + + Determines which copy routine to use based on the number of bytes to be copied. + + + + + Reverses the order of bytes in the array + + + + + Immutable array of bytes. + + + + + Unsafe operations that can cause IO Failure and/or other catestrophic side-effects. + + + + + Constructs a new ByteString from the given byte array. The array is + *not* copied, and must not be modified after this constructor is called. + + + + + Provides direct, unrestricted access to the bytes contained in this instance. + You must not modify or resize the byte array returned by this method. + + + + + Internal use only. Ensure that the provided array is not mutated and belongs to this instance. + + + + + Constructs a new ByteString from the given byte array. The array is + *not* copied, and must not be modified after this constructor is called. + + + + + Returns an empty ByteString. + + + + + Returns the length of this ByteString in bytes. + + + + + Returns true if this byte string is empty, false otherwise. + + + + + Converts this into a byte array. + + The data is copied - changes to the returned array will not be reflected in this ByteString. + A byte array with the same data as this ByteString. + + + + Converts this into a standard base64 representation. + + A base64 representation of this ByteString. + + + + Constructs a from the Base64 Encoded String. + + + + + Constructs a from data in the given stream, synchronously. + + If successful, will be read completely, from the position + at the start of the call. + The stream to copy into a ByteString. + A ByteString with content read from the given stream. + + + + Constructs a from data in the given stream, asynchronously. + + If successful, will be read completely, from the position + at the start of the call. + The stream to copy into a ByteString. + The cancellation token to use when reading from the stream, if any. + A ByteString with content read from the given stream. + + + + Constructs a from the given array. The contents + are copied, so further modifications to the array will not + be reflected in the returned ByteString. + This method can also be invoked in ByteString.CopyFrom(0xaa, 0xbb, ...) form + which is primarily useful for testing. + + + + + Constructs a from a portion of a byte array. + + + + + Creates a new by encoding the specified text with + the given encoding. + + + + + Creates a new by encoding the specified text in UTF-8. + + + + + Retuns the byte at the given index. + + + + + Converts this into a string by applying the given encoding. + + + This method should only be used to convert binary data which was the result of encoding + text with the given encoding. + + The encoding to use to decode the binary data into text. + The result of decoding the binary data with the given decoding. + + + + Converts this into a string by applying the UTF-8 encoding. + + + This method should only be used to convert binary data which was the result of encoding + text with UTF-8. + + The result of decoding the binary data with the given decoding. + + + + Returns an iterator over the bytes in this . + + An iterator over the bytes in this object. + + + + Returns an iterator over the bytes in this . + + An iterator over the bytes in this object. + + + + Creates a CodedInputStream from this ByteString's data. + + + + + Compares two byte strings for equality. + + The first byte string to compare. + The second byte string to compare. + true if the byte strings are equal; false otherwise. + + + + Compares two byte strings for inequality. + + The first byte string to compare. + The second byte string to compare. + false if the byte strings are equal; true otherwise. + + + + Compares this byte string with another object. + + The object to compare this with. + true if refers to an equal ; false otherwise. + + + + Returns a hash code for this object. Two equal byte strings + will return the same hash code. + + A hash code for this object. + + + + Compares this byte string with another. + + The to compare this with. + true if refers to an equal byte string; false otherwise. + + + + Used internally by CodedOutputStream to avoid creating a copy for the write + + + + + Copies the entire byte array to the destination array provided at the offset specified. + + + + + Writes the entire byte array to the provided stream + + + + + Reads and decodes protocol message fields. + + + + This class is generally used by generated code to read appropriate + primitives from the stream. It effectively encapsulates the lowest + levels of protocol buffer format. + + + Repeated fields and map fields are not handled by this class; use + and to serialize such fields. + + + + + + Whether to leave the underlying stream open when disposing of this stream. + This is always true when there's no stream. + + + + + Buffer of data read from the stream or provided at construction time. + + + + + The index of the buffer at which we need to refill from the stream (if there is one). + + + + + The position within the current buffer (i.e. the next byte to read) + + + + + The stream to read further input from, or null if the byte array buffer was provided + directly on construction, with no further data available. + + + + + The last tag we read. 0 indicates we've read to the end of the stream + (or haven't read anything yet). + + + + + The next tag, used to store the value read by PeekTag. + + + + + The total number of bytes read before the current buffer. The + total bytes read up to the current position can be computed as + totalBytesRetired + bufferPos. + + + + + The absolute position of the end of the current message. + + + + + Creates a new CodedInputStream reading data from the given byte array. + + + + + Creates a new that reads from the given byte array slice. + + + + + Creates a new reading data from the given stream, which will be disposed + when the returned object is disposed. + + The stream to read from. + + + + Creates a new reading data from the given stream. + + The stream to read from. + true to leave open when the returned + is disposed; false to dispose of the given stream when the + returned object is disposed. + + + + Creates a new CodedInputStream reading data from the given + stream and buffer, using the default limits. + + + + + Creates a new CodedInputStream reading data from the given + stream and buffer, using the specified limits. + + + This chains to the version with the default limits instead of vice versa to avoid + having to check that the default values are valid every time. + + + + + Creates a with the specified size and recursion limits, reading + from an input stream. + + + This method exists separately from the constructor to reduce the number of constructor overloads. + It is likely to be used considerably less frequently than the constructors, as the default limits + are suitable for most use cases. + + The input stream to read from + The total limit of data to read from the stream. + The maximum recursion depth to allow while reading. + A CodedInputStream reading from with the specified size + and recursion limits. + + + + Returns the current position in the input stream, or the position in the input buffer + + + + + Returns the last tag read, or 0 if no tags have been read or we've read beyond + the end of the stream. + + + + + Returns the size limit for this stream. + + + This limit is applied when reading from the underlying stream, as a sanity check. It is + not applied when reading from a byte array data source without an underlying stream. + The default value is 64MB. + + + The size limit. + + + + + Returns the recursion limit for this stream. This limit is applied whilst reading messages, + to avoid maliciously-recursive data. + + + The default limit is 64. + + + The recursion limit for this stream. + + + + + Disposes of this instance, potentially closing any underlying stream. + + + As there is no flushing to perform here, disposing of a which + was constructed with the leaveOpen option parameter set to true (or one which + was constructed to read from a byte array) has no effect. + + + + + Verifies that the last call to ReadTag() returned tag 0 - in other words, + we've reached the end of the stream when we expected to. + + The + tag read was not the one specified + + + + Peeks at the next field tag. This is like calling , but the + tag is not consumed. (So a subsequent call to will return the + same value.) + + + + + Reads a field tag, returning the tag of 0 for "end of stream". + + + If this method returns 0, it doesn't necessarily mean the end of all + the data in this CodedInputStream; it may be the end of the logical stream + for an embedded message, for example. + + The next field tag, or 0 for end of stream. (0 is never a valid tag.) + + + + Skips the data for the field with the tag we've just read. + This should be called directly after , when + the caller wishes to skip an unknown field. + + + This method throws if the last-read tag was an end-group tag. + If a caller wishes to skip a group, they should skip the whole group, by calling this method after reading the + start-group tag. This behavior allows callers to call this method on any field they don't understand, correctly + resulting in an error if an end-group tag has not been paired with an earlier start-group tag. + + The last tag was an end-group tag + The last read operation read to the end of the logical stream + + + + Skip a group. + + + + + Reads a double field from the stream. + + + + + Reads a float field from the stream. + + + + + Reads a uint64 field from the stream. + + + + + Reads an int64 field from the stream. + + + + + Reads an int32 field from the stream. + + + + + Reads a fixed64 field from the stream. + + + + + Reads a fixed32 field from the stream. + + + + + Reads a bool field from the stream. + + + + + Reads a string field from the stream. + + + + + Reads an embedded message field value from the stream. + + + + + Reads a bytes field value from the stream. + + + + + Reads a uint32 field value from the stream. + + + + + Reads an enum field value from the stream. + + + + + Reads an sfixed32 field value from the stream. + + + + + Reads an sfixed64 field value from the stream. + + + + + Reads an sint32 field value from the stream. + + + + + Reads an sint64 field value from the stream. + + + + + Reads a length for length-delimited data. + + + This is internally just reading a varint, but this method exists + to make the calling code clearer. + + + + + Peeks at the next tag in the stream. If it matches , + the tag is consumed and the method returns true; otherwise, the + stream is left in the original position and the method returns false. + + + + + Same code as ReadRawVarint32, but read each byte individually, checking for + buffer overflow. + + + + + Reads a raw Varint from the stream. If larger than 32 bits, discard the upper bits. + This method is optimised for the case where we've got lots of data in the buffer. + That means we can check the size just once, then just read directly from the buffer + without constant rechecking of the buffer length. + + + + + Reads a varint from the input one byte at a time, so that it does not + read any bytes after the end of the varint. If you simply wrapped the + stream in a CodedInputStream and used ReadRawVarint32(Stream) + then you would probably end up reading past the end of the varint since + CodedInputStream buffers its input. + + + + + + + Reads a raw varint from the stream. + + + + + Reads a 32-bit little-endian integer from the stream. + + + + + Reads a 64-bit little-endian integer from the stream. + + + + + Decode a 32-bit value with ZigZag encoding. + + + ZigZag encodes signed integers into values that can be efficiently + encoded with varint. (Otherwise, negative values must be + sign-extended to 64 bits to be varint encoded, thus always taking + 10 bytes on the wire.) + + + + + Decode a 32-bit value with ZigZag encoding. + + + ZigZag encodes signed integers into values that can be efficiently + encoded with varint. (Otherwise, negative values must be + sign-extended to 64 bits to be varint encoded, thus always taking + 10 bytes on the wire.) + + + + + Sets currentLimit to (current position) + byteLimit. This is called + when descending into a length-delimited embedded message. The previous + limit is returned. + + The old limit. + + + + Discards the current limit, returning the previous limit. + + + + + Returns whether or not all the data before the limit has been read. + + + + + + Returns true if the stream has reached the end of the input. This is the + case if either the end of the underlying input source has been reached or + the stream has reached a limit created using PushLimit. + + + + + Called when buffer is empty to read more bytes from the + input. If is true, RefillBuffer() gurantees that + either there will be at least one byte in the buffer when it returns + or it will throw an exception. If is false, + RefillBuffer() returns false if no more bytes were available. + + + + + + + Read one byte from the input. + + + the end of the stream or the current limit was reached + + + + + Reads a fixed size of bytes from the input. + + + the end of the stream or the current limit was reached + + + + + Reads and discards bytes. + + the end of the stream + or the current limit was reached + + + + Abstraction of skipping to cope with streams which can't really skip. + + + + + Encodes and writes protocol message fields. + + + + This class is generally used by generated code to write appropriate + primitives to the stream. It effectively encapsulates the lowest + levels of protocol buffer format. Unlike some other implementations, + this does not include combined "write tag and value" methods. Generated + code knows the exact byte representations of the tags they're going to write, + so there's no need to re-encode them each time. Manually-written code calling + this class should just call one of the WriteTag overloads before each value. + + + Repeated fields and map fields are not handled by this class; use RepeatedField<T> + and MapField<TKey, TValue> to serialize such fields. + + + + + + Computes the number of bytes that would be needed to encode a + double field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + float field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + uint64 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode an + int64 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode an + int32 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + fixed64 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + fixed32 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + bool field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + string field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + group field, including the tag. + + + + + Computes the number of bytes that would be needed to encode an + embedded message field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + bytes field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + uint32 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a + enum field, including the tag. The caller is responsible for + converting the enum value to its numeric value. + + + + + Computes the number of bytes that would be needed to encode an + sfixed32 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode an + sfixed64 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode an + sint32 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode an + sint64 field, including the tag. + + + + + Computes the number of bytes that would be needed to encode a length, + as written by . + + + + + Computes the number of bytes that would be needed to encode a varint. + + + + + Computes the number of bytes that would be needed to encode a varint. + + + + + Computes the number of bytes that would be needed to encode a tag. + + + + + The buffer size used by CreateInstance(Stream). + + + + + Creates a new CodedOutputStream that writes directly to the given + byte array. If more bytes are written than fit in the array, + OutOfSpaceException will be thrown. + + + + + Creates a new CodedOutputStream that writes directly to the given + byte array slice. If more bytes are written than fit in the array, + OutOfSpaceException will be thrown. + + + + + Creates a new which write to the given stream, and disposes of that + stream when the returned CodedOutputStream is disposed. + + The stream to write to. It will be disposed when the returned CodedOutputStream is disposed. + + + + Creates a new CodedOutputStream which write to the given stream and uses + the specified buffer size. + + The stream to write to. It will be disposed when the returned CodedOutputStream is disposed. + The size of buffer to use internally. + + + + Creates a new CodedOutputStream which write to the given stream. + + The stream to write to. + If true, is left open when the returned CodedOutputStream is disposed; + if false, the provided stream is disposed as well. + + + + Creates a new CodedOutputStream which write to the given stream and uses + the specified buffer size. + + The stream to write to. + The size of buffer to use internally. + If true, is left open when the returned CodedOutputStream is disposed; + if false, the provided stream is disposed as well. + + + + Returns the current position in the stream, or the position in the output buffer + + + + + Writes a double field value, without a tag, to the stream. + + The value to write + + + + Writes a float field value, without a tag, to the stream. + + The value to write + + + + Writes a uint64 field value, without a tag, to the stream. + + The value to write + + + + Writes an int64 field value, without a tag, to the stream. + + The value to write + + + + Writes an int32 field value, without a tag, to the stream. + + The value to write + + + + Writes a fixed64 field value, without a tag, to the stream. + + The value to write + + + + Writes a fixed32 field value, without a tag, to the stream. + + The value to write + + + + Writes a bool field value, without a tag, to the stream. + + The value to write + + + + Writes a string field value, without a tag, to the stream. + The data is length-prefixed. + + The value to write + + + + Writes a message, without a tag, to the stream. + The data is length-prefixed. + + The value to write + + + + Write a byte string, without a tag, to the stream. + The data is length-prefixed. + + The value to write + + + + Writes a uint32 value, without a tag, to the stream. + + The value to write + + + + Writes an enum value, without a tag, to the stream. + + The value to write + + + + Writes an sfixed32 value, without a tag, to the stream. + + The value to write. + + + + Writes an sfixed64 value, without a tag, to the stream. + + The value to write + + + + Writes an sint32 value, without a tag, to the stream. + + The value to write + + + + Writes an sint64 value, without a tag, to the stream. + + The value to write + + + + Writes a length (in bytes) for length-delimited data. + + + This method simply writes a rawint, but exists for clarity in calling code. + + Length value, in bytes. + + + + Encodes and writes a tag. + + The number of the field to write the tag for + The wire format type of the tag to write + + + + Writes an already-encoded tag. + + The encoded tag + + + + Writes the given single-byte tag directly to the stream. + + The encoded tag + + + + Writes the given two-byte tag directly to the stream. + + The first byte of the encoded tag + The second byte of the encoded tag + + + + Writes the given three-byte tag directly to the stream. + + The first byte of the encoded tag + The second byte of the encoded tag + The third byte of the encoded tag + + + + Writes the given four-byte tag directly to the stream. + + The first byte of the encoded tag + The second byte of the encoded tag + The third byte of the encoded tag + The fourth byte of the encoded tag + + + + Writes the given five-byte tag directly to the stream. + + The first byte of the encoded tag + The second byte of the encoded tag + The third byte of the encoded tag + The fourth byte of the encoded tag + The fifth byte of the encoded tag + + + + Writes a 32 bit value as a varint. The fast route is taken when + there's enough buffer space left to whizz through without checking + for each byte; otherwise, we resort to calling WriteRawByte each time. + + + + + Writes out an array of bytes. + + + + + Writes out part of an array of bytes. + + + + + Encode a 32-bit value with ZigZag encoding. + + + ZigZag encodes signed integers into values that can be efficiently + encoded with varint. (Otherwise, negative values must be + sign-extended to 64 bits to be varint encoded, thus always taking + 10 bytes on the wire.) + + + + + Encode a 64-bit value with ZigZag encoding. + + + ZigZag encodes signed integers into values that can be efficiently + encoded with varint. (Otherwise, negative values must be + sign-extended to 64 bits to be varint encoded, thus always taking + 10 bytes on the wire.) + + + + + Indicates that a CodedOutputStream wrapping a flat byte array + ran out of space. + + + + + Flushes any buffered data and optionally closes the underlying stream, if any. + + + + By default, any underlying stream is closed by this method. To configure this behaviour, + use a constructor overload with a leaveOpen parameter. If this instance does not + have an underlying stream, this method does nothing. + + + For the sake of efficiency, calling this method does not prevent future write calls - but + if a later write ends up writing to a stream which has been disposed, that is likely to + fail. It is recommend that you not call any other methods after this. + + + + + + Flushes any buffered data to the underlying stream (if there is one). + + + + + Verifies that SpaceLeft returns zero. It's common to create a byte array + that is exactly big enough to hold a message, then write to it with + a CodedOutputStream. Calling CheckNoSpaceLeft after writing verifies that + the message was actually as big as expected, which can help bugs. + + + + + If writing to a flat array, returns the space left in the array. Otherwise, + throws an InvalidOperationException. + + + + + Utility to compare if two Lists are the same, and the hash code + of a List. + + + + + Checks if two lists are equal. + + + + + Gets the list's hash code. + + + + + Representation of a map field in a Protocol Buffer message. + + Key type in the map. Must be a type supported by Protocol Buffer map keys. + Value type in the map. Must be a type supported by Protocol Buffers. + + + For string keys, the equality comparison is provided by . + + + Null values are not permitted in the map, either for wrapper types or regular messages. + If a map is deserialized from a data stream and the value is missing from an entry, a default value + is created instead. For primitive types, that is the regular default value (0, the empty string and so + on); for message types, an empty instance of the message is created, as if the map entry contained a 0-length + encoded value for the field. + + + This implementation does not generally prohibit the use of key/value types which are not + supported by Protocol Buffers (e.g. using a key type of byte) but nor does it guarantee + that all operations will work in such cases. + + + The order in which entries are returned when iterating over this object is undefined, and may change + in future versions. + + + + + + Creates a deep clone of this object. + + + A deep clone of this object. + + + + + Adds the specified key/value pair to the map. + + + This operation fails if the key already exists in the map. To replace an existing entry, use the indexer. + + The key to add + The value to add. + The given key already exists in map. + + + + Determines whether the specified key is present in the map. + + The key to check. + true if the map contains the given key; false otherwise. + + + + Removes the entry identified by the given key from the map. + + The key indicating the entry to remove from the map. + true if the map contained the given key before the entry was removed; false otherwise. + + + + Gets the value associated with the specified key. + + The key whose value to get. + When this method returns, the value associated with the specified key, if the key is found; + otherwise, the default value for the type of the parameter. + This parameter is passed uninitialized. + true if the map contains an element with the specified key; otherwise, false. + + + + Gets or sets the value associated with the specified key. + + The key of the value to get or set. + The property is retrieved and key does not exist in the collection. + The value associated with the specified key. If the specified key is not found, + a get operation throws a , and a set operation creates a new element with the specified key. + + + + Gets a collection containing the keys in the map. + + + + + Gets a collection containing the values in the map. + + + + + Adds the specified entries to the map. The keys and values are not automatically cloned. + + The entries to add to the map. + + + + Returns an enumerator that iterates through the collection. + + + An enumerator that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Adds the specified item to the map. + + The item to add to the map. + + + + Removes all items from the map. + + + + + Determines whether map contains an entry equivalent to the given key/value pair. + + The key/value pair to find. + + + + + Copies the key/value pairs in this map to an array. + + The array to copy the entries into. + The index of the array at which to start copying values. + + + + Removes the specified key/value pair from the map. + + Both the key and the value must be found for the entry to be removed. + The key/value pair to remove. + true if the key/value pair was found and removed; false otherwise. + + + + Gets the number of elements contained in the map. + + + + + Gets a value indicating whether the map is read-only. + + + + + Determines whether the specified , is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Compares this map with another for equality. + + + The order of the key/value pairs in the maps is not deemed significant in this comparison. + + The map to compare this with. + true if refers to an equal map; false otherwise. + + + + Adds entries to the map from the given stream. + + + It is assumed that the stream is initially positioned after the tag specified by the codec. + This method will continue reading entries from the stream until the end is reached, or + a different tag is encountered. + + Stream to read from + Codec describing how the key/value pairs are encoded + + + + Writes the contents of this map to the given coded output stream, using the specified codec + to encode each entry. + + The output stream to write to. + The codec to use for each entry. + + + + Calculates the size of this map based on the given entry codec. + + The codec to use to encode each entry. + + + + + Returns a string representation of this repeated field, in the same + way as it would be represented by the default JSON formatter. + + + + + A codec for a specific map field. This contains all the information required to encode and + decode the nested messages. + + + + + Creates a new entry codec based on a separate key codec and value codec, + and the tag to use for each map entry. + + The key codec. + The value codec. + The map tag to use to introduce each map entry. + + + + The tag used in the enclosing message to indicate map entries. + + + + + A mutable message class, used for parsing and serializing. This + delegates the work to a codec, but implements the interface + for interop with and . + This is nested inside Codec as it's tightly coupled to the associated codec, + and it's simpler if it has direct access to all its fields. + + + + + Provides a central place to implement equality comparisons, primarily for bitwise float/double equality. + + + + + Returns an equality comparer for suitable for Protobuf equality comparisons. + This is usually just the default equality comparer for the type, but floating point numbers are compared + bitwise. + + The type of equality comparer to return. + The equality comparer. + + + + Returns an equality comparer suitable for comparing 64-bit floating point values, by bitwise comparison. + (NaN values are considered equal, but only when they have the same representation.) + + + + + Returns an equality comparer suitable for comparing 32-bit floating point values, by bitwise comparison. + (NaN values are considered equal, but only when they have the same representation.) + + + + + Returns an equality comparer suitable for comparing nullable 64-bit floating point values, by bitwise comparison. + (NaN values are considered equal, but only when they have the same representation.) + + + + + Returns an equality comparer suitable for comparing nullable 32-bit floating point values, by bitwise comparison. + (NaN values are considered equal, but only when they have the same representation.) + + + + + Read-only wrapper around another dictionary. + + + + + The contents of a repeated field: essentially, a collection with some extra + restrictions (no null values) and capabilities (deep cloning). + + + This implementation does not generally prohibit the use of types which are not + supported by Protocol Buffers but nor does it guarantee that all operations will work in such cases. + + The element type of the repeated field. + + + + Creates a deep clone of this repeated field. + + + If the field type is + a message type, each element is also cloned; otherwise, it is + assumed that the field type is primitive (including string and + bytes, both of which are immutable) and so a simple copy is + equivalent to a deep clone. + + A deep clone of this repeated field. + + + + Adds the entries from the given input stream, decoding them with the specified codec. + + The input stream to read from. + The codec to use in order to read each entry. + + + + Calculates the size of this collection based on the given codec. + + The codec to use when encoding each field. + The number of bytes that would be written to a by , + using the same codec. + + + + Writes the contents of this collection to the given , + encoding each value using the specified codec. + + The output stream to write to. + The codec to use when encoding each value. + + + + Adds the specified item to the collection. + + The item to add. + + + + Removes all items from the collection. + + + + + Determines whether this collection contains the given item. + + The item to find. + true if this collection contains the given item; false otherwise. + + + + Copies this collection to the given array. + + The array to copy to. + The first index of the array to copy to. + + + + Removes the specified item from the collection + + The item to remove. + true if the item was found and removed; false otherwise. + + + + Gets the number of elements contained in the collection. + + + + + Gets a value indicating whether the collection is read-only. + + + + + Adds all of the specified values into this collection. + + The values to add to this collection. + + + + Adds all of the specified values into this collection. This method is present to + allow repeated fields to be constructed from queries within collection initializers. + Within non-collection-initializer code, consider using the equivalent + method instead for clarity. + + The values to add to this collection. + + + + Returns an enumerator that iterates through the collection. + + + An enumerator that can be used to iterate through the collection. + + + + + Determines whether the specified , is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Compares this repeated field with another for equality. + + The repeated field to compare this with. + true if refers to an equal repeated field; false otherwise. + + + + Returns the index of the given item within the collection, or -1 if the item is not + present. + + The item to find in the collection. + The zero-based index of the item, or -1 if it is not found. + + + + Inserts the given item at the specified index. + + The index at which to insert the item. + The item to insert. + + + + Removes the item at the given index. + + The zero-based index of the item to remove. + + + + Returns a string representation of this repeated field, in the same + way as it would be represented by the default JSON formatter. + + + + + Gets or sets the item at the specified index. + + + The element at the specified index. + + The zero-based index of the element to get or set. + The item at the specified index. + + + + Extension methods for , effectively providing + the familiar members from previous desktop framework versions while + targeting the newer releases, .NET Core etc. + + + + + Returns the public getter of a property, or null if there is no such getter + (either because it's read-only, or the getter isn't public). + + + + + Returns the public setter of a property, or null if there is no such setter + (either because it's write-only, or the setter isn't public). + + + + + Provides extension methods on Type that just proxy to TypeInfo. + These are used to support the new type system from .NET 4.5, without + having calls to GetTypeInfo all over the place. While the methods here are meant to be + broadly compatible with the desktop framework, there are some subtle differences in behaviour - but + they're not expected to affect our use cases. While the class is internal, that should be fine: we can + evaluate each new use appropriately. + + + + + See https://msdn.microsoft.com/en-us/library/system.type.isassignablefrom + + + + + Returns a representation of the public property associated with the given name in the given type, + including inherited properties or null if there is no such public property. + Here, "public property" means a property where either the getter, or the setter, or both, is public. + + + + + Returns a representation of the public method associated with the given name in the given type, + including inherited methods. + + + This has a few differences compared with Type.GetMethod in the desktop framework. It will throw + if there is an ambiguous match even between a private method and a public one, but it *won't* throw + if there are two overloads at different levels in the type hierarchy (e.g. class Base declares public void Foo(int) and + class Child : Base declares public void Foo(long)). + + One type in the hierarchy declared more than one method with the same name + + + + Factory methods for . + + + + + Retrieves a codec suitable for a string field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for a bytes field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for a bool field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for an int32 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for an sint32 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for a fixed32 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for an sfixed32 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for a uint32 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for an int64 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for an sint64 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for a fixed64 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for an sfixed64 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for a uint64 field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for a float field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for a double field with the given tag. + + The tag. + A codec for the given tag. + + + + Retrieves a codec suitable for an enum field with the given tag. + + The tag. + A conversion function from to the enum type. + A conversion function from the enum type to . + A codec for the given tag. + + + + Retrieves a codec suitable for a message field with the given tag. + + The tag. + A parser to use for the message type. + A codec for the given tag. + + + + Creates a codec for a wrapper type of a class - which must be string or ByteString. + + + + + Creates a codec for a wrapper type of a struct - which must be Int32, Int64, UInt32, UInt64, + Bool, Single or Double. + + + + + Helper code to create codecs for wrapper types. + + + Somewhat ugly with all the static methods, but the conversions involved to/from nullable types make it + slightly tricky to improve. So long as we keep the public API (ForClassWrapper, ForStructWrapper) in place, + we can refactor later if we come up with something cleaner. + + + + + Returns a field codec which effectively wraps a value of type T in a message. + + + + + + + An encode/decode pair for a single field. This effectively encapsulates + all the information needed to read or write the field value from/to a coded + stream. + + + This class is public and has to be as it is used by generated code, but its public + API is very limited - just what the generated code needs to call directly. + + + + This never writes default values to the stream, and does not address "packedness" + in repeated fields itself, other than to know whether or not the field *should* be packed. + + + + + Returns a delegate to write a value (unconditionally) to a coded output stream. + + + + + Returns the size calculator for just a value. + + + + + Returns a delegate to read a value from a coded input stream. It is assumed that + the stream is already positioned on the appropriate tag. + + + + + Returns the fixed size for an entry, or 0 if sizes vary. + + + + + Gets the tag of the codec. + + + The tag of the codec. + + + + + Default value for this codec. Usually the same for every instance of the same type, but + for string/ByteString wrapper fields the codec's default value is null, whereas for + other string/ByteString fields it's "" or ByteString.Empty. + + + The default value of the codec's type. + + + + + Write a tag and the given value, *if* the value is not the default. + + + + + Reads a value of the codec type from the given . + + The input stream to read from. + The value read from the stream. + + + + Calculates the size required to write the given value, with a tag, + if the value is not the default. + + + + + Class containing helpful workarounds for various platform compatibility + + + + + A message type that has a custom string format for diagnostic purposes. + + + + Calling on a generated message type normally + returns the JSON representation. If a message type implements this interface, + then the method will be called instead of the regular + JSON formatting code, but only when ToString() is called either on the message itself + or on another message which contains it. This does not affect the normal JSON formatting of + the message. + + + For example, if you create a proto message representing a GUID, the internal + representation may be a bytes field or four fixed32 fields. However, when debugging + it may be more convenient to see a result in the same format as provides. + + This interface extends to avoid it accidentally being implemented + on types other than messages, where it would not be used by anything in the framework. + + + + + Returns a string representation of this object, for diagnostic purposes. + + + This method is called when a message is formatted as part of a + call. It does not affect the JSON representation used by other than + in calls to . While it is recommended + that the result is valid JSON, this is never assumed by the Protobuf library. + + A string representation of this object, for diagnostic purposes. + + + + Generic interface for a deeply cloneable type. + + + + All generated messages implement this interface, but so do some non-message types. + Additionally, due to the type constraint on T in , + it is simpler to keep this as a separate interface. + + + The type itself, returned by the method. + + + + Creates a deep clone of this object. + + A deep clone of this object. + + + + Interface for a Protocol Buffers message, supporting + basic operations required for serialization. + + + + + Merges the data from the specified coded input stream with the current message. + + See the user guide for precise merge semantics. + + + + + Writes the data to the given coded output stream. + + Coded output stream to write the data to. Must not be null. + + + + Calculates the size of this message in Protocol Buffer wire format, in bytes. + + The number of bytes required to write this message + to a coded output stream. + + + + Descriptor for this message. All instances are expected to return the same descriptor, + and for generated types this will be an explicitly-implemented member, returning the + same value as the static property declared on the type. + + + + + Generic interface for a Protocol Buffers message, + where the type parameter is expected to be the same type as + the implementation class. + + The message type. + + + + Merges the given message into this one. + + See the user guide for precise merge semantics. + The message to merge with this one. Must not be null. + + + + Thrown when an attempt is made to parse invalid JSON, e.g. using + a non-string property key, or including a redundant comma. Parsing a protocol buffer + message represented in JSON using can throw both this + exception and depending on the situation. This + exception is only thrown for "pure JSON" errors, whereas InvalidProtocolBufferException + is thrown when the JSON may be valid in and of itself, but cannot be parsed as a protocol buffer + message. + + + + + Thrown when a protocol message being parsed is invalid in some way, + e.g. it contains a malformed varint or a negative byte length. + + + + + Creates an exception for an error condition of an invalid tag being encountered. + + + + + Reflection-based converter from messages to JSON. + + + + Instances of this class are thread-safe, with no mutable state. + + + This is a simple start to get JSON formatting working. As it's reflection-based, + it's not as quick as baking calls into generated messages - but is a simpler implementation. + (This code is generally not heavily optimized.) + + + + + + Returns a formatter using the default settings. + + + + + The JSON representation of the first 160 characters of Unicode. + Empty strings are replaced by the static constructor. + + + + + Creates a new formatted with the given settings. + + The settings. + + + + Formats the specified message as JSON. + + The message to format. + The formatted message. + + + + Formats the specified message as JSON. + + The message to format. + The TextWriter to write the formatted message to. + The formatted message. + + + + Converts a message to JSON for diagnostic purposes with no extra context. + + + + This differs from calling on the default JSON + formatter in its handling of . As no type registry is available + in calls, the normal way of resolving the type of + an Any message cannot be applied. Instead, a JSON property named @value + is included with the base64 data from the property of the message. + + The value returned by this method is only designed to be used for diagnostic + purposes. It may not be parsable by , and may not be parsable + by other Protocol Buffer implementations. + + The message to format for diagnostic purposes. + The diagnostic-only JSON representation of the message + + + + Writes a single value to the given writer as JSON. Only types understood by + Protocol Buffers can be written in this way. This method is only exposed for + advanced use cases; most users should be using + or . + + The writer to write the value to. Must not be null. + The value to write. May be null. + + + + Central interception point for well-known type formatting. Any well-known types which + don't need special handling can fall back to WriteMessage. We avoid assuming that the + values are using the embedded well-known types, in order to allow for dynamic messages + in the future. + + + + + Writes a string (including leading and trailing double quotes) to a builder, escaping as required. + + + Other than surrogate pair handling, this code is mostly taken from src/google/protobuf/util/internal/json_escaping.cc. + + + + + Settings controlling JSON formatting. + + + + + Default settings, as used by + + + + + Whether fields whose values are the default for the field type (e.g. 0 for integers) + should be formatted (true) or omitted (false). + + + + + The type registry used to format messages. + + + + + Whether to format enums as ints. Defaults to false. + + + + + Creates a new object with the specified formatting of default values + and an empty type registry. + + true if default values (0, empty strings etc) should be formatted; false otherwise. + + + + Creates a new object with the specified formatting of default values + and type registry. + + true if default values (0, empty strings etc) should be formatted; false otherwise. + The to use when formatting messages. + + + + Creates a new object with the specified parameters. + + true if default values (0, empty strings etc) should be formatted; false otherwise. + The to use when formatting messages. TypeRegistry.Empty will be used if it is null. + true to format the enums as integers; false to format enums as enum names. + + + + Creates a new object with the specified formatting of default values and the current settings. + + true if default values (0, empty strings etc) should be formatted; false otherwise. + + + + Creates a new object with the specified type registry and the current settings. + + The to use when formatting messages. + + + + Creates a new object with the specified enums formatting option and the current settings. + + true to format the enums as integers; false to format enums as enum names. + + + + Reflection-based converter from JSON to messages. + + + + Instances of this class are thread-safe, with no mutable state. + + + This is a simple start to get JSON parsing working. As it's reflection-based, + it's not as quick as baking calls into generated messages - but is a simpler implementation. + (This code is generally not heavily optimized.) + + + + + + Returns a formatter using the default settings. + + + + + Creates a new formatted with the given settings. + + The settings. + + + + Parses and merges the information into the given message. + + The message to merge the JSON information into. + The JSON to parse. + + + + Parses JSON read from and merges the information into the given message. + + The message to merge the JSON information into. + Reader providing the JSON to parse. + + + + Merges the given message using data from the given tokenizer. In most cases, the next + token should be a "start object" token, but wrapper types and nullity can invalidate + that assumption. This is implemented as an LL(1) recursive descent parser over the stream + of tokens provided by the tokenizer. This token stream is assumed to be valid JSON, with the + tokenizer performing that validation - but not every token stream is valid "protobuf JSON". + + + + + Parses into a new message. + + The type of message to create. + The JSON to parse. + The JSON does not comply with RFC 7159 + The JSON does not represent a Protocol Buffers message correctly + + + + Parses JSON read from into a new message. + + The type of message to create. + Reader providing the JSON to parse. + The JSON does not comply with RFC 7159 + The JSON does not represent a Protocol Buffers message correctly + + + + Parses into a new message. + + The JSON to parse. + Descriptor of message type to parse. + The JSON does not comply with RFC 7159 + The JSON does not represent a Protocol Buffers message correctly + + + + Parses JSON read from into a new message. + + Reader providing the JSON to parse. + Descriptor of message type to parse. + The JSON does not comply with RFC 7159 + The JSON does not represent a Protocol Buffers message correctly + + + + Creates a new instance of the message type for the given field. + + + + + Checks that any infinite/NaN values originated from the correct text. + This corrects the lenient whitespace handling of double.Parse/float.Parse, as well as the + way that Mono parses out-of-range values as infinity. + + + + + Settings controlling JSON parsing. + + + + + Default settings, as used by . This has the same default + recursion limit as , and an empty type registry. + + + + + The maximum depth of messages to parse. Note that this limit only applies to parsing + messages, not collections - so a message within a collection within a message only counts as + depth 2, not 3. + + + + + The type registry used to parse messages. + + + + + Whether the parser should ignore unknown fields (true) or throw an exception when + they are encountered (false). + + + + + Creates a new object with the specified recursion limit. + + The maximum depth of messages to parse + + + + Creates a new object with the specified recursion limit and type registry. + + The maximum depth of messages to parse + The type registry used to parse messages + + + + Creates a new object set to either ignore unknown fields, or throw an exception + when unknown fields are encountered. + + true if unknown fields should be ignored when parsing; false to throw an exception. + + + + Creates a new object based on this one, but with the specified recursion limit. + + The new recursion limit. + + + + Creates a new object based on this one, but with the specified type registry. + + The new type registry. Must not be null. + + + + Simple but strict JSON tokenizer, rigidly following RFC 7159. + + + + This tokenizer is stateful, and only returns "useful" tokens - names, values etc. + It does not create tokens for the separator between names and values, or for the comma + between values. It validates the token stream as it goes - so callers can assume that the + tokens it produces are appropriate. For example, it would never produce "start object, end array." + + Implementation details: the base class handles single token push-back and + Not thread-safe. + + + + + Creates a tokenizer that reads from the given text reader. + + + + + Creates a tokenizer that first replays the given list of tokens, then continues reading + from another tokenizer. Note that if the returned tokenizer is "pushed back", that does not push back + on the continuation tokenizer, or vice versa. Care should be taken when using this method - it was + created for the sake of Any parsing. + + + + + Returns the depth of the stack, purely in objects (not collections). + Informally, this is the number of remaining unclosed '{' characters we have. + + + + + Returns the next JSON token in the stream. An EndDocument token is returned to indicate the end of the stream, + after which point Next() should not be called again. + + This implementation provides single-token buffering, and calls if there is no buffered token. + The next token in the stream. This is never null. + This method is called after an EndDocument token has been returned + The input text does not comply with RFC 7159 + + + + Returns the next JSON token in the stream, when requested by the base class. (The method delegates + to this if it doesn't have a buffered token.) + + This method is called after an EndDocument token has been returned + The input text does not comply with RFC 7159 + + + + Skips the value we're about to read. This must only be called immediately after reading a property name. + If the value is an object or an array, the complete object/array is skipped. + + + + + Tokenizer which first exhausts a list of tokens, then consults another tokenizer. + + + + + Tokenizer which does all the *real* work of parsing JSON. + + + + + This method essentially just loops through characters skipping whitespace, validating and + changing state (e.g. from ObjectBeforeColon to ObjectAfterColon) + until it reaches something which will be a genuine token (e.g. a start object, or a value) at which point + it returns the token. Although the method is large, it would be relatively hard to break down further... most + of it is the large switch statement, which sometimes returns and sometimes doesn't. + + + + + Reads a string token. It is assumed that the opening " has already been read. + + + + + Reads an escaped character. It is assumed that the leading backslash has already been read. + + + + + Reads an escaped Unicode 4-nybble hex sequence. It is assumed that the leading \u has already been read. + + + + + Consumes a text-only literal, throwing an exception if the read text doesn't match it. + It is assumed that the first letter of the literal has already been read. + + + + + Validates that we're in a valid state to read a value (using the given error prefix if necessary) + and changes the state to the appropriate one, e.g. ObjectAfterColon to ObjectAfterProperty. + + + + + Pops the top-most container, and sets the state to the appropriate one for the end of a value + in the parent container. + + + + + Possible states of the tokenizer. + + + This is a flags enum purely so we can simply and efficiently represent a set of valid states + for checking. + + Each is documented with an example, + where ^ represents the current position within the text stream. The examples all use string values, + but could be any value, including nested objects/arrays. + The complete state of the tokenizer also includes a stack to indicate the contexts (arrays/objects). + Any additional notional state of "AfterValue" indicates that a value has been completed, at which + point there's an immediate transition to ExpectedEndOfDocument, ObjectAfterProperty or ArrayAfterValue. + + + These states were derived manually by reading RFC 7159 carefully. + + + + + + ^ { "foo": "bar" } + Before the value in a document. Next states: ObjectStart, ArrayStart, "AfterValue" + + + + + { "foo": "bar" } ^ + After the value in a document. Next states: ReaderExhausted + + + + + { "foo": "bar" } ^ (and already read to the end of the reader) + Terminal state. + + + + + { ^ "foo": "bar" } + Before the *first* property in an object. + Next states: + "AfterValue" (empty object) + ObjectBeforeColon (read a name) + + + + + { "foo" ^ : "bar", "x": "y" } + Next state: ObjectAfterColon + + + + + { "foo" : ^ "bar", "x": "y" } + Before any property other than the first in an object. + (Equivalently: after any property in an object) + Next states: + "AfterValue" (value is simple) + ObjectStart (value is object) + ArrayStart (value is array) + + + + + { "foo" : "bar" ^ , "x" : "y" } + At the end of a property, so expecting either a comma or end-of-object + Next states: ObjectAfterComma or "AfterValue" + + + + + { "foo":"bar", ^ "x":"y" } + Read the comma after the previous property, so expecting another property. + This is like ObjectStart, but closing brace isn't valid here + Next state: ObjectBeforeColon. + + + + + [ ^ "foo", "bar" ] + Before the *first* value in an array. + Next states: + "AfterValue" (read a value) + "AfterValue" (end of array; will pop stack) + + + + + [ "foo" ^ , "bar" ] + After any value in an array, so expecting either a comma or end-of-array + Next states: ArrayAfterComma or "AfterValue" + + + + + [ "foo", ^ "bar" ] + After a comma in an array, so there *must* be another value (simple or complex). + Next states: "AfterValue" (simple value), StartObject, StartArray + + + + + Wrapper around a text reader allowing small amounts of buffering and location handling. + + + + + The buffered next character, if we have one. + + + + + Returns the next character in the stream, or null if we have reached the end. + + + + + + Creates a new exception appropriate for the current state of the reader. + + + + + Stream implementation which proxies another stream, only allowing a certain amount + of data to be read. Note that this is only used to read delimited streams, so it + doesn't attempt to implement everything. + + + + + Extension methods on and . + + + + + Merges data from the given byte array into an existing message. + + The message to merge the data into. + The data to merge, which must be protobuf-encoded binary data. + + + + Merges data from the given byte array slice into an existing message. + + The message to merge the data into. + The data containing the slice to merge, which must be protobuf-encoded binary data. + The offset of the slice to merge. + The length of the slice to merge. + + + + Merges data from the given byte string into an existing message. + + The message to merge the data into. + The data to merge, which must be protobuf-encoded binary data. + + + + Merges data from the given stream into an existing message. + + The message to merge the data into. + Stream containing the data to merge, which must be protobuf-encoded binary data. + + + + Merges length-delimited data from the given stream into an existing message. + + + The stream is expected to contain a length and then the data. Only the amount of data + specified by the length will be consumed. + + The message to merge the data into. + Stream containing the data to merge, which must be protobuf-encoded binary data. + + + + Converts the given message into a byte array in protobuf encoding. + + The message to convert. + The message data as a byte array. + + + + Writes the given message data to the given stream in protobuf encoding. + + The message to write to the stream. + The stream to write to. + + + + Writes the length and then data of the given message to a stream. + + The message to write. + The output stream to write to. + + + + Converts the given message into a byte string in protobuf encoding. + + The message to convert. + The message data as a byte string. + + + + A general message parser, typically used by reflection-based code as all the methods + return simple . + + + + + Creates a template instance ready for population. + + An empty message. + + + + Parses a message from a byte array. + + The byte array containing the message. Must not be null. + The newly parsed message. + + + + Parses a message from a byte array slice. + + The byte array containing the message. Must not be null. + The offset of the slice to parse. + The length of the slice to parse. + The newly parsed message. + + + + Parses a message from the given byte string. + + The data to parse. + The parsed message. + + + + Parses a message from the given stream. + + The stream to parse. + The parsed message. + + + + Parses a length-delimited message from the given stream. + + + The stream is expected to contain a length and then the data. Only the amount of data + specified by the length will be consumed. + + The stream to parse. + The parsed message. + + + + Parses a message from the given coded input stream. + + The stream to parse. + The parsed message. + + + + Parses a message from the given JSON. + + The JSON to parse. + The parsed message. + The JSON does not comply with RFC 7159 + The JSON does not represent a Protocol Buffers message correctly + + + + A parser for a specific message type. + + +

+ This delegates most behavior to the + implementation within the original type, but + provides convenient overloads to parse from a variety of sources. +

+

+ Most applications will never need to create their own instances of this type; + instead, use the static Parser property of a generated message type to obtain a + parser for that type. +

+
+ The type of message to be parsed. +
+ + + Creates a new parser. + + + The factory method is effectively an optimization over using a generic constraint + to require a parameterless constructor: delegates are significantly faster to execute. + + Function to invoke when a new, empty message is required. + + + + Creates a template instance ready for population. + + An empty message. + + + + Parses a message from a byte array. + + The byte array containing the message. Must not be null. + The newly parsed message. + + + + Parses a message from a byte array slice. + + The byte array containing the message. Must not be null. + The offset of the slice to parse. + The length of the slice to parse. + The newly parsed message. + + + + Parses a message from the given byte string. + + The data to parse. + The parsed message. + + + + Parses a message from the given stream. + + The stream to parse. + The parsed message. + + + + Parses a length-delimited message from the given stream. + + + The stream is expected to contain a length and then the data. Only the amount of data + specified by the length will be consumed. + + The stream to parse. + The parsed message. + + + + Parses a message from the given coded input stream. + + The stream to parse. + The parsed message. + + + + Parses a message from the given JSON. + + The JSON to parse. + The parsed message. + The JSON does not comply with RFC 7159 + The JSON does not represent a Protocol Buffers message correctly + + + + Helper methods for throwing exceptions when preconditions are not met. + + + This class is used internally and by generated code; it is not particularly + expected to be used from application code, although nothing prevents it + from being used that way. + + + + + Throws an ArgumentNullException if the given value is null, otherwise + return the value to the caller. + + + + + Throws an ArgumentNullException if the given value is null, otherwise + return the value to the caller. + + + This is equivalent to but without the type parameter + constraint. In most cases, the constraint is useful to prevent you from calling CheckNotNull + with a value type - but it gets in the way if either you want to use it with a nullable + value type, or you want to use it with an unconstrained type parameter. + + + + + Container for a set of custom options specified within a message, field etc. + + + + This type is publicly immutable, but internally mutable. It is only populated + by the descriptor parsing code - by the time any user code is able to see an instance, + it will be fully initialized. + + + If an option is requested using the incorrect method, an answer may still be returned: all + of the numeric types are represented internally using 64-bit integers, for example. It is up to + the caller to ensure that they make the appropriate method call for the option they're interested in. + Note that enum options are simply stored as integers, so the value should be fetched using + and then cast appropriately. + + + Repeated options are currently not supported. Asking for a single value of an option + which was actually repeated will return the last value, except for message types where + all the set values are merged together. + + + + + + Singleton for all descriptors with an empty set of options. + + + + + A sequence of values per field. This needs to be per field rather than per tag to allow correct deserialization + of repeated fields which could be "int, ByteString, int" - unlikely as that is. The fact that values are boxed + is unfortunate; we might be able to use a struct instead, and we could combine uint and ulong values. + + + + + Retrieves a Boolean value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a signed 32-bit integer value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a signed 64-bit integer value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves an unsigned 32-bit integer value for the specified option field, + assuming a fixed-length representation. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves an unsigned 64-bit integer value for the specified option field, + assuming a fixed-length representation. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a signed 32-bit integer value for the specified option field, + assuming a fixed-length representation. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a signed 64-bit integer value for the specified option field, + assuming a fixed-length representation. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a signed 32-bit integer value for the specified option field, + assuming a zigzag encoding. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a signed 64-bit integer value for the specified option field, + assuming a zigzag encoding. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves an unsigned 32-bit integer value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves an unsigned 64-bit integer value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a 32-bit floating point value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a 64-bit floating point value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a string value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a bytes value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Retrieves a message value for the specified option field. + + The field to fetch the value for. + The output variable to populate. + true if a suitable value for the field was found; false otherwise. + + + + Reads an unknown field, either parsing it and storing it or skipping it. + + + If the current set of options is empty and we manage to read a field, a new set of options + will be created and returned. Otherwise, the return value is this. This allows + us to start with a singleton empty set of options and just create new ones where necessary. + + Input stream to read from. + The resulting set of custom options, either this or a new set. + + + + All field values can be stored as a byte string or a 64-bit integer. + This struct avoids unnecessary boxing. + + + + Holder for reflection information generated from google/protobuf/descriptor.proto + + + File descriptor for google/protobuf/descriptor.proto + + + + The protocol compiler can output a FileDescriptorSet containing the .proto + files it parses. + + + + Field number for the "file" field. + + + + Describes a complete .proto file. + + + + Field number for the "name" field. + + + + file name, relative to root of source tree + + + + Field number for the "package" field. + + + + e.g. "foo", "foo.bar", etc. + + + + Field number for the "dependency" field. + + + + Names of files imported by this file. + + + + Field number for the "public_dependency" field. + + + + Indexes of the public imported files in the dependency list above. + + + + Field number for the "weak_dependency" field. + + + + Indexes of the weak imported files in the dependency list. + For Google-internal migration only. Do not use. + + + + Field number for the "message_type" field. + + + + All top-level definitions in this file. + + + + Field number for the "enum_type" field. + + + Field number for the "service" field. + + + Field number for the "extension" field. + + + Field number for the "options" field. + + + Field number for the "source_code_info" field. + + + + This field contains optional information about the original source code. + You may safely remove this entire field without harming runtime + functionality of the descriptors -- the information is needed only by + development tools. + + + + Field number for the "syntax" field. + + + + The syntax of the proto file. + The supported values are "proto2" and "proto3". + + + + + Describes a message type. + + + + Field number for the "name" field. + + + Field number for the "field" field. + + + Field number for the "extension" field. + + + Field number for the "nested_type" field. + + + Field number for the "enum_type" field. + + + Field number for the "extension_range" field. + + + Field number for the "oneof_decl" field. + + + Field number for the "options" field. + + + Field number for the "reserved_range" field. + + + Field number for the "reserved_name" field. + + + + Reserved field names, which may not be used by fields in the same message. + A given name may only be reserved once. + + + + Container for nested types declared in the DescriptorProto message type. + + + Field number for the "start" field. + + + Field number for the "end" field. + + + Field number for the "options" field. + + + + Range of reserved tag numbers. Reserved tag numbers may not be used by + fields or extension ranges in the same message. Reserved ranges may + not overlap. + + + + Field number for the "start" field. + + + + Inclusive. + + + + Field number for the "end" field. + + + + Exclusive. + + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. See above. + + + + + Describes a field within a message. + + + + Field number for the "name" field. + + + Field number for the "number" field. + + + Field number for the "label" field. + + + Field number for the "type" field. + + + + If type_name is set, this need not be set. If both this and type_name + are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP. + + + + Field number for the "type_name" field. + + + + For message and enum types, this is the name of the type. If the name + starts with a '.', it is fully-qualified. Otherwise, C++-like scoping + rules are used to find the type (i.e. first the nested types within this + message are searched, then within the parent, on up to the root + namespace). + + + + Field number for the "extendee" field. + + + + For extensions, this is the name of the type being extended. It is + resolved in the same manner as type_name. + + + + Field number for the "default_value" field. + + + + For numeric types, contains the original text representation of the value. + For booleans, "true" or "false". + For strings, contains the default text contents (not escaped in any way). + For bytes, contains the C escaped value. All bytes >= 128 are escaped. + TODO(kenton): Base-64 encode? + + + + Field number for the "oneof_index" field. + + + + If set, gives the index of a oneof in the containing type's oneof_decl + list. This field is a member of that oneof. + + + + Field number for the "json_name" field. + + + + JSON name of this field. The value is set by protocol compiler. If the + user has set a "json_name" option on this field, that option's value + will be used. Otherwise, it's deduced from the field's name by converting + it to camelCase. + + + + Field number for the "options" field. + + + Container for nested types declared in the FieldDescriptorProto message type. + + + + 0 is reserved for errors. + Order is weird for historical reasons. + + + + + Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT64 if + negative values are likely. + + + + + Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT32 if + negative values are likely. + + + + + Tag-delimited aggregate. + Group type is deprecated and not supported in proto3. However, Proto3 + implementations should still be able to parse the group wire format and + treat group fields as unknown fields. + + + + + Length-delimited aggregate. + + + + + New in version 2. + + + + + Uses ZigZag encoding. + + + + + Uses ZigZag encoding. + + + + + 0 is reserved for errors + + + + + Describes a oneof. + + + + Field number for the "name" field. + + + Field number for the "options" field. + + + + Describes an enum type. + + + + Field number for the "name" field. + + + Field number for the "value" field. + + + Field number for the "options" field. + + + Field number for the "reserved_range" field. + + + + Range of reserved numeric values. Reserved numeric values may not be used + by enum values in the same enum declaration. Reserved ranges may not + overlap. + + + + Field number for the "reserved_name" field. + + + + Reserved enum value names, which may not be reused. A given name may only + be reserved once. + + + + Container for nested types declared in the EnumDescriptorProto message type. + + + + Range of reserved numeric values. Reserved values may not be used by + entries in the same enum. Reserved ranges may not overlap. + + Note that this is distinct from DescriptorProto.ReservedRange in that it + is inclusive such that it can appropriately represent the entire int32 + domain. + + + + Field number for the "start" field. + + + + Inclusive. + + + + Field number for the "end" field. + + + + Inclusive. + + + + + Describes a value within an enum. + + + + Field number for the "name" field. + + + Field number for the "number" field. + + + Field number for the "options" field. + + + + Describes a service. + + + + Field number for the "name" field. + + + Field number for the "method" field. + + + Field number for the "options" field. + + + + Describes a method of a service. + + + + Field number for the "name" field. + + + Field number for the "input_type" field. + + + + Input and output type names. These are resolved in the same way as + FieldDescriptorProto.type_name, but must refer to a message type. + + + + Field number for the "output_type" field. + + + Field number for the "options" field. + + + Field number for the "client_streaming" field. + + + + Identifies if client streams multiple client messages + + + + Field number for the "server_streaming" field. + + + + Identifies if server streams multiple server messages + + + + Field number for the "java_package" field. + + + + Sets the Java package where classes generated from this .proto will be + placed. By default, the proto package is used, but this is often + inappropriate because proto packages do not normally start with backwards + domain names. + + + + Field number for the "java_outer_classname" field. + + + + If set, all the classes from the .proto file are wrapped in a single + outer class with the given name. This applies to both Proto1 + (equivalent to the old "--one_java_file" option) and Proto2 (where + a .proto always translates to a single class, but you may want to + explicitly choose the class name). + + + + Field number for the "java_multiple_files" field. + + + + If set true, then the Java code generator will generate a separate .java + file for each top-level message, enum, and service defined in the .proto + file. Thus, these types will *not* be nested inside the outer class + named by java_outer_classname. However, the outer class will still be + generated to contain the file's getDescriptor() method as well as any + top-level extensions defined in the file. + + + + Field number for the "java_generate_equals_and_hash" field. + + + + This option does nothing. + + + + Field number for the "java_string_check_utf8" field. + + + + If set true, then the Java2 code generator will generate code that + throws an exception whenever an attempt is made to assign a non-UTF-8 + byte sequence to a string field. + Message reflection will do the same. + However, an extension field still accepts non-UTF-8 byte sequences. + This option has no effect on when used with the lite runtime. + + + + Field number for the "optimize_for" field. + + + Field number for the "go_package" field. + + + + Sets the Go package where structs generated from this .proto will be + placed. If omitted, the Go package will be derived from the following: + - The basename of the package import path, if provided. + - Otherwise, the package statement in the .proto file, if present. + - Otherwise, the basename of the .proto file, without extension. + + + + Field number for the "cc_generic_services" field. + + + + Should generic services be generated in each language? "Generic" services + are not specific to any particular RPC system. They are generated by the + main code generators in each language (without additional plugins). + Generic services were the only kind of service generation supported by + early versions of google.protobuf. + + Generic services are now considered deprecated in favor of using plugins + that generate code specific to your particular RPC system. Therefore, + these default to false. Old code which depends on generic services should + explicitly set them to true. + + + + Field number for the "java_generic_services" field. + + + Field number for the "py_generic_services" field. + + + Field number for the "php_generic_services" field. + + + Field number for the "deprecated" field. + + + + Is this file deprecated? + Depending on the target platform, this can emit Deprecated annotations + for everything in the file, or it will be completely ignored; in the very + least, this is a formalization for deprecating files. + + + + Field number for the "cc_enable_arenas" field. + + + + Enables the use of arenas for the proto messages in this file. This applies + only to generated classes for C++. + + + + Field number for the "objc_class_prefix" field. + + + + Sets the objective c class prefix which is prepended to all objective c + generated classes from this .proto. There is no default. + + + + Field number for the "csharp_namespace" field. + + + + Namespace for generated classes; defaults to the package. + + + + Field number for the "swift_prefix" field. + + + + By default Swift generators will take the proto package and CamelCase it + replacing '.' with underscore and use that to prefix the types/symbols + defined. When this options is provided, they will use this value instead + to prefix the types/symbols defined. + + + + Field number for the "php_class_prefix" field. + + + + Sets the php class prefix which is prepended to all php generated classes + from this .proto. Default is empty. + + + + Field number for the "php_namespace" field. + + + + Use this option to change the namespace of php generated classes. Default + is empty. When this option is empty, the package name will be used for + determining the namespace. + + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. + See the documentation for the "Options" section above. + + + + Container for nested types declared in the FileOptions message type. + + + + Generated classes can be optimized for speed or code size. + + + + + Generate complete code for parsing, serialization, + + + + + etc. + + + + + Generate code using MessageLite and the lite runtime. + + + + Field number for the "message_set_wire_format" field. + + + + Set true to use the old proto1 MessageSet wire format for extensions. + This is provided for backwards-compatibility with the MessageSet wire + format. You should not use this for any other reason: It's less + efficient, has fewer features, and is more complicated. + + The message must be defined exactly as follows: + message Foo { + option message_set_wire_format = true; + extensions 4 to max; + } + Note that the message cannot have any defined fields; MessageSets only + have extensions. + + All extensions of your type must be singular messages; e.g. they cannot + be int32s, enums, or repeated messages. + + Because this is an option, the above two restrictions are not enforced by + the protocol compiler. + + + + Field number for the "no_standard_descriptor_accessor" field. + + + + Disables the generation of the standard "descriptor()" accessor, which can + conflict with a field of the same name. This is meant to make migration + from proto1 easier; new code should avoid fields named "descriptor". + + + + Field number for the "deprecated" field. + + + + Is this message deprecated? + Depending on the target platform, this can emit Deprecated annotations + for the message, or it will be completely ignored; in the very least, + this is a formalization for deprecating messages. + + + + Field number for the "map_entry" field. + + + + Whether the message is an automatically generated map entry type for the + maps field. + + For maps fields: + map<KeyType, ValueType> map_field = 1; + The parsed descriptor looks like: + message MapFieldEntry { + option map_entry = true; + optional KeyType key = 1; + optional ValueType value = 2; + } + repeated MapFieldEntry map_field = 1; + + Implementations may choose not to generate the map_entry=true message, but + use a native map in the target language to hold the keys and values. + The reflection APIs in such implementions still need to work as + if the field is a repeated message field. + + NOTE: Do not set the option in .proto files. Always use the maps syntax + instead. The option should only be implicitly set by the proto compiler + parser. + + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. See above. + + + + Field number for the "ctype" field. + + + + The ctype option instructs the C++ code generator to use a different + representation of the field than it normally would. See the specific + options below. This option is not yet implemented in the open source + release -- sorry, we'll try to include it in a future version! + + + + Field number for the "packed" field. + + + + The packed option can be enabled for repeated primitive fields to enable + a more efficient representation on the wire. Rather than repeatedly + writing the tag and type for each element, the entire array is encoded as + a single length-delimited blob. In proto3, only explicit setting it to + false will avoid using packed encoding. + + + + Field number for the "jstype" field. + + + + The jstype option determines the JavaScript type used for values of the + field. The option is permitted only for 64 bit integral and fixed types + (int64, uint64, sint64, fixed64, sfixed64). A field with jstype JS_STRING + is represented as JavaScript string, which avoids loss of precision that + can happen when a large value is converted to a floating point JavaScript. + Specifying JS_NUMBER for the jstype causes the generated JavaScript code to + use the JavaScript "number" type. The behavior of the default option + JS_NORMAL is implementation dependent. + + This option is an enum to permit additional types to be added, e.g. + goog.math.Integer. + + + + Field number for the "lazy" field. + + + + Should this field be parsed lazily? Lazy applies only to message-type + fields. It means that when the outer message is initially parsed, the + inner message's contents will not be parsed but instead stored in encoded + form. The inner message will actually be parsed when it is first accessed. + + This is only a hint. Implementations are free to choose whether to use + eager or lazy parsing regardless of the value of this option. However, + setting this option true suggests that the protocol author believes that + using lazy parsing on this field is worth the additional bookkeeping + overhead typically needed to implement it. + + This option does not affect the public interface of any generated code; + all method signatures remain the same. Furthermore, thread-safety of the + interface is not affected by this option; const methods remain safe to + call from multiple threads concurrently, while non-const methods continue + to require exclusive access. + + Note that implementations may choose not to check required fields within + a lazy sub-message. That is, calling IsInitialized() on the outer message + may return true even if the inner message has missing required fields. + This is necessary because otherwise the inner message would have to be + parsed in order to perform the check, defeating the purpose of lazy + parsing. An implementation which chooses not to check required fields + must be consistent about it. That is, for any particular sub-message, the + implementation must either *always* check its required fields, or *never* + check its required fields, regardless of whether or not the message has + been parsed. + + + + Field number for the "deprecated" field. + + + + Is this field deprecated? + Depending on the target platform, this can emit Deprecated annotations + for accessors, or it will be completely ignored; in the very least, this + is a formalization for deprecating fields. + + + + Field number for the "weak" field. + + + + For Google-internal migration only. Do not use. + + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. See above. + + + + Container for nested types declared in the FieldOptions message type. + + + + Default mode. + + + + + Use the default type. + + + + + Use JavaScript strings. + + + + + Use JavaScript numbers. + + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. See above. + + + + Field number for the "allow_alias" field. + + + + Set this option to true to allow mapping different tag names to the same + value. + + + + Field number for the "deprecated" field. + + + + Is this enum deprecated? + Depending on the target platform, this can emit Deprecated annotations + for the enum, or it will be completely ignored; in the very least, this + is a formalization for deprecating enums. + + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. See above. + + + + Field number for the "deprecated" field. + + + + Is this enum value deprecated? + Depending on the target platform, this can emit Deprecated annotations + for the enum value, or it will be completely ignored; in the very least, + this is a formalization for deprecating enum values. + + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. See above. + + + + Field number for the "deprecated" field. + + + + Is this service deprecated? + Depending on the target platform, this can emit Deprecated annotations + for the service, or it will be completely ignored; in the very least, + this is a formalization for deprecating services. + + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. See above. + + + + Field number for the "deprecated" field. + + + + Is this method deprecated? + Depending on the target platform, this can emit Deprecated annotations + for the method, or it will be completely ignored; in the very least, + this is a formalization for deprecating methods. + + + + Field number for the "idempotency_level" field. + + + Field number for the "uninterpreted_option" field. + + + + The parser stores options it doesn't recognize here. See above. + + + + Container for nested types declared in the MethodOptions message type. + + + + Is this method side-effect-free (or safe in HTTP parlance), or idempotent, + or neither? HTTP based RPC implementation may choose GET verb for safe + methods, and PUT verb for idempotent methods instead of the default POST. + + + + + implies idempotent + + + + + idempotent, but may have side effects + + + + + A message representing a option the parser does not recognize. This only + appears in options protos created by the compiler::Parser class. + DescriptorPool resolves these when building Descriptor objects. Therefore, + options protos in descriptor objects (e.g. returned by Descriptor::options(), + or produced by Descriptor::CopyTo()) will never have UninterpretedOptions + in them. + + + + Field number for the "name" field. + + + Field number for the "identifier_value" field. + + + + The value of the uninterpreted option, in whatever type the tokenizer + identified it as during parsing. Exactly one of these should be set. + + + + Field number for the "positive_int_value" field. + + + Field number for the "negative_int_value" field. + + + Field number for the "double_value" field. + + + Field number for the "string_value" field. + + + Field number for the "aggregate_value" field. + + + Container for nested types declared in the UninterpretedOption message type. + + + + The name of the uninterpreted option. Each string represents a segment in + a dot-separated name. is_extension is true iff a segment represents an + extension (denoted with parentheses in options specs in .proto files). + E.g.,{ ["foo", false], ["bar.baz", true], ["qux", false] } represents + "foo.(bar.baz).qux". + + + + Field number for the "name_part" field. + + + Field number for the "is_extension" field. + + + + Encapsulates information about the original source file from which a + FileDescriptorProto was generated. + + + + Field number for the "location" field. + + + + A Location identifies a piece of source code in a .proto file which + corresponds to a particular definition. This information is intended + to be useful to IDEs, code indexers, documentation generators, and similar + tools. + + For example, say we have a file like: + message Foo { + optional string foo = 1; + } + Let's look at just the field definition: + optional string foo = 1; + ^ ^^ ^^ ^ ^^^ + a bc de f ghi + We have the following locations: + span path represents + [a,i) [ 4, 0, 2, 0 ] The whole field definition. + [a,b) [ 4, 0, 2, 0, 4 ] The label (optional). + [c,d) [ 4, 0, 2, 0, 5 ] The type (string). + [e,f) [ 4, 0, 2, 0, 1 ] The name (foo). + [g,h) [ 4, 0, 2, 0, 3 ] The number (1). + + Notes: + - A location may refer to a repeated field itself (i.e. not to any + particular index within it). This is used whenever a set of elements are + logically enclosed in a single code segment. For example, an entire + extend block (possibly containing multiple extension definitions) will + have an outer location whose path refers to the "extensions" repeated + field without an index. + - Multiple locations may have the same path. This happens when a single + logical declaration is spread out across multiple places. The most + obvious example is the "extend" block again -- there may be multiple + extend blocks in the same scope, each of which will have the same path. + - A location's span is not always a subset of its parent's span. For + example, the "extendee" of an extension declaration appears at the + beginning of the "extend" block and is shared by all extensions within + the block. + - Just because a location's span is a subset of some other location's span + does not mean that it is a descendent. For example, a "group" defines + both a type and a field in a single declaration. Thus, the locations + corresponding to the type and field and their components will overlap. + - Code which tries to interpret locations should probably be designed to + ignore those that it doesn't understand, as more types of locations could + be recorded in the future. + + + + Container for nested types declared in the SourceCodeInfo message type. + + + Field number for the "path" field. + + + + Identifies which part of the FileDescriptorProto was defined at this + location. + + Each element is a field number or an index. They form a path from + the root FileDescriptorProto to the place where the definition. For + example, this path: + [ 4, 3, 2, 7, 1 ] + refers to: + file.message_type(3) // 4, 3 + .field(7) // 2, 7 + .name() // 1 + This is because FileDescriptorProto.message_type has field number 4: + repeated DescriptorProto message_type = 4; + and DescriptorProto.field has field number 2: + repeated FieldDescriptorProto field = 2; + and FieldDescriptorProto.name has field number 1: + optional string name = 1; + + Thus, the above path gives the location of a field name. If we removed + the last element: + [ 4, 3, 2, 7 ] + this path refers to the whole field declaration (from the beginning + of the label to the terminating semicolon). + + + + Field number for the "span" field. + + + + Always has exactly three or four elements: start line, start column, + end line (optional, otherwise assumed same as start line), end column. + These are packed into a single field for efficiency. Note that line + and column numbers are zero-based -- typically you will want to add + 1 to each before displaying to a user. + + + + Field number for the "leading_comments" field. + + + + If this SourceCodeInfo represents a complete declaration, these are any + comments appearing before and after the declaration which appear to be + attached to the declaration. + + A series of line comments appearing on consecutive lines, with no other + tokens appearing on those lines, will be treated as a single comment. + + leading_detached_comments will keep paragraphs of comments that appear + before (but not connected to) the current element. Each paragraph, + separated by empty lines, will be one comment element in the repeated + field. + + Only the comment content is provided; comment markers (e.g. //) are + stripped out. For block comments, leading whitespace and an asterisk + will be stripped from the beginning of each line other than the first. + Newlines are included in the output. + + Examples: + + optional int32 foo = 1; // Comment attached to foo. + // Comment attached to bar. + optional int32 bar = 2; + + optional string baz = 3; + // Comment attached to baz. + // Another line attached to baz. + + // Comment attached to qux. + // + // Another line attached to qux. + optional double qux = 4; + + // Detached comment for corge. This is not leading or trailing comments + // to qux or corge because there are blank lines separating it from + // both. + + // Detached comment for corge paragraph 2. + + optional string corge = 5; + /* Block comment attached + * to corge. Leading asterisks + * will be removed. */ + /* Block comment attached to + * grault. */ + optional int32 grault = 6; + + // ignored detached comments. + + + + Field number for the "trailing_comments" field. + + + Field number for the "leading_detached_comments" field. + + + + Describes the relationship between generated code and its original source + file. A GeneratedCodeInfo message is associated with only one generated + source file, but may contain references to different source .proto files. + + + + Field number for the "annotation" field. + + + + An Annotation connects some span of text in generated code to an element + of its generating .proto file. + + + + Container for nested types declared in the GeneratedCodeInfo message type. + + + Field number for the "path" field. + + + + Identifies the element in the original source .proto file. This field + is formatted the same as SourceCodeInfo.Location.path. + + + + Field number for the "source_file" field. + + + + Identifies the filesystem path to the original source .proto. + + + + Field number for the "begin" field. + + + + Identifies the starting offset in bytes in the generated code + that relates to the identified object. + + + + Field number for the "end" field. + + + + Identifies the ending offset in bytes in the generated code that + relates to the identified offset. The end offset should be one past + the last relevant byte (so the length of the text = end - begin). + + + + + Base class for nearly all descriptors, providing common functionality. + + + + + The index of this descriptor within its parent descriptor. + + + This returns the index of this descriptor within its parent, for + this descriptor's type. (There can be duplicate values for different + types, e.g. one enum type with index 0 and one message type with index 0.) + + + + + Returns the name of the entity (field, message etc) being described. + + + + + The fully qualified name of the descriptor's target. + + + + + The file this descriptor was declared in. + + + + + Contains lookup tables containing all the descriptors defined in a particular file. + + + + + Finds a symbol of the given name within the pool. + + The type of symbol to look for + Fully-qualified name to look up + The symbol with the given name and type, + or null if the symbol doesn't exist or has the wrong type + + + + Adds a package to the symbol tables. If a package by the same name + already exists, that is fine, but if some other kind of symbol + exists under the same name, an exception is thrown. If the package + has multiple components, this also adds the parent package(s). + + + + + Adds a symbol to the symbol table. + + The symbol already existed + in the symbol table. + + + + Verifies that the descriptor's name is valid (i.e. it contains + only letters, digits and underscores, and does not start with a digit). + + + + + + Returns the field with the given number in the given descriptor, + or null if it can't be found. + + + + + Adds a field to the fieldsByNumber table. + + A field with the same + containing type and number already exists. + + + + Adds an enum value to the enumValuesByNumber table. If an enum value + with the same type and number already exists, this method does nothing. + (This is allowed; the first value defined with the number takes precedence.) + + + + + Looks up a descriptor by name, relative to some other descriptor. + The name may be fully-qualified (with a leading '.'), partially-qualified, + or unqualified. C++-like name lookup semantics are used to search for the + matching descriptor. + + + This isn't heavily optimized, but it's only used during cross linking anyway. + If it starts being used more widely, we should look at performance more carefully. + + + + + Struct used to hold the keys for the fieldByNumber table. + + + + + Internal class containing utility methods when working with descriptors. + + + + + Equivalent to Func[TInput, int, TOutput] but usable in .NET 2.0. Only used to convert + arrays. + + + + + Converts the given array into a read-only list, applying the specified conversion to + each input element. + + + + + Thrown when building descriptors fails because the source DescriptorProtos + are not valid. + + + + + The full name of the descriptor where the error occurred. + + + + + A human-readable description of the error. (The Message property + is made up of the descriptor's name and this description.) + + + + + Descriptor for an enum type in a .proto file. + + + + + The brief name of the descriptor's target. + + + + + The CLR type for this enum. For generated code, this will be a CLR enum type. + + + + + If this is a nested type, get the outer descriptor, otherwise null. + + + + + An unmodifiable list of defined value descriptors for this enum. + + + + + Finds an enum value by number. If multiple enum values have the + same number, this returns the first defined value with that number. + If there is no value for the given number, this returns null. + + + + + Finds an enum value by name. + + The unqualified name of the value (e.g. "FOO"). + The value's descriptor, or null if not found. + + + + The (possibly empty) set of custom options for this enum. + + + + + Descriptor for a single enum value within an enum in a .proto file. + + + + + Returns the name of the enum value described by this object. + + + + + Returns the number associated with this enum value. + + + + + Returns the enum descriptor that this value is part of. + + + + + The (possibly empty) set of custom options for this enum value. + + + + + Base class for field accessors. + + + + + Descriptor for a field or extension within a message in a .proto file. + + + + + Get the field's containing message type. + + + + + Returns the oneof containing this field, or null if it is not part of a oneof. + + + + + The effective JSON name for this field. This is usually the lower-camel-cased form of the field name, + but can be overridden using the json_name option in the .proto file. + + + + + The brief name of the descriptor's target. + + + + + Returns the accessor for this field. + + + + While a describes the field, it does not provide + any way of obtaining or changing the value of the field within a specific message; + that is the responsibility of the accessor. + + + The value returned by this property will be non-null for all regular fields. However, + if a message containing a map field is introspected, the list of nested messages will include + an auto-generated nested key/value pair message for the field. This is not represented in any + generated type, and the value of the map field itself is represented by a dictionary in the + reflection API. There are never instances of those "hidden" messages, so no accessor is provided + and this property will return null. + + + + + + Maps a field type as included in the .proto file to a FieldType. + + + + + Returns true if this field is a repeated field; false otherwise. + + + + + Returns true if this field is a map field; false otherwise. + + + + + Returns true if this field is a packed, repeated field; false otherwise. + + + + + Returns the type of the field. + + + + + Returns the field number declared in the proto file. + + + + + Compares this descriptor with another one, ordering in "canonical" order + which simply means ascending order by field number. + must be a field of the same type, i.e. the of + both fields must be the same. + + + + + For enum fields, returns the field's type. + + + + + For embedded message and group fields, returns the field's type. + + + + + The (possibly empty) set of custom options for this field. + + + + + Look up and cross-link all field types etc. + + + + + Enumeration of all the possible field types. + + + + + The double field type. + + + + + The float field type. + + + + + The int64 field type. + + + + + The uint64 field type. + + + + + The int32 field type. + + + + + The fixed64 field type. + + + + + The fixed32 field type. + + + + + The bool field type. + + + + + The string field type. + + + + + The field type used for groups (not supported in this implementation). + + + + + The field type used for message fields. + + + + + The bytes field type. + + + + + The uint32 field type. + + + + + The sfixed32 field type. + + + + + The sfixed64 field type. + + + + + The sint32 field type. + + + + + The sint64 field type. + + + + + The field type used for enum fields. + + + + + Describes a .proto file, including everything defined within. + IDescriptor is implemented such that the File property returns this descriptor, + and the FullName is the same as the Name. + + + + + Computes the full name of a descriptor within this file, with an optional parent message. + + + + + Extracts public dependencies from direct dependencies. This is a static method despite its + first parameter, as the value we're in the middle of constructing is only used for exceptions. + + + + + The descriptor in its protocol message representation. + + + + + The file name. + + + + + The package as declared in the .proto file. This may or may not + be equivalent to the .NET namespace of the generated classes. + + + + + Unmodifiable list of top-level message types declared in this file. + + + + + Unmodifiable list of top-level enum types declared in this file. + + + + + Unmodifiable list of top-level services declared in this file. + + + + + Unmodifiable list of this file's dependencies (imports). + + + + + Unmodifiable list of this file's public dependencies (public imports). + + + + + The original serialized binary form of this descriptor. + + + + + Implementation of IDescriptor.FullName - just returns the same as Name. + + + + + Implementation of IDescriptor.File - just returns this descriptor. + + + + + Pool containing symbol descriptors. + + + + + Finds a type (message, enum, service or extension) in the file by name. Does not find nested types. + + The unqualified type name to look for. + The type of descriptor to look for + The type's descriptor, or null if not found. + + + + Builds a FileDescriptor from its protocol buffer representation. + + The original serialized descriptor data. + We have only limited proto2 support, so serializing FileDescriptorProto + would not necessarily give us this. + The protocol message form of the FileDescriptor. + FileDescriptors corresponding to all of the + file's dependencies, in the exact order listed in the .proto file. May be null, + in which case it is treated as an empty array. + Whether unknown dependencies are ignored (true) or cause an exception to be thrown (false). + Details about generated code, for the purposes of reflection. + If is not + a valid descriptor. This can occur for a number of reasons, such as a field + having an undefined type or because two messages were defined with the same name. + + + + Creates a descriptor for generated code. + + + This method is only designed to be used by the results of generating code with protoc, + which creates the appropriate dependencies etc. It has to be public because the generated + code is "external", but should not be called directly by end users. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Returns the file descriptor for descriptor.proto. + + + This is used for protos which take a direct dependency on descriptor.proto, typically for + annotations. While descriptor.proto is a proto2 file, it is built into the Google.Protobuf + runtime for reflection purposes. The messages are internal to the runtime as they would require + proto2 semantics for full support, but the file descriptor is available via this property. The + C# codegen in protoc automatically uses this property when it detects a dependency on descriptor.proto. + + + The file descriptor for descriptor.proto. + + + + + The (possibly empty) set of custom options for this file. + + + + + Extra information provided by generated code when initializing a message or file descriptor. + These are constructed as required, and are not long-lived. Hand-written code should + never need to use this type. + + + + + Irrelevant for file descriptors; the CLR type for the message for message descriptors. + + + + + Irrelevant for file descriptors; the parser for message descriptors. + + + + + Irrelevant for file descriptors; the CLR property names (in message descriptor field order) + for fields in the message for message descriptors. + + + + + Irrelevant for file descriptors; the CLR property "base" names (in message descriptor oneof order) + for oneofs in the message for message descriptors. It is expected that for a oneof name of "Foo", + there will be a "FooCase" property and a "ClearFoo" method. + + + + + The reflection information for types within this file/message descriptor. Elements may be null + if there is no corresponding generated type, e.g. for map entry types. + + + + + The CLR types for enums within this file/message descriptor. + + + + + Creates a GeneratedClrTypeInfo for a message descriptor, with nested types, nested enums, the CLR type, property names and oneof names. + Each array parameter may be null, to indicate a lack of values. + The parameter order is designed to make it feasible to format the generated code readably. + + + + + Creates a GeneratedClrTypeInfo for a file descriptor, with only types and enums. + + + + + Interface implemented by all descriptor types. + + + + + Returns the name of the entity (message, field etc) being described. + + + + + Returns the fully-qualified name of the entity being described. + + + + + Returns the descriptor for the .proto file that this entity is part of. + + + + + Allows fields to be reflectively accessed. + + + + + Returns the descriptor associated with this field. + + + + + Clears the field in the specified message. (For repeated fields, + this clears the list.) + + + + + Fetches the field value. For repeated values, this will be an + implementation. For map values, this will be an + implementation. + + + + + Mutator for single "simple" fields only. + + + Repeated fields are mutated by fetching the value and manipulating it as a list. + Map fields are mutated by fetching the value and manipulating it as a dictionary. + + The field is not a "simple" field. + + + + Accessor for map fields. + + + + + Describes a message type. + + + + + The brief name of the descriptor's target. + + + + + The CLR type used to represent message instances from this descriptor. + + + + The value returned by this property will be non-null for all regular fields. However, + if a message containing a map field is introspected, the list of nested messages will include + an auto-generated nested key/value pair message for the field. This is not represented in any + generated type, so this property will return null in such cases. + + + For wrapper types ( and the like), the type returned here + will be the generated message type, not the native type used by reflection for fields of those types. Code + using reflection should call to determine whether a message descriptor represents + a wrapper type, and handle the result appropriately. + + + + + + A parser for this message type. + + + + As is not generic, this cannot be statically + typed to the relevant type, but it should produce objects of a type compatible with . + + + The value returned by this property will be non-null for all regular fields. However, + if a message containing a map field is introspected, the list of nested messages will include + an auto-generated nested key/value pair message for the field. No message parser object is created for + such messages, so this property will return null in such cases. + + + For wrapper types ( and the like), the parser returned here + will be the generated message type, not the native type used by reflection for fields of those types. Code + using reflection should call to determine whether a message descriptor represents + a wrapper type, and handle the result appropriately. + + + + + + Returns whether this message is one of the "well known types" which may have runtime/protoc support. + + + + + Returns whether this message is one of the "wrapper types" used for fields which represent primitive values + with the addition of presence. + + + + + If this is a nested type, get the outer descriptor, otherwise null. + + + + + A collection of fields, which can be retrieved by name or field number. + + + + + An unmodifiable list of this message type's nested types. + + + + + An unmodifiable list of this message type's enum types. + + + + + An unmodifiable list of the "oneof" field collections in this message type. + + + + + Finds a field by field name. + + The unqualified name of the field (e.g. "foo"). + The field's descriptor, or null if not found. + + + + Finds a field by field number. + + The field number within this message type. + The field's descriptor, or null if not found. + + + + Finds a nested descriptor by name. The is valid for fields, nested + message types, oneofs and enums. + + The unqualified name of the descriptor, e.g. "Foo" + The descriptor, or null if not found. + + + + The (possibly empty) set of custom options for this message. + + + + + Looks up and cross-links all fields and nested types. + + + + + A collection to simplify retrieving the field accessor for a particular field. + + + + + Returns the fields in the message as an immutable list, in the order in which they + are declared in the source .proto file. + + + + + Returns the fields in the message as an immutable list, in ascending field number + order. Field numbers need not be contiguous, so there is no direct mapping from the + index in the list to the field number; to retrieve a field by field number, it is better + to use the indexer. + + + + + Returns a read-only dictionary mapping the field names in this message as they're available + in the JSON representation to the field descriptors. For example, a field foo_bar + in the message would result two entries, one with a key fooBar and one with a key + foo_bar, both referring to the same field. + + + + + Retrieves the descriptor for the field with the given number. + + Number of the field to retrieve the descriptor for + The accessor for the given field + The message descriptor does not contain a field + with the given number + + + + Retrieves the descriptor for the field with the given name. + + Name of the field to retrieve the descriptor for + The descriptor for the given field + The message descriptor does not contain a field + with the given name + + + + Describes a single method in a service. + + + + + The service this method belongs to. + + + + + The method's input type. + + + + + The method's input type. + + + + + Indicates if client streams multiple requests. + + + + + Indicates if server streams multiple responses. + + + + + The (possibly empty) set of custom options for this method. + + + + + The brief name of the descriptor's target. + + + + + Reflection access for a oneof, allowing clear and "get case" actions. + + + + + Gets the descriptor for this oneof. + + + The descriptor of the oneof. + + + + + Clears the oneof in the specified message. + + + + + Indicates which field in the oneof is set for specified message + + + + + Describes a "oneof" field collection in a message type: a set of + fields of which at most one can be set in any particular message. + + + + + The brief name of the descriptor's target. + + + + + Gets the message type containing this oneof. + + + The message type containing this oneof. + + + + + Gets the fields within this oneof, in declaration order. + + + The fields within this oneof, in declaration order. + + + + + Gets an accessor for reflective access to the values associated with the oneof + in a particular message. + + + The accessor used for reflective access. + + + + + The (possibly empty) set of custom options for this oneof. + + + + + Specifies the original name (in the .proto file) of a named element, + such as an enum value. + + + + + The name of the element in the .proto file. + + + + + If the name is preferred in the .proto file. + + + + + Constructs a new attribute instance for the given name. + + The name of the element in the .proto file. + + + + Represents a package in the symbol table. We use PackageDescriptors + just as placeholders so that someone cannot define, say, a message type + that has the same name as an existing package. + + + + + The methods in this class are somewhat evil, and should not be tampered with lightly. + Basically they allow the creation of relatively weakly typed delegates from MethodInfos + which are more strongly typed. They do this by creating an appropriate strongly typed + delegate from the MethodInfo, and then calling that within an anonymous method. + Mind-bending stuff (at least to your humble narrator) but the resulting delegates are + very fast compared with calling Invoke later on. + + + + + Empty Type[] used when calling GetProperty to force property instead of indexer fetching. + + + + + Creates a delegate which will cast the argument to the appropriate method target type, + call the method on it, then convert the result to object. + + + + + Creates a delegate which will cast the argument to the appropriate method target type, + call the method on it, then convert the result to the specified type. + + + + + Creates a delegate which will execute the given method after casting the first argument to + the target type of the method, and the second argument to the first parameter type of the method. + + + + + Creates a delegate which will execute the given method after casting the first argument to + the target type of the method. + + + + + Accessor for repeated fields. + + + + + Describes a service type. + + + + + The brief name of the descriptor's target. + + + + + An unmodifiable list of methods in this service. + + + + + Finds a method by name. + + The unqualified name of the method (e.g. "Foo"). + The method's decsriptor, or null if not found. + + + + The (possibly empty) set of custom options for this service. + + + + + Accessor for single fields. + + + + + An immutable registry of types which can be looked up by their full name. + + + + + An empty type registry, containing no types. + + + + + Attempts to find a message descriptor by its full name. + + The full name of the message, which is the dot-separated + combination of package, containing messages and message name + The message descriptor corresponding to or null + if there is no such message descriptor. + + + + Creates a type registry from the specified set of file descriptors. + + + This is a convenience overload for + to allow calls such as TypeRegistry.FromFiles(descriptor1, descriptor2). + + The set of files to include in the registry. Must not contain null values. + A type registry for the given files. + + + + Creates a type registry from the specified set of file descriptors. + + + All message types within all the specified files are added to the registry, and + the dependencies of the specified files are also added, recursively. + + The set of files to include in the registry. Must not contain null values. + A type registry for the given files. + + + + Creates a type registry from the file descriptor parents of the specified set of message descriptors. + + + This is a convenience overload for + to allow calls such as TypeRegistry.FromFiles(descriptor1, descriptor2). + + The set of message descriptors to use to identify file descriptors to include in the registry. + Must not contain null values. + A type registry for the given files. + + + + Creates a type registry from the file descriptor parents of the specified set of message descriptors. + + + The specified message descriptors are only used to identify their file descriptors; the returned registry + contains all the types within the file descriptors which contain the specified message descriptors (and + the dependencies of those files), not just the specified messages. + + The set of message descriptors to use to identify file descriptors to include in the registry. + Must not contain null values. + A type registry for the given files. + + + + Builder class which isn't exposed, but acts as a convenient alternative to passing round two dictionaries in recursive calls. + + + + + Represents a single field in an UnknownFieldSet. + + An UnknownField consists of four lists of values. The lists correspond + to the four "wire types" used in the protocol buffer binary format. + Normally, only one of the four lists will contain any values, since it + is impossible to define a valid message type that declares two different + types for the same field number. However, the code is designed to allow + for the case where the same unknown field number is encountered using + multiple different wire types. + + + + + + Creates a new UnknownField. + + + + + Checks if two unknown field are equal. + + + + + Get the hash code of the unknown field. + + + + + Serializes the field, including the field number, and writes it to + + + The unknown field number. + The CodedOutputStream to write to. + + + + Computes the number of bytes required to encode this field, including field + number. + + + + + Merge the values in into this field. For each list + of values, 's values are append to the ones in this + field. + + + + + Returns a new list containing all of the given specified values from + both the and lists. + If is null and is empty, + null is returned. Otherwise, either a new list is created (if + is null) or the elements of are added to . + + + + + Adds a varint value. + + + + + Adds a fixed32 value. + + + + + Adds a fixed64 value. + + + + + Adds a length-delimited value. + + + + + Adds to the , creating + a new list if is null. The list is returned - either + the original reference or the new list. + + + + + Used to keep track of fields which were seen when parsing a protocol message + but whose field numbers or types are unrecognized. This most frequently + occurs when new fields are added to a message type and then messages containing + those fields are read by old software that was built before the new types were + added. + + Most users will never need to use this class directly. + + + + + Creates a new UnknownFieldSet. + + + + + Checks whether or not the given field number is present in the set. + + + + + Serializes the set and writes it to . + + + + + Gets the number of bytes required to encode this set. + + + + + Checks if two unknown field sets are equal. + + + + + Gets the unknown field set's hash code. + + + + + Adds a field to the set. If a field with the same number already exists, it + is replaced. + + + + + Parse a single field from and merge it + into this set. + + The coded input stream containing the field + false if the tag is an "end group" tag, true otherwise + + + + Create a new UnknownFieldSet if unknownFields is null. + Parse a single field from and merge it + into unknownFields. + + The UnknownFieldSet which need to be merged + The coded input stream containing the field + The merged UnknownFieldSet + + + + Merges the fields from into this set. + If a field number exists in both sets, the values in + will be appended to the values in this set. + + + + + Created a new UnknownFieldSet to if + needed and merges the fields from into the first set. + If a field number exists in both sets, the values in + will be appended to the values in this set. + + + + + Adds a field to the unknown field set. If a field with the same + number already exists, the two are merged. + + + + + Clone an unknown field set from . + + + + Holder for reflection information generated from google/protobuf/any.proto + + + File descriptor for google/protobuf/any.proto + + + + `Any` contains an arbitrary serialized protocol buffer message along with a + URL that describes the type of the serialized message. + + Protobuf library provides support to pack/unpack Any values in the form + of utility functions or additional generated methods of the Any type. + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by default use + 'type.googleapis.com/full.type.name' as the type URL and the unpack + methods only use the fully qualified type name after the last '/' + in the type URL, for example "foo.bar.com/x/y.z" will yield type + name "y.z". + + JSON + ==== + The JSON representation of an `Any` value uses the regular + representation of the deserialized, embedded message, with an + additional field `@type` which contains the type URL. Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": <string>, + "lastName": <string> + } + + If the embedded message type is well-known and has a custom JSON + representation, that representation will be embedded adding a field + `value` which holds the custom JSON in addition to the `@type` + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + + + + Field number for the "type_url" field. + + + + A URL/resource name whose content describes the type of the + serialized protocol buffer message. + + For URLs which use the scheme `http`, `https`, or no scheme, the + following restrictions and interpretations apply: + + * If no scheme is provided, `https` is assumed. + * The last segment of the URL's path must represent the fully + qualified name of the type (as in `path/google.protobuf.Duration`). + The name should be in a canonical form (e.g., leading "." is + not accepted). + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Schemes other than `http`, `https` (or the empty scheme) might be + used with implementation specific semantics. + + + + Field number for the "value" field. + + + + Must be a valid serialized protocol buffer of the above specified type. + + + + + Retrieves the type name for a type URL, matching the + of the packed message type. + + + + This is always just the last part of the URL, after the final slash. No validation of + anything before the trailing slash is performed. If the type URL does not include a slash, + an empty string is returned rather than an exception being thrown; this won't match any types, + and the calling code is probably in a better position to give a meaningful error. + + + There is no handling of fragments or queries at the moment. + + + The URL to extract the type name from + The type name + + + + Unpacks the content of this Any message into the target message type, + which must match the type URL within this Any message. + + The type of message to unpack the content into. + The unpacked message. + The target message type doesn't match the type URL in this message + + + + Attempts to unpack the content of this Any message into the target message type, + if it matches the type URL within this Any message. + + The type of message to attempt to unpack the content into. + true if the message was successfully unpacked; false if the type name didn't match + + + + Packs the specified message into an Any message using a type URL prefix of "type.googleapis.com". + + The message to pack. + An Any message with the content and type URL of . + + + + Packs the specified message into an Any message using the specified type URL prefix. + + The message to pack. + The prefix for the type URL. + An Any message with the content and type URL of . + + + Holder for reflection information generated from google/protobuf/api.proto + + + File descriptor for google/protobuf/api.proto + + + + Api is a light-weight descriptor for an API Interface. + + Interfaces are also described as "protocol buffer services" in some contexts, + such as by the "service" keyword in a .proto file, but they are different + from API Services, which represent a concrete implementation of an interface + as opposed to simply a description of methods and bindings. They are also + sometimes simply referred to as "APIs" in other contexts, such as the name of + this message itself. See https://cloud.google.com/apis/design/glossary for + detailed terminology. + + + + Field number for the "name" field. + + + + The fully qualified name of this interface, including package name + followed by the interface's simple name. + + + + Field number for the "methods" field. + + + + The methods of this interface, in unspecified order. + + + + Field number for the "options" field. + + + + Any metadata attached to the interface. + + + + Field number for the "version" field. + + + + A version string for this interface. If specified, must have the form + `major-version.minor-version`, as in `1.10`. If the minor version is + omitted, it defaults to zero. If the entire version field is empty, the + major version is derived from the package name, as outlined below. If the + field is not empty, the version in the package name will be verified to be + consistent with what is provided here. + + The versioning schema uses [semantic + versioning](http://semver.org) where the major version number + indicates a breaking change and the minor version an additive, + non-breaking change. Both version numbers are signals to users + what to expect from different versions, and should be carefully + chosen based on the product plan. + + The major version is also reflected in the package name of the + interface, which must end in `v<major-version>`, as in + `google.feature.v1`. For major versions 0 and 1, the suffix can + be omitted. Zero major versions must only be used for + experimental, non-GA interfaces. + + + + Field number for the "source_context" field. + + + + Source context for the protocol buffer service represented by this + message. + + + + Field number for the "mixins" field. + + + + Included interfaces. See [Mixin][]. + + + + Field number for the "syntax" field. + + + + The source syntax of the service. + + + + + Method represents a method of an API interface. + + + + Field number for the "name" field. + + + + The simple name of this method. + + + + Field number for the "request_type_url" field. + + + + A URL of the input message type. + + + + Field number for the "request_streaming" field. + + + + If true, the request is streamed. + + + + Field number for the "response_type_url" field. + + + + The URL of the output message type. + + + + Field number for the "response_streaming" field. + + + + If true, the response is streamed. + + + + Field number for the "options" field. + + + + Any metadata attached to the method. + + + + Field number for the "syntax" field. + + + + The source syntax of this method. + + + + + Declares an API Interface to be included in this interface. The including + interface must redeclare all the methods from the included interface, but + documentation and options are inherited as follows: + + - If after comment and whitespace stripping, the documentation + string of the redeclared method is empty, it will be inherited + from the original method. + + - Each annotation belonging to the service config (http, + visibility) which is not set in the redeclared method will be + inherited. + + - If an http annotation is inherited, the path pattern will be + modified as follows. Any version prefix will be replaced by the + version of the including interface plus the [root][] path if + specified. + + Example of a simple mixin: + + package google.acl.v1; + service AccessControl { + // Get the underlying ACL object. + rpc GetAcl(GetAclRequest) returns (Acl) { + option (google.api.http).get = "/v1/{resource=**}:getAcl"; + } + } + + package google.storage.v2; + service Storage { + rpc GetAcl(GetAclRequest) returns (Acl); + + // Get a data record. + rpc GetData(GetDataRequest) returns (Data) { + option (google.api.http).get = "/v2/{resource=**}"; + } + } + + Example of a mixin configuration: + + apis: + - name: google.storage.v2.Storage + mixins: + - name: google.acl.v1.AccessControl + + The mixin construct implies that all methods in `AccessControl` are + also declared with same name and request/response types in + `Storage`. A documentation generator or annotation processor will + see the effective `Storage.GetAcl` method after inherting + documentation and annotations as follows: + + service Storage { + // Get the underlying ACL object. + rpc GetAcl(GetAclRequest) returns (Acl) { + option (google.api.http).get = "/v2/{resource=**}:getAcl"; + } + ... + } + + Note how the version in the path pattern changed from `v1` to `v2`. + + If the `root` field in the mixin is specified, it should be a + relative path under which inherited HTTP paths are placed. Example: + + apis: + - name: google.storage.v2.Storage + mixins: + - name: google.acl.v1.AccessControl + root: acls + + This implies the following inherited HTTP annotation: + + service Storage { + // Get the underlying ACL object. + rpc GetAcl(GetAclRequest) returns (Acl) { + option (google.api.http).get = "/v2/acls/{resource=**}:getAcl"; + } + ... + } + + + + Field number for the "name" field. + + + + The fully qualified name of the interface which is included. + + + + Field number for the "root" field. + + + + If non-empty specifies a path under which inherited HTTP paths + are rooted. + + + + Holder for reflection information generated from google/protobuf/duration.proto + + + File descriptor for google/protobuf/duration.proto + + + + A Duration represents a signed, fixed-length span of time represented + as a count of seconds and fractions of seconds at nanosecond + resolution. It is independent of any calendar and concepts like "day" + or "month". It is related to Timestamp in that the difference between + two Timestamp values is a Duration and it can be added or subtracted + from a Timestamp. Range is approximately +-10,000 years. + + # Examples + + Example 1: Compute Duration from two Timestamps in pseudo code. + + Timestamp start = ...; + Timestamp end = ...; + Duration duration = ...; + + duration.seconds = end.seconds - start.seconds; + duration.nanos = end.nanos - start.nanos; + + if (duration.seconds < 0 && duration.nanos > 0) { + duration.seconds += 1; + duration.nanos -= 1000000000; + } else if (durations.seconds > 0 && duration.nanos < 0) { + duration.seconds -= 1; + duration.nanos += 1000000000; + } + + Example 2: Compute Timestamp from Timestamp + Duration in pseudo code. + + Timestamp start = ...; + Duration duration = ...; + Timestamp end = ...; + + end.seconds = start.seconds + duration.seconds; + end.nanos = start.nanos + duration.nanos; + + if (end.nanos < 0) { + end.seconds -= 1; + end.nanos += 1000000000; + } else if (end.nanos >= 1000000000) { + end.seconds += 1; + end.nanos -= 1000000000; + } + + Example 3: Compute Duration from datetime.timedelta in Python. + + td = datetime.timedelta(days=3, minutes=10) + duration = Duration() + duration.FromTimedelta(td) + + # JSON Mapping + + In JSON format, the Duration type is encoded as a string rather than an + object, where the string ends in the suffix "s" (indicating seconds) and + is preceded by the number of seconds, with nanoseconds expressed as + fractional seconds. For example, 3 seconds with 0 nanoseconds should be + encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should + be expressed in JSON format as "3.000000001s", and 3 seconds and 1 + microsecond should be expressed in JSON format as "3.000001s". + + + + Field number for the "seconds" field. + + + + Signed seconds of the span of time. Must be from -315,576,000,000 + to +315,576,000,000 inclusive. Note: these bounds are computed from: + 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years + + + + Field number for the "nanos" field. + + + + Signed fractions of a second at nanosecond resolution of the span + of time. Durations less than one second are represented with a 0 + `seconds` field and a positive or negative `nanos` field. For durations + of one second or more, a non-zero value for the `nanos` field must be + of the same sign as the `seconds` field. Must be from -999,999,999 + to +999,999,999 inclusive. + + + + + The number of nanoseconds in a second. + + + + + The number of nanoseconds in a BCL tick (as used by and ). + + + + + The maximum permitted number of seconds. + + + + + The minimum permitted number of seconds. + + + + + Converts this to a . + + If the duration is not a precise number of ticks, it is truncated towards 0. + The value of this duration, as a TimeSpan. + This value isn't a valid normalized duration, as + described in the documentation. + + + + Converts the given to a . + + The TimeSpan to convert. + The value of the given TimeSpan, as a Duration. + + + + Returns the result of negating the duration. For example, the negation of 5 minutes is -5 minutes. + + The duration to negate. Must not be null. + The negated value of this duration. + + + + Adds the two specified values together. + + The first value to add. Must not be null. + The second value to add. Must not be null. + + + + + Subtracts one from another. + + The duration to subtract from. Must not be null. + The duration to subtract. Must not be null. + The difference between the two specified durations. + + + + Creates a duration with the normalized values from the given number of seconds and + nanoseconds, conforming with the description in the proto file. + + + + + Converts a duration specified in seconds/nanoseconds to a string. + + + If the value is a normalized duration in the range described in duration.proto, + is ignored. Otherwise, if the parameter is true, + a JSON object with a warning is returned; if it is false, an is thrown. + + Seconds portion of the duration. + Nanoseconds portion of the duration. + Determines the handling of non-normalized values + The represented duration is invalid, and is false. + + + + Returns a string representation of this for diagnostic purposes. + + + Normally the returned value will be a JSON string value (including leading and trailing quotes) but + when the value is non-normalized or out of range, a JSON object representation will be returned + instead, including a warning. This is to avoid exceptions being thrown when trying to + diagnose problems - the regular JSON formatter will still throw an exception for non-normalized + values. + + A string representation of this value. + + + + Appends a number of nanoseconds to a StringBuilder. Either 0 digits are added (in which + case no "." is appended), or 3 6 or 9 digits. This is internal for use in Timestamp as well + as Duration. + + + + Holder for reflection information generated from google/protobuf/empty.proto + + + File descriptor for google/protobuf/empty.proto + + + + A generic empty message that you can re-use to avoid defining duplicated + empty messages in your APIs. A typical example is to use it as the request + or the response type of an API method. For instance: + + service Foo { + rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); + } + + The JSON representation for `Empty` is empty JSON object `{}`. + + + + Holder for reflection information generated from google/protobuf/field_mask.proto + + + File descriptor for google/protobuf/field_mask.proto + + + + `FieldMask` represents a set of symbolic field paths, for example: + + paths: "f.a" + paths: "f.b.d" + + Here `f` represents a field in some root message, `a` and `b` + fields in the message found in `f`, and `d` a field found in the + message in `f.b`. + + Field masks are used to specify a subset of fields that should be + returned by a get operation or modified by an update operation. + Field masks also have a custom JSON encoding (see below). + + # Field Masks in Projections + + When used in the context of a projection, a response message or + sub-message is filtered by the API to only contain those fields as + specified in the mask. For example, if the mask in the previous + example is applied to a response message as follows: + + f { + a : 22 + b { + d : 1 + x : 2 + } + y : 13 + } + z: 8 + + The result will not contain specific values for fields x,y and z + (their value will be set to the default, and omitted in proto text + output): + + f { + a : 22 + b { + d : 1 + } + } + + A repeated field is not allowed except at the last position of a + paths string. + + If a FieldMask object is not present in a get operation, the + operation applies to all fields (as if a FieldMask of all fields + had been specified). + + Note that a field mask does not necessarily apply to the + top-level response message. In case of a REST get operation, the + field mask applies directly to the response, but in case of a REST + list operation, the mask instead applies to each individual message + in the returned resource list. In case of a REST custom method, + other definitions may be used. Where the mask applies will be + clearly documented together with its declaration in the API. In + any case, the effect on the returned resource/resources is required + behavior for APIs. + + # Field Masks in Update Operations + + A field mask in update operations specifies which fields of the + targeted resource are going to be updated. The API is required + to only change the values of the fields as specified in the mask + and leave the others untouched. If a resource is passed in to + describe the updated values, the API ignores the values of all + fields not covered by the mask. + + If a repeated field is specified for an update operation, the existing + repeated values in the target resource will be overwritten by the new values. + Note that a repeated field is only allowed in the last position of a `paths` + string. + + If a sub-message is specified in the last position of the field mask for an + update operation, then the existing sub-message in the target resource is + overwritten. Given the target message: + + f { + b { + d : 1 + x : 2 + } + c : 1 + } + + And an update message: + + f { + b { + d : 10 + } + } + + then if the field mask is: + + paths: "f.b" + + then the result will be: + + f { + b { + d : 10 + } + c : 1 + } + + However, if the update mask was: + + paths: "f.b.d" + + then the result would be: + + f { + b { + d : 10 + x : 2 + } + c : 1 + } + + In order to reset a field's value to the default, the field must + be in the mask and set to the default value in the provided resource. + Hence, in order to reset all fields of a resource, provide a default + instance of the resource and set all fields in the mask, or do + not provide a mask as described below. + + If a field mask is not present on update, the operation applies to + all fields (as if a field mask of all fields has been specified). + Note that in the presence of schema evolution, this may mean that + fields the client does not know and has therefore not filled into + the request will be reset to their default. If this is unwanted + behavior, a specific service may require a client to always specify + a field mask, producing an error if not. + + As with get operations, the location of the resource which + describes the updated values in the request message depends on the + operation kind. In any case, the effect of the field mask is + required to be honored by the API. + + ## Considerations for HTTP REST + + The HTTP kind of an update operation which uses a field mask must + be set to PATCH instead of PUT in order to satisfy HTTP semantics + (PUT must only be used for full updates). + + # JSON Encoding of Field Masks + + In JSON, a field mask is encoded as a single string where paths are + separated by a comma. Fields name in each path are converted + to/from lower-camel naming conventions. + + As an example, consider the following message declarations: + + message Profile { + User user = 1; + Photo photo = 2; + } + message User { + string display_name = 1; + string address = 2; + } + + In proto a field mask for `Profile` may look as such: + + mask { + paths: "user.display_name" + paths: "photo" + } + + In JSON, the same mask is represented as below: + + { + mask: "user.displayName,photo" + } + + # Field Masks and Oneof Fields + + Field masks treat fields in oneofs just as regular fields. Consider the + following message: + + message SampleMessage { + oneof test_oneof { + string name = 4; + SubMessage sub_message = 9; + } + } + + The field mask can be: + + mask { + paths: "name" + } + + Or: + + mask { + paths: "sub_message" + } + + Note that oneof type names ("test_oneof" in this case) cannot be used in + paths. + + ## Field Mask Verification + + The implementation of the all the API methods, which have any FieldMask type + field in the request, should verify the included field paths, and return + `INVALID_ARGUMENT` error if any path is duplicated or unmappable. + + + + Field number for the "paths" field. + + + + The set of field mask paths. + + + + + Converts a timestamp specified in seconds/nanoseconds to a string. + + + If the value is a normalized duration in the range described in field_mask.proto, + is ignored. Otherwise, if the parameter is true, + a JSON object with a warning is returned; if it is false, an is thrown. + + Paths in the field mask + Determines the handling of non-normalized values + The represented field mask is invalid, and is false. + + + + Checks whether the given path is valid for a field mask. + + true if the path is valid; false otherwise + + + + Returns a string representation of this for diagnostic purposes. + + + Normally the returned value will be a JSON string value (including leading and trailing quotes) but + when the value is non-normalized or out of range, a JSON object representation will be returned + instead, including a warning. This is to avoid exceptions being thrown when trying to + diagnose problems - the regular JSON formatter will still throw an exception for non-normalized + values. + + A string representation of this value. + + + Holder for reflection information generated from google/protobuf/source_context.proto + + + File descriptor for google/protobuf/source_context.proto + + + + `SourceContext` represents information about the source of a + protobuf element, like the file in which it is defined. + + + + Field number for the "file_name" field. + + + + The path-qualified name of the .proto file that contained the associated + protobuf element. For example: `"google/protobuf/source_context.proto"`. + + + + Holder for reflection information generated from google/protobuf/struct.proto + + + File descriptor for google/protobuf/struct.proto + + + + `NullValue` is a singleton enumeration to represent the null value for the + `Value` type union. + + The JSON representation for `NullValue` is JSON `null`. + + + + + Null value. + + + + + `Struct` represents a structured data value, consisting of fields + which map to dynamically typed values. In some languages, `Struct` + might be supported by a native representation. For example, in + scripting languages like JS a struct is represented as an + object. The details of that representation are described together + with the proto support for the language. + + The JSON representation for `Struct` is JSON object. + + + + Field number for the "fields" field. + + + + Unordered map of dynamically typed values. + + + + + `Value` represents a dynamically typed value which can be either + null, a number, a string, a boolean, a recursive struct value, or a + list of values. A producer of value is expected to set one of that + variants, absence of any variant indicates an error. + + The JSON representation for `Value` is JSON value. + + + + Field number for the "null_value" field. + + + + Represents a null value. + + + + Field number for the "number_value" field. + + + + Represents a double value. + + + + Field number for the "string_value" field. + + + + Represents a string value. + + + + Field number for the "bool_value" field. + + + + Represents a boolean value. + + + + Field number for the "struct_value" field. + + + + Represents a structured value. + + + + Field number for the "list_value" field. + + + + Represents a repeated `Value`. + + + + Enum of possible cases for the "kind" oneof. + + + + Convenience method to create a Value message with a string value. + + Value to set for the StringValue property. + A newly-created Value message with the given value. + + + + Convenience method to create a Value message with a number value. + + Value to set for the NumberValue property. + A newly-created Value message with the given value. + + + + Convenience method to create a Value message with a Boolean value. + + Value to set for the BoolValue property. + A newly-created Value message with the given value. + + + + Convenience method to create a Value message with a null initial value. + + A newly-created Value message a null initial value. + + + + Convenience method to create a Value message with an initial list of values. + + The values provided are not cloned; the references are copied directly. + A newly-created Value message an initial list value. + + + + Convenience method to create a Value message with an initial struct value + + The value provided is not cloned; the reference is copied directly. + A newly-created Value message an initial struct value. + + + + `ListValue` is a wrapper around a repeated field of values. + + The JSON representation for `ListValue` is JSON array. + + + + Field number for the "values" field. + + + + Repeated field of dynamically typed values. + + + + + Extension methods on BCL time-related types, converting to protobuf types. + + + + + Converts the given to a . + + The date and time to convert to a timestamp. + The value has a other than Utc. + The converted timestamp. + + + + Converts the given to a + + The offset is taken into consideration when converting the value (so the same instant in time + is represented) but is not a separate part of the resulting value. In other words, there is no + roundtrip operation to retrieve the original DateTimeOffset. + The date and time (with UTC offset) to convert to a timestamp. + The converted timestamp. + + + + Converts the given to a . + + The time span to convert. + The converted duration. + + + Holder for reflection information generated from google/protobuf/timestamp.proto + + + File descriptor for google/protobuf/timestamp.proto + + + + A Timestamp represents a point in time independent of any time zone + or calendar, represented as seconds and fractions of seconds at + nanosecond resolution in UTC Epoch time. It is encoded using the + Proleptic Gregorian Calendar which extends the Gregorian calendar + backwards to year one. It is encoded assuming all minutes are 60 + seconds long, i.e. leap seconds are "smeared" so that no leap second + table is needed for interpretation. Range is from + 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. + By restricting to that range, we ensure that we can convert to + and from RFC 3339 date strings. + See [https://www.ietf.org/rfc/rfc3339.txt](https://www.ietf.org/rfc/rfc3339.txt). + + # Examples + + Example 1: Compute Timestamp from POSIX `time()`. + + Timestamp timestamp; + timestamp.set_seconds(time(NULL)); + timestamp.set_nanos(0); + + Example 2: Compute Timestamp from POSIX `gettimeofday()`. + + struct timeval tv; + gettimeofday(&tv, NULL); + + Timestamp timestamp; + timestamp.set_seconds(tv.tv_sec); + timestamp.set_nanos(tv.tv_usec * 1000); + + Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`. + + FILETIME ft; + GetSystemTimeAsFileTime(&ft); + UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime; + + // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z + // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z. + Timestamp timestamp; + timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL)); + timestamp.set_nanos((INT32) ((ticks % 10000000) * 100)); + + Example 4: Compute Timestamp from Java `System.currentTimeMillis()`. + + long millis = System.currentTimeMillis(); + + Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000) + .setNanos((int) ((millis % 1000) * 1000000)).build(); + + Example 5: Compute Timestamp from current time in Python. + + timestamp = Timestamp() + timestamp.GetCurrentTime() + + # JSON Mapping + + In JSON format, the Timestamp type is encoded as a string in the + [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the + format is "{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z" + where {year} is always expressed using four digits while {month}, {day}, + {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional + seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution), + are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone + is required, though only UTC (as indicated by "Z") is presently supported. + + For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past + 01:30 UTC on January 15, 2017. + + In JavaScript, one can convert a Date object to this format using the + standard [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString] + method. In Python, a standard `datetime.datetime` object can be converted + to this format using [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) + with the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one + can use the Joda Time's [`ISODateTimeFormat.dateTime()`]( + http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime--) + to obtain a formatter capable of generating timestamps in this format. + + + + Field number for the "seconds" field. + + + + Represents seconds of UTC time since Unix epoch + 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to + 9999-12-31T23:59:59Z inclusive. + + + + Field number for the "nanos" field. + + + + Non-negative fractions of a second at nanosecond resolution. Negative + second values with fractions must still have non-negative nanos values + that count forward in time. Must be from 0 to 999,999,999 + inclusive. + + + + + Returns the difference between one and another, as a . + + The timestamp to subtract from. Must not be null. + The timestamp to subtract. Must not be null. + The difference between the two specified timestamps. + + + + Adds a to a , to obtain another Timestamp. + + The timestamp to add the duration to. Must not be null. + The duration to add. Must not be null. + The result of adding the duration to the timestamp. + + + + Subtracts a from a , to obtain another Timestamp. + + The timestamp to subtract the duration from. Must not be null. + The duration to subtract. + The result of subtracting the duration from the timestamp. + + + + Converts this timestamp into a . + + + The resulting DateTime will always have a Kind of Utc. + If the timestamp is not a precise number of ticks, it will be truncated towards the start + of time. For example, a timestamp with a value of 99 will result in a + value precisely on a second. + + This timestamp as a DateTime. + The timestamp contains invalid values; either it is + incorrectly normalized or is outside the valid range. + + + + Converts this timestamp into a . + + + The resulting DateTimeOffset will always have an Offset of zero. + If the timestamp is not a precise number of ticks, it will be truncated towards the start + of time. For example, a timestamp with a value of 99 will result in a + value precisely on a second. + + This timestamp as a DateTimeOffset. + The timestamp contains invalid values; either it is + incorrectly normalized or is outside the valid range. + + + + Converts the specified to a . + + + The Kind of is not DateTimeKind.Utc. + The converted timestamp. + + + + Converts the given to a + + The offset is taken into consideration when converting the value (so the same instant in time + is represented) but is not a separate part of the resulting value. In other words, there is no + roundtrip operation to retrieve the original DateTimeOffset. + The date and time (with UTC offset) to convert to a timestamp. + The converted timestamp. + + + + Converts a timestamp specified in seconds/nanoseconds to a string. + + + If the value is a normalized duration in the range described in timestamp.proto, + is ignored. Otherwise, if the parameter is true, + a JSON object with a warning is returned; if it is false, an is thrown. + + Seconds portion of the duration. + Nanoseconds portion of the duration. + Determines the handling of non-normalized values + The represented duration is invalid, and is false. + + + + Returns a string representation of this for diagnostic purposes. + + + Normally the returned value will be a JSON string value (including leading and trailing quotes) but + when the value is non-normalized or out of range, a JSON object representation will be returned + instead, including a warning. This is to avoid exceptions being thrown when trying to + diagnose problems - the regular JSON formatter will still throw an exception for non-normalized + values. + + A string representation of this value. + + + Holder for reflection information generated from google/protobuf/type.proto + + + File descriptor for google/protobuf/type.proto + + + + The syntax in which a protocol buffer element is defined. + + + + + Syntax `proto2`. + + + + + Syntax `proto3`. + + + + + A protocol buffer message type. + + + + Field number for the "name" field. + + + + The fully qualified message name. + + + + Field number for the "fields" field. + + + + The list of fields. + + + + Field number for the "oneofs" field. + + + + The list of types appearing in `oneof` definitions in this type. + + + + Field number for the "options" field. + + + + The protocol buffer options. + + + + Field number for the "source_context" field. + + + + The source context. + + + + Field number for the "syntax" field. + + + + The source syntax. + + + + + A single field of a message type. + + + + Field number for the "kind" field. + + + + The field type. + + + + Field number for the "cardinality" field. + + + + The field cardinality. + + + + Field number for the "number" field. + + + + The field number. + + + + Field number for the "name" field. + + + + The field name. + + + + Field number for the "type_url" field. + + + + The field type URL, without the scheme, for message or enumeration + types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`. + + + + Field number for the "oneof_index" field. + + + + The index of the field type in `Type.oneofs`, for message or enumeration + types. The first type has index 1; zero means the type is not in the list. + + + + Field number for the "packed" field. + + + + Whether to use alternative packed wire representation. + + + + Field number for the "options" field. + + + + The protocol buffer options. + + + + Field number for the "json_name" field. + + + + The field JSON name. + + + + Field number for the "default_value" field. + + + + The string value of the default value of this field. Proto2 syntax only. + + + + Container for nested types declared in the Field message type. + + + + Basic field types. + + + + + Field type unknown. + + + + + Field type double. + + + + + Field type float. + + + + + Field type int64. + + + + + Field type uint64. + + + + + Field type int32. + + + + + Field type fixed64. + + + + + Field type fixed32. + + + + + Field type bool. + + + + + Field type string. + + + + + Field type group. Proto2 syntax only, and deprecated. + + + + + Field type message. + + + + + Field type bytes. + + + + + Field type uint32. + + + + + Field type enum. + + + + + Field type sfixed32. + + + + + Field type sfixed64. + + + + + Field type sint32. + + + + + Field type sint64. + + + + + Whether a field is optional, required, or repeated. + + + + + For fields with unknown cardinality. + + + + + For optional fields. + + + + + For required fields. Proto2 syntax only. + + + + + For repeated fields. + + + + + Enum type definition. + + + + Field number for the "name" field. + + + + Enum type name. + + + + Field number for the "enumvalue" field. + + + + Enum value definitions. + + + + Field number for the "options" field. + + + + Protocol buffer options. + + + + Field number for the "source_context" field. + + + + The source context. + + + + Field number for the "syntax" field. + + + + The source syntax. + + + + + Enum value definition. + + + + Field number for the "name" field. + + + + Enum value name. + + + + Field number for the "number" field. + + + + Enum value number. + + + + Field number for the "options" field. + + + + Protocol buffer options. + + + + + A protocol buffer option, which can be attached to a message, field, + enumeration, etc. + + + + Field number for the "name" field. + + + + The option's name. For protobuf built-in options (options defined in + descriptor.proto), this is the short name. For example, `"map_entry"`. + For custom options, it should be the fully-qualified name. For example, + `"google.api.http"`. + + + + Field number for the "value" field. + + + + The option's value packed in an Any message. If the value is a primitive, + the corresponding wrapper type defined in google/protobuf/wrappers.proto + should be used. If the value is an enum, it should be stored as an int32 + value using the google.protobuf.Int32Value type. + + + + Holder for reflection information generated from google/protobuf/wrappers.proto + + + File descriptor for google/protobuf/wrappers.proto + + + + Field number for the single "value" field in all wrapper types. + + + + + Wrapper message for `double`. + + The JSON representation for `DoubleValue` is JSON number. + + + + Field number for the "value" field. + + + + The double value. + + + + + Wrapper message for `float`. + + The JSON representation for `FloatValue` is JSON number. + + + + Field number for the "value" field. + + + + The float value. + + + + + Wrapper message for `int64`. + + The JSON representation for `Int64Value` is JSON string. + + + + Field number for the "value" field. + + + + The int64 value. + + + + + Wrapper message for `uint64`. + + The JSON representation for `UInt64Value` is JSON string. + + + + Field number for the "value" field. + + + + The uint64 value. + + + + + Wrapper message for `int32`. + + The JSON representation for `Int32Value` is JSON number. + + + + Field number for the "value" field. + + + + The int32 value. + + + + + Wrapper message for `uint32`. + + The JSON representation for `UInt32Value` is JSON number. + + + + Field number for the "value" field. + + + + The uint32 value. + + + + + Wrapper message for `bool`. + + The JSON representation for `BoolValue` is JSON `true` and `false`. + + + + Field number for the "value" field. + + + + The bool value. + + + + + Wrapper message for `string`. + + The JSON representation for `StringValue` is JSON string. + + + + Field number for the "value" field. + + + + The string value. + + + + + Wrapper message for `bytes`. + + The JSON representation for `BytesValue` is JSON string. + + + + Field number for the "value" field. + + + + The bytes value. + + + + + This class is used internally by the Protocol Buffer Library and generated + message implementations. It is public only for the sake of those generated + messages. Others should not use this class directly. + + This class contains constants and helper functions useful for dealing with + the Protocol Buffer wire format. + + + + + + Wire types within protobuf encoding. + + + + + Variable-length integer. + + + + + A fixed-length 64-bit value. + + + + + A length-delimited value, i.e. a length followed by that many bytes of data. + + + + + A "start group" value - not supported by this implementation. + + + + + An "end group" value - not supported by this implementation. + + + + + A fixed-length 32-bit value. + + + + + Given a tag value, determines the wire type (lower 3 bits). + + + + + Given a tag value, determines the field number (the upper 29 bits). + + + + + Makes a tag value given a field number and wire type. + + +
+
diff --git a/bin/x86/Debug/net461/GrapeSystems.Core.Common.dll b/bin/x86/Debug/net461/GrapeSystems.Core.Common.dll new file mode 100644 index 0000000..c8968bc Binary files /dev/null and b/bin/x86/Debug/net461/GrapeSystems.Core.Common.dll differ diff --git a/bin/x86/Debug/net461/GrapeSystems.Core.Drawing.Fx20.dll b/bin/x86/Debug/net461/GrapeSystems.Core.Drawing.Fx20.dll new file mode 100644 index 0000000..ac8b16a Binary files /dev/null and b/bin/x86/Debug/net461/GrapeSystems.Core.Drawing.Fx20.dll differ diff --git a/bin/x86/Debug/net461/GrapeSystems.Core.Parts.Frames.dll b/bin/x86/Debug/net461/GrapeSystems.Core.Parts.Frames.dll new file mode 100644 index 0000000..28ce807 Binary files /dev/null and b/bin/x86/Debug/net461/GrapeSystems.Core.Parts.Frames.dll differ diff --git a/bin/x86/Debug/net461/GrapeSystems.Core.Parts.dll b/bin/x86/Debug/net461/GrapeSystems.Core.Parts.dll new file mode 100644 index 0000000..c12d4f5 Binary files /dev/null and b/bin/x86/Debug/net461/GrapeSystems.Core.Parts.dll differ diff --git a/bin/x86/Debug/net461/GrapeSystems.Library.BarcodeAd.dll b/bin/x86/Debug/net461/GrapeSystems.Library.BarcodeAd.dll new file mode 100644 index 0000000..4361dc9 Binary files /dev/null and b/bin/x86/Debug/net461/GrapeSystems.Library.BarcodeAd.dll differ diff --git a/bin/x86/Debug/net461/GrapeSystems.Library.Controls.dll b/bin/x86/Debug/net461/GrapeSystems.Library.Controls.dll new file mode 100644 index 0000000..7043f7f Binary files /dev/null and b/bin/x86/Debug/net461/GrapeSystems.Library.Controls.dll differ diff --git a/bin/x86/Debug/net461/GrapeSystems.Library.Image.dll b/bin/x86/Debug/net461/GrapeSystems.Library.Image.dll new file mode 100644 index 0000000..59d3839 Binary files /dev/null and b/bin/x86/Debug/net461/GrapeSystems.Library.Image.dll differ diff --git a/bin/x86/Debug/net461/Interop.QRMAKERADLib.dll b/bin/x86/Debug/net461/Interop.QRMAKERADLib.dll new file mode 100644 index 0000000..b41ae1f Binary files /dev/null and b/bin/x86/Debug/net461/Interop.QRMAKERADLib.dll differ diff --git a/bin/x86/Debug/net461/MLComponent.XmlSerializers.dll b/bin/x86/Debug/net461/MLComponent.XmlSerializers.dll new file mode 100644 index 0000000..e0c2dc0 Binary files /dev/null and b/bin/x86/Debug/net461/MLComponent.XmlSerializers.dll differ diff --git a/bin/x86/Debug/net461/MLComponent.dll b/bin/x86/Debug/net461/MLComponent.dll new file mode 100644 index 0000000..f21d6a0 Binary files /dev/null and b/bin/x86/Debug/net461/MLComponent.dll differ diff --git a/bin/x86/Debug/net461/Microsoft.Win32.Primitives.dll b/bin/x86/Debug/net461/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..8b69a69 Binary files /dev/null and b/bin/x86/Debug/net461/Microsoft.Win32.Primitives.dll differ diff --git a/bin/x86/Debug/net461/MySql.Data.dll b/bin/x86/Debug/net461/MySql.Data.dll new file mode 100644 index 0000000..669149a Binary files /dev/null and b/bin/x86/Debug/net461/MySql.Data.dll differ diff --git a/bin/x86/Debug/net461/MySql.Data.xml b/bin/x86/Debug/net461/MySql.Data.xml new file mode 100644 index 0000000..bd57447 --- /dev/null +++ b/bin/x86/Debug/net461/MySql.Data.xml @@ -0,0 +1,16192 @@ + + + + MySql.Data + + + + + The implementation of the caching_sha2_password authentication plugin. + + + + + Defines the stage of the authentication. + + + + + Defines the default behavior for an authentication plugin. + + + + + Gets or sets the authentication data returned by the server. + + + + + This is a factory method that is used only internally. It creates an auth plugin based on the method type + + + + + + + + + Gets the connection option settings. + + + + + Gets the server version associated with this authentication plugin. + + + + + Gets the encoding assigned to the native driver. + + + + + Sets the authentication data required to encode, encrypt, or convert the password of the user. + + A byte array containing the authentication data provided by the server. + This method may be overriden based on the requirements by the implementing authentication plugin. + + + + Defines the behavior when checking for constraints. + + This method is intended to be overriden. + + + + Throws a MySqlException that encapsulates the original exception. + + The exception to encapsulate. + + + + Defines the behavior when authentication is successful. + + This method is intended to be overriden. + + + + Defines the behavior when more data is required from the server. + + The data returned by the server. + The data to return to the server. + + + + Gets the plugin name based on the authentication plugin type defined during the creation of this object. + + + + + Gets the user name associated to the connection settings. + + The user name associated to the connection settings. + + + + Gets the encoded, encrypted, or converted password based on the authentication plugin type defined during the creation of this object. + + An object containing the encoded, encrypted, or converted password. + This method is intended to be overriden. + + + + Allows connections to a user account set with the mysql_native_password authentication plugin. + + + + + Returns a byte array containing the proper encryption of the + given password/seed according to the new 4.1.1 authentication scheme. + + + + + + + + The implementation of the sha256_password authentication plugin. + + + + + + + + + + Defines the type of the security buffer. + + + + + Defines a security handle. + + + + + Describes a buffer allocated by a transport to pass to a security package. + + + + + Specifies the size, in bytes, of the buffer. + + + + + Bit flags that indicate the type of the buffer. + + + + + Pointer to a buffer. + + + + + Hold a numeric value used in defining other data types. + + + + + Least significant digits. + + + + + Most significant digits. + + + + + Holds a pointer used to define a security handle. + + + + + Least significant digits. + + + + + Most significant digits. + + + + + Indicates the sizes of important structures used in the message support functions. + + + + + Specifies the maximum size of the security token used in the authentication changes. + + + + + Specifies the maximum size of the signature created by the MakeSignature function. This member must be zero if integrity services are not requested or available. + + + + + Specifies the preferred integral size of the messages. + + + + + Size of the security trailer to be appended to messages. This member should be zero if the relevant services are not requested or available. + + + + + Allows importing large amounts of data into a database with bulk loading. + + + + + Gets or sets the connection. + + The connection. + + + + Gets or sets the field terminator. + + The field terminator. + + + + Gets or sets the line terminator. + + The line terminator. + + + + Gets or sets the name of the table. + + The name of the table. + + + + Gets or sets the character set. + + The character set. + + + + Gets or sets the name of the file. + + The name of the file. + + + + Gets or sets the timeout. + + The timeout. + + + + Gets or sets a value indicating whether the filename that is to be loaded + is local to the client or not + + true if local; otherwise, false. + + + + Gets or sets the number of lines to skip. + + The number of lines to skip. + + + + Gets or sets the line prefix. + + The line prefix. + + + + Gets or sets the field quotation character. + + The field quotation character. + + + + Gets or sets a value indicating whether [field quotation optional]. + + + true if [field quotation optional]; otherwise, false. + + + + + Gets or sets the escape character. + + The escape character. + + + + Gets or sets the conflict option. + + The conflict option. + + + + Gets or sets the priority. + + The priority. + + + + Gets the columns. + + The columns. + + + + Gets the expressions. + + The expressions. + + + + Execute the load operation + + The number of rows inserted. + + + + Async version of Load + + The number of rows inserted. + + + + Executes the load operation asynchronously while the cancellation isn't requested. + + The cancellation token. + The number of rows inserted. + + + + Represents the priority set for bulk loading operations. + + + + + This is the default and indicates normal priority + + + + + Low priority will cause the load operation to wait until all readers of the table + have finished. This only affects storage engines that use only table-level locking + such as MyISAM, Memory, and Merge. + + + + + Concurrent priority is only relevant for MyISAM tables and signals that if the table + has no free blocks in the middle that other readers can retrieve data from the table + while the load operation is happening. + + + + + Represents the behavior when conflicts arise during bulk loading operations. + + + + + This is the default and indicates normal operation. In the event of a LOCAL load, this + is the same as ignore. When the data file is on the server, then a key conflict will + cause an error to be thrown and the rest of the data file ignored. + + + + + Replace column values when a key conflict occurs. + + + + + Ignore any rows where the primary key conflicts. + + + + + Summary description for CharSetMap. + + + + + Returns the text encoding for a given MySQL character set name + + Version of the connection requesting the encoding + Name of the character set to get the encoding for + Encoding object for the given character set name + + + + Initializes the mapping. + + + + Represents a SQL statement to execute against a MySQL database. This class cannot be inherited. + MySqlCommand features the following methods for executing commands at a MySQL database: + + + Item + Description + + + + ExecuteReader + + Executes commands that return rows. + + + + ExecuteNonQuery + + Executes commands such as SQL INSERT, DELETE, and UPDATE statements. + + + + ExecuteScalar + + Retrieves a single value (for example, an aggregate value) from a database. + + + + You can reset the CommandText property and reuse the MySqlCommand + object. However, you must close the MySqlDataReader + before you can execute a new or previous command. + + If a MySqlException is + generated by the method executing a MySqlCommand, the MySqlConnection + remains open. It is the responsibility of the programmer to close the connection. + + + Using the '@' symbol for paramters is now the preferred approach although the old pattern of using + '?' is still supported. Please be aware though that using '@' can cause conflicts when user variables + are also used. To help with this situation please see the documentation on the 'allow user variables' + connection string option. The 'old syntax' connection string option has now been deprecated. + + + The following example creates a MySqlCommand and + a MySqlConnection. The MySqlConnection is opened and set as the Connection + for the MySqlCommand. The example then calls ExecuteNonQuery, + and closes the connection. To accomplish this, the ExecuteNonQuery is + passed a connection string and a query string that is a SQL INSERT + statement. + + Public Sub InsertRow(myConnectionString As String) + " If the connection string is null, use a default. + If myConnectionString = "" Then + myConnectionString = "Database=Test;Data Source=localhost;User Id=username;Password=pass" + End If + Dim myConnection As New MySqlConnection(myConnectionString) + Dim myInsertQuery As String = "INSERT INTO Orders (id, customerId, amount) Values(1001, 23, 30.66)" + Dim myCommand As New MySqlCommand(myInsertQuery) + myCommand.Connection = myConnection + myConnection.Open() + myCommand.ExecuteNonQuery() + myCommand.Connection.Close() + End Sub + + + public void InsertRow(string myConnectionString) + { + // If the connection string is null, use a default. + if(myConnectionString == "") + { + myConnectionString = "Database=Test;Data Source=localhost;User Id=username;Password=pass"; + } + MySqlConnection myConnection = new MySqlConnection(myConnectionString); + string myInsertQuery = "INSERT INTO Orders (id, customerId, amount) Values(1001, 23, 30.66)"; + MySqlCommand myCommand = new MySqlCommand(myInsertQuery); + myCommand.Connection = myConnection; + myConnection.Open(); + myCommand.ExecuteNonQuery(); + myCommand.Connection.Close(); + } + + + + + + + Initializes a new instance of the MySqlCommand class. + + + The following example creates a MySqlCommand and sets some of its properties. + + + This example shows how to use one of the overloaded + versions of the MySqlCommand constructor. For other examples that might be available, + see the individual overload topics. + + + + Public Sub CreateMySqlCommand() + Dim myConnection As New MySqlConnection _ + ("Persist Security Info=False;database=test;server=myServer") + myConnection.Open() + Dim myTrans As MySqlTransaction = myConnection.BeginTransaction() + Dim mySelectQuery As String = "SELECT * FROM MyTable" + Dim myCommand As New MySqlCommand(mySelectQuery, myConnection, myTrans) + myCommand.CommandTimeout = 20 + End Sub + + + public void CreateMySqlCommand() + { + MySqlConnection myConnection = new MySqlConnection("Persist Security Info=False; + database=test;server=myServer"); + myConnection.Open(); + MySqlTransaction myTrans = myConnection.BeginTransaction(); + string mySelectQuery = "SELECT * FROM myTable"; + MySqlCommand myCommand = new MySqlCommand(mySelectQuery, myConnection,myTrans); + myCommand.CommandTimeout = 20; + } + + + public: + void CreateMySqlCommand() + { + MySqlConnection* myConnection = new MySqlConnection(S"Persist Security Info=False; + database=test;server=myServer"); + myConnection->Open(); + MySqlTransaction* myTrans = myConnection->BeginTransaction(); + String* mySelectQuery = S"SELECT * FROM myTable"; + MySqlCommand* myCommand = new MySqlCommand(mySelectQuery, myConnection, myTrans); + myCommand->CommandTimeout = 20; + }; + + + + Initializes a new instance of the MySqlCommand class. + + The base constructor initializes all fields to their default values. The + following table shows initial property values for an instance of . + + + Properties + Initial Value + + + + + + empty string ("") + + + + + + 0 + + + + + + CommandType.Text + + + + + + Null + + + + You can change the value for any of these properties through a separate call to + the property. + + + The following example creates a and + sets some of its properties. + + + Public Sub CreateMySqlCommand() + Dim myCommand As New MySqlCommand() + myCommand.CommandType = CommandType.Text + End Sub + + + public void CreateMySqlCommand() + { + MySqlCommand myCommand = new MySqlCommand(); + myCommand.CommandType = CommandType.Text; + } + + + + + + Initializes a new instance of the class with the text of the query. + The text of the query. + When an instance of is created, + the following read/write properties are set to initial values. + + + + Properties + Initial Value + + + + + + + cmdText + + + + + + + 0 + + + + + + CommandType.Text + + + + + + Null + + + + You can change the value for any of these properties through a separate call to + the property. + + + The following example creates a and + sets some of its properties. + + + Public Sub CreateMySqlCommand() + Dim sql as String = "SELECT * FROM mytable" + Dim myCommand As New MySqlCommand(sql) + myCommand.CommandType = CommandType.Text + End Sub + + + public void CreateMySqlCommand() + { + string sql = "SELECT * FROM mytable"; + MySqlCommand myCommand = new MySqlCommand(sql); + myCommand.CommandType = CommandType.Text; + } + + + + + + Initializes a new instance of the class + with the text of the query and a . + The text of the query. + A that represents the + connection to an instance of SQL Server. + + When an instance of is created, + the following read/write properties are set to initial values. + + + + Properties + Initial Value + + + + + + + cmdText + + + + + + + 0 + + + + + + CommandType.Text + + + + + + + connection + + + + + You can change the value for any of these properties through a separate call to + the property. + + + The following example creates a and + sets some of its properties. + + + Public Sub CreateMySqlCommand() + Dim conn as new MySqlConnection("server=myServer") + Dim sql as String = "SELECT * FROM mytable" + Dim myCommand As New MySqlCommand(sql, conn) + myCommand.CommandType = CommandType.Text + End Sub + + + public void CreateMySqlCommand() + { + MySqlConnection conn = new MySqlConnection("server=myserver") + string sql = "SELECT * FROM mytable"; + MySqlCommand myCommand = new MySqlCommand(sql, conn); + myCommand.CommandType = CommandType.Text; + } + + + + + + Initializes a new instance of the class + with the text of the query, a , and the + . + The text of the query. + A that represents the + connection to an instance of SQL Server. + + The in which the executes. + + When an instance of is created, + the following read/write properties are set to initial values. + + + + Properties + Initial Value + + + + + + + cmdText + + + + + + + 0 + + + + + + CommandType.Text + + + + + + + connection + + + + + You can change the value for any of these properties through a separate call to + the property. + + + The following example creates a and + sets some of its properties. + + + Public Sub CreateMySqlCommand() + Dim conn as new MySqlConnection("server=myServer") + conn.Open(); + Dim txn as MySqlTransaction = conn.BeginTransaction() + Dim sql as String = "SELECT * FROM mytable" + Dim myCommand As New MySqlCommand(sql, conn, txn) + myCommand.CommandType = CommandType.Text + End Sub + + + public void CreateMySqlCommand() + { + MySqlConnection conn = new MySqlConnection("server=myserver") + conn.Open(); + MySqlTransaction txn = conn.BeginTransaction(); + string sql = "SELECT * FROM mytable"; + MySqlCommand myCommand = new MySqlCommand(sql, conn, txn); + myCommand.CommandType = CommandType.Text; + } + + + + + + Gets the last inserted id. + + + + + Gets or sets the SQL statement to execute at the data source. + + The SQL statement or stored procedure to execute. The default is an empty string. + + + When the property is set to StoredProcedure, + the CommandText property should be set to the name of the stored procedure. + The user may be required to use escape character syntax if the stored procedure name + contains any special characters. The command executes this stored procedure when + you call one of the Execute methods. Starting with Connector/NET 5.0, having both a stored function + and stored procedure with the same name in the same database is not supported. It is + suggested that you provide unqiue names for your stored routines. + + + The following example creates a and sets some of its properties. + + Public Sub CreateMySqlCommand() + Dim myCommand As New MySqlCommand() + myCommand.CommandText = "SELECT * FROM Mytable ORDER BY id" + myCommand.CommandType = CommandType.Text + End Sub + + + public void CreateMySqlCommand() + { + MySqlCommand myCommand = new MySqlCommand(); + myCommand.CommandText = "SELECT * FROM mytable ORDER BY id"; + myCommand.CommandType = CommandType.Text; + } + + + + + + Gets or sets the wait time before terminating the attempt to execute a command + and generating an error. + + The time (in seconds) to wait for the command to execute. The default is 30 + seconds. + + CommandTimeout is dependent on the ability of MySQL to cancel an executing query. + Because of this, CommandTimeout is only supported when connected to MySQL + version 5.0.0 or higher. + + + + + Gets or sets a value indicating how the property is to be interpreted. + + One of the values. The default is Text. + + + When you set the CommandType property to StoredProcedure, you + should set the property to the name of the stored + procedure. The command executes this stored procedure when you call one of the + Execute methods. + + + The following example creates a and sets some of its properties. + + Public Sub CreateMySqlCommand() + Dim myCommand As New MySqlCommand() + myCommand.CommandType = CommandType.Text + End Sub + + + public void CreateMySqlCommand() + { + MySqlCommand myCommand = new MySqlCommand(); + myCommand.CommandType = CommandType.Text; + } + + + + + + Gets a boolean value that indicates whether the Prepared method has been called. + + + + + Gets or sets the used by this instance of the + . + + The connection to a data source. The default value is a null reference + (Nothing in Visual Basic). + + + If you set Connection while a transaction is in progress and the + property is not null, an + is generated. If the Transaction property is not null and the transaction + has already been committed or rolled back, Transaction is set to + null. + + + The following example creates a and sets some of its properties. + + Public Sub CreateMySqlCommand() + Dim mySelectQuery As String = "SELECT * FROM mytable ORDER BY id" + Dim myConnectString As String = "Persist Security Info=False;database=test;server=myServer" + Dim myCommand As New MySqlCommand(mySelectQuery) + myCommand.Connection = New MySqlConnection(myConnectString) + myCommand.CommandType = CommandType.Text + End Sub + + + public void CreateMySqlCommand() + { + string mySelectQuery = "SELECT * FROM mytable ORDER BY id"; + string myConnectString = "Persist Security Info=False;database=test;server=myServer"; + MySqlCommand myCommand = new MySqlCommand(mySelectQuery); + myCommand.Connection = new MySqlConnection(myConnectString); + myCommand.CommandType = CommandType.Text; + } + + + + + + Get the + + The parameters of the SQL statement or stored procedure. The default is + an empty collection. + + Connector/NET does not support unnamed parameters. Every parameter added to the collection must + have an associated name. + + The following example creates a and displays its parameters. + To accomplish this, the method is passed a , a query string + that is a SQL SELECT statement, and an array of objects. + + Public Sub CreateMySqlCommand(myConnection As MySqlConnection, _ + mySelectQuery As String, myParamArray() As MySqlParameter) + Dim myCommand As New MySqlCommand(mySelectQuery, myConnection) + myCommand.CommandText = "SELECT id, name FROM mytable WHERE age=@age" + myCommand.UpdatedRowSource = UpdateRowSource.Both + myCommand.Parameters.Add(myParamArray) + Dim j As Integer + For j = 0 To myCommand.Parameters.Count - 1 + myCommand.Parameters.Add(myParamArray(j)) + Next j + Dim myMessage As String = "" + Dim i As Integer + For i = 0 To myCommand.Parameters.Count - 1 + myMessage += myCommand.Parameters(i).ToString() & ControlChars.Cr + Next i + Console.WriteLine(myMessage) + End Sub + + + public void CreateMySqlCommand(MySqlConnection myConnection, string mySelectQuery, + MySqlParameter[] myParamArray) + { + MySqlCommand myCommand = new MySqlCommand(mySelectQuery, myConnection); + myCommand.CommandText = "SELECT id, name FROM mytable WHERE age=@age"; + myCommand.Parameters.Add(myParamArray); + for (int j=0; j<myParamArray.Length; j++) + { + myCommand.Parameters.Add(myParamArray[j]) ; + } + string myMessage = ""; + for (int i = 0; i < myCommand.Parameters.Count; i++) + { + myMessage += myCommand.Parameters[i].ToString() + "\n"; + } + MessageBox.Show(myMessage); + } + + + + + + Gets or sets the within which the executes. + + The . The default value is a null reference (Nothing in Visual Basic). + + You cannot set the Transaction property if it is already set to a + specific value, and the command is in the process of executing. If you set the + transaction property to a object that is not connected + to the same as the object, + an exception will be thrown the next time you attempt to execute a statement. + + + + + Gets or sets a boolean value that indicates whether caching is enabled. + + + + + Gets or sets the seconds for how long a TableDirect result should be cached. + + + + + Gets or sets how command results are applied to the DataRow when used by the + Update method of the DbDataAdapter. + + + + + Gets or sets a value indicating whether the command object should be visible in a Windows Form Designer control. + + + + + Attempts to cancel the execution of a currently active command + + + Cancelling a currently active query only works with MySQL versions 5.0.0 and higher. + + + + + Creates a new instance of a object. + + + This method is a strongly-typed version of . + + A object. + + + + + Check the connection to make sure + - it is open + - it is not currently being used by a reader + - and we have the right version of MySQL for the requested command type + + + + + Executes a SQL statement against the connection and returns the number of rows affected. + Number of rows affected + You can use ExecuteNonQuery to perform any type of database operation, + however any resultsets returned will not be available. Any output parameters + used in calling a stored procedure will be populated with data and can be + retrieved after execution is complete. + For UPDATE, INSERT, and DELETE statements, the return value is the number + of rows affected by the command. For all other types of statements, the return + value is -1. + + The following example creates a MySqlCommand and then + executes it using ExecuteNonQuery. The example is passed a string that is a + SQL statement (such as UPDATE, INSERT, or DELETE) and a string to use to + connect to the data source. + + Public Sub CreateMySqlCommand(myExecuteQuery As String, myConnection As MySqlConnection) + Dim myCommand As New MySqlCommand(myExecuteQuery, myConnection) + myCommand.Connection.Open() + myCommand.ExecuteNonQuery() + myConnection.Close() + End Sub + + + public void CreateMySqlCommand(string myExecuteQuery, MySqlConnection myConnection) + { + MySqlCommand myCommand = new MySqlCommand(myExecuteQuery, myConnection); + myCommand.Connection.Open(); + myCommand.ExecuteNonQuery(); + myConnection.Close(); + } + + + + + + Reset reader to null, to avoid "There is already an open data reader" + on the next ExecuteReader(). Used in error handling scenarios. + + + + + Reset SQL_SELECT_LIMIT that could have been modified by CommandBehavior. + + + + + Sends the to the Connection + and builds a . + + A object. + + + When the property is set to StoredProcedure, + the property should be set to the name of the stored + procedure. The command executes this stored procedure when you call + ExecuteReader. + + + While the is in use, the associated + is busy serving the MySqlDataReader. + While in this state, no other operations can be performed on the + MySqlConnection other than closing it. This is the case until the + method of the MySqlDataReader is called. + + + The following example creates a , then executes it by + passing a string that is a SQL SELECT statement, and a string to use to connect to the + data source. + + Public Sub CreateMySqlDataReader(mySelectQuery As String, myConnection As MySqlConnection) + Dim myCommand As New MySqlCommand(mySelectQuery, myConnection) + myConnection.Open() + Dim myReader As MySqlDataReader + myReader = myCommand.ExecuteReader() + Try + While myReader.Read() + Console.WriteLine(myReader.GetString(0)) + End While + Finally + myReader.Close + myConnection.Close + End Try + End Sub + + + public void CreateMySqlDataReader(string mySelectQuery, MySqlConnection myConnection) + { + MySqlCommand myCommand = new MySqlCommand(mySelectQuery, myConnection); + myConnection.Open(); + MMySqlDataReader myReader; + myReader = myCommand.ExecuteReader(); + try + { + while(myReader.Read()) + { + Console.WriteLine(myReader.GetString(0)); + } + } + finally + { + myReader.Close(); + myConnection.Close(); + } + } + + + + + + Sends the to the Connection, + and builds a using one of the values. + + One of the values. + + + When the property is set to StoredProcedure, + the property should be set to the name of the stored + procedure. The command executes this stored procedure when you call + ExecuteReader. + + + The supports a special mode that enables large binary + values to be read efficiently. For more information, see the SequentialAccess + setting for . + + + While the is in use, the associated + is busy serving the MySqlDataReader. + While in this state, no other operations can be performed on the + MySqlConnection other than closing it. This is the case until the + method of the MySqlDataReader is called. + If the MySqlDataReader is created with CommandBehavior set to + CloseConnection, closing the MySqlDataReader closes the connection + automatically. + + + When calling ExecuteReader with the SingleRow behavior, you should be aware that using a limit + clause in your SQL will cause all rows (up to the limit given) to be retrieved by the client. The + method will still return false after the first row but pulling all rows of data + into the client will have a performance impact. If the limit clause is not necessary, it should + be avoided. + + + A object. + + + + + Executes the query, and returns the first column of the first row in the + result set returned by the query. Extra columns or rows are ignored. + + The first column of the first row in the result set, or a null reference if the + result set is empty + + + Use the ExecuteScalar method to retrieve a single value (for example, + an aggregate value) from a database. This requires less code than using the + method, and then performing the operations necessary + to generate the single value using the data returned by a + + + The following example creates a and then + executes it using ExecuteScalar. The example is passed a string that is a + SQL statement that returns an aggregate result, and a string to use to + connect to the data source. + + + Public Sub CreateMySqlCommand(myScalarQuery As String, myConnection As MySqlConnection) + Dim myCommand As New MySqlCommand(myScalarQuery, myConnection) + myCommand.Connection.Open() + myCommand.ExecuteScalar() + myConnection.Close() + End Sub + + + public void CreateMySqlCommand(string myScalarQuery, MySqlConnection myConnection) + { + MySqlCommand myCommand = new MySqlCommand(myScalarQuery, myConnection); + myCommand.Connection.Open(); + myCommand.ExecuteScalar(); + myConnection.Close(); + } + + + public: + void CreateMySqlCommand(String* myScalarQuery, MySqlConnection* myConnection) + { + MySqlCommand* myCommand = new MySqlCommand(myScalarQuery, myConnection); + myCommand->Connection->Open(); + myCommand->ExecuteScalar(); + myConnection->Close(); + } + + + + + + + + + + Creates a prepared version of the command on an instance of MySQL Server. + + + Prepared statements are only supported on MySQL version 4.1 and higher. Calling + prepare while connected to earlier versions of MySQL will succeed but will execute + the statement in the same way as unprepared. + + + The following example demonstrates the use of the Prepare method. + + public sub PrepareExample() + Dim cmd as New MySqlCommand("INSERT INTO mytable VALUES (@val)", myConnection) + cmd.Parameters.Add( "@val", 10 ) + cmd.Prepare() + cmd.ExecuteNonQuery() + + cmd.Parameters(0).Value = 20 + cmd.ExecuteNonQuery() + end sub + + + private void PrepareExample() + { + MySqlCommand cmd = new MySqlCommand("INSERT INTO mytable VALUES (@val)", myConnection); + cmd.Parameters.Add( "@val", 10 ); + cmd.Prepare(); + cmd.ExecuteNonQuery(); + + cmd.Parameters[0].Value = 20; + cmd.ExecuteNonQuery(); + } + + + + + + Initiates the asynchronous execution of the SQL statement or stored procedure + that is described by this , and retrieves one or more + result sets from the server. + + An that can be used to poll, wait for results, + or both; this value is also needed when invoking EndExecuteReader, + which returns a instance that can be used to retrieve + the returned rows. + + + + Initiates the asynchronous execution of the SQL statement or stored procedure + that is described by this using one of the + CommandBehavior values. + + One of the values, indicating + options for statement execution and data retrieval. + An that can be used to poll, wait for results, + or both; this value is also needed when invoking EndExecuteReader, + which returns a instance that can be used to retrieve + the returned rows. + + + + Finishes asynchronous execution of a SQL statement, returning the requested + . + + The returned by the call to + . + A MySqlDataReader object that can be used to retrieve the requested rows. + + + + Initiates the asynchronous execution of the SQL statement or stored procedure + that is described by this . + + + An delegate that is invoked when the command's + execution has completed. Pass a null reference (Nothing in Visual Basic) + to indicate that no callback is required. + A user-defined state object that is passed to the + callback procedure. Retrieve this object from within the callback procedure + using the property. + An that can be used to poll or wait for results, + or both; this value is also needed when invoking , + which returns the number of affected rows. + + + + Initiates the asynchronous execution of the SQL statement or stored procedure + that is described by this . + + An that can be used to poll or wait for results, + or both; this value is also needed when invoking , + which returns the number of affected rows. + + + + Finishes asynchronous execution of a SQL statement. + + The returned by the call + to . + + + + + Verifies if a query is valid even if it has not spaces or is a stored procedure call + + Query to validate + If it is necessary to add call statement + + + + Creates a clone of this MySqlCommand object. CommandText, Connection, and Transaction properties + are included as well as the entire parameter list. + + The cloned MySqlCommand object + + + + Summary description for API. + + + + + Summary description for CompressedStream. + + + + + Represents an open connection to a MySQL Server database. This class cannot be inherited. + + + A MySqlConnection object represents a session to a MySQL Server + data source. When you create an instance of MySqlConnection, all + properties are set to their initial values. For a list of these values, see the + MySqlConnection constructor. + + + + If the MySqlConnection goes out of scope, it is not closed. Therefore, + you must explicitly close the connection by calling + or . + + + The following example creates a and + a MySqlConnection. The MySqlConnection is opened and set as the + for the MySqlCommand. The example then calls + , and closes the connection. To accomplish this, the ExecuteNonQuery is + passed a connection string and a query string that is a SQL INSERT + statement. + + + Public Sub InsertRow(myConnectionString As String) + ' If the connection string is null, use a default. + If myConnectionString = "" Then + myConnectionString = "Database=Test;Data Source=localhost;User Id=username;Password=pass" + End If + Dim myConnection As New MySqlConnection(myConnectionString) + Dim myInsertQuery As String = "INSERT INTO Orders (id, customerId, amount) Values(1001, 23, 30.66)" + Dim myCommand As New MySqlCommand(myInsertQuery) + myCommand.Connection = myConnection + myConnection.Open() + myCommand.ExecuteNonQuery() + myCommand.Connection.Close() + End Sub + + + + + public void InsertRow(string myConnectionString) + { + // If the connection string is null, use a default. + if(myConnectionString == "") + { + myConnectionString = "Database=Test;Data Source=localhost;User Id=username;Password=pass"; + } + MySqlConnection myConnection = new MySqlConnection(myConnectionString); + string myInsertQuery = "INSERT INTO Orders (id, customerId, amount) Values(1001, 23, 30.66)"; + MySqlCommand myCommand = new MySqlCommand(myInsertQuery); + myCommand.Connection = myConnection; + myConnection.Open(); + myCommand.ExecuteNonQuery(); + myCommand.Connection.Close(); + } + + + + + + Occurs when MySQL returns warnings as a result of executing a command or query. + + + + + Initializes a new instance of the class. + + When a new instance of is created, the read/write + properties are set to the following initial values unless they are specifically + set using their associated keywords in the property. + + + + Properties + Initial Value + + + + + + empty string ("") + + + + + + 15 + + + + + + empty string ("") + + + + + + empty string ("") + + + + + + empty string ("") + + + + You can change the value for these properties only by using the ConnectionString property. + + + + Initializes a new instance of the class. + + + + + + Initializes a new instance of the class when given a string containing the connection string. + + When a new instance of is created, the read/write + properties are set to the following initial values unless they are specifically + set using their associated keywords in the property. + + + + Properties + Initial Value + + + + + + empty string ("") + + + + + + 15 + + + + + + empty string ("") + + + + + + empty string ("") + + + + + + empty string ("") + + + + You can change the value for these properties only by using the ConnectionString property. + + The connection properties used to open the MySQL database. + + + + Returns the id of the server thread this connection is executing on + + + + + Gets the name of the MySQL server to which to connect. + + + + + Gets the time to wait while trying to establish a connection before terminating the attempt and generating an error. + The value set is less than 0. + A value of 0 indicates no limit, and should be avoided in a + because an attempt to connect + will wait indefinitely. + + The following example creates a MySqlConnection + and sets some of its properties in the connection string. + + Public Sub CreateSqlConnection() + Dim myConnection As New MySqlConnection() + myConnection.ConnectionString = "Persist Security Info=False;Username=user;Password=pass;database=test1;server=localhost;Connect Timeout=30" + myConnection.Open() + End Sub + + + public void CreateSqlConnection() + { + MySqlConnection myConnection = new MySqlConnection(); + myConnection.ConnectionString = "Persist Security Info=False;Username=user;Password=pass;database=test1;server=localhost;Connect Timeout=30"; + myConnection.Open(); + } + + + + + Gets the name of the current database or the database to be used after a connection is opened.The name of the current database or the name of the database to be used after a connection is opened. The default value is an empty string. + + The Database property does not update dynamically. + If you change the current database using a SQL statement, then this property + may reflect the wrong value. If you change the current database using the + method, this property is updated to reflect the new database. + + + The following example creates a and displays + some of its read-only properties. + + + Public Sub CreateMySqlConnection() + Dim myConnString As String = _ + "Persist Security Info=False;database=test;server=localhost;user id=joeuser;pwd=pass" + Dim myConnection As New MySqlConnection( myConnString ) + myConnection.Open() + MessageBox.Show( "Server Version: " + myConnection.ServerVersion _ + + ControlChars.NewLine + "Database: " + myConnection.Database ) + myConnection.ChangeDatabase( "test2" ) + MessageBox.Show( "ServerVersion: " + myConnection.ServerVersion _ + + ControlChars.NewLine + "Database: " + myConnection.Database ) + myConnection.Close() + End Sub + + + + public void CreateMySqlConnection() + { + string myConnString = + "Persist Security Info=False;database=test;server=localhost;user id=joeuser;pwd=pass"; + MySqlConnection myConnection = new MySqlConnection( myConnString ); + myConnection.Open(); + MessageBox.Show( "Server Version: " + myConnection.ServerVersion + + "\nDatabase: " + myConnection.Database ); + myConnection.ChangeDatabase( "test2" ); + MessageBox.Show( "ServerVersion: " + myConnection.ServerVersion + + "\nDatabase: " + myConnection.Database ); + myConnection.Close(); + } + + + + + + Indicates if this connection should use compression when communicating with the server. + + + + Gets the current state of the connection. + A bitwise combination of the values. The default is Closed. + + The allowed state changes are: + + + From Closed to Open, using the Open method of the connection object. + + + From Open to Closed, using either the Close method or the Dispose method of the connection object. + + + + The following example creates a , opens it, + displays some of its properties, then closes the connection. + + + Public Sub CreateMySqlConnection(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + MessageBox.Show("ServerVersion: " + myConnection.ServerVersion _ + + ControlChars.Cr + "State: " + myConnection.State.ToString()) + myConnection.Close() + End Sub + + + public void CreateMySqlConnection(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + MessageBox.Show("ServerVersion: " + myConnection.ServerVersion + + "\nState: " + myConnection.State.ToString()); + myConnection.Close(); + } + + + + + Gets a string containing the version of the MySQL server to which the client is connected.The version of the instance of MySQL.The connection is closed. + The following example creates a , opens it, + displays some of its properties, then closes the connection. + + + Public Sub CreateMySqlConnection(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + MessageBox.Show("ServerVersion: " + myConnection.ServerVersion _ + + ControlChars.Cr + "State: " + myConnection.State.ToString()) + myConnection.Close() + End Sub + + + public void CreateMySqlConnection(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + MessageBox.Show("ServerVersion: " + myConnection.ServerVersion + + "\nState: " + myConnection.State.ToString()); + myConnection.Close(); + } + + #if !NETSTANDARD1_6 + + + + Gets or sets the string used to connect to a MySQL Server database. + + + The ConnectionString returned may not be exactly like what was originally + set but will be indentical in terms of keyword/value pairs. Security information + will not be included unless the Persist Security Info value is set to true. + + + You can use the ConnectionString property to connect to a database. + The following example illustrates a typical connection string. + + "Persist Security Info=False;database=MyDB;server=MySqlServer;user id=myUser;Password=myPass" + + The ConnectionString property can be set only when the connection is + closed. Many of the connection string values have corresponding read-only + properties. When the connection string is set, all of these properties are + updated, except when an error is detected. In this case, none of the properties + are updated. properties return only those settings contained in the + ConnectionString. + + + To connect to a local machine, specify "localhost" for the server. If you do not + specify a server, localhost is assumed. + + + Resetting the ConnectionString on a closed connection resets all + connection string values (and related properties) including the password. For + example, if you set a connection string that includes "Database= MyDb", and + then reset the connection string to "Data Source=myserver;User Id=myUser;Password=myPass", + the property is no longer set to MyDb. + + + The connection string is parsed immediately after being set. If errors in + syntax are found when parsing, a runtime exception, such as , + is generated. Other errors can be found only when an attempt is made to open the + connection. + + + The basic format of a connection string consists of a series of keyword/value + pairs separated by semicolons. The equal sign (=) connects each keyword and its + value. To include values that contain a semicolon, single-quote character, or + double-quote character, the value must be enclosed in double quotes. If the + value contains both a semicolon and a double-quote character, the value can be + enclosed in single quotes. The single quote is also useful if the value begins + with a double-quote character. Conversely, the double quote can be used if the + value begins with a single quote. If the value contains both single-quote and + double-quote characters, the quote character used to enclose the value must be + doubled each time it occurs within the value. + + + To include preceding or trailing spaces in the string value, the value must + be enclosed in either single quotes or double quotes. Any leading or trailing + spaces around integer, Boolean, or enumerated values are ignored, even if + enclosed in quotes. However, spaces within a string literal keyword or value are + preserved. Using .NET Framework version 1.1, single or double quotes may be used + within a connection string without using delimiters (for example, Data Source= + my'Server or Data Source= my"Server), unless a quote character is the first or + last character in the value. + + + To include an equal sign (=) in a keyword or value, it must be preceded by + another equal sign. For example, in the hypothetical connection string + + "key==word=value" + + the keyword is "key=word" and the value is "value". + + If a specific keyword in a keyword= value pair occurs multiple times in a + connection string, the last occurrence listed is used in the value set. + + Keywords are not case sensitive. + + The following table lists the valid names for keyword values within the + ConnectionString. + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDefaultDescription
+ Connect Timeout -or- Connection Timeout + 15 + The length of time (in seconds) to wait for a connection to the server before + terminating the attempt and generating an error. +
+ Host -or- Server -or- Data Source -or- + DataSource -or- Address -or- Addr -or- + Network Address + localhost + + The name or network address of the instance of MySQL to which to connect. Multiple hosts can be + specified separated by &. This can be useful where multiple MySQL servers are configured for replication + and you are not concerned about the precise server you are connecting to. No attempt is made by the provider to + synchronize writes to the database so care should be taken when using this option. + + + In Unix environment with Mono, this can be a fully qualified path to MySQL socket filename. With this configuration, the Unix socket will be used instead of TCP/IP socket. + Currently only a single socket name can be given so accessing MySQL in a replicated environment using Unix sockets is not currently supported. + +
Port3306 + The port MySQL is using to listen for connections. This value is ignored if the connection protocol + is anything but socket. +
Protocolsocket + Specifies the type of connection to make to the server.Values can be: + socket or tcp for a socket connection
+ pipe for a named pipe connection
+ unix for a Unix socket connection
+ memory to use MySQL shared memory +
+ CharSet -or Character Set + + + Specifies the character set that should be used to encode all queries sent to the server. + Resultsets are still returned in the character set of the data returned. +
LoggingfalseWhen true, various pieces of information is output to any configured TraceListeners.
Allow Batchtrue + When true, multiple SQL statements can be sent with one command execution.

+ -Note-
+ Starting with MySQL 4.1.1, batch statements should be separated by the server-defined seperator character.
+ Commands sent to earlier versions of MySQL should be seperated with ';'. +
Encryptfalse + When true, SSL/TLS encryption is used for all data sent between the + client and server if the server has a certificate installed. Recognized values + are true, false, yes, and no. +
+ Initial Catalog -or- Database + mysqlThe name of the database to use intially
+ Password -or- pwd + + The password for the MySQL account being used.
Persist Security Infofalse + When set to false or no (strongly recommended), security-sensitive + information, such as the password, is not returned as part of the connection if + the connection is open or has ever been in an open state. Resetting the + connection string resets all connection string values including the password. + Recognized values are true, false, yes, and no. +
+ User Id -or- Username -or- Uid -or- User name + + The MySQL login account being used.
Shared Memory NameMYSQLThe name of the shared memory object to use for communication if the connection protocol is set to memory.
Allow Zero Datetimefalse + True to have MySqlDataReader.GetValue() return a MySqlDateTime for date or datetime columns that have illegal values. + False will cause a DateTime object to be returned for legal values and an exception will be thrown for illegal values. +
Convert Zero Datetimefalse + True to have MySqlDataReader.GetValue() and MySqlDataReader.GetDateTime() + return DateTime.MinValue for date or datetime columns that have illegal values. +
+ Pipe Name -or- Pipe + mysql + When set to the name of a named pipe, the MySqlConnection will attempt to connect to MySQL + on that named pipe.

This settings only applies to the Windows platform. +
+ Use Performance Monitor -or- UsePerformanceMonitor + false + Posts performance data that can be tracked using perfmon +
+ Procedure Cache Size + 25 + How many stored procedure definitions can be held in the cache +
+ Ignore Prepare + true + Instructs the provider to ignore any attempts to prepare commands. This option + was added to allow a user to disable prepared statements in an entire application + without modifying the code. A user might want to do this if errors or bugs are + encountered with MySQL prepared statements. +
Use Procedure Bodiestrue + Instructs the provider to attempt to call the procedure without first resolving the metadata. This + is useful in situations where the calling user does not have access to the mysql.proc table. To + use this mode, the parameters for the procedure must be added to the command in the same order + as they appear in the procedure definition and their types must be explicitly set. +
Auto Enlisttrue + Indicates whether the connection should automatically enlist in the current transaction, + if there is one. +
Respect Binary Flagstrue + Indicates whether the connection should respect all binary flags sent to the client + as part of column metadata. False will cause the connector to behave like + Connector/NET 5.0 and earlier. +
BlobAsUTF8IncludePatternnull + Pattern that should be used to indicate which blob columns should be treated as UTF-8. +
BlobAsUTF8ExcludePatternnull + Pattern that should be used to indicate which blob columns should not be treated as UTF-8. +
Default Command Timeout30 + The default timeout that new MySqlCommand objects will use unless changed. +
Allow User Variablesfalse + Should the provider expect user variables in the SQL. +
Interactive -or- Interactive Sessionfalse + Should this session be considered interactive? +
Functions Return Stringfalse + Set this option to true to force the return value of SQL functions to be string. +
Use Affected Rowsfalse + Set this option to true to cause the affected rows reported to reflect only the + rows that are actually changed. By default, the number of rows that are matched + is returned. +
+
+ + The following table lists the valid names for connection pooling values within + the ConnectionString. For more information about connection pooling, see + Connection Pooling for the MySql Data Provider. + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDefaultDescription
Connection Lifetime0 + When a connection is returned to the pool, its creation time is compared with + the current time, and the connection is destroyed if that time span (in seconds) + exceeds the value specified by Connection Lifetime. This is useful in + clustered configurations to force load balancing between a running server and a + server just brought online. + + A value of zero (0) causes pooled connections to have the maximum connection + timeout. + +
Max Pool Size100The maximum number of connections allowed in the pool.
Min Pool Size0The minimum number of connections allowed in the pool.
Poolingtrue + When true, the MySqlConnection object is drawn from the appropriate + pool, or if necessary, is created and added to the appropriate pool. Recognized + values are true, false, yes, and no. +
Connection Resetfalse + Specifies whether the database connection should be reset when being + drawn from the pool. Leaving this as false will yeild much faster + connection opens but the user should understand the side effects + of doing this such as temporary tables and user variables from the previous + session not being cleared out. +
Cache Server Propertiesfalse + Specifies whether the server variables are cached between pooled connections. + On systems where the variables change infrequently and there are lots of + connection attempts, this can speed up things dramatically. +
+
+ + When setting keyword or connection pooling values that require a Boolean + value, you can use 'yes' instead of 'true', and 'no' instead of 'false'. + + + Note The MySql Data Provider uses the native socket protocol to + communicate with MySQL. Therefore, it does not support the use of an ODBC data source name (DSN) when + connecting to MySQL because it does not add an ODBC layer. + + + CAUTION In this release, the application should use caution when constructing a + connection string based on user input (for example when retrieving user ID and password information from a + dialog box, and appending it to the connection string). The application should + ensure that a user cannot embed extra connection string parameters in these + values (for example, entering a password as "validpassword;database=somedb" in + an attempt to attach to a different database). + +
+ The following example creates a and sets some of its properties + + Public Sub CreateConnection() + Dim myConnection As New MySqlConnection() + myConnection.ConnectionString = "Persist Security Info=False;database=myDB;server=myHost;Connect Timeout=30;user id=myUser; pwd=myPass" + myConnection.Open() + End Sub 'CreateConnection + + + public void CreateConnection() + { + MySqlConnection myConnection = new MySqlConnection(); + myConnection.ConnectionString = "Persist Security Info=False;database=myDB;server=myHost;Connect Timeout=30;user id=myUser; pwd=myPass"; + myConnection.Open(); + } + + + The following example creates a in Unix environment with Mono installed. MySQL socket filename used in this example is "/var/lib/mysql/mysql.sock". The actual filename depends on your MySQL configuration. + + Public Sub CreateConnection() + Dim myConnection As New MySqlConnection() + myConnection.ConnectionString = "database=myDB;server=/var/lib/mysql/mysql.sock;user id=myUser; pwd=myPass" + myConnection.Open() + End Sub 'CreateConnection + + + public void CreateConnection() + { + MySqlConnection myConnection = new MySqlConnection(); + myConnection.ConnectionString = "database=myDB;server=/var/lib/mysql/mysql.sock;user id=myUser; pwd=myPass"; + myConnection.Open(); + } + + +
+ + + Gets a boolean value that indicates whether the password associated to the connection is expired. + + + + Begins a database transaction.An object representing the new transaction.Parallel transactions are not supported. + This command is equivalent to the MySQL BEGIN TRANSACTION command. + + You must explicitly commit or roll back the transaction using the or + method. + + If you do not specify an isolation level, the default isolation level is used. To specify an isolation + level with the method, use the overload that takes the iso parameter. Also + note that any attempt to begin a transaction while a transaction is in progress will throw an exception on MySQL 4.1 and higher. + On MySQL 4.0, an exception will not be thrown because servers 4.0 and earlier did not report their transacation status. + + + + The following example creates a and a + . It also demonstrates how to use the BeginTransaction, a + , and methods. + + Public Sub RunTransaction(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + + Dim myCommand As MySqlCommand = myConnection.CreateCommand() + Dim myTrans As MySqlTransaction + + ' Start a local transaction + myTrans = myConnection.BeginTransaction() + ' Must assign both transaction object and connection + ' to Command object for a pending local transaction + myCommand.Connection = myConnection + myCommand.Transaction = myTrans + + Try + myCommand.CommandText = "Insert into Test (id, desc) VALUES (100, 'Description')" + myCommand.ExecuteNonQuery() + myCommand.CommandText = "Insert into Test (id, desc) VALUES (101, 'Description')" + myCommand.ExecuteNonQuery() + myTrans.Commit() + Console.WriteLine("Both records are written to database.") + Catch e As Exception + Try + myTrans.Rollback() + Catch ex As MySqlException + If Not myTrans.Connection Is Nothing Then + Console.WriteLine("An exception of type " + ex.GetType().ToString() + _ + " was encountered while attempting to roll back the transaction.") + End If + End Try + + Console.WriteLine("An exception of type " + e.GetType().ToString() + _ + "was encountered while inserting the data.") + Console.WriteLine("Neither record was written to database.") + Finally + myConnection.Close() + End Try + End Sub + + + public void RunTransaction(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + + MySqlCommand myCommand = myConnection.CreateCommand(); + MySqlTransaction myTrans; + + // Start a local transaction + myTrans = myConnection.BeginTransaction(); + // Must assign both transaction object and connection + // to Command object for a pending local transaction + myCommand.Connection = myConnection; + myCommand.Transaction = myTrans; + + try + { + myCommand.CommandText = "insert into Test (id, desc) VALUES (100, 'Description')"; + myCommand.ExecuteNonQuery(); + myCommand.CommandText = "insert into Test (id, desc) VALUES (101, 'Description')"; + myCommand.ExecuteNonQuery(); + myTrans.Commit(); + Console.WriteLine("Both records are written to database."); + } + catch(Exception e) + { + try + { + myTrans.Rollback(); + } + catch (SqlException ex) + { + if (myTrans.Connection != null) + { + Console.WriteLine("An exception of type " + ex.GetType() + + " was encountered while attempting to roll back the transaction."); + } + } + + Console.WriteLine("An exception of type " + e.GetType() + + " was encountered while inserting the data."); + Console.WriteLine("Neither record was written to database."); + } + finally + { + myConnection.Close(); + } + } + + + + + Begins a database transaction with the specified isolation level.The isolation level under which the transaction should run. An object representing the new transaction.Parallel exceptions are not supported. + This command is equivalent to the MySQL BEGIN TRANSACTION command. + + You must explicitly commit or roll back the transaction using the or + method. + + If you do not specify an isolation level, the default isolation level is used. To specify an isolation + level with the method, use the overload that takes the iso parameter. + Also note that any attempt to begin a transaction while a transaction is in progress will throw an exception on MySQL 4.1 and higher. + On MySQL 4.0, an exception will not be thrown because servers 4.0 and earlier did not report their transacation status. + + + + The following example creates a and a + . It also demonstrates how to use the BeginTransaction, a + , and methods. + + Public Sub RunTransaction(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + + Dim myCommand As MySqlCommand = myConnection.CreateCommand() + Dim myTrans As MySqlTransaction + + ' Start a local transaction + myTrans = myConnection.BeginTransaction() + ' Must assign both transaction object and connection + ' to Command object for a pending local transaction + myCommand.Connection = myConnection + myCommand.Transaction = myTrans + + Try + myCommand.CommandText = "Insert into Test (id, desc) VALUES (100, 'Description')" + myCommand.ExecuteNonQuery() + myCommand.CommandText = "Insert into Test (id, desc) VALUES (101, 'Description')" + myCommand.ExecuteNonQuery() + myTrans.Commit() + Console.WriteLine("Both records are written to database.") + Catch e As Exception + Try + myTrans.Rollback() + Catch ex As MySqlException + If Not myTrans.Connection Is Nothing Then + Console.WriteLine("An exception of type " + ex.GetType().ToString() + _ + " was encountered while attempting to roll back the transaction.") + End If + End Try + + Console.WriteLine("An exception of type " + e.GetType().ToString() + _ + "was encountered while inserting the data.") + Console.WriteLine("Neither record was written to database.") + Finally + myConnection.Close() + End Try + End Sub + + + public void RunTransaction(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + + MySqlCommand myCommand = myConnection.CreateCommand(); + MySqlTransaction myTrans; + + // Start a local transaction + myTrans = myConnection.BeginTransaction(); + // Must assign both transaction object and connection + // to Command object for a pending local transaction + myCommand.Connection = myConnection; + myCommand.Transaction = myTrans; + + try + { + myCommand.CommandText = "insert into Test (id, desc) VALUES (100, 'Description')"; + myCommand.ExecuteNonQuery(); + myCommand.CommandText = "insert into Test (id, desc) VALUES (101, 'Description')"; + myCommand.ExecuteNonQuery(); + myTrans.Commit(); + Console.WriteLine("Both records are written to database."); + } + catch(Exception e) + { + try + { + myTrans.Rollback(); + } + catch (SqlException ex) + { + if (myTrans.Connection != null) + { + Console.WriteLine("An exception of type " + ex.GetType() + + " was encountered while attempting to roll back the transaction."); + } + } + + Console.WriteLine("An exception of type " + e.GetType() + + " was encountered while inserting the data."); + Console.WriteLine("Neither record was written to database."); + } + finally + { + myConnection.Close(); + } + } + + + + + Changes the current database for an open MySqlConnection.The name of the database to use. + + The value supplied in the database parameter must be a valid database + name. The database parameter cannot contain a null value, an empty + string, or a string with only blank characters. + + + + When you are using connection pooling against MySQL, and you close + the connection, it is returned to the connection pool. The next time the + connection is retrieved from the pool, the reset connection request + executes before the user performs any operations. + + The database name is not valid.The connection is not open.Cannot change the database. + The following example creates a and displays + some of its read-only properties. + + + Public Sub CreateMySqlConnection() + Dim myConnString As String = _ + "Persist Security Info=False;database=test;server=localhost;user id=joeuser;pwd=pass" + Dim myConnection As New MySqlConnection( myConnString ) + myConnection.Open() + MessageBox.Show( "Server Version: " + myConnection.ServerVersion _ + + ControlChars.NewLine + "Database: " + myConnection.Database ) + myConnection.ChangeDatabase( "test2" ) + MessageBox.Show( "ServerVersion: " + myConnection.ServerVersion _ + + ControlChars.NewLine + "Database: " + myConnection.Database ) + myConnection.Close() + End Sub + + + + public void CreateMySqlConnection() + { + string myConnString = + "Persist Security Info=False;database=test;server=localhost;user id=joeuser;pwd=pass"; + MySqlConnection myConnection = new MySqlConnection( myConnString ); + myConnection.Open(); + MessageBox.Show( "Server Version: " + myConnection.ServerVersion + + "\nDatabase: " + myConnection.Database ); + myConnection.ChangeDatabase( "test2" ); + MessageBox.Show( "ServerVersion: " + myConnection.ServerVersion + + "\nDatabase: " + myConnection.Database ); + myConnection.Close(); + } + + + + + + Ping + + + + + Opens a database connection with the property settings specified by the ConnectionString.Cannot open a connection without specifying a data source or server.A connection-level error occurred while opening the connection. + + The draws an open connection from the connection pool if one is available. + Otherwise, it establishes a new connection to an instance of MySQL. + + + The following example creates a , opens it, + displays some of its properties, then closes the connection. + + + Public Sub CreateMySqlConnection(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + MessageBox.Show("ServerVersion: " + myConnection.ServerVersion _ + + ControlChars.Cr + "State: " + myConnection.State.ToString()) + myConnection.Close() + End Sub + + + public void CreateMySqlConnection(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + MessageBox.Show("ServerVersion: " + myConnection.ServerVersion + + "\nState: " + myConnection.State.ToString()); + myConnection.Close(); + } + + + + + + Creates and returns a object associated with the . + + A object. + + + + Closes the connection to the database. This is the preferred method of closing any open connection. + + The Close method rolls back any pending transactions. It then releases + the connection to the connection pool, or closes the connection if connection + pooling is disabled. + + + An application can call Close more than one time. No exception is + generated. + + + The following example creates a , opens it, + displays some of its properties, then closes the connection. + + + Public Sub CreateMySqlConnection(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + MessageBox.Show("ServerVersion: " + myConnection.ServerVersion _ + + ControlChars.Cr + "State: " + myConnection.State.ToString()) + myConnection.Close() + End Sub + + + public void CreateMySqlConnection(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + MessageBox.Show("ServerVersion: " + myConnection.ServerVersion + + "\nState: " + myConnection.State.ToString()); + myConnection.Close(); + } + + + + + + Cancels the query after the specified time interval. + + The length of time (in seconds) to wait for the cancelation of the command execution. + + + + Sets query timeout. If timeout has been set prior and not + yet cleared ClearCommandTimeout(), it has no effect. + + timeout in seconds + true if + + + + Clears query timeout, allowing next SetCommandTimeout() to succeed. + + + + + Gets a schema collection based on the provided restriction values. + + The name of the collection. + The values to restrict. + A schema collection object. + + + Empties the connection pool associated with the specified connection. + The associated with the pool to be cleared. + + + ClearPool clears the connection pool that is associated with the connection. + If additional connections associated with connection are in use at the time of the call, + they are marked appropriately and are discarded (instead of being returned to the pool) + when Close is called on them. + + + + + Clears all connection pools. + + ClearAllPools essentially performs a on all current connection + pools. + + + + + + Initiates the asynchronous execution of a transaction. + + An object representing the new transaction. + + + + Asynchronous version of BeginTransaction. + + The cancellation token. + An object representing the new transaction. + + + + Async version of BeginTransaction + + The isolation level under which the transaction should run. + An object representing the new transaction. + + + + Asynchronous version of BeginTransaction. + + The isolation level under which the transaction should run. + The cancellation token. + An object representing the new transaction. + + + + Asynchronous version of the ChangeDataBase method. + + The name of the database to use. + + + + + Asynchronous version of the ChangeDataBase method. + + The name of the database to use. + The cancellation Token. + + + + + Asynchronous version of the Close method. + + + + + + Asynchronous version of the Close method. + + The cancellation token. + + + + + Asynchronous version of the ClearPool method. + + The connection associated with the pool to be cleared. + + + + + Asynchronous version of the ClearPool method. + + The connection associated with the pool to be cleared. + The cancellation token. + + + + + Async version of ClearAllPools + + + + + + Asynchronous version of the ClearAllPools method. + + The cancellation token. + + + + + Asynchronous version of the GetSchemaCollection method. + + The name of the collection. + The values to restrict. + A collection of schema objects. + + + + Asynchronous version of the GetSchemaCollection method. + + The name of the collection. + The values to restrict. + The cancellation token. + A collection of schema objects. + + + + Returns schema information for the data source of this . + + A that contains schema information. + + + + Returns schema information for the data source of this + using the specified string for the schema name. + + Specifies the name of the schema to return. + A that contains schema information. + + + + Returns schema information for the data source of this + using the specified string for the schema name and the specified string array + for the restriction values. + + Specifies the name of the schema to return. + Specifies a set of restriction values for the requested schema. + A that contains schema information. + + + + Enlists in the specified transaction. + + + A reference to an existing in which to enlist. + + + + + Creates a new MySqlConnection object with the exact same ConnectionString value + + A cloned MySqlConnection object + + + + Represents the method that will handle the event of a + . + + + + + Provides data for the InfoMessage event. This class cannot be inherited. + + + + + Gets or sets an array of MySqlError objects set with the errors found. + + + + + IDisposable wrapper around SetCommandTimeout and ClearCommandTimeout + functionality + + + + + Summary description for Crypt. + + + + + Simple XOR scramble + + Source array + Index inside source array + Destination array + Index inside destination array + Password used to xor the bits + Number of bytes to scramble + + + + Returns a byte array containing the proper encryption of the + given password/seed according to the new 4.1.1 authentication scheme. + + + + + + + + Encrypts a password using the MySql encryption scheme + + The password to encrypt + The encryption seed the server gave us + Indicates if we should use the old or new encryption scheme + + + + + Hashes a password using the algorithm from Monty's code. + The first element in the return is the result of the "old" hash. + The second element is the rest of the "new" hash. + + Password to be hashed + Two element array containing the hashed values + + + + Provides a means of reading a forward-only stream of rows from a MySQL database. This class cannot be inherited. + + + To create a MySQLDataReader, you must call the + method of the object, rather than directly using a constructor. + + + While the MySqlDataReader is in use, the associated + is busy serving the MySqlDataReader, and no other operations can be performed + on the MySqlConnection other than closing it. This is the case until the + method of the MySqlDataReader is called. + + + and + are the only properties that you can call after the MySqlDataReader is + closed. Though the RecordsAffected property may be accessed at any time + while the MySqlDataReader exists, always call Close before returning + the value of RecordsAffected to ensure an accurate return value. + + + For optimal performance, MySqlDataReader avoids creating + unnecessary objects or making unnecessary copies of data. As a result, multiple calls + to methods such as return a reference to the + same object. Use caution if you are modifying the underlying value of the objects + returned by methods such as GetValue. + + + The following example creates a , + a , and a MySqlDataReader. The example reads through + the data, writing it out to the console. Finally, the example closes the MySqlDataReader, then the + MySqlConnection. + + Public Sub ReadMyData(myConnString As String) + Dim mySelectQuery As String = "SELECT OrderID, CustomerID FROM Orders" + Dim myConnection As New MySqlConnection(myConnString) + Dim myCommand As New MySqlCommand(mySelectQuery, myConnection) + myConnection.Open() + Dim myReader As MySqlDataReader + myReader = myCommand.ExecuteReader() + ' Always call Read before accessing data. + While myReader.Read() + Console.WriteLine((myReader.GetInt32(0) & ", " & myReader.GetString(1))) + End While + ' always call Close when done reading. + myReader.Close() + ' Close the connection when done with it. + myConnection.Close() + End Sub 'ReadMyData + + + public void ReadMyData(string myConnString) { + string mySelectQuery = "SELECT OrderID, CustomerID FROM Orders"; + MySqlConnection myConnection = new MySqlConnection(myConnString); + MySqlCommand myCommand = new MySqlCommand(mySelectQuery,myConnection); + myConnection.Open(); + MySqlDataReader myReader; + myReader = myCommand.ExecuteReader(); + // Always call Read before accessing data. + while (myReader.Read()) { + Console.WriteLine(myReader.GetInt32(0) + ", " + myReader.GetString(1)); + } + // always call Close when done reading. + myReader.Close(); + // Close the connection when done with it. + myConnection.Close(); + } + + + + + + Gets the number of columns in the current row. + + + + + Gets a value indicating whether the MySqlDataReader contains one or more rows. + + + + + Gets a value indicating whether the data reader is closed. + + + + + Gets the number of rows changed, inserted, or deleted by execution of the SQL statement. + + + + + Overloaded. Gets the value of a column in its native format. + In C#, this property is the indexer for the MySqlDataReader class. + + + + + Gets the value of a column in its native format. + [C#] In C#, this property is the indexer for the MySqlDataReader class. + + + + + Gets a value indicating the depth of nesting for the current row. This method is not + supported currently and always returns 0. + + + + + Closes the MySqlDataReader object. + + + + + Gets the value of the specified column as a Boolean. + + + + + + + Gets the value of the specified column as a Boolean. + + + + + + + Gets the value of the specified column as a byte. + + + + + + + Gets the value of the specified column as a byte. + + + + + + + Gets the value of the specified column as a sbyte. + + + + + + + Gets the value of the specified column as a sbyte. + + + + + + + Reads a stream of bytes from the specified column offset into the buffer an array starting at the given buffer offset. + + The zero-based column ordinal. + The index within the field from which to begin the read operation. + The buffer into which to read the stream of bytes. + The index for buffer to begin the read operation. + The maximum length to copy into the buffer. + The actual number of bytes read. + + + + + Gets the value of the specified column as a single character. + + + + + + + Gets the value of the specified column as a single character. + + + + + + + Reads a stream of characters from the specified column offset into the buffer as an array starting at the given buffer offset. + + + + + + + + + + + Gets the name of the source data type. + + + + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a DateTime object. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a DateTime object. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a DateTime object. + + + Call IsDBNull to check for null values before calling this method. + + + + MySql allows date columns to contain the value '0000-00-00' and datetime + columns to contain the value '0000-00-00 00:00:00'. The DateTime structure cannot contain + or represent these values. To read a datetime value from a column that might + contain zero values, use . + + + The behavior of reading a zero datetime column using this method is defined by the + ZeroDateTimeBehavior connection string option. For more information on this option, + please refer to . + + + The column name.The value of the specified column. + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a DateTime object. + + + Call IsDBNull to check for null values before calling this method. + + + + MySql allows date columns to contain the value '0000-00-00' and datetime + columns to contain the value '0000-00-00 00:00:00'. The DateTime structure cannot contain + or represent these values. To read a datetime value from a column that might + contain zero values, use . + + + The behavior of reading a zero datetime column using this method is defined by the + ZeroDateTimeBehavior connection string option. For more information on this option, + please refer to . + + + The zero-based column ordinal.The value of the specified column. + + + + Gets the value of the specified column as a MySqlDecimal. + + The name of the colum. + The value of the specified column as a MySqlDecimal. + + + + Gets the value of the specified column as a MySqlDecimal. + + The index of the colum. + The value of the specified column as a MySqlDecimal. + + + + Gets the value of the specified column as a MySqlDecimal. + + The name of the colum. + The value of the specified column as a MySqlDecimal. + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a Decimal object. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinalThe value of the specified column. + + + Gets the value of the specified column as a double-precision floating point number. + + No conversions are performed; therefore, the data retrieved must already be a Double object. + + + Call IsDBNull to check for null values before calling this method. + + The column nameThe value of the specified column. + + + Gets the value of the specified column as a double-precision floating point number. + + No conversions are performed; therefore, the data retrieved must already be a Double object. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal.The value of the specified column. + + + + Gets the type of the field at the specified column. + + The column name. + The data type of the item. + + + + Gets the Type that is the data type of the object. + + + + + + + Gets the value of the specified column as a single-precision floating point number. + + + No conversions are performed; therefore, the data retrieved must already be a Float object. + + + Call IsDBNull to check for null values before calling this method. + + The column nameThe value of the specified column. + + + + Gets the value of the specified column as a single-precision floating point number. + + + No conversions are performed; therefore, the data retrieved must already be a Float object. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal.The value of the specified column. + + + + Gets the value of the specified column as a globally-unique identifier(GUID). + + + + + + + + + Gets the value of the specified column as a 16-bit signed integer. + + No conversions are performed; threfore, the data retrieved must already be a 16 bit integer value. + + + Call IsDBNull to check for null values before calling this method. + + The column nameThe value of the specified column. + + + Gets the value of the specified column as a 16-bit signed integer. + + No conversions are performed; therefore, the data retrieved must already be a 16 bit integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal.The value of the specified column. + + + Gets the value of the specified column as a 32-bit signed integer. + + No conversions are performed; therefore, the data retrieved must already be a 32 bit integer value. + + + Call IsDBNull to check for null values before calling this method. + + The column name.The value of the specified column. + + + Gets the value of the specified column as a 32-bit signed integer. + + No conversions are performed; therefore, the data retrieved must already be a 32 bit integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal.The value of the specified column. + + + Gets the value of the specified column as a 64-bit signed integer. + + No conversions are performed; therefore, the data retrieved must already be a 64 bit integer value. + + + Call IsDBNull to check for null values before calling this method. + + The column name.The value of the specified column. + + + Gets the value of the specified column as a 64-bit signed integer. + + No conversions are performed; therefore, the data retrieved must already be a 64 bit integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal.The value of the specified column. + + + + Gets the name of the specified column. + + + + + + + Gets the column ordinal, given the name of the column. + + + + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a String object. + + + Call IsDBNull to check for null values before calling this method. + + The column name.The value of the specified column. + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a String object. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal.The value of the specified column. + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a Time value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + + Gets the value of the specified column as a object. + + + No conversions are performed; therefore, the data retrieved must already be a Time value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + + Gets the value of the specified column in its native format. + + + + + + + Gets all attribute columns in the collection for the current row. + + + + + + Gets the value of the specified column as a 16-bit unsigned integer. + + No conversions are performed; therefore, the data retrieved must already be a 16 bit unsigned integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + Gets the value of the specified column as a 16-bit unsigned integer. + + No conversions are performed; therefore, the data retrieved must already be a 16 bit unsigned integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + Gets the value of the specified column as a 32-bit unsigned integer. + + No conversions are performed; therefore, the data retrieved must already be a 32 bit unsigned integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + Gets the value of the specified column as a 32-bit unsigned integer. + + No conversions are performed; therefore, the data retrieved must already be a 32 bit unsigned integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + Gets the value of the specified column as a 64-bit unsigned integer. + + No conversions are performed; therefore, the data retrieved must already be a 64 bit unsigned integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + Gets the value of the specified column as a 64-bit unsigned integer. + + No conversions are performed; therefore, the data retrieved must already be a 64 bit unsigned integer value. + + + Call IsDBNull to check for null values before calling this method. + + The zero-based column ordinal or column name.The value of the specified column. + + + + Gets a value indicating whether the column contains non-existent or missing values. + + + + + + + Advances the data reader to the next result, when reading the results of batch SQL statements. + + + + + + Advances the MySqlDataReader to the next record. + + + + + + Gets the value of the specified column as a MySqlGeometry. + + The index of the colum. + The value of the specified column as a MySqlGeometry. + + + + Gets the value of the specified column as a MySqlGeometry. + + The name of the column. + The value of the specified column as a MySqlGeometry. + + + + Returns an that iterates through the . + + + + + Returns a DataTable that describes the column metadata of the MySqlDataReader. + + + + + + Summary description for BaseDriver. + + + + + For pooled connections, time when the driver was + put into idle queue + + + + + Loads the properties from the connected server into a hashtable + + + + + + + Loads all the current character set names and ids for this server + into the charSets hashtable + + + + + The exception that is thrown when MySQL returns an error. This class cannot be inherited. + + + + This class is created whenever the MySql Data Provider encounters an error generated from the server. + + + Any open connections are not automatically closed when an exception is thrown. If + the client application determines that the exception is fatal, it should close any open + objects or objects. + + + The following example generates a MySqlException due to a missing server, + and then displays the exception. + + + Public Sub ShowException() + Dim mySelectQuery As String = "SELECT column1 FROM table1" + Dim myConnection As New MySqlConnection ("Data Source=localhost;Database=Sample;") + Dim myCommand As New MySqlCommand(mySelectQuery, myConnection) + + Try + myCommand.Connection.Open() + Catch e As MySqlException + MessageBox.Show( e.Message ) + End Try + End Sub + + + public void ShowException() + { + string mySelectQuery = "SELECT column1 FROM table1"; + MySqlConnection myConnection = + new MySqlConnection("Data Source=localhost;Database=Sample;"); + MySqlCommand myCommand = new MySqlCommand(mySelectQuery,myConnection); + + try + { + myCommand.Connection.Open(); + } + catch (MySqlException e) + { + MessageBox.Show( e.Message ); + } + } + + + + + + Gets a number that identifies the type of error. + + + + + True if this exception was fatal and cause the closing of the connection, false otherwise. + + + + + Gets the SQL state. + + + + + Gets the numeric code of the exception. + + + + + Summary description for Field. + + + + + We are adding a custom installer class to our assembly so our installer + can make proper changes to the machine.config file. + + + + + We override Install so we can add our assembly to the proper + machine.config files. + + + + + + We override Uninstall so we can remove out assembly from the + machine.config files. + + + + + + Automatically generates single-table commands used to reconcile changes made to a DataSet with the associated MySQL database. This class cannot be inherited. + + + The does not automatically generate the SQL statements required to + reconcile changes made to a DataSet with the associated instance of MySQL. + However, you can create a MySqlCommandBuilder object to automatically generate SQL statements for + single-table updates if you set the SelectCommand property + of the MySqlDataAdapter. Then, any additional SQL statements that you do not set are generated by the + MySqlCommandBuilder. + + + + The MySqlCommandBuilder registers itself as a listener for RowUpdating + events whenever you set the property. You can only associate one + MySqlDataAdapter or MySqlCommandBuilder object with each other at one time. + + + + To generate INSERT, UPDATE, or DELETE statements, the MySqlCommandBuilder uses the + SelectCommand property to retrieve a required set of metadata automatically. If you change + the SelectCommand after the metadata has is retrieved (for example, after the first update), you + should call the method to update the metadata. + + + + The SelectCommand must also return at least one primary key or unique + column. If none are present, an InvalidOperation exception is generated, + and the commands are not generated. + + + + The MySqlCommandBuilder also uses the Connection, + CommandTimeout, and Transaction + properties referenced by the SelectCommand. The user should call + RefreshSchema if any of these properties are modified, or if the + SelectCommand itself is replaced. Otherwise the InsertCommand, + UpdateCommand, and + DeleteCommand properties retain + their previous values. + + + + If you call Dispose, the MySqlCommandBuilder is disassociated + from the MySqlDataAdapter, and the generated commands are no longer used. + + + + Caution must be used when using MySqlCOmmandBuilder on MySql 4.0 systems. With MySql 4.0, + database/schema information is not provided to the connector for a query. This means that + a query that pulls columns from two identically named tables in two or more different databases + will not cause an exception to be thrown but will not work correctly. Even more dangerous + is the situation where your select statement references database X but is executed in + database Y and both databases have tables with similar layouts. This situation can cause + unwanted changes or deletes. + This note does not apply to MySQL versions 4.1 and later. + + + + The following example uses the , along + and , to + select rows from a data source. The example is passed an initialized + , a connection string, a + query string that is a SQL SELECT statement, and a string that is the + name of the database table. The example then creates a MySqlCommandBuilder. + + + Public Shared Function SelectRows(myConnection As String, mySelectQuery As String, myTableName As String) As DataSet + Dim myConn As New MySqlConnection(myConnection) + Dim myDataAdapter As New MySqlDataAdapter() + myDataAdapter.SelectCommand = New MySqlCommand(mySelectQuery, myConn) + Dim cb As SqlCommandBuilder = New MySqlCommandBuilder(myDataAdapter) + + myConn.Open() + + Dim ds As DataSet = New DataSet + myDataAdapter.Fill(ds, myTableName) + + ' Code to modify data in DataSet here + + ' Without the MySqlCommandBuilder this line would fail. + myDataAdapter.Update(ds, myTableName) + + myConn.Close() + End Function 'SelectRows + + + public static DataSet SelectRows(string myConnection, string mySelectQuery, string myTableName) + { + MySqlConnection myConn = new MySqlConnection(myConnection); + MySqlDataAdapter myDataAdapter = new MySqlDataAdapter(); + myDataAdapter.SelectCommand = new MySqlCommand(mySelectQuery, myConn); + MySqlCommandBuilder cb = new MySqlCommandBuilder(myDataAdapter); + + myConn.Open(); + + DataSet ds = new DataSet(); + myDataAdapter.Fill(ds, myTableName); + + //code to modify data in DataSet here + + //Without the MySqlCommandBuilder this line would fail + myDataAdapter.Update(ds, myTableName); + + myConn.Close(); + + return ds; + } + + + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with the associated object. + + The to use. + + + The registers itself as a listener for + events that are generated by the + specified in this property. + + + When you create a new instance MySqlCommandBuilder, any existing + MySqlCommandBuilder associated with this MySqlDataAdapter + is released. + + + + + + Gets or sets a object for which SQL statements are automatically generated. + + A object. + + + The registers itself as a listener for + events that are generated by the + specified in this property. + + + When you create a new instance MySqlCommandBuilder, any existing + MySqlCommandBuilder associated with this MySqlDataAdapter + is released. + + + + + + Retrieves parameter information from the stored procedure specified + in the MySqlCommand and populates the Parameters collection of the + specified MySqlCommand object. + This method is not currently supported since stored procedures are + not available in MySql. + + The MySqlCommand referencing the stored + procedure from which the parameter information is to be derived. + The derived parameters are added to the Parameters collection of the + MySqlCommand. + The command text is not + a valid stored procedure name. + + + + Gets the delete command. + + + + + + Gets the update command. + + + + + + Gets the insert command. + + + + + + + + + + + + + Represents a set of data commands and a database connection that are used to fill a dataset and update a MySQL database. This class cannot be inherited. + + + The MySQLDataAdapter, serves as a bridge between a + and MySQL for retrieving and saving data. The MySQLDataAdapter provides this + bridge by mapping , which changes the data in the + DataSet to match the data in the data source, and , + which changes the data in the data source to match the data in the DataSet, + using the appropriate SQL statements against the data source. + + + When the MySQLDataAdapter fills a DataSet, it will create the necessary + tables and columns for the returned data if they do not already exist. However, primary + key information will not be included in the implicitly created schema unless the + property is set to . + You may also have the MySQLDataAdapter create the schema of the DataSet, + including primary key information, before filling it with data using . + + + MySQLDataAdapter is used in conjunction with + and to increase performance when connecting to a MySQL database. + + + The MySQLDataAdapter also includes the , + , , + , and + properties to facilitate the loading and updating of data. + + + When an instance of MySQLDataAdapter is created, the read/write properties + are set to initial values. For a list of these values, see the MySQLDataAdapter + constructor. + + + Please be aware that the class allows only + Int16, Int32, and Int64 to have the AutoIncrement property set. + If you plan to use autoincremement columns with MySQL, you should consider + using signed integer columns. + + + The following example creates a and a . + The MySqlConnection is opened and set as the for the + MySqlCommand. The example then calls , and closes + the connection. To accomplish this, the ExecuteNonQuery is + passed a connection string and a query string that is a SQL INSERT + statement. + + Public Function SelectRows(dataSet As DataSet, connection As String, query As String) As DataSet + Dim conn As New MySqlConnection(connection) + Dim adapter As New MySqlDataAdapter() + adapter.SelectCommand = new MySqlCommand(query, conn) + adapter.Fill(dataset) + Return dataset + End Function + + + public DataSet SelectRows(DataSet dataset,string connection,string query) + { + MySqlConnection conn = new MySqlConnection(connection); + MySqlDataAdapter adapter = new MySqlDataAdapter(); + adapter.SelectCommand = new MySqlCommand(query, conn); + adapter.Fill(dataset); + return dataset; + } + + + + + + Occurs during Update before a command is executed against the data source. The attempt to update is made, so the event fires. + + + + + Occurs during Update after a command is executed against the data source. The attempt to update is made, so the event fires. + + + + + Initializes a new instance of the MySqlDataAdapter class. + + + When an instance of is created, + the following read/write properties are set to the following initial + values. + + + + Properties + Initial Value + + + + + + + MissingMappingAction.Passthrough + + + + + + + + MissingSchemaAction.Add + + + + + You can change the value of any of these properties through a separate call + to the property. + + + The following example creates a and sets some of + its properties. + + Public Sub CreateSqlDataAdapter() + Dim conn As MySqlConnection = New MySqlConnection("Data Source=localhost;" & _ + "database=test") + Dim da As MySqlDataAdapter = New MySqlDataAdapter + da.MissingSchemaAction = MissingSchemaAction.AddWithKey + + da.SelectCommand = New MySqlCommand("SELECT id, name FROM mytable", conn) + da.InsertCommand = New MySqlCommand("INSERT INTO mytable (id, name) " & _ + "VALUES (@id, @name)", conn) + da.UpdateCommand = New MySqlCommand("UPDATE mytable SET id=@id, name=@name " & _ + "WHERE id=@oldId", conn) + da.DeleteCommand = New MySqlCommand("DELETE FROM mytable WHERE id=@id", conn) + + da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name") + + da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name") + da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original + + da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original + End Sub + + + public static void CreateSqlDataAdapter() + { + MySqlConnection conn = new MySqlConnection("Data Source=localhost;database=test"); + MySqlDataAdapter da = new MySqlDataAdapter(); + da.MissingSchemaAction = MissingSchemaAction.AddWithKey; + + da.SelectCommand = new MySqlCommand("SELECT id, name FROM mytable", conn); + da.InsertCommand = new MySqlCommand("INSERT INTO mytable (id, name) " + + "VALUES (@id, @name)", conn); + da.UpdateCommand = new MySqlCommand("UPDATE mytable SET id=@id, name=@name " + + "WHERE id=@oldId", conn); + da.DeleteCommand = new MySqlCommand("DELETE FROM mytable WHERE id=@id", conn); + + da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name"); + + da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name"); + da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original; + + da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original; + } + + + + + + Initializes a new instance of the class with + the specified as the + property. + + that is a SQL SELECT statement or stored procedure and is set + as the property of the . + + + When an instance of is created, + the following read/write properties are set to the following initial + values. + + + + Properties + Initial Value + + + + + + + MissingMappingAction.Passthrough + + + + + + + + MissingSchemaAction.Add + + + + + You can change the value of any of these properties through a separate call + to the property. + + + When SelectCommand (or any of the other command properties) is assigned + to a previously created , the MySqlCommand is not cloned. + The SelectCommand maintains a reference to the previously created MySqlCommand + object. + + + The following example creates a and sets some of + its properties. + + Public Sub CreateSqlDataAdapter() + Dim conn As MySqlConnection = New MySqlConnection("Data Source=localhost;" & _ + "database=test") + Dim cmd as new MySqlCommand("SELECT id, name FROM mytable", conn) + Dim da As MySqlDataAdapter = New MySqlDataAdapter(cmd) + da.MissingSchemaAction = MissingSchemaAction.AddWithKey + + da.InsertCommand = New MySqlCommand("INSERT INTO mytable (id, name) " & _ + "VALUES (@id, @name)", conn) + da.UpdateCommand = New MySqlCommand("UPDATE mytable SET id=@id, name=@name " & _ + "WHERE id=@oldId", conn) + da.DeleteCommand = New MySqlCommand("DELETE FROM mytable WHERE id=@id", conn) + + da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name") + + da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name") + da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original + + da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original + End Sub + + + public static void CreateSqlDataAdapter() + { + MySqlConnection conn = new MySqlConnection("Data Source=localhost;database=test"); + MySqlCommand cmd = new MySqlCommand("SELECT id, name FROM mytable", conn); + MySqlDataAdapter da = new MySqlDataAdapter(cmd); + da.MissingSchemaAction = MissingSchemaAction.AddWithKey; + + da.InsertCommand = new MySqlCommand("INSERT INTO mytable (id, name) " + + "VALUES (@id, @name)", conn); + da.UpdateCommand = new MySqlCommand("UPDATE mytable SET id=@id, name=@name " + + "WHERE id=@oldId", conn); + da.DeleteCommand = new MySqlCommand("DELETE FROM mytable WHERE id=@id", conn); + + da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name"); + + da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name"); + da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original; + + da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original; + } + + + + + + Initializes a new instance of the class with + a and a object. + + A String that is a SQL SELECT statement or stored procedure to be used by + the property of the . + + A that represents the connection. + + + This implementation of the opens and closes a + if it is not already open. This can be useful in a an application that must call the + method for two or more MySqlDataAdapter objects. + If the MySqlConnection is already open, you must explicitly call + or to close it. + + + When an instance of is created, + the following read/write properties are set to the following initial + values. + + + + Properties + Initial Value + + + + + + + MissingMappingAction.Passthrough + + + + + + + + MissingSchemaAction.Add + + + + + You can change the value of any of these properties through a separate call + to the property. + + + The following example creates a and sets some of + its properties. + + Public Sub CreateSqlDataAdapter() + Dim conn As MySqlConnection = New MySqlConnection("Data Source=localhost;" & _ + "database=test") + Dim da As MySqlDataAdapter = New MySqlDataAdapter("SELECT id, name FROM mytable", conn) + da.MissingSchemaAction = MissingSchemaAction.AddWithKey + + da.InsertCommand = New MySqlCommand("INSERT INTO mytable (id, name) " & _ + "VALUES (@id, @name)", conn) + da.UpdateCommand = New MySqlCommand("UPDATE mytable SET id=@id, name=@name " & _ + "WHERE id=@oldId", conn) + da.DeleteCommand = New MySqlCommand("DELETE FROM mytable WHERE id=@id", conn) + + da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name") + + da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name") + da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original + + da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original + End Sub + + + public static void CreateSqlDataAdapter() + { + MySqlConnection conn = new MySqlConnection("Data Source=localhost;database=test"); + MySqlDataAdapter da = new MySqlDataAdapter("SELECT id, name FROM mytable", conn); + da.MissingSchemaAction = MissingSchemaAction.AddWithKey; + + da.InsertCommand = new MySqlCommand("INSERT INTO mytable (id, name) " + + "VALUES (@id, @name)", conn); + da.UpdateCommand = new MySqlCommand("UPDATE mytable SET id=@id, name=@name " + + "WHERE id=@oldId", conn); + da.DeleteCommand = new MySqlCommand("DELETE FROM mytable WHERE id=@id", conn); + + da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name"); + + da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name"); + da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original; + + da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original; + } + + + + + + Initializes a new instance of the class with + a and a connection string. + + A that is a SQL SELECT statement or stored procedure to + be used by the property of the . + The connection string + + When an instance of is created, + the following read/write properties are set to the following initial + values. + + + + Properties + Initial Value + + + + + + + MissingMappingAction.Passthrough + + + + + + + + MissingSchemaAction.Add + + + + + You can change the value of any of these properties through a separate call + to the property. + + + The following example creates a and sets some of + its properties. + + Public Sub CreateSqlDataAdapter() + Dim da As MySqlDataAdapter = New MySqlDataAdapter("SELECT id, name FROM mytable", "Data Source=localhost;database=test") + Dim conn As MySqlConnection = da.SelectCommand.Connection + da.MissingSchemaAction = MissingSchemaAction.AddWithKey + + da.InsertCommand = New MySqlCommand("INSERT INTO mytable (id, name) " & _ + "VALUES (@id, @name)", conn) + da.UpdateCommand = New MySqlCommand("UPDATE mytable SET id=@id, name=@name " & _ + "WHERE id=@oldId", conn) + da.DeleteCommand = New MySqlCommand("DELETE FROM mytable WHERE id=@id", conn) + + da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name") + + da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name") + da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original + + da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original + End Sub + + + public static void CreateSqlDataAdapter() + { + MySqlDataAdapter da = new MySqlDataAdapter("SELECT id, name FROM mytable", "Data Source=localhost;database=test"); + MySqlConnection conn = da.SelectCommand.Connection; + da.MissingSchemaAction = MissingSchemaAction.AddWithKey; + + da.InsertCommand = new MySqlCommand("INSERT INTO mytable (id, name) " + + "VALUES (@id, @name)", conn); + da.UpdateCommand = new MySqlCommand("UPDATE mytable SET id=@id, name=@name " + + "WHERE id=@oldId", conn); + da.DeleteCommand = new MySqlCommand("DELETE FROM mytable WHERE id=@id", conn); + + da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name"); + + da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name"); + da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original; + + da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original; + } + + + + + + Gets or sets a SQL statement or stored procedure used to delete records from the data set. + + A used during to delete records in the + database that correspond to deleted rows in the . + + + During , if this property is not set and primary key information + is present in the , the DeleteCommand can be generated + automatically if you set the property and use the + . Then, any additional commands that you do not set are + generated by the MySqlCommandBuilder. This generation logic requires key column + information to be present in the DataSet. + + + When DeleteCommand is assigned to a previously created , + the MySqlCommand is not cloned. The DeleteCommand maintains a reference + to the previously created MySqlCommand object. + + + The following example creates a and sets the + and DeleteCommand properties. It assumes you have already + created a object. + + Public Shared Function CreateCustomerAdapter(conn As MySqlConnection) As MySqlDataAdapter + + Dim da As MySqlDataAdapter = New MySqlDataAdapter() + Dim cmd As MySqlCommand + Dim parm As MySqlParameter + + ' Create the SelectCommand. + cmd = New MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn) + + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15) + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15) + + da.SelectCommand = cmd + + ' Create the DeleteCommand. + cmd = New MySqlCommand("DELETE FROM mytable WHERE id=@id", conn) + + parm = cmd.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id") + parm.SourceVersion = DataRowVersion.Original + + da.DeleteCommand = cmd + + Return da + End Function + + + public static MySqlDataAdapter CreateCustomerAdapter(MySqlConnection conn) + { + MySqlDataAdapter da = new MySqlDataAdapter(); + MySqlCommand cmd; + MySqlParameter parm; + + // Create the SelectCommand. + cmd = new MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn); + + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15); + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15); + + da.SelectCommand = cmd; + + // Create the DeleteCommand. + cmd = new MySqlCommand("DELETE FROM mytable WHERE id=@id", conn); + + parm = cmd.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id"); + parm.SourceVersion = DataRowVersion.Original; + + da.DeleteCommand = cmd; + + return da; + } + + + + + + Gets or sets a SQL statement or stored procedure used to insert records into the data set. + + A used during to insert records into the + database that correspond to new rows in the . + + + During , if this property is not set and primary key information + is present in the , the InsertCommand can be generated + automatically if you set the property and use the + . Then, any additional commands that you do not set are + generated by the MySqlCommandBuilder. This generation logic requires key column + information to be present in the DataSet. + + + When InsertCommand is assigned to a previously created , + the MySqlCommand is not cloned. The InsertCommand maintains a reference + to the previously created MySqlCommand object. + + + If execution of this command returns rows, these rows may be added to the DataSet + depending on how you set the property of the MySqlCommand object. + + + The following example creates a and sets the + and InsertCommand properties. It assumes you have already + created a object. + + Public Shared Function CreateCustomerAdapter(conn As MySqlConnection) As MySqlDataAdapter + + Dim da As MySqlDataAdapter = New MySqlDataAdapter() + Dim cmd As MySqlCommand + Dim parm As MySqlParameter + + ' Create the SelectCommand. + cmd = New MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn) + + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15) + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15) + + da.SelectCommand = cmd + + ' Create the InsertCommand. + cmd = New MySqlCommand("INSERT INTO mytable (id,name) VALUES (@id, @name)", conn) + + cmd.Parameters.Add( "@id", MySqlDbType.VarChar, 15, "id" ) + cmd.Parameters.Add( "@name", MySqlDbType.VarChar, 15, "name" ) + da.InsertCommand = cmd + + Return da + End Function + + + public static MySqlDataAdapter CreateCustomerAdapter(MySqlConnection conn) + { + MySqlDataAdapter da = new MySqlDataAdapter(); + MySqlCommand cmd; + MySqlParameter parm; + + // Create the SelectCommand. + cmd = new MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn); + + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15); + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15); + + da.SelectCommand = cmd; + + // Create the InsertCommand. + cmd = new MySqlCommand("INSERT INTO mytable (id,name) VALUES (@id,@name)", conn); + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15, "id" ); + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15, "name" ); + + da.InsertCommand = cmd; + + return da; + } + + + + + + Gets or sets a SQL statement or stored procedure used to select records in the data source. + + A used during to select records from the + database for placement in the . + + + When SelectCommand is assigned to a previously created , + the MySqlCommand is not cloned. The SelectCommand maintains a reference to the + previously created MySqlCommand object. + + + If the SelectCommand does not return any rows, no tables are added to the + , and no exception is raised. + + + The following example creates a and sets the + and InsertCommand properties. It assumes you have already + created a object. + + Public Shared Function CreateCustomerAdapter(conn As MySqlConnection) As MySqlDataAdapter + + Dim da As MySqlDataAdapter = New MySqlDataAdapter() + Dim cmd As MySqlCommand + Dim parm As MySqlParameter + + ' Create the SelectCommand. + cmd = New MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn) + + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15) + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15) + + da.SelectCommand = cmd + + ' Create the InsertCommand. + cmd = New MySqlCommand("INSERT INTO mytable (id,name) VALUES (@id, @name)", conn) + + cmd.Parameters.Add( "@id", MySqlDbType.VarChar, 15, "id" ) + cmd.Parameters.Add( "@name", MySqlDbType.VarChar, 15, "name" ) + da.InsertCommand = cmd + + Return da + End Function + + + public static MySqlDataAdapter CreateCustomerAdapter(MySqlConnection conn) + { + MySqlDataAdapter da = new MySqlDataAdapter(); + MySqlCommand cmd; + MySqlParameter parm; + + // Create the SelectCommand. + cmd = new MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn); + + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15); + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15); + + da.SelectCommand = cmd; + + // Create the InsertCommand. + cmd = new MySqlCommand("INSERT INTO mytable (id,name) VALUES (@id,@name)", conn); + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15, "id" ); + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15, "name" ); + + da.InsertCommand = cmd; + + return da; + } + + + + + + Gets or sets a SQL statement or stored procedure used to updated records in the data source. + + A used during to update records in the + database with data from the . + + + During , if this property is not set and primary key information + is present in the , the UpdateCommand can be generated + automatically if you set the property and use the + . Then, any additional commands that you do not set are + generated by the MySqlCommandBuilder. This generation logic requires key column + information to be present in the DataSet. + + + When UpdateCommand is assigned to a previously created , + the MySqlCommand is not cloned. The UpdateCommand maintains a reference + to the previously created MySqlCommand object. + + + If execution of this command returns rows, these rows may be merged with the DataSet + depending on how you set the property of the MySqlCommand object. + + + The following example creates a and sets the + and UpdateCommand properties. It assumes you have already + created a object. + + Public Shared Function CreateCustomerAdapter(conn As MySqlConnection) As MySqlDataAdapter + + Dim da As MySqlDataAdapter = New MySqlDataAdapter() + Dim cmd As MySqlCommand + Dim parm As MySqlParameter + + ' Create the SelectCommand. + cmd = New MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn) + + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15) + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15) + + da.SelectCommand = cmd + + ' Create the UpdateCommand. + cmd = New MySqlCommand("UPDATE mytable SET id=@id, name=@name WHERE id=@oldId", conn) + + cmd.Parameters.Add( "@id", MySqlDbType.VarChar, 15, "id" ) + cmd.Parameters.Add( "@name", MySqlDbType.VarChar, 15, "name" ) + + parm = cmd.Parameters.Add("@oldId", MySqlDbType.VarChar, 15, "id") + parm.SourceVersion = DataRowVersion.Original + + da.UpdateCommand = cmd + + Return da + End Function + + + public static MySqlDataAdapter CreateCustomerAdapter(MySqlConnection conn) + { + MySqlDataAdapter da = new MySqlDataAdapter(); + MySqlCommand cmd; + MySqlParameter parm; + + // Create the SelectCommand. + cmd = new MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn); + + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15); + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15); + + da.SelectCommand = cmd; + + // Create the UpdateCommand. + cmd = new MySqlCommand("UPDATE mytable SET id=@id, name=@name WHERE id=@oldId", conn); + cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15, "id" ); + cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15, "name" ); + + parm = cmd.Parameters.Add( "@oldId", MySqlDbType.VarChar, 15, "id" ); + parm.SourceVersion = DataRowVersion.Original; + + da.UpdateCommand = cmd; + + return da; + } + + + + + + Open connection if it was closed. + Necessary to workaround "connection must be open and valid" error + with batched updates. + + Row state + list of opened connections + If connection is opened by this function, the list is updated + + true if connection was opened + + + + Overridden. See . + + + + + + + + + + Overridden. See . + + + + + + + + + + Overridden. Raises the RowUpdating event. + + A MySqlRowUpdatingEventArgs that contains the event data. + + + + Overridden. Raises the RowUpdated event. + + A MySqlRowUpdatedEventArgs that contains the event data. + + + + Async version of Fill + + Dataset to use + int + + + + Async version of Fill + + Datatable to use + int + + + + Async version of Fill + + DataSet to use + Source table + int + + + + Async version of Fill + + Datatable to use + DataReader to use + int + + + + Async version of Fill + + DataTable to use + DbCommand to use + Command Behavior + int + + + + Async version of Fill + + Start record + Max records + DataTable[] to use + int + + + + Async version of Fill + + DataSet to use + Start record + Max records + Source table + int + + + + Async version of Fill + + DataSet to use + Source table + DataReader to use + Start record + Max records + + + + + Async version of Fill + + DataTable[] to use + Start record + Max records + DbCommand to use + Command Behavior + + + + + Async version of Fill + + DataSet to use + Start record + Max records + Source table + DbCommand to use + Command Behavior + + + + + Async version of FillSchema + + DataSet to use + Schema Type + DataTable[] + + + + Async version of FillSchema + + DataSet to use + Schema Type + Source Table + DataTable[] + + + + Async version of FillSchema + + DataSet to use + Schema Type + Source Table + DataReader to use + DataTable[] + + + + Async version of FillSchema + + DataSet to use + Schema Type + DBCommand to use + Source Table + Command Behavior + DataTable[] + + + + Async version of FillSchema + + DataTable to use + Schema Type + DataTable + + + + Async version of FillSchema + + DataTable to use + Schema Type + DataReader to use + DataTable + + + + Async version of FillSchema + + DataTable to use + Schema Type + DBCommand to use + Command Behavior + DataTable + + + + Async version of Update + + DataRow[] to use + int + + + + Async version of Update + + DataSet to use + int + + + + Async version of Update + + DataTable to use + int + + + + Async version of Update + + DataRow[] to use + Data Table Mapping + int + + + + Async version of Update + + DataSet to use + Source Table + + + + + Represents the method that will handle the event of a . + + + + + Represents the method that will handle the event of a . + + + + + Provides data for the RowUpdating event. This class cannot be inherited. + + + + + Initializes a new instance of the MySqlRowUpdatingEventArgs class. + + The to + . + The to execute during . + One of the values that specifies the type of query executed. + The sent through an . + + + + Gets or sets the MySqlCommand to execute when performing the Update. + + + + + Provides data for the RowUpdated event. This class cannot be inherited. + + + + + Initializes a new instance of the MySqlRowUpdatedEventArgs class. + + The sent through an . + The executed when is called. + One of the values that specifies the type of query executed. + The sent through an . + + + + Gets or sets the MySqlCommand executed when Update is called. + + + + + Enables the provider to help ensure that a user has a security level adequate for accessing data. + + + + + Adds a new connection string with set of restricted keywords to the MySqlClientPermission object + + Settings to be used for the connection + Keywords to define the restrictions + KeyRestrictionBehavior to be used + + + + Returns MySqlClientPermission as an IPermission + + + + + + Associates a security action with a custom security attribute. + + + + + Represents a section within a configuration file. + + + + + Gets the MySQL configuations associated to the current configuration. + + + + + Gets a collection of the exception interceptors available in the current configuration. + + + + + Gets a collection of the command interceptors available in the current configuration. + + + + + Gets a collection of the authentication plugins available in the current configuration. + + + + + Gets or sets the replication configurations. + + + + + Defines the configurations allowed for an authentication plugin. + + + + + Gets or sets the name of the authentication plugin. + + + + + Gets or sets the type of the authentication plugin. + + + + + Defines the configurations allowed for an interceptor. + + + + + Gets or sets the name of the interceptor. + + + + + Gets or sets the type of the interceptor. + + + + + Represents a generic configuration element. + + + + + + Gets an enumerator that iterates through the returned list. + + An enumerator that iterates through the returned list. + + + + Helper class that makes it easier to work with the provider. + + + + + Async version of ExecuteDataRow + + Settings to be used for the connection + Command to execute + Parameters to use for the command + DataRow containing the first row of the resultset + + + + Executes a single SQL command and returns the first row of the resultset. A new MySqlConnection object + is created, opened, and closed during this method. + + Settings to be used for the connection + Command to execute + Parameters to use for the command + DataRow containing the first row of the resultset + + + + Executes a single SQL command and returns the resultset in a . + A new MySqlConnection object is created, opened, and closed during this method. + + Settings to be used for the connection + Command to execute + containing the resultset + + + + Executes a single SQL command and returns the resultset in a . + A new MySqlConnection object is created, opened, and closed during this method. + + Settings to be used for the connection + Command to execute + Parameters to use for the command + containing the resultset + + + + Executes a single SQL command and returns the resultset in a . + The state of the object remains unchanged after execution + of this method. + + object to use + Command to execute + containing the resultset + + + + Executes a single SQL command and returns the resultset in a . + The state of the object remains unchanged after execution + of this method. + + object to use + Command to execute + Parameters to use for the command + containing the resultset + + + + Updates the given table with data from the given + + Settings to use for the update + Command text to use for the update + containing the new data to use in the update + Tablename in the dataset to update + + + + Async version of ExecuteDataset + + Settings to be used for the connection + Command to execute + containing the resultset + + + + Async version of ExecuteDataset + + Settings to be used for the connection + Command to execute + Parameters to use for the command + containing the resultset + + + + Async version of ExecuteDataset + + object to use + Command to execute + containing the resultset + + + + Async version of ExecuteDataset + + object to use + Command to execute + Parameters to use for the command + containing the resultset + + + + Async version of UpdateDataset + + Settings to use for the update + Command text to use for the update + containing the new data to use in the update + Tablename in the dataset to update + + + + Executes a single command against a MySQL database. The is assumed to be + open when the method is called and remains open after the method completes. + + object to use + SQL command to be executed + Array of objects to use with the command. + + + + + Executes a single command against a MySQL database. A new is created + using the given. + + to use + SQL command to be executed + Array of objects to use with the command. + + + + + Executes a single command against a MySQL database, possibly inside an existing transaction. + + object to use for the command + object to use for the command + Command text to use + Array of objects to use with the command + True if the connection should be preserved, false if not + object ready to read the results of the command + + + + Executes a single command against a MySQL database. + + Settings to use for this command + Command text to use + object ready to read the results of the command + + + + Executes a single command against a MySQL database. + + object to use for the command + Command text to use + object ready to read the results of the command + + + + Executes a single command against a MySQL database. + + Settings to use for this command + Command text to use + Array of objects to use with the command + object ready to read the results of the command + + + + Executes a single command against a MySQL database. + + Connection to use for the command + Command text to use + Array of objects to use with the command + object ready to read the results of the command + + + + Execute a single command against a MySQL database. + + Settings to use for the update + Command text to use for the update + The first column of the first row in the result set, or a null reference if the result set is empty. + + + + Execute a single command against a MySQL database. + + Settings to use for the command + Command text to use for the command + Parameters to use for the command + The first column of the first row in the result set, or a null reference if the result set is empty. + + + + Execute a single command against a MySQL database. + + object to use + Command text to use for the command + The first column of the first row in the result set, or a null reference if the result set is empty. + + + + Execute a single command against a MySQL database. + + object to use + Command text to use for the command + Parameters to use for the command + The first column of the first row in the result set, or a null reference if the result set is empty. + + + + Escapes the string. + + The string to escape + The string with all quotes escaped. + + + + Async version of ExecuteNonQuery + + object to use + SQL command to be executed + Array of objects to use with the command. + Rows affected + + + + Async version of ExecuteNonQuery + + to use + SQL command to be executed + Array of objects to use with the command. + Rows affected + + + + Async version of ExecuteReader + + object to use for the command + object to use for the command + Command text to use + Array of objects to use with the command + True if the connection should be preserved, false if not + object ready to read the results of the command + + + + Async version of ExecuteReader + + Settings to use for this command + Command text to use + object ready to read the results of the command + + + + Async version of ExecuteReader + + object to use for the command + Command text to use + object ready to read the results of the command + + + + Async version of ExecuteReader + + Settings to use for this command + Command text to use + Array of objects to use with the command + object ready to read the results of the command + + + + Async version of ExecuteReader + + Connection to use for the command + Command text to use + Array of objects to use with the command + object ready to read the results of the command + + + + Async version of ExecuteScalar + + Settings to use for the update + Command text to use for the update + The first column of the first row in the result set, or a null reference if the result set is empty. + + + + Async version of ExecuteScalar + + Settings to use for the command + Command text to use for the command + Parameters to use for the command + The first column of the first row in the result set, or a null reference if the result set is empty. + + + + Async version of ExecuteScalar + + object to use + Command text to use for the command + The first column of the first row in the result set, or a null reference if the result set is empty. + + + + Async version of ExecuteScalar + + object to use + Command text to use for the command + Parameters to use for the command + The first column of the first row in the result set, or a null reference if the result set is empty. + + + + Represents a parameter to a , This class cannot be inherited. + + + + + Gets or sets the to use when loading . + + + + + Initializes a new instance of the class with the parameter name, the , the size, and the source column name. + + The name of the parameter to map. + One of the values. + The length of the parameter. + The name of the source column. + + + + Initializes a new instance of the class with the parameter name and a value of the new MySqlParameter. + + The name of the parameter to map. + An that is the value of the . + + + + Initializes a new instance of the class with the parameter name and the data type. + + The name of the parameter to map. + One of the values. + + + + Initializes a new instance of the class with the parameter name, the , and the size. + + The name of the parameter to map. + One of the values. + The length of the parameter. + + + + Initializes a new instance of the class with the parameter name, the type of the parameter, the size of the parameter, a , the precision of the parameter, the scale of the parameter, the source column, a to use, and the value of the parameter. + + The name of the parameter to map. + One of the values. + The length of the parameter. + One of the values. + true if the value of the field can be null, otherwise false. + The total number of digits to the left and right of the decimal point to which is resolved. + The total number of decimal places to which is resolved. + The name of the source column. + One of the values. + An that is the value of the . + + + + + Gets or sets a value indicating whether the parameter is input-only, output-only, bidirectional, or a stored procedure return value parameter. + As of MySql version 4.1 and earlier, input-only is the only valid choice. + + + + + Gets or sets a value indicating whether the parameter accepts null values. + + + + + Gets or sets the of the parameter. + + + + + Gets or sets the maximum number of digits used to represent the property. + + + + + Gets or sets the number of decimal places to which is resolved. + + + + + Gets or sets the maximum size, in bytes, of the data within the column. + + + + + Gets or sets the value of the parameter. + + + + + Returns the possible values for this parameter if this parameter is of type + SET or ENUM. Returns null otherwise. + + + + + Gets or sets the name of the source column that is mapped to the and used for loading or returning the . + + + + + Sets or gets a value which indicates whether the source column is nullable. + This allows to correctly generate Update statements + for nullable columns. + + + + + Gets or sets the of the parameter. + + + + + Overridden. Gets a string containing the . + + + + + + Resets the DbType property to its original settings. + + + + + Represents a collection of parameters relevant to a as well as their respective mappings to columns in a . This class cannot be inherited. + + + The number of the parameters in the collection must be equal to the number of + parameter placeholders within the command text, or an exception will be generated. + + The following example creates multiple instances of + through the MySqlParameterCollection collection within the . + These parameters are used to select data within the data source and place the data in + the . This code assumes that a DataSet and a MySqlDataAdapter + have already been created with the appropriate schema, commands, and connection. + + Public Sub AddParameters() + ' ... + ' create myDataSet and myDataAdapter + ' ... + myDataAdapter.SelectCommand.Parameters.Add("@CategoryName", MySqlDbType.VarChar, 80).Value = "toasters" + myDataAdapter.SelectCommand.Parameters.Add("@SerialNum", MySqlDbType.Long).Value = 239 + + myDataAdapter.Fill(myDataSet) + End Sub 'AddSqlParameters + + + public void AddSqlParameters() + { + // ... + // create myDataSet and myDataAdapter + // ... + + myDataAdapter.SelectCommand.Parameters.Add("@CategoryName", MySqlDbType.VarChar, 80).Value = "toasters"; + myDataAdapter.SelectCommand.Parameters.Add("@SerialNum", MySqlDbType.Long).Value = 239; + myDataAdapter.Fill(myDataSet); + + } + + + + + + Gets a value that indicates whether the + has a fixed size. + + + + + Gets a value that indicates whether the + is read-only. + + + + + Gets a value that indicates whether the + is synchronized. + + + + + Gets the number of MySqlParameter objects in the collection. + + + + + Gets the at the specified index. + + Gets the with a specified attribute. + [C#] In C#, this property is the indexer for the class. + + + + + Gets the with the specified name. + + + + + Adds a to the with the parameter name, the data type, the column length, and the source column name. + + The name of the parameter. + One of the values. + The length of the column. + The name of the source column. + The newly added object. + + + + Adds the specified object to the . + + The to add to the collection. + The newly added object. + + + + Adds a to the given the specified parameter name and value. + + The name of the parameter. + The of the to add to the collection. + The newly added object. + + + + Adds a parameter and its value. + + The name of the parameter. + The value of the parameter. + A MySqlParameter object representing the provided values. + + + + Adds a to the given the parameter name and the data type. + + The name of the parameter. + One of the values. + The newly added object. + + + + Adds a to the with the parameter name, the data type, and the column length. + + The name of the parameter. + One of the values. + The length of the column. + The newly added object. + + + + Removes all items from the collection. + + + + + Gets the location of the in the collection with a specific parameter name. + + The name of the object to retrieve. + The zero-based location of the in the collection. + + + + Gets the location of a in the collection. + + The object to locate. + The zero-based location of the in the collection. + Gets the location of a in the collection. + + + + This method will update all the items in the index hashes when + we insert a parameter somewhere in the middle + + + + + + + Adds an array of values to the end of the . + + + + + + Retrieve the parameter with the given name. + + + + + + + Adds the specified object to the . + + The to add to the collection. + The index of the new object. + + + + Gets a value indicating whether a with the specified parameter name exists in the collection. + + The name of the object to find. + true if the collection contains the parameter; otherwise, false. + + + + Gets a value indicating whether a MySqlParameter exists in the collection. + + The value of the object to find. + true if the collection contains the object; otherwise, false. + Gets a value indicating whether a exists in the collection. + + + + Copies MySqlParameter objects from the MySqlParameterCollection to the specified array. + + + + + + + Returns an enumerator that iterates through the . + + + + + + Inserts a MySqlParameter into the collection at the specified index. + + + + + + + Removes the specified MySqlParameter from the collection. + + + + + + Removes the specified from the collection using the parameter name. + + The name of the object to retrieve. + + + + Removes the specified from the collection using a specific index. + + The zero-based index of the parameter. + Removes the specified from the collection. + + + + Gets an object that can be used to synchronize access to the + . + + + + + Represents a single(not nested) TransactionScope + + + + + Defines security permissions assigned to a MySQL object. + + + + + Creates a set of permissions. + + A flag indicating if the reflection permission should be included. + A PermissionSet object representing a collection of permissions. + + + + BaseCommandInterceptor is the base class that should be used for all userland + command interceptors + + + + + Gets the active connection. + + + + + Executes an SQL statements that returns a scalar value such as a calculation. + + The SQL statement to execute. + A scalar value that represents the result returned by the execution of the SQL statement. + false. + This method is intended to be overriden. + + + + Executes an SQL statement that returns the number of affected rows. + + The SQL statement to execute. + The number of affected rows. + false. + + + + Executes an SQL statement that will return a resultset. + + The SQL statement to execute. + A value that describes the results of the query and its effect on the database. + A MySqlDataReader object containing the result of the statement execution. + + + + + Sets the active connection. + + The active connection. + + + + CommandInterceptor is the "manager" class that keeps the list of registered interceptors + for the given connection. + + + + + BaseExceptionInterceptor is the base class that should be used for all userland + exception interceptors + + + + + Returns the received exception. + + The exception to be returned. + The exception originally received. + + + + Gets the active connection. + + + + + Initilizes this object by setting the active connection. + + The connection to become active. + + + + StandardExceptionInterceptor is the standard interceptor that simply throws the exception. + It is the default action. + + + + + ExceptionInterceptor is the "manager" class that keeps the list of registered interceptors + for the given connection. + + + + + Interceptor is the base class for the "manager" classes such as ExceptionInterceptor, + CommandInterceptor, etc + + + + + Return schema information about procedures and functions + Restrictions supported are: + schema, name, type + + + + + + + Return schema information about parameters for procedures and functions + Restrictions supported are: + schema, name, type, parameter name + + + + + Initializes a new row for the procedure parameters table. + + + + + Parses out the elements of a procedure parameter data type. + + + + + Implementation of memcached binary client protocol. + + According to http://code.google.com/p/memcached/wiki/BinaryProtocolRevamped + + + + Sends an store command (add, replace, set). + + + + + + + + + + + Sends a get command. + + + + + + + + + Sends a delete command. + + + + + + + + Sends a command without args (like flush). + + + + + + + + Sends a command with amount (INCR/DECR) + + + + + + + + + Encodes in the binary protocol the a command of the kind set, add or replace. + + + + + + + If true applies to set, add or replace commands; if false applies to append and prepend commands. + + + + + An interface of the client memcached protocol. This class is abstract for + implementation of the Memcached client interface see for the + text protocol version and for the binary protocol version. + + + + + The port used by the connection. + + + + + The server DNS or IP address used by the connection. + + + + + The network stream used by the connecition. + + + + + Factory method for creating instances of that implement a connection with the requested features. + The connection object returned must be explicitely opened see method . + + The Memcached server DNS or IP address. + The port for the Memcached server + A set of flags indicating characterestics requested. + An instance of a client connection ready to be used. + + + + Opens the client connection. + + + + + Closes the client connection. + + + + + Adds a new key/value pair with the given TimeSpan expiration. + + The key for identifying the entry. + The data to associate with the key. + The interval of timespan, use TimeSpan.Zero for no expiration. + + + + Appens the data to the existing data for the associated key. + + The key for identifying the entry. + The data to append with the data associated with the key. + + + + Executes the Check-and-set Memcached operation. + + The key for identifying the entry. + The data to use in the CAS. + The interval of timespan, use TimeSpan.Zero for no expiration. + The CAS unique value to use. + + + + + Decrements the value associated with a key by the given amount. + + The key associated with the value to decrement. + The amount to decrement the value. + + + + Removes they pair key/value given the specified key. + + + + + + Removes all entries from the storage, effectively invalidating the whole cache. + + The interval after which the cache will be cleaned. Can be TimeSpan.Zero for immediately. + + + + Get the key/value pair associated with a given key. + + The key for which to returm the key/value. + The key/value associated with the key or a MemcachedException if it does not exists. + + + + Increments the value associated with a key by the given amount. + + The key associated with the value to increment. + The amount to increment the value. + + + + Prepends the data to the existing data for the associated key. + + The key for identifying the entry. + The data to append with the data associated with the key. + + + + Replaces the value associated with the given key with another value. + + The key for identifying the entry. + The data to replace the value associated with the key. + The interval of timespan, use TimeSpan.Zero for no expiration. + + + + Set the value of a given key. + + The key for identifying the entry. + The data to associate with the given key. + The interval of timespan, use TimeSpan.Zero for no expiration. + + + + A set of flags for requesting new instances of connections + + + + + Requests a connection implememting the text protocol. + + + + + Requests a connection implementing the binary protocol. + + + + + Requests a TCP connection. Currently UDP is not supported. + + + + + The base exception class for all Memcached exceptions. + + + + + Implementation of the Memcached text client protocol. + + + + + Sends a command to the memcached server. + + + + + + + This version is for commands that take a key, data, expiration and casUnique. + + + + Sends a command to the memcached server. + + + + + + This version is for commands that take a key, data and expiration + + + + Send a command to memcached server. + + + + + This version is for commands that don't need flags neither expiration fields. + + + + Sends a command to the server. + + + + This version is for commands that only require a key + + + + Sends a command to the server. + + + + + This version is for commands that only require a key and an integer value. + + + + Sends a command to the server. + + + + This version is for commands that only require a key and expiration. + + + + Abstract class that provides common functionality for connection options that apply for all protocols. + + + + + Gets or sets the name of the server. + + The server. + + + + Gets or sets the name of the database for the initial connection. + + + + + Gets or sets the protocol that should be used for communicating + with MySQL. + + + + + Gets or sets the port number that is used when the socket + protocol is being used. + + + + + Gets or sets the connection timeout. + + + + + Gets or sets the user ID that should be used to connect with. + + + + + Gets or sets the password that should be used to make a connection. + + + + + Gets or sets the path to a certificate in PKCS#12 format (.pfx). + + + + + Gets or sets the password associated to the certificate file. + + + + + Gets or sets the certificate store location for client certificates. + + + + + Gets or sets a certificate thumbprint that can be used together with a certificate to ensure correct identification. + + + + + Indicates whether to use SSL connections and how to handle server certificate errors. + + + + + Gets or sets the idle connection time measured in seconds. + + + + + Gets or sets the character set that should be used for sending queries to the server. + + + + + Gets or sets the authentication mechanism to use with X Protocol connections. + + + + + Gets or sets the path to a local file that contains a list of trusted Certificate Authorities. + + + + + Gets or sets the path to a local file that contains certificate revocation lists. + + + + + Gets the connection string with or without the password. + + Flag to indicate if the password should be included in the connection string. + The connection string associated to this object. + + + + Analyzes the connection string for potential duplicated or invalid connection options. + + Connection string. + + + + Represents a set of methods for creating instances of the MySQL client implementation of the data source classes. + + + + + Gets an instance of the . + This can be used to retrieve strongly typed data objects. + + + + + Returns a strongly typed instance. + + A new strongly typed instance of DbCommand. + + + + Returns a strongly typed instance. + + A new strongly typed instance of DbConnection. + + + + Returns a strongly typed instance. + + A new strongly typed instance of DbParameter. + + + + Returns a strongly typed instance. + + A new strongly typed instance of DbConnectionStringBuilder. + + + + Provide a simple caching layer + + + + + Aids in the creation of connection strings by exposing the connection options as properties. + Contains connection options specific to the Classic protocol. + + + + + Gets or sets the name of the named pipe that should be used + for communicating with MySQL. + + + + + Gets or sets a boolean value that indicates whether this connection + should use compression. + + + + + Gets or sets a boolean value that indicates whether this connection will allow + commands to send multiple SQL statements in one execution. + + + + + Gets or sets a boolean value that indicates whether logging is enabled. + + + + + Gets or sets the base name of the shared memory objects used to + communicate with MySQL when the shared memory protocol is being used. + + + + + Gets or sets the default command timeout. + + + + + Gets or sets a boolean value that indicates if the password should be persisted + in the connection string. + + + + + Gets or sets a boolean value that indicates if Windows authentication should be used. + + + + + Gets or sets a boolean value that indicates whether the RSA public key should be retrieved from the server. + + + + + Gets or sets a boolean value that indicates if zero date time values are supported. + + + + + Gets or sets a boolean value indicating if zero datetime values should be + converted to DateTime.MinValue. + + + + + Gets or sets a boolean value indicating if the Usage Advisor should be enabled. + + + + + Gets or sets the size of the stored procedure cache. + + + + + Gets or sets a boolean value indicating if the permon hooks should be enabled. + + + + + Gets or sets a boolean value indicating if calls to Prepare() should be ignored. + + + + + Gets or sets a boolean value that indicates if an opened connection should particiapte in the current scope. + + + + + Gets or sets a boolean value that indicates if security asserts must be included. + + + + + Gets or sets a boolean value that indicates if column binary flags set by the server are ignored. + + + + + Gets or sets a boolean value that indicates if TINYINT(1) shound be treated as a BOOLEAN. + + + + + Gets or sets a boolean value that indicates if the provider expects user variables in the SQL. + + + + + Gets or sets a boolean value that indicates if the session should be interactive. + + + + + Gets or sets a boolean value that indicates if server functions should be treated as returning a string. + + + + + Gets or sets a boolean value that indicates if the server should report affected rows instead of found rows. + + + + + + + + + + Gets or sets a boolean value that indicates if items of data type BINARY(16) should be treated as guids. + + + + + Gets or sets a boolean value that indicates if caching of TableDirect commands is enabled. + + + + + Gets or sets the seconds for how long a TableDirect result should be cached. + + + + + Gets or sets a boolean value that indicates if stored routine parameters should be checked against the server. + + + + + Gets or sets a boolean value that indicates if this connection will use replication. + + + + + Gets or sets the list of interceptors that can triage thrown MySqlExceptions. + + + + + Gets or sets the list of interceptors that can intercept command operations. + + + + + Gets or sets the lifetime of a pooled connection. + + + + + Gets or sets a boolean value indicating if connection pooling is enabled. + + + + + Gets the minimum connection pool size. + + + + + Gets or sets the maximum connection pool setting. + + + + + Gets or sets a boolean value indicating if the connection should be reset when retrieved + from the pool. + + + + + Gets or sets a boolean value that indicates whether the server variable settings are updated by a SHOW VARIABLES command each time a pooled connection is returned. + + + + + Indicates whether the driver should treat binary blobs as UTF8 + + + + + Gets or sets the pattern that matches the columns that should be treated as UTF8 + + + + + Gets or sets the pattern that matches the columns that should not be treated as UTF8 + + + + + Gets or sets a boolean value that indicates if the command timeout of EFMySqlCommand should be enforced to the value provided in the DefaultCommandTimeout property. + + + + + Summary description for ClientParam. + + + + + DB Operations Code + + + + + Specifies MySQL specific data type of a field, property, for use in a . + + + + + + A fixed precision and scale numeric value between -1038 + -1 and 10 38 -1. + + + + + The signed range is -128 to 127. The unsigned + range is 0 to 255. + + + + + A 16-bit signed integer. The signed range is + -32768 to 32767. The unsigned range is 0 to 65535 + + + + + Specifies a 24 (3 byte) signed or unsigned value. + + + + + A 32-bit signed integer + + + + + A 64-bit signed integer. + + + + + A small (single-precision) floating-point + number. Allowable values are -3.402823466E+38 to -1.175494351E-38, + 0, and 1.175494351E-38 to 3.402823466E+38. + + + + + A normal-size (double-precision) + floating-point number. Allowable values are -1.7976931348623157E+308 + to -2.2250738585072014E-308, 0, and 2.2250738585072014E-308 to + 1.7976931348623157E+308. + + + + + A timestamp. The range is '1970-01-01 00:00:00' to sometime in the + year 2037 + + + + + Date The supported range is '1000-01-01' to '9999-12-31'. + + + + + Time The range is '-838:59:59' to '838:59:59'. + + + + + DateTime The supported range is '1000-01-01 00:00:00' to + '9999-12-31 23:59:59'. + + + + + Datetime The supported range is '1000-01-01 00:00:00' to + '9999-12-31 23:59:59'. + + + + + A year in 2- or 4-digit format (default is 4-digit). The + allowable values are 1901 to 2155, 0000 in the 4-digit year + format, and 1970-2069 if you use the 2-digit format (70-69). + + + + + Obsolete Use Datetime or Date type + + + + + A variable-length string containing 0 to 65535 characters + + + + + Bit-field data type + + + + + JSON + + + + + New Decimal + + + + + An enumeration. A string object that can have only one value, + chosen from the list of values 'value1', 'value2', ..., NULL + or the special "" error value. An ENUM can have a maximum of + 65535 distinct values + + + + + A set. A string object that can have zero or more values, each + of which must be chosen from the list of values 'value1', 'value2', + ... A SET can have a maximum of 64 members. + + + + + A binary column with a maximum length of 255 (2^8 - 1) + characters + + + + + A binary column with a maximum length of 16777215 (2^24 - 1) bytes. + + + + + A binary column with a maximum length of 4294967295 or + 4G (2^32 - 1) bytes. + + + + + A binary column with a maximum length of 65535 (2^16 - 1) bytes. + + + + + A variable-length string containing 0 to 255 bytes. + + + + + A fixed-length string. + + + + + Geometric (GIS) data type. + + + + + Unsigned 8-bit value. + + + + + Unsigned 16-bit value. + + + + + Unsigned 24-bit value. + + + + + Unsigned 32-bit value. + + + + + Unsigned 64-bit value. + + + + + Fixed length binary string. + + + + + Variable length binary string. + + + + + A text column with a maximum length of 255 (2^8 - 1) characters. + + + + + A text column with a maximum length of 16777215 (2^24 - 1) characters. + + + + + A text column with a maximum length of 4294967295 or + 4G (2^32 - 1) characters. + + + + + A text column with a maximum length of 65535 (2^16 - 1) characters. + + + + + A guid column + + + + + Allows the user to specify the type of connection that should + be used. + + + + + TCP/IP style connection. Works everywhere. + + + + + Named pipe connection. Works only on Windows systems. + + + + + Unix domain socket connection. Works only with Unix systems. + + + + + Shared memory connection. Currently works only with Windows systems. + + + + + SSL options for connection. + + + + + Do not use SSL. + + + + + Always use SSL. Deny connection if server does not support SSL. + Do not perform server certificate validation. + This is the default SSL mode when the same isn't specified as part of the connection string. + + + + + Always use SSL. Validate server SSL certificate, but different host name mismatch. + + + + + Always use SSL and perform full certificate validation. + + + + + Specifies the connection types supported + + + + + Use TCP/IP sockets. + + + + + Use client library. + + + + + Use MySQL embedded server. + + + + + Defines the location of the certificate store. + + + + + Do not use certificate store. + + + + + Use certificate store for the current user. + + + + + User certificate store for the machine. + + + + + Specifies the authentication mechanism that should be used. + + + + + If SSL is enabled or Unix sockets are being used, sets PLAIN as the authentication mechanism; + otherwise, it tries to use MYSQL41 and then SHA256_MEMORY. + + + + + Authenticate using PLAIN. + + + + + Authenticate using MYSQL41. + + + + + Authenticate using EXTERNAL. + + + + + Authenticate using SHA256_MEMORY. + + + + + Defines waiting options that may be used with row locking options. + + + + + Waits until the blocking transaction releases the row lock. + + + + + Never waits to acquire a row lock. The query executes immediately, + failing with an error if a requested row is locked. + + + + + Never waits to acquire a row lock. The query executes immediately, + removing locked rows from the result set. + + + + + Collection of error codes that can be returned by the server + + + + + + + + + + + Error level + + + + + Error code + + + + + Error message + + + + + Provides a reference to error codes returned by MySQL. + + + + + ER_HASHCHK + + + + ER_NISAMCHK + + + + ER_NO + + + + ER_YES + + + The file couldn't be created. + ER_CANT_CREATE_FILE + + + The table couldn't be created. + ER_CANT_CREATE_TABLE + + + The database couldn't be created. + ER_CANT_CREATE_DB + + + The database couldn't be created, it already exists. + ER_DB_CREATE_EXISTS + + + The database couldn't be dropped, it doesn't exist. + ER_DB_DROP_EXISTS + + + The database couldn't be dropped, the file can't be deleted. + ER_DB_DROP_DELETE + + + The database couldn't be dropped, the directory can't be deleted. + ER_DB_DROP_RMDIR + + + The file couldn't be deleted. + ER_CANT_DELETE_FILE + + + The record couldn't be read from the system table. + ER_CANT_FIND_SYSTEM_REC + + + The status couldn't be retrieved. + ER_CANT_GET_STAT + + + The working directory couldn't be retrieved. + ER_CANT_GET_WD + + + The file couldn't be locked. + ER_CANT_LOCK + + + The file couldn't be opened. + ER_CANT_OPEN_FILE + + + The file couldn't be found. + ER_FILE_NOT_FOUND + + + The directory couldn't be read. + ER_CANT_READ_DIR + + + The working directory couldn't be entered. + ER_CANT_SET_WD + + + The record changed since it was last read. + ER_CHECKREAD + + + The disk is full. + ER_DISK_FULL + + + + There is already a key with the given values. + + + + An error occurred when closing the file. + ER_ERROR_ON_CLOSE + + + An error occurred when reading from the file. + ER_ERROR_ON_READ + + + An error occurred when renaming then file. + ER_ERROR_ON_RENAME + + + An error occurred when writing to the file. + ER_ERROR_ON_WRITE + + + The file is in use. + ER_FILE_USED + + + Sorting has been aborted. + ER_FILSORT_ABORT + + + The view doesn't exist. + ER_FORM_NOT_FOUND + + + Got the specified error from the table storage engine. + ER_GET_ERRNO + + + The table storage engine doesn't support the specified option. + ER_ILLEGAL_HA + + + + The specified key was not found. + + + + The file contains incorrect information. + ER_NOT_FORM_FILE + + + The key file is incorrect for the table, it should be repaired. + ER_NOT_KEYFILE + + + The key file is old for the table, it should be repaired. + ER_OLD_KEYFILE + + + The table is read-only + ER_OPEN_AS_READONLY + + + The server is out of memory, it should be restarted. + ER_OUTOFMEMORY + + + The server is out of sort-memory, the sort buffer size should be increased. + ER_OUT_OF_SORTMEMORY + + + An unexpected EOF was found when reading from the file. + ER_UNEXPECTED_EOF + + + Too many connections are open. + ER_CON_COUNT_ERROR + + + The server is out of resources, check if MySql or some other process is using all available memory. + ER_OUT_OF_RESOURCES + + + + Given when the connection is unable to successfully connect to host. + + + + The handshake was invalid. + ER_HANDSHAKE_ERROR + + + Access was denied for the specified user using the specified database. + ER_DBACCESS_DENIED_ERROR + + + + Normally returned when an incorrect password is given + + + + No database has been selected. + ER_NO_DB_ERROR + + + The command is unknown. + ER_UNKNOWN_COM_ERROR + + + The specified column cannot be NULL. + ER_BAD_NULL_ERROR + + + The specified database is not known. + + + The specified table already exists. + ER_TABLE_EXISTS_ERROR + + + The specified table is unknown. + ER_BAD_TABLE_ERROR + + + The specified column is ambiguous. + ER_NON_UNIQ_ERROR + + + The server is currently being shutdown. + ER_SERVER_SHUTDOWN + + + The specified columns is unknown. + ER_BAD_FIELD_ERROR + + + The specified column isn't in GROUP BY. + ER_WRONG_FIELD_WITH_GROUP + + + The specified columns cannot be grouped on. + ER_WRONG_GROUP_FIELD + + + There are sum functions and columns in the same statement. + ER_WRONG_SUM_SELECT + + + The column count doesn't match the value count. + ER_WRONG_VALUE_COUNT + + + The identifier name is too long. + ER_TOO_LONG_IDENT + + + The column name is duplicated. + ER_DUP_FIELDNAME + + + + Duplicate Key Name + + + + + Duplicate Key Entry + + + + The column specifier is incorrect. + ER_WRONG_FIELD_SPEC + + + An error occurred when parsing the statement. + ER_PARSE_ERROR + + + The statement is empty. + ER_EMPTY_QUERY + + + The table alias isn't unique. + ER_NONUNIQ_TABLE + + + The default value is invalid for the specified field. + ER_INVALID_DEFAULT + + + The table has multiple primary keys defined. + ER_MULTIPLE_PRI_KEY + + + Too many keys were defined for the table. + ER_TOO_MANY_KEYS + + + Too many parts to the keys were defined for the table. + ER_TOO_MANY_KEY_PARTS + + + The specified key is too long + ER_TOO_LONG_KEY + + + The specified key column doesn't exist in the table. + ER_KEY_COLUMN_DOES_NOT_EXITS + + + The BLOB column was used as a key, this can't be done. + ER_BLOB_USED_AS_KEY + + + The column length is too big for the specified column type. + ER_TOO_BIG_FIELDLENGTH + + + There can only be one auto-column, and it must be defined as a PK. + ER_WRONG_AUTO_KEY + + + The server is ready to accept connections. + ER_READY + + + + ER_NORMAL_SHUTDOWN + + + The server received the specified signal and is aborting. + ER_GOT_SIGNAL + + + The server shutdown is complete. + ER_SHUTDOWN_COMPLETE + + + The server is forcing close of the specified thread. + ER_FORCING_CLOSE + + + An error occurred when creating the IP socket. + ER_IPSOCK_ERROR + + + The table has no index like the one used in CREATE INDEX. + ER_NO_SUCH_INDEX + + + The field separator argument is not what is expected, check the manual. + ER_WRONG_FIELD_TERMINATORS + + + The BLOB columns must terminated, fixed row lengths cannot be used. + ER_BLOBS_AND_NO_TERMINATED + + + The text file cannot be read. + ER_TEXTFILE_NOT_READABLE + + + The specified file already exists. + ER_FILE_EXISTS_ERROR + + + Information returned by the LOAD statement. + ER_LOAD_INFO + + + Information returned by an UPDATE statement. + ER_ALTER_INFO + + + The prefix key is incorrect. + ER_WRONG_SUB_KEY + + + All columns cannot be removed from a table, use DROP TABLE instead. + ER_CANT_REMOVE_ALL_FIELDS + + + Cannot DROP, check that the column or key exists. + ER_CANT_DROP_FIELD_OR_KEY + + + Information returned by an INSERT statement. + ER_INSERT_INFO + + + The target table cannot be specified for update in FROM clause. + ER_UPDATE_TABLE_USED + + + The specified thread ID is unknown. + ER_NO_SUCH_THREAD + + + The thread cannot be killed, the current user is not the owner. + ER_KILL_DENIED_ERROR + + + No tables used in the statement. + ER_NO_TABLES_USED + + + Too many string have been used for the specified column and SET. + ER_TOO_BIG_SET + + + A unique filename couldn't be generated. + ER_NO_UNIQUE_LOGFILE + + + The specified table was locked with a READ lock, and can't be updated. + ER_TABLE_NOT_LOCKED_FOR_WRITE + + + The specified table was not locked with LOCK TABLES. + ER_TABLE_NOT_LOCKED + + + BLOB and Text columns cannot have a default value. + ER_BLOB_CANT_HAVE_DEFAULT + + + The specified database name is incorrect. + ER_WRONG_DB_NAME + + + The specified table name is incorrect. + ER_WRONG_TABLE_NAME + + + The SELECT command would examine more than MAX_JOIN_SIZE rows, check the WHERE clause and use SET SQL_BIG_SELECTS=1 or SET SQL_MAX_JOIN_SIZE=# if the SELECT is ok. + ER_TOO_BIG_SELECT + + + An unknown error occurred. + ER_UNKNOWN_ERROR + + + The specified procedure is unknown. + ER_UNKNOWN_PROCEDURE + + + The number of parameters provided for the specified procedure is incorrect. + ER_WRONG_PARAMCOUNT_TO_PROCEDURE + + + The parameters provided for the specified procedure are incorrect. + ER_WRONG_PARAMETERS_TO_PROCEDURE + + + The specified table is unknown. + ER_UNKNOWN_TABLE + + + The specified column has been specified twice. + ER_FIELD_SPECIFIED_TWICE + + + The group function has been incorrectly used. + ER_INVALID_GROUP_FUNC_USE + + + The specified table uses an extension that doesn't exist in this MySQL version. + ER_UNSUPPORTED_EXTENSION + + + The table must have at least one column. + ER_TABLE_MUST_HAVE_COLUMNS + + + The specified table is full. + ER_RECORD_FILE_FULL + + + The specified character set is unknown. + ER_UNKNOWN_CHARACTER_SET + + + Too many tables, MySQL can only use the specified number of tables in a JOIN. + ER_TOO_MANY_TABLES + + + Too many columns + ER_TOO_MANY_FIELDS + + + The row size is too large, the maximum row size for the used tables (not counting BLOBS) is specified, change some columns or BLOBS. + ER_TOO_BIG_ROWSIZE + + + A thread stack overrun occurred. Stack statistics are specified. + ER_STACK_OVERRUN + + + A cross dependency was found in the OUTER JOIN, examine the ON conditions. + ER_WRONG_OUTER_JOIN + + + The table handler doesn't support NULL in the given index, change specified column to be NOT NULL or use another handler. + ER_NULL_COLUMN_IN_INDEX + + + The specified user defined function cannot be loaded. + ER_CANT_FIND_UDF + + + The specified user defined function cannot be initialised. + ER_CANT_INITIALIZE_UDF + + + No paths are allowed for the shared library. + ER_UDF_NO_PATHS + + + The specified user defined function already exists. + ER_UDF_EXISTS + + + The specified shared library cannot be opened. + ER_CANT_OPEN_LIBRARY + + + The specified symbol cannot be found in the library. + ER_CANT_FIND_DL_ENTRY + + + The specified function is not defined. + ER_FUNCTION_NOT_DEFINED + + + The specified host is blocked because of too many connection errors, unblock with 'mysqladmin flush-hosts'. + ER_HOST_IS_BLOCKED + + + + The given host is not allowed to connect + + + + + The anonymous user is not allowed to connect + + + + + The given password is not allowed + + + + + The given password does not match + + + + Information returned by an UPDATE statement. + ER_UPDATE_INFO + + + A new thread couldn't be created. + ER_CANT_CREATE_THREAD + + + The column count doesn't match the value count. + ER_WRONG_VALUE_COUNT_ON_ROW + + + The specified table can't be re-opened. + ER_CANT_REOPEN_TABLE + + + The NULL value has been used incorrectly. + ER_INVALID_USE_OF_NULL + + + The regular expression contains an error. + ER_REGEXP_ERROR + + + GROUP columns (MIN(), MAX(), COUNT(), ...) cannot be mixes with no GROUP columns if there is not GROUP BY clause. + ER_MIX_OF_GROUP_FUNC_AND_FIELDS + + + + ER_NONEXISTING_GRANT + + + + ER_TABLEACCESS_DENIED_ERROR + + + + ER_COLUMNACCESS_DENIED_ERROR + + + + ER_ILLEGAL_GRANT_FOR_TABLE + + + + ER_GRANT_WRONG_HOST_OR_USER + + + + ER_NO_SUCH_TABLE + + + + ER_NONEXISTING_TABLE_GRANT + + + + ER_NOT_ALLOWED_COMMAND + + + + ER_SYNTAX_ERROR + + + + ER_DELAYED_CANT_CHANGE_LOCK + + + + ER_TOO_MANY_DELAYED_THREADS + + + + ER_ABORTING_CONNECTION + + + + An attempt was made to send or receive a packet larger than + max_allowed_packet_size + + + + + ER_NET_READ_ERROR_FROM_PIPE + + + + ER_NET_FCNTL_ERROR + + + + ER_NET_PACKETS_OUT_OF_ORDER + + + + ER_NET_UNCOMPRESS_ERROR + + + + ER_NET_READ_ERROR + + + + ER_NET_READ_INTERRUPTED + + + + ER_NET_ERROR_ON_WRITE + + + + ER_NET_WRITE_INTERRUPTED + + + + ER_TOO_LONG_STRING + + + + ER_TABLE_CANT_HANDLE_BLOB + + + + ER_TABLE_CANT_HANDLE_AUTO_INCREMENT + + + + ER_DELAYED_INSERT_TABLE_LOCKED + + + + ER_WRONG_COLUMN_NAME + + + + ER_WRONG_KEY_COLUMN + + + + ER_WRONG_MRG_TABLE + + + + ER_DUP_UNIQUE + + + + ER_BLOB_KEY_WITHOUT_LENGTH + + + + ER_PRIMARY_CANT_HAVE_NULL + + + + ER_TOO_MANY_ROWS + + + + ER_REQUIRES_PRIMARY_KEY + + + + ER_NO_RAID_COMPILED + + + + ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE + + + + ER_KEY_DOES_NOT_EXITS + + + + ER_CHECK_NO_SUCH_TABLE + + + + ER_CHECK_NOT_IMPLEMENTED + + + + ER_CANT_DO_THIS_DURING_AN_TRANSACTION + + + + ER_ERROR_DURING_COMMIT + + + + ER_ERROR_DURING_ROLLBACK + + + + ER_ERROR_DURING_FLUSH_LOGS + + + + ER_ERROR_DURING_CHECKPOINT + + + + ER_NEW_ABORTING_CONNECTION + + + + ER_DUMP_NOT_IMPLEMENTED + + + + ER_FLUSH_MASTER_BINLOG_CLOSED + + + + ER_INDEX_REBUILD + + + + ER_MASTER + + + + ER_MASTER_NET_READ + + + + ER_MASTER_NET_WRITE + + + + ER_FT_MATCHING_KEY_NOT_FOUND + + + + ER_LOCK_OR_ACTIVE_TRANSACTION + + + + ER_UNKNOWN_SYSTEM_VARIABLE + + + + ER_CRASHED_ON_USAGE + + + + ER_CRASHED_ON_REPAIR + + + + ER_WARNING_NOT_COMPLETE_ROLLBACK + + + + ER_TRANS_CACHE_FULL + + + + ER_SLAVE_MUST_STOP + + + + ER_SLAVE_NOT_RUNNING + + + + ER_BAD_SLAVE + + + + ER_MASTER_INFO + + + + ER_SLAVE_THREAD + + + + ER_TOO_MANY_USER_CONNECTIONS + + + + ER_SET_CONSTANTS_ONLY + + + + ER_LOCK_WAIT_TIMEOUT + + + + ER_LOCK_TABLE_FULL + + + + ER_READ_ONLY_TRANSACTION + + + + ER_DROP_DB_WITH_READ_LOCK + + + + ER_CREATE_DB_WITH_READ_LOCK + + + + ER_WRONG_ARGUMENTS + + + + ER_NO_PERMISSION_TO_CREATE_USER + + + + ER_UNION_TABLES_IN_DIFFERENT_DIR + + + + ER_LOCK_DEADLOCK + + + + ER_TABLE_CANT_HANDLE_FT + + + + ER_CANNOT_ADD_FOREIGN + + + + ER_NO_REFERENCED_ROW + + + + ER_ROW_IS_REFERENCED + + + + ER_CONNECT_TO_MASTER + + + + ER_QUERY_ON_MASTER + + + + ER_ERROR_WHEN_EXECUTING_COMMAND + + + + ER_WRONG_USAGE + + + + ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT + + + + ER_CANT_UPDATE_WITH_READLOCK + + + + ER_MIXING_NOT_ALLOWED + + + + ER_DUP_ARGUMENT + + + + ER_USER_LIMIT_REACHED + + + + ER_SPECIFIC_ACCESS_DENIED_ERROR + + + + ER_LOCAL_VARIABLE + + + + ER_GLOBAL_VARIABLE + + + + ER_NO_DEFAULT + + + + ER_WRONG_VALUE_FOR_VAR + + + + ER_WRONG_TYPE_FOR_VAR + + + + ER_VAR_CANT_BE_READ + + + + ER_CANT_USE_OPTION_HERE + + + + ER_NOT_SUPPORTED_YET + + + + ER_MASTER_FATAL_ERROR_READING_BINLOG + + + + ER_SLAVE_IGNORED_TABLE + + + + ER_INCORRECT_GLOBAL_LOCAL_VAR + + + + ER_WRONG_FK_DEF + + + + ER_KEY_REF_DO_NOT_MATCH_TABLE_REF + + + + ER_OPERAND_COLUMNS + + + + ER_SUBQUERY_NO_1_ROW + + + + ER_UNKNOWN_STMT_HANDLER + + + + ER_CORRUPT_HELP_DB + + + + ER_CYCLIC_REFERENCE + + + + ER_AUTO_CONVERT + + + + ER_ILLEGAL_REFERENCE + + + + ER_DERIVED_MUST_HAVE_ALIAS + + + + ER_SELECT_REDUCED + + + + ER_TABLENAME_NOT_ALLOWED_HERE + + + + ER_NOT_SUPPORTED_AUTH_MODE + + + + ER_SPATIAL_CANT_HAVE_NULL + + + + ER_COLLATION_CHARSET_MISMATCH + + + + ER_SLAVE_WAS_RUNNING + + + + ER_SLAVE_WAS_NOT_RUNNING + + + + ER_TOO_BIG_FOR_UNCOMPRESS + + + + ER_ZLIB_Z_MEM_ERROR + + + + ER_ZLIB_Z_BUF_ERROR + + + + ER_ZLIB_Z_DATA_ERROR + + + + ER_CUT_VALUE_GROUP_CONCAT + + + + ER_WARN_TOO_FEW_RECORDS + + + + ER_WARN_TOO_MANY_RECORDS + + + + ER_WARN_NULL_TO_NOTNULL + + + + ER_WARN_DATA_OUT_OF_RANGE + + + + WARN_DATA_TRUNCATED + + + + ER_WARN_USING_OTHER_HANDLER + + + + ER_CANT_AGGREGATE_2COLLATIONS + + + + ER_DROP_USER + + + + ER_REVOKE_GRANTS + + + + ER_CANT_AGGREGATE_3COLLATIONS + + + + ER_CANT_AGGREGATE_NCOLLATIONS + + + + ER_VARIABLE_IS_NOT_STRUCT + + + + ER_UNKNOWN_COLLATION + + + + ER_SLAVE_IGNORED_SSL_PARAMS + + + + ER_SERVER_IS_IN_SECURE_AUTH_MODE + + + + ER_WARN_FIELD_RESOLVED + + + + ER_BAD_SLAVE_UNTIL_COND + + + + ER_MISSING_SKIP_SLAVE + + + + ER_UNTIL_COND_IGNORED + + + + ER_WRONG_NAME_FOR_INDEX + + + + ER_WRONG_NAME_FOR_CATALOG + + + + ER_WARN_QC_RESIZE + + + + ER_BAD_FT_COLUMN + + + + ER_UNKNOWN_KEY_CACHE + + + + ER_WARN_HOSTNAME_WONT_WORK + + + + ER_UNKNOWN_STORAGE_ENGINE + + + + ER_WARN_DEPRECATED_SYNTAX + + + + ER_NON_UPDATABLE_TABLE + + + + ER_FEATURE_DISABLED + + + + ER_OPTION_PREVENTS_STATEMENT + + + + ER_DUPLICATED_VALUE_IN_TYPE + + + + ER_TRUNCATED_WRONG_VALUE + + + + ER_TOO_MUCH_AUTO_TIMESTAMP_COLS + + + + ER_INVALID_ON_UPDATE + + + + ER_UNSUPPORTED_PS + + + + ER_GET_ERRMSG + + + + ER_GET_TEMPORARY_ERRMSG + + + + ER_UNKNOWN_TIME_ZONE + + + + ER_WARN_INVALID_TIMESTAMP + + + + ER_INVALID_CHARACTER_STRING + + + + ER_WARN_ALLOWED_PACKET_OVERFLOWED + + + + ER_CONFLICTING_DECLARATIONS + + + + ER_SP_NO_RECURSIVE_CREATE + + + + ER_SP_ALREADY_EXISTS + + + + ER_SP_DOES_NOT_EXIST + + + + ER_SP_DROP_FAILED + + + + ER_SP_STORE_FAILED + + + + ER_SP_LILABEL_MISMATCH + + + + ER_SP_LABEL_REDEFINE + + + + ER_SP_LABEL_MISMATCH + + + + ER_SP_UNINIT_VAR + + + + ER_SP_BADSELECT + + + + ER_SP_BADRETURN + + + + ER_SP_BADSTATEMENT + + + + ER_UPDATE_LOG_DEPRECATED_IGNORED + + + + ER_UPDATE_LOG_DEPRECATED_TRANSLATED + + + + ER_QUERY_INTERRUPTED + + + + ER_SP_WRONG_NO_OF_ARGS + + + + ER_SP_COND_MISMATCH + + + + ER_SP_NORETURN + + + + ER_SP_NORETURNEND + + + + ER_SP_BAD_CURSOR_QUERY + + + + ER_SP_BAD_CURSOR_SELECT + + + + ER_SP_CURSOR_MISMATCH + + + + ER_SP_CURSOR_ALREADY_OPEN + + + + ER_SP_CURSOR_NOT_OPEN + + + + ER_SP_UNDECLARED_VAR + + + + ER_SP_WRONG_NO_OF_FETCH_ARGS + + + + ER_SP_FETCH_NO_DATA + + + + ER_SP_DUP_PARAM + + + + ER_SP_DUP_VAR + + + + ER_SP_DUP_COND + + + + ER_SP_DUP_CURS + + + + ER_SP_CANT_ALTER + + + + ER_SP_SUBSELECT_NYI + + + + ER_STMT_NOT_ALLOWED_IN_SF_OR_TRG + + + + ER_SP_VARCOND_AFTER_CURSHNDLR + + + + ER_SP_CURSOR_AFTER_HANDLER + + + + ER_SP_CASE_NOT_FOUND + + + + ER_FPARSER_TOO_BIG_FILE + + + + ER_FPARSER_BAD_HEADER + + + + ER_FPARSER_EOF_IN_COMMENT + + + + ER_FPARSER_ERROR_IN_PARAMETER + + + + ER_FPARSER_EOF_IN_UNKNOWN_PARAMETER + + + + ER_VIEW_NO_EXPLAIN + + + + ER_FRM_UNKNOWN_TYPE + + + + ER_WRONG_OBJECT + + + + ER_NONUPDATEABLE_COLUMN + + + + ER_VIEW_SELECT_DERIVED + + + + ER_VIEW_SELECT_CLAUSE + + + + ER_VIEW_SELECT_VARIABLE + + + + ER_VIEW_SELECT_TMPTABLE + + + + ER_VIEW_WRONG_LIST + + + + ER_WARN_VIEW_MERGE + + + + ER_WARN_VIEW_WITHOUT_KEY + + + + ER_VIEW_INVALID + + + + ER_SP_NO_DROP_SP + + + + ER_SP_GOTO_IN_HNDLR + + + + ER_TRG_ALREADY_EXISTS + + + + ER_TRG_DOES_NOT_EXIST + + + + ER_TRG_ON_VIEW_OR_TEMP_TABLE + + + + ER_TRG_CANT_CHANGE_ROW + + + + ER_TRG_NO_SUCH_ROW_IN_TRG + + + + ER_NO_DEFAULT_FOR_FIELD + + + + ER_DIVISION_BY_ZERO + + + + ER_TRUNCATED_WRONG_VALUE_FOR_FIELD + + + + ER_ILLEGAL_VALUE_FOR_TYPE + + + + ER_VIEW_NONUPD_CHECK + + + + ER_VIEW_CHECK_FAILED + + + + ER_PROCACCESS_DENIED_ERROR + + + + ER_RELAY_LOG_FAIL + + + + ER_PASSWD_LENGTH + + + + ER_UNKNOWN_TARGET_BINLOG + + + + ER_IO_ERR_LOG_INDEX_READ + + + + ER_BINLOG_PURGE_PROHIBITED + + + + ER_FSEEK_FAIL + + + + ER_BINLOG_PURGE_FATAL_ERR + + + + ER_LOG_IN_USE + + + + ER_LOG_PURGE_UNKNOWN_ERR + + + + ER_RELAY_LOG_INIT + + + + ER_NO_BINARY_LOGGING + + + + ER_RESERVED_SYNTAX + + + + ER_WSAS_FAILED + + + + ER_DIFF_GROUPS_PROC + + + + ER_NO_GROUP_FOR_PROC + + + + ER_ORDER_WITH_PROC + + + + ER_LOGGING_PROHIBIT_CHANGING_OF + + + + ER_NO_FILE_MAPPING + + + + ER_WRONG_MAGIC + + + + ER_PS_MANY_PARAM + + + + ER_KEY_PART_0 + + + + ER_VIEW_CHECKSUM + + + + ER_VIEW_MULTIUPDATE + + + + ER_VIEW_NO_INSERT_FIELD_LIST + + + + ER_VIEW_DELETE_MERGE_VIEW + + + + ER_CANNOT_USER + + + + ER_XAER_NOTA + + + + ER_XAER_INVAL + + + + ER_XAER_RMFAIL + + + + ER_XAER_OUTSIDE + + + + ER_XAER_RMERR + + + + ER_XA_RBROLLBACK + + + + ER_NONEXISTING_PROC_GRANT + + + + ER_PROC_AUTO_GRANT_FAIL + + + + ER_PROC_AUTO_REVOKE_FAIL + + + + ER_DATA_TOO_LONG + + + + ER_SP_BAD_SQLSTATE + + + + ER_STARTUP + + + + ER_LOAD_FROM_FIXED_SIZE_ROWS_TO_VAR + + + + ER_CANT_CREATE_USER_WITH_GRANT + + + + ER_WRONG_VALUE_FOR_TYPE + + + + ER_TABLE_DEF_CHANGED + + + + ER_SP_DUP_HANDLER + + + + ER_SP_NOT_VAR_ARG + + + + ER_SP_NO_RETSET + + + + ER_CANT_CREATE_GEOMETRY_OBJECT + + + + ER_FAILED_ROUTINE_BREAK_BINLOG + + + + ER_BINLOG_UNSAFE_ROUTINE + + + + ER_BINLOG_CREATE_ROUTINE_NEED_SUPER + + + + ER_EXEC_STMT_WITH_OPEN_CURSOR + + + + ER_STMT_HAS_NO_OPEN_CURSOR + + + + ER_COMMIT_NOT_ALLOWED_IN_SF_OR_TRG + + + + ER_NO_DEFAULT_FOR_VIEW_FIELD + + + + ER_SP_NO_RECURSION + + + + ER_TOO_BIG_SCALE + + + + ER_TOO_BIG_PRECISION + + + + ER_M_BIGGER_THAN_D + + + + ER_WRONG_LOCK_OF_SYSTEM_TABLE + + + + ER_CONNECT_TO_FOREIGN_DATA_SOURCE + + + + ER_QUERY_ON_FOREIGN_DATA_SOURCE + + + + ER_FOREIGN_DATA_SOURCE_DOESNT_EXIST + + + + ER_FOREIGN_DATA_STRING_INVALID_CANT_CREATE + + + + ER_FOREIGN_DATA_STRING_INVALID + + + + ER_CANT_CREATE_FEDERATED_TABLE + + + + ER_TRG_IN_WRONG_SCHEMA + + + + ER_STACK_OVERRUN_NEED_MORE + + + + ER_TOO_LONG_BODY + + + + ER_WARN_CANT_DROP_DEFAULT_KEYCACHE + + + + ER_TOO_BIG_DISPLAYWIDTH + + + + ER_XAER_DUPID + + + + ER_DATETIME_FUNCTION_OVERFLOW + + + + ER_CANT_UPDATE_USED_TABLE_IN_SF_OR_TRG + + + + ER_VIEW_PREVENT_UPDATE + + + + ER_PS_NO_RECURSION + + + + ER_SP_CANT_SET_AUTOCOMMIT + + + + ER_MALFORMED_DEFINER + + + + ER_VIEW_FRM_NO_USER + + + + ER_VIEW_OTHER_USER + + + + ER_NO_SUCH_USER + + + + ER_FORBID_SCHEMA_CHANGE + + + + ER_ROW_IS_REFERENCED_2 + + + + ER_NO_REFERENCED_ROW_2 + + + + ER_SP_BAD_VAR_SHADOW + + + + ER_TRG_NO_DEFINER + + + + ER_OLD_FILE_FORMAT + + + + ER_SP_RECURSION_LIMIT + + + + ER_SP_PROC_TABLE_CORRUPT + + + + ER_SP_WRONG_NAME + + + + ER_TABLE_NEEDS_UPGRADE + + + + ER_SP_NO_AGGREGATE + + + + ER_MAX_PREPARED_STMT_COUNT_REACHED + + + + ER_VIEW_RECURSIVE + + + + ER_NON_GROUPING_FIELD_USED + + + + ER_TABLE_CANT_HANDLE_SPKEYS + + + + ER_NO_TRIGGERS_ON_SYSTEM_SCHEMA + + + + ER_REMOVED_SPACES + + + + ER_AUTOINC_READ_FAILED + + + + ER_USERNAME + + + + ER_HOSTNAME + + + + ER_WRONG_STRING_LENGTH + + + + ER_NON_INSERTABLE_TABLE + + + + ER_ADMIN_WRONG_MRG_TABLE + + + + ER_TOO_HIGH_LEVEL_OF_NESTING_FOR_SELECT + + + + ER_NAME_BECOMES_EMPTY + + + + ER_AMBIGUOUS_FIELD_TERM + + + + ER_FOREIGN_SERVER_EXISTS + + + + ER_FOREIGN_SERVER_DOESNT_EXIST + + + + ER_ILLEGAL_HA_CREATE_OPTION + + + + ER_PARTITION_REQUIRES_VALUES_ERROR + + + + ER_PARTITION_WRONG_VALUES_ERROR + + + + ER_PARTITION_MAXVALUE_ERROR + + + + ER_PARTITION_SUBPARTITION_ERROR + + + + ER_PARTITION_SUBPART_MIX_ERROR + + + + ER_PARTITION_WRONG_NO_PART_ERROR + + + + ER_PARTITION_WRONG_NO_SUBPART_ERROR + + + + ER_WRONG_EXPR_IN_PARTITION_FUNC_ERROR + + + + ER_NO_CONST_EXPR_IN_RANGE_OR_LIST_ERROR + + + + ER_FIELD_NOT_FOUND_PART_ERROR + + + + ER_LIST_OF_FIELDS_ONLY_IN_HASH_ERROR + + + + ER_INCONSISTENT_PARTITION_INFO_ERROR + + + + ER_PARTITION_FUNC_NOT_ALLOWED_ERROR + + + + ER_PARTITIONS_MUST_BE_DEFINED_ERROR + + + + ER_RANGE_NOT_INCREASING_ERROR + + + + ER_INCONSISTENT_TYPE_OF_FUNCTIONS_ERROR + + + + ER_MULTIPLE_DEF_CONST_IN_LIST_PART_ERROR + + + + ER_PARTITION_ENTRY_ERROR + + + + ER_MIX_HANDLER_ERROR + + + + ER_PARTITION_NOT_DEFINED_ERROR + + + + ER_TOO_MANY_PARTITIONS_ERROR + + + + ER_SUBPARTITION_ERROR + + + + ER_CANT_CREATE_HANDLER_FILE + + + + ER_BLOB_FIELD_IN_PART_FUNC_ERROR + + + + ER_UNIQUE_KEY_NEED_ALL_FIELDS_IN_PF + + + + ER_NO_PARTS_ERROR + + + + ER_PARTITION_MGMT_ON_NONPARTITIONED + + + + ER_FOREIGN_KEY_ON_PARTITIONED + + + + ER_DROP_PARTITION_NON_EXISTENT + + + + ER_DROP_LAST_PARTITION + + + + ER_COALESCE_ONLY_ON_HASH_PARTITION + + + + ER_REORG_HASH_ONLY_ON_SAME_NO + + + + ER_REORG_NO_PARAM_ERROR + + + + ER_ONLY_ON_RANGE_LIST_PARTITION + + + + ER_ADD_PARTITION_SUBPART_ERROR + + + + ER_ADD_PARTITION_NO_NEW_PARTITION + + + + ER_COALESCE_PARTITION_NO_PARTITION + + + + ER_REORG_PARTITION_NOT_EXIST + + + + ER_SAME_NAME_PARTITION + + + + ER_NO_BINLOG_ERROR + + + + ER_CONSECUTIVE_REORG_PARTITIONS + + + + ER_REORG_OUTSIDE_RANGE + + + + ER_PARTITION_FUNCTION_FAILURE + + + + ER_PART_STATE_ERROR + + + + ER_LIMITED_PART_RANGE + + + + ER_PLUGIN_IS_NOT_LOADED + + + + ER_WRONG_VALUE + + + + ER_NO_PARTITION_FOR_GIVEN_VALUE + + + + ER_FILEGROUP_OPTION_ONLY_ONCE + + + + ER_CREATE_FILEGROUP_FAILED + + + + ER_DROP_FILEGROUP_FAILED + + + + ER_TABLESPACE_AUTO_EXTEND_ERROR + + + + ER_WRONG_SIZE_NUMBER + + + + ER_SIZE_OVERFLOW_ERROR + + + + ER_ALTER_FILEGROUP_FAILED + + + + ER_BINLOG_ROW_LOGGING_FAILED + + + + ER_BINLOG_ROW_WRONG_TABLE_DEF + + + + ER_BINLOG_ROW_RBR_TO_SBR + + + + ER_EVENT_ALREADY_EXISTS + + + + ER_EVENT_STORE_FAILED + + + + ER_EVENT_DOES_NOT_EXIST + + + + ER_EVENT_CANT_ALTER + + + + ER_EVENT_DROP_FAILED + + + + ER_EVENT_INTERVAL_NOT_POSITIVE_OR_TOO_BIG + + + + ER_EVENT_ENDS_BEFORE_STARTS + + + + ER_EVENT_EXEC_TIME_IN_THE_PAST + + + + ER_EVENT_OPEN_TABLE_FAILED + + + + ER_EVENT_NEITHER_M_EXPR_NOR_M_AT + + + + ER_COL_COUNT_DOESNT_MATCH_CORRUPTED + + + + ER_CANNOT_LOAD_FROM_TABLE + + + + ER_EVENT_CANNOT_DELETE + + + + ER_EVENT_COMPILE_ERROR + + + + ER_EVENT_SAME_NAME + + + + ER_EVENT_DATA_TOO_LONG + + + + ER_DROP_INDEX_FK + + + + ER_WARN_DEPRECATED_SYNTAX_WITH_VER + + + + ER_CANT_WRITE_LOCK_LOG_TABLE + + + + ER_CANT_LOCK_LOG_TABLE + + + + ER_FOREIGN_DUPLICATE_KEY + + + + ER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE + + + + ER_TEMP_TABLE_PREVENTS_SWITCH_OUT_OF_RBR + + + + ER_STORED_FUNCTION_PREVENTS_SWITCH_BINLOG_FORMAT + + + + ER_NDB_CANT_SWITCH_BINLOG_FORMAT + + + + ER_PARTITION_NO_TEMPORARY + + + + ER_PARTITION_CONST_DOMAIN_ERROR + + + + ER_PARTITION_FUNCTION_IS_NOT_ALLOWED + + + + ER_DDL_LOG_ERROR + + + + ER_NULL_IN_VALUES_LESS_THAN + + + + ER_WRONG_PARTITION_NAME + + + + ER_CANT_CHANGE_TRANSACTION_ISOLATION + + + + ER_DUP_ENTRY_AUTOINCREMENT_CASE + + + + ER_EVENT_MODIFY_QUEUE_ERROR + + + + ER_EVENT_SET_VAR_ERROR + + + + ER_PARTITION_MERGE_ERROR + + + + ER_CANT_ACTIVATE_LOG + + + + ER_RBR_NOT_AVAILABLE + + + + ER_BASE64_DECODE_ERROR + + + + ER_EVENT_RECURSION_FORBIDDEN + + + + ER_EVENTS_DB_ERROR + + + + ER_ONLY_INTEGERS_ALLOWED + + + + ER_UNSUPORTED_LOG_ENGINE + + + + ER_BAD_LOG_STATEMENT + + + + ER_CANT_RENAME_LOG_TABLE + + + + ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT + + + + ER_WRONG_PARAMETERS_TO_NATIVE_FCT + + + + ER_WRONG_PARAMETERS_TO_STORED_FCT + + + + ER_NATIVE_FCT_NAME_COLLISION + + + + ER_DUP_ENTRY_WITH_KEY_NAME + + + + ER_BINLOG_PURGE_EMFILE + + + + ER_EVENT_CANNOT_CREATE_IN_THE_PAST + + + + ER_EVENT_CANNOT_ALTER_IN_THE_PAST + + + + ER_SLAVE_INCIDENT + + + + ER_NO_PARTITION_FOR_GIVEN_VALUE_SILENT + + + + ER_BINLOG_UNSAFE_STATEMENT + + + + ER_SLAVE_FATAL_ERROR + + + + ER_SLAVE_RELAY_LOG_READ_FAILURE + + + + ER_SLAVE_RELAY_LOG_WRITE_FAILURE + + + + ER_SLAVE_CREATE_EVENT_FAILURE + + + + ER_SLAVE_MASTER_COM_FAILURE + + + + ER_BINLOG_LOGGING_IMPOSSIBLE + + + + ER_VIEW_NO_CREATION_CTX + + + + ER_VIEW_INVALID_CREATION_CTX + + + + ER_SR_INVALID_CREATION_CTX + + + + ER_TRG_CORRUPTED_FILE + + + + ER_TRG_NO_CREATION_CTX + + + + ER_TRG_INVALID_CREATION_CTX + + + + ER_EVENT_INVALID_CREATION_CTX + + + + ER_TRG_CANT_OPEN_TABLE + + + + ER_CANT_CREATE_SROUTINE + + + + ER_SLAVE_AMBIGOUS_EXEC_MODE + + + + ER_NO_FORMAT_DESCRIPTION_EVENT_BEFORE_BINLOG_STATEMENT + + + + ER_SLAVE_CORRUPT_EVENT + + + + ER_LOAD_DATA_INVALID_COLUMN + + + + ER_LOG_PURGE_NO_FILE + + + + ER_XA_RBTIMEOUT + + + + ER_XA_RBDEADLOCK + + + + ER_NEED_REPREPARE + + + + ER_DELAYED_NOT_SUPPORTED + + + + WARN_NO_MASTER_INFO + + + + WARN_OPTION_IGNORED + + + + WARN_PLUGIN_DELETE_BUILTIN + + + + WARN_PLUGIN_BUSY + + + + ER_VARIABLE_IS_READONLY + + + + ER_WARN_ENGINE_TRANSACTION_ROLLBACK + + + + ER_SLAVE_HEARTBEAT_FAILURE + + + + ER_SLAVE_HEARTBEAT_VALUE_OUT_OF_RANGE + + + + ER_NDB_REPLICATION_SCHEMA_ERROR + + + + ER_CONFLICT_FN_PARSE_ERROR + + + + ER_EXCEPTIONS_WRITE_ERROR + + + + ER_TOO_LONG_TABLE_COMMENT + + + + ER_TOO_LONG_FIELD_COMMENT + + + + ER_FUNC_INEXISTENT_NAME_COLLISION + + + + ER_DATABASE_NAME + + + + ER_TABLE_NAME + + + + ER_PARTITION_NAME + + + + ER_SUBPARTITION_NAME + + + + ER_TEMPORARY_NAME + + + + ER_RENAMED_NAME + + + + ER_TOO_MANY_CONCURRENT_TRXS + + + + WARN_NON_ASCII_SEPARATOR_NOT_IMPLEMENTED + + + + ER_DEBUG_SYNC_TIMEOUT + + + + ER_DEBUG_SYNC_HIT_LIMIT + + + + ER_ERROR_LAST + + + + WriteInteger + + + + + + + Summary description for MySqlPool. + + + + + It is assumed that this property will only be used from inside an active + lock. + + + + + Indicates whether this pool is being cleared. + + + + + It is assumed that this method is only called from inside an active lock. + + + + + It is assumed that this method is only called from inside an active lock. + + + + + Removes a connection from the in use pool. The only situations where this method + would be called are when a connection that is in use gets some type of fatal exception + or when the connection is being returned to the pool and it's too old to be + returned. + + + + + + Clears this pool of all idle connections and marks this pool and being cleared + so all other connections are closed when they are returned. + + + + + Remove expired drivers from the idle pool + + + + Closing driver is a potentially lengthy operation involving network + IO. Therefore we do not close expired drivers while holding + idlePool.SyncRoot lock. We just remove the old drivers from the idle + queue and return them to the caller. The caller will need to close + them (or let GC close them) + + + + + Summary description for MySqlPoolManager. + + + + + Remove drivers that have been idle for too long. + + + + + Provides a class capable of executing a SQL script containing + multiple SQL statements including CREATE PROCEDURE statements + that require changing the delimiter + + + + + Handles the event raised whenever a statement is executed. + + + + + Handles the event raised whenever an error is raised by the execution of a script. + + + + + Handles the event raised whenever a script execution is finished. + + + + + Initializes a new instance of the + class. + + + + + Initializes a new instance of the + class. + + The connection. + + + + Initializes a new instance of the + class. + + The query. + + + + Initializes a new instance of the + class. + + The connection. + The query. + + + + Gets or sets the connection. + + The connection. + + + + Gets or sets the query. + + The query. + + + + Gets or sets the delimiter. + + The delimiter. + + + + Executes this instance. + + The number of statements executed as part of the script. + + + + Initiates the asynchronous execution of SQL statements. + + The number of statements executed as part of the script inside. + + + + Initiates the asynchronous execution of SQL statements. + + The cancellation token. + The number of statements executed as part of the script inside. + + + + Represents the method that will handle errors when executing MySQL statements. + + + + + Represents the method that will handle errors when executing MySQL scripts. + + + + + Sets the arguments associated to MySQL scripts. + + + + + Gets the statement text. + + The statement text. + + + + Gets the line. + + The line. + + + + Gets the position. + + The position. + + + + Sets the arguments associated to MySQL script errors. + + + + + Initializes a new instance of the class. + + The exception. + + + + Gets the exception. + + The exception. + + + + Gets or sets a value indicating whether this is ignore. + + true if ignore; otherwise, false. + + + + Summary description for MySqlStream. + + + + + ReadPacket is called by NativeDriver to start reading the next + packet on the stream. + + + + + Reads the specified number of bytes from the stream and stores them at given + offset in the buffer. + Throws EndOfStreamException if not all bytes can be read. + + Stream to read from + Array to store bytes read from the stream + The offset in buffer at which to begin storing the data read from the current stream. + Number of bytes to read + + + + LoadPacket loads up and decodes the header of the incoming packet. + + + + + Traces information about the client execution. + + + + + Gets the list of trace listeners. + + + + + Gets or sets the switch to control tracing and debugging. + + + + + Gets or sets a flag indicating if query analysis is enabled. + + + + + Enables query analysis. + + The host on which to enable query analysis. + The interval of time for logging trace information. + + + + Disables query analysis. + + + + + Specifies the types of warning flags. + + + + + No index exists. + + + + + Bad index exists. + + + + + Rows have been excluded from the result. + + + + + Columns have been excluded from the result. + + + + + Type conversions took place. + + + + + Specifies the event that triggered the trace. + + + + + A connection has been opened. + + + + + A connection has been closed. + + + + + A query has been executed. + + + + + Data has been retrieved from the resultset. + + + + + Data retrieval has ended. + + + + + Query execution has ended. + + + + + The statement to be executed has been created. + + + + + The statement has been executed. + + + + + The statement is no longer required. + + + + + The query provided is of a nonquery type. + + + + + Usage advisor warnings have been requested. + + + + + Noncritical problem. + + + + + An error has been raised during data retrieval. + + + + + The query has been normalized. + + + + + Summary description for Driver. + + + + + Sets the current database for the this connection + + + + + + Return the appropriate set of connection flags for our + server capabilities and our user requested options. + + + + + Query is the method that is called to send all queries to the server + + + + + Sends the specified file to the server. + This supports the LOAD DATA LOCAL INFILE + + + + + + FetchDataRow is the method that the data reader calls to see if there is another + row to fetch. In the non-prepared mode, it will simply read the next data packet. + In the prepared mode (statementId > 0), it will + + + + + Execution timeout, in milliseconds. When the accumulated time for network IO exceeds this value + TimeoutException is thrown. This timeout needs to be reset for every new command + + + + + + Summary description for PreparedStatement. + + + + + Prepares CommandText for use with the Prepare method + + Command text stripped of all paramter names + + Takes the output of TokenizeSql and creates a single string of SQL + that only contains '?' markers for each parameter. It also creates + the parameterMap array list that includes all the paramter names in the + order they appeared in the SQL + + + + + Used to define a Replication configurarion element in configuration file. + + + + + Gets a collection of ReplicationServerGroupConfigurationElement objects representing the server groups. + + + + + Used to define a Replication server group in configuration file. + + + + + Gets or sets the name of the replication server group configuration. + + + + + Gets or sets the group type of the replication server group configuration. + + + + + Gets or sets the number of seconds to wait for retry. + + + + + Gets a collection of ReplicationServerConfigurationElement objects representing the server configurations associated to this group configuration. + + + + + Defines a Replication server in configuration file. + + + + + Gets or sets the name of the replication server configuration. + + + + + Gets or sets whether the replication server is configured as master. + + + + + Gets or sets the connection string associated to this replication server. + + + + + Manager for Replication and Load Balancing features + + + + + Returns Replication Server Group List + + + + + Adds a Default Server Group to the list + + Group name + Time between reconnections for failed servers + Replication Server Group added + + + + Adds a Server Group to the list + + Group name + ServerGroup type reference + Time between reconnections for failed servers + Server Group added + + + + Gets the next server from a replication group + + Group name + True if the server to return must be a master + Replication Server defined by the Load Balancing plugin + + + + Gets a Server Group by name + + Group name + Server Group if found, otherwise throws an MySqlException + + + + Validates if the replication group name exists + + Group name to validate + True if replication group name is found, otherwise false + + + + Assigns a new server driver to the connection object + + Group name + True if the server connection to assign must be a master + MySqlConnection object where the new driver will be assigned + + + + Class that implements Round Robing Load Balancing technique + + + + + Gets an available server based on Round Robin load balancing + + True if the server to return must be a master + Next available server + + + + Represents a server in Replication environment + + + + + Server name + + + + + Defines if the server is master (True) or slave + + + + + Connection string used to connect to the server + + + + + Defines if the server is available to be considered in load balancing + + + + + Base class used to implement load balancing features. + + + + + List of servers available for replication. + + + + Group name + + + + + The name of the group. + + + + + The retry time between connections to failed servers. + + + + + The server list in the group. + + + + + Adds a server into the group. + + The server name. + true if the server to add is master; otherwise false for slave server. + The connection string used by this server. + + + + + Removes a server from a group. + + The server name. + + + + Gets a server by name. + + The server name + A replication server. + + + + Must be implemented. Defines the next server for a custom load balancing implementation. + + Defines if the server to return is a master or any. + Next server based on the load balancing implementation. + null if no available server is found. + + + + + Defines the next server for a custom load balancing implementation. + + Defines if the server to return is a master or any. + Currently not being used. + The next server based on the load balancing implementation. Null if no available server is found. + + + + Handles a failed connection to a server. + This method can be overriden to implement a custom failover handling + + The failed server. + + + + Handles a failed connection to a server. + + The failed server. + The exception that caused the failover. + + + + return the ordinal for the given column name + + + + + + + Retrieve the value as the given column index + + The column value to retrieve + The value as the given column + + + + Closes the current resultset, dumping any data still on the wire + + + + + Loads the column metadata for the current resultset + + + + + Represents a schema and its contents. + + + + + Gets or sets the name of the schema. + + + + + Gets the list of columns in the schema. + + + + + Gets the list of rows in the schema. + + + + + Represents a row within a schema. + + + + + Represents a column within a schema. + + + + + The name of the column. + + + + + The type of the column. + + + + + GetForeignKeysOnTable retrieves the foreign keys on the given table. + Since MySQL supports foreign keys on versions prior to 5.0, we can't use + information schema. MySQL also does not include any type of SHOW command + for foreign keys so we have to resort to use SHOW CREATE TABLE and parsing + the output. + + The table to store the key info in. + The table to get the foeign key info for. + Only get foreign keys that match this name. + Should column information be included in the table. + + + + Serializes the given parameter to the given memory stream + + + This method is called by PrepareSqlBuffers to convert the given + parameter to bytes and write those bytes to the given memory stream. + + + True if the parameter was successfully serialized, false otherwise. + + + + Summary description for StoredProcedure. + + + + + Defines the basic operations to be performed on the table cache. + + + + + The max allowed age for the cache entry. + + + + + Adds the given command and result set to the cache. + + The command to store in the cache. + The resultset associated to the stored command. + + + + Retrieves the specified command from the cache. + + The command to retrieve. + The allowed age for the cache entry. + + + + + Removes the specified command from the cache. + + The command to remove from the cache. + + + + Clears the cache. + + + + + Removes cache entries older than the value defined by MaxCacheAge. + + + + + Stream that supports timeout of IO operations. + This class is used is used to support timeouts for SQL command, where a + typical operation involves several network reads/writes. + Timeout here is defined as the accumulated duration of all IO operations. + + + + + Construct a TimedStream + + Undelying stream + + + + Figure out whether it is necessary to reset timeout on stream. + We track the current value of timeout and try to avoid + changing it too often, because setting Read/WriteTimeout property + on network stream maybe a slow operation that involves a system call + (setsockopt). Therefore, we allow a small difference, and do not + reset timeout if current value is slightly greater than the requested + one (within 0.1 second). + + + + + Common handler for IO exceptions. + Resets timeout to infinity if timeout exception is + detected and stops the times. + + original exception + + + + Represents a SQL transaction to be made in a MySQL database. This class cannot be inherited. + + The application creates a MySqlTransaction object by calling + on the object. All subsequent operations associated with the + transaction (for example, committing or aborting the transaction), are performed on the + MySqlTransaction object. + + The following example creates a and a MySqlTransaction. + It also demonstrates how to use the , + , and methods. + + Public Sub RunTransaction(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + + Dim myCommand As MySqlCommand = myConnection.CreateCommand() + Dim myTrans As MySqlTransaction + + ' Start a local transaction + myTrans = myConnection.BeginTransaction() + ' Must assign both transaction object and connection + ' to Command object for a pending local transaction + myCommand.Connection = myConnection + myCommand.Transaction = myTrans + + Try + myCommand.CommandText = "Insert into Region (RegionID, RegionDescription) VALUES (100, 'Description')" + myCommand.ExecuteNonQuery() + myCommand.CommandText = "Insert into Region (RegionID, RegionDescription) VALUES (101, 'Description')" + myCommand.ExecuteNonQuery() + myTrans.Commit() + Console.WriteLine("Both records are written to database.") + Catch e As Exception + Try + myTrans.Rollback() + Catch ex As MySqlException + If Not myTrans.Connection Is Nothing Then + Console.WriteLine("An exception of type " & ex.GetType().ToString() & _ + " was encountered while attempting to roll back the transaction.") + End If + End Try + + Console.WriteLine("An exception of type " & e.GetType().ToString() & _ + "was encountered while inserting the data.") + Console.WriteLine("Neither record was written to database.") + Finally + myConnection.Close() + End Try + End Sub 'RunTransaction + + + public void RunTransaction(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + + MySqlCommand myCommand = myConnection.CreateCommand(); + MySqlTransaction myTrans; + + // Start a local transaction + myTrans = myConnection.BeginTransaction(); + // Must assign both transaction object and connection + // to Command object for a pending local transaction + myCommand.Connection = myConnection; + myCommand.Transaction = myTrans; + + try + { + myCommand.CommandText = "Insert into Region (RegionID, RegionDescription) VALUES (100, 'Description')"; + myCommand.ExecuteNonQuery(); + myCommand.CommandText = "Insert into Region (RegionID, RegionDescription) VALUES (101, 'Description')"; + myCommand.ExecuteNonQuery(); + myTrans.Commit(); + Console.WriteLine("Both records are written to database."); + } + catch(Exception e) + { + try + { + myTrans.Rollback(); + } + catch (MySqlException ex) + { + if (myTrans.Connection != null) + { + Console.WriteLine("An exception of type " + ex.GetType() + + " was encountered while attempting to roll back the transaction."); + } + } + + Console.WriteLine("An exception of type " + e.GetType() + + " was encountered while inserting the data."); + Console.WriteLine("Neither record was written to database."); + } + finally + { + myConnection.Close(); + } + } + + + + + + Gets the object associated with the transaction, or a null reference (Nothing in Visual Basic) if the transaction is no longer valid. + + The object associated with this transaction. + + A single application may have multiple database connections, each + with zero or more transactions. This property enables you to + determine the connection object associated with a particular + transaction created by . + + + + + Specifies the for this transaction. + + + The for this transaction. The default is ReadCommitted. + + + Parallel transactions are not supported. Therefore, the IsolationLevel + applies to the entire transaction. + + + + + Commits the database transaction. + + The Commit method is equivalent to the MySQL SQL statement + COMMIT. + + The following example creates a and a + . It also demonstrates how to use the + , , and Rollback + methods. + + Public Sub RunSqlTransaction(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + + Dim myCommand As MySqlCommand = myConnection.CreateCommand() + Dim myTrans As MySqlTransaction + + ' Start a local transaction + myTrans = myConnection.BeginTransaction() + + ' Must assign both transaction object and connection + ' to Command object for a pending local transaction + myCommand.Connection = myConnection + myCommand.Transaction = myTrans + + Try + myCommand.CommandText = "Insert into mytable (id, desc) VALUES (100, 'Description')" + myCommand.ExecuteNonQuery() + myCommand.CommandText = "Insert into mytable (id, desc) VALUES (101, 'Description')" + myCommand.ExecuteNonQuery() + myTrans.Commit() + Console.WriteLine("Success.") + Catch e As Exception + Try + myTrans.Rollback() + Catch ex As MySqlException + If Not myTrans.Connection Is Nothing Then + Console.WriteLine("An exception of type " & ex.GetType().ToString() & _ + " was encountered while attempting to roll back the transaction.") + End If + End Try + + Console.WriteLine("An exception of type " & e.GetType().ToString() & _ + "was encountered while inserting the data.") + Console.WriteLine("Neither record was written to database.") + Finally + myConnection.Close() + End Try + End Sub + + + public void RunSqlTransaction(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + + MySqlCommand myCommand = myConnection.CreateCommand(); + MySqlTransaction myTrans; + + // Start a local transaction + myTrans = myConnection.BeginTransaction(); + // Must assign both transaction object and connection + // to Command object for a pending local transaction + myCommand.Connection = myConnection; + myCommand.Transaction = myTrans; + + try + { + myCommand.CommandText = "Insert into mytable (id, desc) VALUES (100, 'Description')"; + myCommand.ExecuteNonQuery(); + myCommand.CommandText = "Insert into mytable (id, desc) VALUES (101, 'Description')"; + myCommand.ExecuteNonQuery(); + myTrans.Commit(); + Console.WriteLine("Both records are written to database."); + } + catch(Exception e) + { + try + { + myTrans.Rollback(); + } + catch (MySqlException ex) + { + if (myTrans.Connection != null) + { + Console.WriteLine("An exception of type " + ex.GetType() + + " was encountered while attempting to roll back the transaction."); + } + } + + Console.WriteLine("An exception of type " + e.GetType() + + " was encountered while inserting the data."); + Console.WriteLine("Neither record was written to database."); + } + finally + { + myConnection.Close(); + } + } + + + + + + Rolls back a transaction from a pending state. + + The Rollback method is equivalent to the MySQL statement ROLLBACK. + The transaction can only be rolled back from a pending state + (after BeginTransaction has been called, but before Commit is + called). + + The following example creates a and a + . It also demonstrates how to use the + , , and Rollback + methods. + + Public Sub RunSqlTransaction(myConnString As String) + Dim myConnection As New MySqlConnection(myConnString) + myConnection.Open() + + Dim myCommand As MySqlCommand = myConnection.CreateCommand() + Dim myTrans As MySqlTransaction + + ' Start a local transaction + myTrans = myConnection.BeginTransaction() + + ' Must assign both transaction object and connection + ' to Command object for a pending local transaction + myCommand.Connection = myConnection + myCommand.Transaction = myTrans + + Try + myCommand.CommandText = "Insert into mytable (id, desc) VALUES (100, 'Description')" + myCommand.ExecuteNonQuery() + myCommand.CommandText = "Insert into mytable (id, desc) VALUES (101, 'Description')" + myCommand.ExecuteNonQuery() + myTrans.Commit() + Console.WriteLine("Success.") + Catch e As Exception + Try + myTrans.Rollback() + Catch ex As MySqlException + If Not myTrans.Connection Is Nothing Then + Console.WriteLine("An exception of type " & ex.GetType().ToString() & _ + " was encountered while attempting to roll back the transaction.") + End If + End Try + + Console.WriteLine("An exception of type " & e.GetType().ToString() & _ + "was encountered while inserting the data.") + Console.WriteLine("Neither record was written to database.") + Finally + myConnection.Close() + End Try + End Sub + + + public void RunSqlTransaction(string myConnString) + { + MySqlConnection myConnection = new MySqlConnection(myConnString); + myConnection.Open(); + + MySqlCommand myCommand = myConnection.CreateCommand(); + MySqlTransaction myTrans; + + // Start a local transaction + myTrans = myConnection.BeginTransaction(); + // Must assign both transaction object and connection + // to Command object for a pending local transaction + myCommand.Connection = myConnection; + myCommand.Transaction = myTrans; + + try + { + myCommand.CommandText = "Insert into mytable (id, desc) VALUES (100, 'Description')"; + myCommand.ExecuteNonQuery(); + myCommand.CommandText = "Insert into mytable (id, desc) VALUES (101, 'Description')"; + myCommand.ExecuteNonQuery(); + myTrans.Commit(); + Console.WriteLine("Both records are written to database."); + } + catch(Exception e) + { + try + { + myTrans.Rollback(); + } + catch (MySqlException ex) + { + if (myTrans.Connection != null) + { + Console.WriteLine("An exception of type " + ex.GetType() + + " was encountered while attempting to roll back the transaction."); + } + } + + Console.WriteLine("An exception of type " + e.GetType() + + " was encountered while inserting the data."); + Console.WriteLine("Neither record was written to database."); + } + finally + { + myConnection.Close(); + } + } + + + + + + Defines the data type associated with a column. + + + + + This class is modeled after .NET Stopwatch. It provides better + performance (no system calls).It is however less precise than + .NET Stopwatch, measuring in milliseconds. It is adequate to use + when high-precision is not required (e.g for measuring IO timeouts), + but not for other tasks. + + + + + Wrapper around NetworkStream. + + MyNetworkStream is equivalent to NetworkStream, except + 1. It throws TimeoutException if read or write timeout occurs, instead + of IOException, to match behavior of other streams (named pipe and + shared memory). This property comes handy in TimedStream. + + 2. It implements workarounds for WSAEWOULDBLOCK errors, that can start + occuring after stream has times out. For a discussion about the CLR bug, + refer to http://tinyurl.com/lhgpyf. This error should never occur, as + we're not using asynchronous operations, but apparerntly it does occur + directly after timeout has expired. + The workaround is hinted in the URL above and implemented like this: + For each IO operation, if it throws WSAEWOULDBLOCK, we explicitely set + the socket to Blocking and retry the operation once again. + + + + + Set keepalive + timeout on socket. + + socket + keepalive timeout, in seconds + + + + Read a single quoted identifier from the stream + + + + + + + Helper class to encapsulate shared memory functionality + Also cares of proper cleanup of file mapping object and cew + + + + + Summary description for SharedMemoryStream. + + + + + By creating a private ctor, we keep the compiler from creating a default ctor + + + + + Mark - or + signs that are unary ops as no output + + + + + + Retrieve client SSL certificates. Dependent on connection string + settings we use either file or store based certificates. + + + + + Summary description for StreamCreator. + + + + + Set the keepalive timeout on the socket. + + The socket object. + The keepalive timeout, in seconds. + + + + Summary description for Version. + + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + + Looks up a localized string similar to Improper MySqlCommandBuilder state: adapter is null. + + + + + Looks up a localized string similar to Improper MySqlCommandBuilder state: adapter's SelectCommand is null. + + + + + Looks up a localized string similar to Invalid attempt to access a field before calling Read(). + + + + + Looks up a localized string similar to Authentication to host '{0}' for user '{1}' using method '{2}' failed with message: {3}. + + + + + Looks up a localized string similar to Authentication method '{0}' not supported by any of the available plugins.. + + + + + Looks up a localized string similar to Version string not in acceptable format. + + + + + Looks up a localized string similar to The buffer cannot be null. + + + + + Looks up a localized string similar to Buffer is not large enough. + + + + + Looks up a localized string similar to Canceling an executing query requires MySQL 5.0 or higher.. + + + + + Looks up a localized string similar to Canceling an active query is only supported on MySQL 5.0.0 and above. . + + + + + Looks up a localized string similar to Parameters can only be derived for commands using the StoredProcedure command type.. + + + + + Looks up a localized string similar to MySqlCommandBuilder does not support multi-table statements. + + + + + Looks up a localized string similar to MySqlCommandBuilder cannot operate on tables with no unique or key columns. + + + + + Looks up a localized string similar to Chaos isolation level is not supported . + + + + + Looks up a localized string similar to The CommandText property has not been properly initialized.. + + + + + Looks up a localized string similar to Compression is not supported.. + + + + + Looks up a localized string similar to The connection is already open.. + + + + + Looks up a localized string similar to Connection unexpectedly terminated.. + + + + + Looks up a localized string similar to Connection must be valid and open. + + + + + Looks up a localized string similar to The connection is not open.. + + + + + Looks up a localized string similar to The connection property has not been set or is null.. + + + + + Looks up a localized string similar to Could not find specified column in results: {0}. + + + + + Looks up a localized string similar to Count cannot be negative. + + + + + Looks up a localized string similar to SetLength is not a valid operation on CompressedStream. + + + + + Looks up a localized string similar to The given value was not in a supported format.. + + + + + Looks up a localized string similar to There is already an open DataReader associated with this Connection which must be closed first.. + + + + + Looks up a localized string similar to The default connection encoding was not found. Please report this as a bug along with your connection string and system details.. + + + + + Looks up a localized string similar to MySQL Connector/NET does not currently support distributed transactions.. + + + + + Looks up a localized string similar to SSL connection option '{0}' is duplicated.. + + + + + Looks up a localized string similar to Error creating socket connection. + + + + + Looks up a localized string similar to Fatal error encountered during command execution.. + + + + + Looks up a localized string similar to Fatal error encountered during data read.. + + + + + Looks up a localized string similar to Fatal error encountered attempting to read the resultset.. + + + + + Looks up a localized string similar to File based certificates are only supported when connecting to MySQL Server 5.1 or greater.. + + + + + Looks up a localized string similar to From index and length use more bytes than from contains. + + + + + Looks up a localized string similar to From index must be a valid index inside the from buffer. + + + + + Looks up a localized string similar to Call to GetHostEntry failed after {0} while querying for hostname '{1}': SocketErrorCode={2}, ErrorCode={3}, NativeErrorCode={4}.. + + + + + Looks up a localized string similar to Retrieving procedure metadata for {0} from server.. + + + + + Looks up a localized string similar to Value has an unsupported format.. + + + + + Looks up a localized string similar to An incorrect response was received from the server.. + + + + + Looks up a localized string similar to Index and length use more bytes than to has room for. + + + + + Looks up a localized string similar to Index must be a valid position in the buffer. + + + + + Looks up a localized string similar to You have specified an invalid column ordinal.. + + + + + Looks up a localized string similar to The requested value '{0}' is invalid for the given keyword '{1}'.. + + + + + Looks up a localized string similar to Microsecond must be a value between 0 and 999999.. + + + + + Looks up a localized string similar to Millisecond must be a value between 0 and 999. For more precision use Microsecond.. + + + + + Looks up a localized string similar to No other SSL options are accepted when SSL Mode is set to None.. + + + + + Looks up a localized string similar to Procedure or function '{0}' cannot be found in database '{1}'.. + + + + + Looks up a localized string similar to '{0}' is an illegal value for a boolean option.. + + + + + Looks up a localized string similar to Keyword does not allow null values.. + + + + + Looks up a localized string similar to Option not supported.. + + + + + Looks up a localized string similar to ACCESSIBLE + ADD + ALL + ALTER + ANALYZE + AND + AS + ASC + ASENSITIVE + BEFORE + BEGIN + BETWEEN + BIGINT + BINARY + BLOB + BOTH + BY + CALL + CASCADE + CASE + CHANGE + CHAR + CHARACTER + CHECK + COLLATE + COLUMN + COMMIT + CONDITION + CONNECTION + CONSTRAINT + CONTINUE + CONVERT + CREATE + CROSS + CURRENT_DATE + CURRENT_TIME + CURRENT_TIMESTAMP + CURRENT_USER + CURSOR + DATABASE + DATABASES + DAY_HOUR + DAY_MICROSECOND + DAY_MINUTE + DAY_SECOND + DEC + DECIMAL + DECLARE + DEFAULT + DELAYED + DELETE + DESC + DESCRIBE + DETERMINISTIC + DISTINCT + DISTINCTROW + D [rest of string was truncated]";. + + + + + Looks up a localized string similar to Mixing named and unnamed parameters is not allowed.. + + + + + Looks up a localized string similar to INTERNAL ERROR: More than one output parameter row detected.. + + + + + Looks up a localized string similar to Multiple simultaneous connections or connections with different connection strings inside the same transaction are not currently supported.. + + + + + Looks up a localized string similar to NamedPipeStream does not support seeking. + + + + + Looks up a localized string similar to NamedPipeStream doesn't support SetLength. + + + + + Looks up a localized string similar to The new value must be a MySqlParameter object.. + + + + + Looks up a localized string similar to Invalid attempt to call NextResult when the reader is closed.. + + + + + Looks up a localized string similar to When calling stored procedures and 'Use Procedure Bodies' is false, all parameters must have their type explicitly set.. + + + + + Looks up a localized string similar to Nested transactions are not supported.. + + + + + Looks up a localized string similar to The host {0} does not support SSL connections.. + + + + + Looks up a localized string similar to Unix sockets are not supported on Windows.. + + + + + Looks up a localized string similar to Cannot retrieve Windows identity for current user. Connections that use IntegratedSecurity cannot be pooled. Use either 'ConnectionReset=true' or 'Pooling=false' in the connection string to fix.. + + + + + Looks up a localized string similar to The object is not open or has been disposed.. + + + + + Looks up a localized string similar to Offset cannot be negative. + + + + + Looks up a localized string similar to Offset must be a valid position in buffer. + + + + + Looks up a localized string similar to Authentication with old password no longer supported, use 4.1 style passwords.. + + + + + Looks up a localized string similar to The option '{0}' is not currently supported.. + + + + + Looks up a localized string similar to Parameter '{0}' has already been defined.. + + + + + Looks up a localized string similar to Parameter cannot have a negative value. + + + + + Looks up a localized string similar to Parameter cannot be null. + + + + + Looks up a localized string similar to Parameter index was not found in Parameter Collection.. + + + + + Looks up a localized string similar to Parameter is invalid.. + + + + + Looks up a localized string similar to Parameter '{0}' must be defined.. + + + + + Looks up a localized string similar to Parameter '{0}' was not found during prepare.. + + + + + Looks up a localized string similar to Parameter can't be null or empty.. + + + + + Looks up a localized string similar to Password must be valid and contain length characters. + + + + + Looks up a localized string similar to This category includes a series of counters for MySQL. + + + + + Looks up a localized string similar to .NET Data Provider for MySQL. + + + + + Looks up a localized string similar to The number of times a procedures metadata had to be queried from the server.. + + + + + Looks up a localized string similar to Hard Procedure Queries. + + + + + Looks up a localized string similar to The number of times a procedures metadata was retrieved from the client-side cache.. + + + + + Looks up a localized string similar to Soft Procedure Queries. + + + + + Looks up a localized string similar to same name are not supported.. + + + + + Looks up a localized string similar to Packets larger than max_allowed_packet are not allowed.. + + + + + Looks up a localized string similar to Reading from the stream has failed.. + + + + + Looks up a localized string similar to Invalid attempt to read a prior column using SequentialAccess. + + + + + Looks up a localized string similar to Replicated connections allow only readonly statements.. + + + + + Looks up a localized string similar to Attempt to connect to '{0}' server failed.. + + + + + Looks up a localized string similar to No available server found.. + + + + + Looks up a localized string similar to Replication group '{0}' not found.. + + + + + Looks up a localized string similar to Replicated server not found: '{0}'. + + + + + Looks up a localized string similar to Routine '{0}' cannot be found. Either check the spelling or make sure you have sufficient rights to execute the routine.. + + + + + Looks up a localized string similar to Attempt to call stored function '{0}' without specifying a return parameter. + + + + + Looks up a localized string similar to Retrieval of the RSA public key is not enabled for insecure connections.. + + + + + Looks up a localized string similar to Connector/NET no longer supports server versions prior to 5.0. + + + + + Looks up a localized string similar to Snapshot isolation level is not supported.. + + + + + Looks up a localized string similar to Socket streams do not support seeking. + + + + + Looks up a localized string similar to Retrieving procedure metadata for {0} from procedure cache.. + + + + + Looks up a localized string similar to Stored procedures are not supported on this version of MySQL. + + + + + Looks up a localized string similar to SSL Connection error.. + + + + + Looks up a localized string similar to The stream has already been closed. + + + + + Looks up a localized string similar to The stream does not support reading. + + + + + Looks up a localized string similar to The stream does not support writing. + + + + + Looks up a localized string similar to String can't be empty.. + + + + + Looks up a localized string similar to Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.. + + + + + Looks up a localized string similar to error connecting: Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached.. + + + + + Looks up a localized string similar to {0}: Connection Closed. + + + + + Looks up a localized string similar to Unable to trace. There are more than Int32.MaxValue connections in use.. + + + + + Looks up a localized string similar to {0}: Error encountered during row fetch. Number = {1}, Message={2}. + + + + + Looks up a localized string similar to {0}: Connection Opened: connection string = '{1}'. + + + + + Looks up a localized string similar to {0}: Error encountered attempting to open result: Number={1}, Message={2}. + + + + + Looks up a localized string similar to {0}: Query Closed. + + + + + Looks up a localized string similar to {0}: Query Normalized: {2}. + + + + + Looks up a localized string similar to {0}: Query Opened: {2}. + + + + + Looks up a localized string similar to {0}: Resultset Opened: field(s) = {1}, affected rows = {2}, inserted id = {3}. + + + + + Looks up a localized string similar to {0}: Resultset Closed. Total rows={1}, skipped rows={2}, size (bytes)={3}. + + + + + Looks up a localized string similar to {0}: Set Database: {1}. + + + + + Looks up a localized string similar to {0}: Statement closed: statement id = {1}. + + + + + Looks up a localized string similar to {0}: Statement executed: statement id = {1}. + + + + + Looks up a localized string similar to {0}: Statement prepared: sql='{1}', statement id={2}. + + + + + Looks up a localized string similar to {0}: Usage Advisor Warning: Query is using a bad index. + + + + + Looks up a localized string similar to {0}: Usage Advisor Warning: The field '{2}' was converted to the following types: {3}. + + + + + Looks up a localized string similar to {0}: Usage Advisor Warning: Query does not use an index. + + + + + Looks up a localized string similar to {0}: Usage Advisor Warning: The following columns were not accessed: {2}. + + + + + Looks up a localized string similar to {0}: Usage Advisor Warning: Skipped {2} rows. Consider a more focused query.. + + + + + Looks up a localized string similar to {0}: MySql Warning: Level={1}, Code={2}, Message={3}. + + + + + Looks up a localized string similar to Type '{0}' is not derived from BaseCommandInterceptor. + + + + + Looks up a localized string similar to Type '{0}' is not derived from BaseExceptionInterceptor. + + + + + Looks up a localized string similar to Unable to connect to any of the specified MySQL hosts.. + + + + + Looks up a localized string similar to Unable to create plugin for authentication method '{0}'. Please see inner exception for details.. + + + + + Looks up a localized string similar to Unable to derive stored routine parameters. The 'Parameters' information schema table is not available and access to the stored procedure body has been disabled.. + + + + + Looks up a localized string similar to Unable to enable query analysis. Be sure the MySql.Data.EMTrace assembly is properly located and registered.. + + + + + Looks up a localized string similar to An error occured attempting to enumerate the user-defined functions. Do you have SELECT privileges on the mysql.func table?. + + + + + Looks up a localized string similar to Unable to execute stored procedure '{0}'.. + + + + + Looks up a localized string similar to There was an error parsing the foreign key definition.. + + + + + Looks up a localized string similar to Error encountered reading the RSA public key.. + + + + + Looks up a localized string similar to Unable to retrieve stored procedure metadata for routine '{0}'. Either grant SELECT privilege to mysql.proc for this user or use "check parameters=false" with your connection string.. + + + + + Looks up a localized string similar to Unable to start a second async operation while one is running.. + + + + + Looks up a localized string similar to Unix sockets are not supported on Windows. + + + + + Looks up a localized string similar to Unknown authentication method '{0}' was requested.. + + + + + Looks up a localized string similar to Unknown connection protocol. + + + + + Looks up a localized string similar to Value '{0}' is not of the correct type.. + + + + + Looks up a localized string similar to The requested column value could not be treated as or conveted to a Guid.. + + + + + Looks up a localized string similar to Windows authentication connections are not supported on {0}. + + + + + Looks up a localized string similar to Writing to the stream failed.. + + + + + Looks up a localized string similar to Parameter '{0}' is not found but a parameter with the name '{1}' is found. Parameter names must include the leading parameter marker.. + + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + + Looks up a localized string similar to Appdata path is not defined.. + + + + + Looks up a localized string similar to Authentication failed using MYSQL41 and SHA256_MEMORY. Check the user name and password or try using a secure connection.. + + + + + Looks up a localized string similar to This feature is currently not supported.. + + + + + Looks up a localized string similar to This functionality is only supported in MySQL {0} and higher.. + + + + + Looks up a localized string similar to Collation with id '{0}' not found.. + + + + + Looks up a localized string similar to Connection Data is incorrect.. + + + + + Looks up a localized string similar to The connection string is invalid.. + + + + + Looks up a localized string similar to '{0}' is not a valid connection string attribute.. + + + + + Looks up a localized string similar to Decimal (BCD) format is invalid.. + + + + + Looks up a localized string similar to Field type with name '{0}' not found.. + + + + + Looks up a localized string similar to Index type with name '{0}' not found.. + + + + + Looks up a localized string similar to {0} is not a valid column name in the row.. + + + + + Looks up a localized string similar to {0} is not a valid index for the row.. + + + + + Looks up a localized string similar to Invalid Uri . + + + + + Looks up a localized string similar to Invalid uri query value. + + + + + Looks up a localized string similar to Json configuration must contain 'uri' or 'host' but not both.. + + + + + Looks up a localized string similar to Keyword '{0}' not found.. + + + + + Looks up a localized string similar to Keyword not supported.. + + + + + Looks up a localized string similar to Field '{0}' is mandatory.. + + + + + Looks up a localized string similar to More than one document id was generated. Please use the DocumentIds property instead.. + + + + + Looks up a localized string similar to There is no data at index {0}. + + + + + Looks up a localized string similar to No 'host' has been specified.. + + + + + Looks up a localized string similar to No more data in resultset.. + + + + + Looks up a localized string similar to Object '{0}' not found. + + + + + Looks up a localized string similar to No placeholders.. + + + + + Looks up a localized string similar to {0} must be a value greater than 0.. + + + + + Looks up a localized string similar to Path not found '{0}'.. + + + + + Looks up a localized string similar to Providing a port number as part of the host address isn't supported when using connection strings in basic format or anonymous objects. Use URI format instead.. + + + + + Looks up a localized string similar to You must either assign no priority to any of the hosts or give a priority for every host.. + + + + + Looks up a localized string similar to The priority must be between 0 and 100.. + + + + + Looks up a localized string similar to ProgramData path is not defined.. + + + + + Looks up a localized string similar to Removing a document from a collection requires an _id property.. + + + + + Looks up a localized string similar to The process of closing the resultset and resulted in results being lost.. + + + + + Looks up a localized string similar to Unable to connect to any specified host.. + + + + + Looks up a localized string similar to Unable to read or decode data value.. + + + + + Looks up a localized string similar to Unexpected end of packet found while reading data values. + + + + + Looks up a localized string similar to Field name '{0}' is not allowed.. + + + + + Looks up a localized string similar to Unknown placeholder :{0}. + + + + + Looks up a localized string similar to Value '{0}' is not of the correct type.. + + + + + Summary description for MySqlUInt64. + + + + + An exception thrown by MySQL when a type conversion does not succeed. + + + + Initializes a new instance of the class with a specified error message. + Message describing the error. + + + + Represents a datetime data type object in a MySql database. + + + + + Defines whether the UTF or local timezone will be used. + + + + + Constructs a new MySqlDateTime object by setting the individual time properties to + the given values. + + The year to use. + The month to use. + The day to use. + The hour to use. + The minute to use. + The second to use. + The microsecond to use. + + + + Constructs a new MySqlDateTime object by using values from the given object. + + The object to copy. + + + + Constructs a new MySqlDateTime object by copying the current value of the given object. + + The MySqlDateTime object to copy. + + + + Enables the contruction of a MySqlDateTime object by parsing a string. + + + + + Indicates if this object contains a value that can be represented as a DateTime + + + + Returns the year portion of this datetime + + + Returns the month portion of this datetime + + + Returns the day portion of this datetime + + + Returns the hour portion of this datetime + + + Returns the minute portion of this datetime + + + Returns the second portion of this datetime + + + + Returns the milliseconds portion of this datetime + expressed as a value between 0 and 999 + + + + + Returns the microseconds portion of this datetime (6 digit precision) + + + + + Returns true if this datetime object has a null value + + + + + Retrieves the value of this as a DateTime object. + + + + Returns this value as a DateTime + + + Returns a MySQL specific string representation of this value + + + + + + + + + Represents a decimal data type object in a MySql database. + + + + + Gets a boolean value signaling if the type is null. + + + + + Gets or sets the decimal precision of the type. + + + + + Gets or sets the scale of the type. + + + + + Gets the decimal value associated to this type. + + + + + Converts this decimal value to a double value. + + The value of this type converted to a dobule value. + + + + Represents a geometry data type object in a MySql database. + + + + + Gets the x coordinate. + + + + + Gets the y coordinate. + + + + + Gets the SRID value. + + + + + Gets a boolean value that signals if the type is null. + + + + + Gets the value associated to this type. + + + + Returns the Well-Known Text representation of this value + POINT({0} {1})", longitude, latitude + http://dev.mysql.com/doc/refman/4.1/en/gis-wkt-format.html + + + + Get value from WKT format + SRID=0;POINT (x y) or POINT (x y) + + WKT string format + + + + Try to get value from WKT format + SRID=0;POINT (x y) or POINT (x y) + + WKT string format + Out mysqlGeometryValue + + + + Sets the DSInfo when GetSchema is called for the DataSourceInformation collection. + + The schema collection. + + + + Gets the well-known text representation of the geomtry object. + + A string representation of the WKT. + + + + Implementation of EXTERNAL authentication type. + + + + + Implementation of MySQL41 authentication type. + + + + + Implementation of PLAIN authentication type. + + + + + Compares two Guids in string format. + + The first string to compare. + The first string to compare. + An integer that indicates the lexical relationship between the two comparands, similar to + + + + Compares two objects. + + The first to compare. + The second to compare. + An integer that indicates the lexical relationship between the two comparands, similar to + + + + Gets and sets the host list. + + + + + Gets the active host. + + + + + Active host. + + + + + Sets the initial active host. + + + + + Determines the next host. + + object that represents the next available host. + + + + Implements common elements that allow to manage the hosts available for client side failover. + + + + + Gets and sets the failover group which consists of a host list. + + + + + Resets the manager. + + + + + Sets the host list to be used during failover operations. + + The host list. + The failover method. + + + + Attempts to establish a connection to a host specified from the list. + + The original connection string set by the user. + An out parameter that stores the updated connection string. + An instance if the connection was succesfully established, a exception is thrown otherwise. + + + + Attempts the next host in the list. Moves to the first element if the end of the list is reached. + + + + + Determines the next host on which to attempt a connection by checking the value of the Priority property in descending order. + + + + + Manages the hosts available for client side failover using the Sequential Failover method. + The Sequential Failover method attempts to connect to the hosts specified in the list one after another until the initial host is reached. + + + + + The index of the current host. + + + + + Sets the initial active host. + + + + + Determines the next host. + + A object that represents the next available host. + + + + Depicts a host which can be failed over to. + + + + + Gets and sets the name or address of the host. + + + + + Gets and sets the port number. + + + + + Gets a value between 0 and 100 which represents the priority of the host. + + + + + Flag to indicate if this host is currently being used. + + + + + Abstract class for the protocol base operations in client/server communication. + + + + + + Reads a row from the base result. + + The base result to be queried. + A list containing a byte representation of the value for each field found in the row. + + + + Executes an SQL statement. + + The statement to be executed. + The arguments associated to the SQL statement. + + + + Determines if the base result contains retrievable items. + + The base result to be queried. + true if the base result contains data; otherwise, false. + + + + Loads metadata associated to the retrieved columns. + + A list of Column objects containing metadata for each column. + + + + Closes the base result preventing the retrieval of data. + + The base result to close. + + + Expression parser for MySQL-X protocol. + + + string being parsed. + + + Token stream produced by lexer. + + + Parser's position in token stream. + + + Mapping of names to positions for named placeholders. Used for both string values ":arg" and numeric values ":2". + + + Number of positional placeholders. + + + Are relational columns identifiers allowed? + + + Token types used by the lexer. + + + Token. Includes type and string value of the token. + + + Mapping of reserved words to token types. + + + Does the next character equal the given character? (respects bounds) + + + Helper function to match integer or floating point numbers. This function should be called when the position is on the first character of the number (a + digit or '.'). + + @param i The current position in the string + @return the next position in the string after the number. + + + Lexer for MySQL-X expression language. + + + Assert that the token at pos is of type type. + + + Does the current token have type `t'? + + + Does the next token have type `t'? + + + Does the token at position `pos' have type `t'? + + + Consume token. + + @return the string value of the consumed token + + + Parse a paren-enclosed expression list. This is used for function params or IN params. + + @return a List of expressions + + + Parse a function call of the form: IDENTIFIER PAREN_EXPR_LIST. + + @return an Expr representing the function call. + + + Parse an identifier for a function call: [schema.]name + + + Parse a document path member. + + + Parse a document path array index. + + + Parse a JSON-style document path, like WL#7909, but prefix by @. instead of $. + + + Parse a document field. + + + Parse a column identifier (which may optionally include a JSON document path). + + + Build a unary operator expression. + + + Parse an atomic expression. (c.f. grammar at top) + + + Parse a left-associated binary operator. + + @param types + The token types that denote this operator. + @param innerParser + The inner parser that should be called to parse operands. + @return an expression tree of the binary operator or a single operand + + + Parse the entire string as an expression. + + @return an X-protocol expression tree + + + + Parse an ORDER BY specification which is a comma-separated list of expressions, each may be optionally suffixed by ASC/DESC. + + + Parse a SELECT projection which is a comma-separated list of expressions, each optionally suffixed with a target alias. + + + Parse an INSERT field name. + @todo unit test + + + Parse an UPDATE field which can include can document paths. + + + Parse a document projection which is similar to SELECT but with document paths as the target alias. + + + Parse a list of expressions used for GROUP BY. + + + @return the number of positional placeholders in the expression. + + + @return a mapping of parameter names to positions. + + + Proto-buf helper to build a LITERAL Expr with a Scalar NULL type. + + + Proto-buf helper to build a LITERAL Expr with a Scalar DOUBLE type (wrapped in Any). + + + Proto-buf helper to build a LITERAL Expr with a Scalar SINT (signed int) type (wrapped in Any). + + + Proto-buf helper to build a LITERAL Expr with a Scalar UINT (unsigned int) type (wrapped in Any). + + + Proto-buf helper to build a LITERAL Expr with a Scalar STRING type (wrapped in Any). + + + Proto-buf helper to build a LITERAL Expr with a Scalar OCTETS type (wrapped in Any). + + + Proto-buf helper to build a LITERAL Expr with a Scalar BOOL type (wrapped in Any). + + + Wrap an Any value in a LITERAL expression. + + + Build an Any with a string value. + + + + Parses an anonymous object into a dictionary. + + The object to parse. + A dictionary if the provided object is an anonymous object; otherwise, null. + + + List of operators which will be serialized as infix operators. + + + Scalar to string. + + + JSON document path to string. + + + Column identifier (or JSON path) to string. + + + Function call to string. + + + Create a string from a list of (already stringified) parameters. Surround by parens and separate by commas. + + + Convert an operator to a string. Includes special cases for chosen infix operators (AND, OR) and special forms such as LIKE and BETWEEN. + + + Escape a string literal. + + + Quote a named identifer. + + + Serialize an expression to a string. + + + + Sends the delete documents message + + + + + Sends the CRUD modify message + + + + + Class implementation for a default communication kind. + + + + + Constructor method for the communication routing service + + A MySqlXConnectionStringBuilder setted with the information to use in the connection + + + + Gets the current connection base on the connection mode + + One of the values of ConnectionMode Offline, ReadOnly, WriteOnly, ReadWrite + + + + + Abstract class used to define the kind of server in environments with multiple types of distributed systems. + + + + + Main class for parsing json strings. + + + + + Initializes a new instance of the JsonParser class. + + + + + Parses the received string into a dictionary. + + The string to parse. + A object that represents the parsed string. + + + + Abstract class to manage and encapsulate one or more actual connections. + + + + + Creates a new session object with the values of the settings parameter. + + Settings to be used in the session object + + + + Sets the connection's charset default collation. + + The opened session. + The character set. + + + + Gets the version of the server. + + An instance of containing the server version. + + + + Implementation class for object that manages low-level work of queuing tasks onto threads. + + + + + Implementation class of InternalSession to manage connections using the Xprotocol type object. + + + + + Represents a base class for a Session. + + + + + Gets the connection settings for this session. + + + + + Gets the currently active schema. + + + + + Gets the default schema provided when creating the session. + + + + + Gets the connection uri representation of the connection options provided during the creation of the session. + + + + + Initializes a new instance of the BaseSession class based on the specified connection string. + + The connection used to create the session. + is null. + Unable to parse the when + in URI format. + + When using Unix sockets the protocol=unix or protocol=unixsocket connection option is required. + This will enable elements passed in the server connection option to be treated as Unix sockets. The user is also required + to explicitly set sslmode to none since X Plugin does not support SSL when using Unix sockets. Note that + protocol=unix and protocol=unixsocket are synonyms. +   + Multiple hosts can be specified as part of the , + which will enable client side failover when trying to establish a connection. +   + Connection string examples (in URI format): + - mysqlx://test:test@[192.1.10.10,localhost] + - mysqlx://test:test@[192.1.10.10,127.0.0.1] + - mysqlx://root:@[../tmp/mysqlx.sock,/tmp/mysqld.sock]?protocol=unix&sslmode=none + - mysqlx://test:test@[192.1.10.10:33060,127.0.0.1:33060] + - mysqlx://test:test@[192.1.10.10,120.0.0.2:22000,[::1]:33060]/test?connectiontimeout=10 + - mysqlx://test:test@[(address=server.example,priority=20),(address=127.0.0.1,priority=100)] + - mysqlx://test:test@[(address=server.example,priority=100),(address=127.0.0.1,priority=75),(address=192.0.10.56,priority=25)] + +   + Connection string examples (in basic format): + - server=10.10.10.10,localhost;port=33060;uid=test;password=test; + - host=10.10.10.10,192.101.10.2,localhost;port=5202;uid=test;password=test; + - host=./tmp/mysqld.sock,/var/run/mysqldx.sock;port=5202;uid=root;protocol=unix;sslmode=none; + - server=(address=server.example,priority=20),(address=127.0.0.1,priority=100);port=33060;uid=test;password=test; + - server=(address=server.example,priority=100),(address=127.0.0.1,priority=75),(address=192.0.10.56,priority=25);port=33060;uid=test;password=test; + +   + Failover methods + - Sequential: Connection attempts will be performed in a sequential order, that is, one after another until + a connection is successful or all the elements from the list have been tried. + + - Priority based: If a priority is provided, the connection attemps will be performed in descending order, starting + with the host with the highest priority. Priority must be a value between 0 and 100. Additionally, it is required to either + give a priority for every host or no priority to any host. + + + + + + Initializes a new instance of the BaseSession class based on the specified anonymous type object. + + The connection data as an anonymous type used to create the session. + is null. + + Multiple hosts can be specified as part of the , which will enable client-side failover when trying to + establish a connection. +   + To assign multiple hosts create a property similar to the connection string examples (in basic format) shown in + . Note that the value of the property must be a string. + + + + + + Drops the database/schema with the given name. + + The name of the schema. + is null. + + + + Creates a schema/database with the given name. + + The name of the schema/database. + A object that matches the recently created schema/database. + + + + Gets the schema with the given name. + + The name of the schema. + A object set with the provided schema name. + + + + Gets a list of schemas/databases in this session. + + A list containing all existing schemas/databases. + + + + Starts a new transaction. + + + + + Commits the current transaction. + + A object containing the results of the commit operation. + + + + Rolls back the current transaction. + + + + + Closes this session. + + + + + Sets a transaction savepoint with an autogenerated name. + + The autogenerated name of the transaction savepoint. + + + + Sets a named transaction savepoint. + + The name of the transaction savepoint. + The name of the transaction savepoint. + + + + Removes the named savepoint from the set of savepoints within the current transaction. + + The name of the transaction savepoint. + + + + Rolls back a transaction to the named savepoint without terminating the transaction. + + The name of the transaction savepoint. + + + + Parses the connection string. + + The connection string in basic or URI format. + An updated connection string in basic format. + The format (basic or URI) of the connection string is determined as well as the + prescence of multiple hosts. + + + + Parses a connection string in URI format. + + The connection string to parse. + A connection string in basic format. + + + + Validates if the string provided is a Unix socket. + + The Unix socket to evaluate. + true if is a valid Unix socket; otherwise, false. + + + + Converts the URI object into a connection string in basic format. + + An instance with the values for the provided connection options. + The path of the Unix socket. + if true the will replace the value for the server connection option; otherwise, false + A connection string in basic format. + + + + Parses a connection string in basic format. + + The connection string to parse. + The parsed connection string. + + + + Initializes the if more than one host is found. + + A string containing an unparsed host list. + True if the connection string is in URI format, false otherwise. + The number of hosts found, -1 if an error was raised during parsing. + + + + Creates a object based on the provided parameters. + + The host string which can be a simple host name or a host name and port. + True if the connection string is in URI format, false otherwise. + The priority of the host. + The port number of the host. + + + + + Normalizes the Unix socket by removing leading and ending parenthesis as well as removing special characters. + + The Unix socket to normalize. + A normalized Unix socket. + + + + Disposes the current object. Disposes of the managed state if the flag is set to true. + + Flag to indicate if the managed state is to be disposed. + + + + Disposes the current object. Code added to correctly implement the disposable pattern. + + + + + Describes the state of the session. + + + + + The session is closed. + + + + + The session is open. + + + + + The session object is connecting to the data source. + + + + + The session object is executing a command. + + + + + Represents a collection of documents. + + + + + Creates an containing the provided objects that can be used to add + one or more items to a collection. + + The objects to add. + An object containing the objects to add. + is null. + This method can take anonymous objects, domain objects, or just plain JSON strings. + The statement can be further modified before execution. + + + + Creates a with the given condition that can be used to remove + one or more documents from a collection.The statement can then be further modified before execution. + + The condition to match documents. + A object set with the given condition. + is null or white space. + The statement can then be further modified before execution. + + + + Creates a with the given identifier that can be used to remove a single + document from a collection. + + The identifier to match the document. + A object set with the given identifier. + The statement can then be further modified before execution. + + + + Creates a containing the identifier of the provided document that can + be used to remove a single document from a collection. + + The representing the document to remove. + A object set with the given document's identifier. + No identifier for the document was provided. + The remove statement can then be further modified before execution. + + + + Removes the document with the given identifier. + + The unique identifier of the document to replace. + A object containing the results of the execution. + is null or white space. + This is a direct execution method. + + + + Creates a with the given condition that can be used to modify one or more + documents from a collection. + + The condition to match documents. + A object set with the given condition. + is null or white space. + The statement can then be further modified before execution. + + + + Replaces the document matching the given identifier. + + The unique identifier of the document to replace. + The document to replace the matching document. + A object containing the results of the execution. + is null or whitespace. + is null. + This is a direct execution method. Operation succeeds even if no matching document was found; + in which case, the Result.RecordsAffected property is zero. If the new document contains an identifier, the value + is ignored. + + + + Adds the given document to the collection unless the identifier or any other field that has a unique index + already exists, in which case it will update the matching document. + + The unique identifier of the document to replace. + The document to replace the matching document. + A object containing the results of the execution. + The server version is lower than 8.0.3. + is null or white space. + is null. + The is different from the one in . + This is a direct execution method. + + + + Returns the number of documents in this collection on the server. + + The number of documents found. + + + + Creates a with the given condition which can be used to find documents in a + collection. + + An optional condition to match documents. + A object set with the given condition. + The statement can then be further modified before execution. + + + + Creates an index based on the properties provided in the JSON document. + + The index name. + JSON document describing the index to be created. + + is a JSON document with the following fields: + + - fields: array of IndexField objects, each describing a single document member to be + included in the index (see below). + - type: string, (optional) the type of index. One of INDEX or SPATIAL. Default is INDEX and may + be omitted. + +   + A single IndexField description consists of the following fields: + + - field: string, the full document path to the document member or field to be indexed. + - type: string, one of the supported SQL column types to map the field into (see the following list). + For numeric types, the optional UNSIGNED keyword may follow. For the TEXT type, the length to consider for + indexing may be added. + - required: bool, (optional) true if the field is required to exist in the document. defaults to + false, except for GEOJSON where it defaults to true. + - options: int, (optional) special option flags for use when decoding GEOJSON data. + - srid: int, (optional) srid value for use when decoding GEOJSON data. + +   + Supported SQL column types: + + - INT [UNSIGNED] + - TINYINT [UNSIGNED] + - SMALLINT [UNSIGNED] + - MEDIUMINT [UNSIGNED] + - INTEGER [UNSIGNED] + - BIGINT [UNSIGNED] + - REAL [UNSIGNED] + - FLOAT [UNSIGNED] + - DOUBLE [UNSIGNED] + - DECIMAL [UNSIGNED] + - NUMERIC [UNSIGNED] + - DATE + - TIME + - TIMESTAMP + - DATETIME + - TEXT[(length)] + - GEOJSON (extra options: options, srid) + + + + + + Drops a collection index. + + The index name. + is null or white space. + + + + Verifies if the current collection exists in the server schema. + + true if the collection exists; otherwise, false. + + + + Returns the document with the given identifier. + + The unique identifier of the document to replace. + A object if a document matching given identifier exists; otherwise, null. + is null or white space. + This is a direct execution method. + + + + Base abstract class that defines elements inherited by all result types. + + + + + Gets the number of records affected by the statement that generated this result. + + + + + Gets the object of the session. + + + + + Gets a read-only collection of objects derived from statement execution. + + + + + Gets the number of warnings in the collection derived from statement execution. + + + + + Gets the number of warnings in the collection derived from statement execution. + + + + + No action is performed by this method. It is intended to be overriden by child classes if required. + + + + + Base abstract class for API statement. + + + + + + Initializes a new instance of the BaseStatement class based on the specified session. + + The session where the statement will be executed. + + + + Gets the that owns the statement. + + + + + Executes the base statements. This method is intended to be defined by child classes. + + A result object containing the details of the execution. + + + + Executes a statement asynchronously. + + A result object containing the details of the execution. + + + + Abstract class for buffered results. + + Generic result type. + + + + Index of the current item. + + + + + List of generic items in this buffered result. + + + + + Flag that indicates if all items have been read. + + + + + Gets a dictionary containing the column names and their index. + + + + + Gets the page size set for this buffered result. + + + + + Loads the column data into the field. + + + + + Retrieves a read-only list of the generic items associated to this buffered result. + + A generic list representing items in this buffered result. + + + + Retrieves one element from the generic items associated to this buffered result. + + A generic object that corresponds to the current or default item. + + + + Determines if all items have already been read. + + True if all items have been retrived, false otherwise. + + + + Gets the current item. + + All items have already been read. + + + + Determines if all items have already been read. + + True if all items have been retrived, false otherwise. + + + + Resets the value of the field to zero. + + + + + Gets an representation of this object. + + An representation of this object. + + + + Gets an representation of this object. + + An representation of this object. + + + + Retrieves a read-only list of the generic items associated to this buffered result. + + A generic list representing items in this buffered result. + + + + No body has been defined for this method. + + + + + Class to represent an error in this result. + + + + + Numeric code. + + + + + Return code indicating the outcome of the executed SQL statement. + + + + + Error message. + + + + + Initializes a new instance of the ErrorInfo class. + + + + + Abstract class for filterable statements. + + The filterable statement. + The database object. + The type of result. + + + + Initializes a new instance of the FiltarableStatement class based on the target and condition. + + The database object. + The optional filter condition. + + + + Allows the user to set the where condition for this operation. + + The Where condition. + The implementing statement type. + + + + Sets the number of items to be returned by the operation. + + The number of items to be returned. + The implementing statement type. + is equal or lower than 0. + + + + Sets the number of items to be skipped before including them into the result. + + The number of items to be skipped. + The implementing statement type. + + + + Binds the parameter values in filter expression. + + The parameter name. + The value of the parameter. + A generic object representing the implementing statement type. + + + + Binds the parameter values in filter expression. + + The parameters as a DbDoc object. + A generic object representing the implementing statement type. + + + + Binds the parameter values in filter expression. + + The parameters as a JSON string. + The implementing statement type. + + + + Binds the parameter values in filter expression. + + The parameters as an anonymous object: new { param1 = value1, param2 = value2, ... }. + The implementing statement type. + + + + Executes the statement. + + The function to execute. + The generic object to use. + A generic result object containing the results of the execution. + + + + Clones the filterable data but Session and Target remain the + same. + + A clone of this filterable statement. + + + + Represents a general statement result. + + + + + Gets the number of records affected by the statement that generated this result. + + + + + Gets the last inserted identifier (if there is one) by the statement that generated this result. + + + + + Gets the list of generated identifiers in the order of the Add() calls. + + + + + Abstract class to select a database object target. + + The database object. + The execution result. + + + + Initializes a new instance of the TargetedBaseStatement class based on the provided target. + + The database object. + + + + Gets the database target. + + + + + Represents a warning in this result. + + + + + Numeric value associated to the warning message. + + + + + Error message. + + + + + Strict level for the warning. + + + + + Initializes a new instance of the WarningInfo class based on the code and msg. + + The code for the warning. + The error message for the warning. + + + + Represents a chaining collection insert statement. + + + + + Adds documents to the collection. + + The documents to add. + This object. + The array is null. + + + + Executes the Add statement. + + A object containing the results of the execution. + + + + Implementation class for CRUD statements with collections using an index. + + + + + Executes this statement. + + A object containing the results of the execution. + + + + Represents a collection statement. + + + + + + Converts base s into objects. + + Array of objects to be converted to objects. + An enumerable collection of objects. + + + + Represents the result of an operation that includes a collection of documents. + + + + + Represents a chaining collection find statement. + + + + + List of column projections that shall be returned. + + List of columns. + This object set with the specified columns or fields. + + + + Executes the Find statement. + + A object containing the results of execution and data. + + + + Allows the user to set the limit and offset for the operation. + + Number of items to be returned. + Number of items to be skipped. + This same object set with the specified limit. + + + + Locks matching rows against updates. + + Optional row lock option to use. + This same object set with the lock shared option. + The server version is lower than 8.0.3. + + + + Locks matching rows so no other transaction can read or write to it. + + Optional row lock option to use. + This same object set with the lock exclusive option. + The server version is lower than 8.0.3. + + + + Sets the collection aggregation. + + The field list for aggregation. + This same object set with the specified group-by criteria. + + + + Filters criteria for aggregated groups. + + The filter criteria for aggregated groups. + This same object set with the specified filter criteria. + + + + Sets user-defined sorting criteria for the operation. The strings use normal SQL syntax like + "order ASC" or "pages DESC, age ASC". + + The order criteria. + A generic object representing the implementing statement type. + + + + Represents a chaining collection modify statement. + + + + + Sets key and value. + + The document path key. + The new value. + This object. + + + + Changes value for a key. + + The document path key. + The new value. + This object. + + + + Removes keys or values from a document. + + An array of document paths representing the keys to be removed. + This object. + + + + Creates a object set with the changes to be applied to all matching documents. + + The JSON-formatted object describing the set of changes. + A object set with the changes described in . + can be a object, an anonymous object, or a JSON string. + is null. + is null or white space. + + + + Inserts an item into the specified array. + + The document path key including the index on which the item will be inserted. + The value to insert into the array. + A object containing the updated array. + + + + Appends an item to the specified array. + + The document path key. + The value to append to the array. + A object containing the updated array. + + + + Allows the user to set the sorting criteria for the operation. The strings use normal SQL syntax like + "order ASC" or "pages DESC, age ASC". + + The order criteria. + A generic object representing the implementing statement type. + + + + Executes the modify statement. + + A object containing the results of the execution. + + + + Represents a chaining collection remove statement. + + + + + Sets user-defined sorting criteria for the operation. The strings use normal SQL syntax like + "order ASC" or "pages DESC, age ASC". + + The order criteria. + A generic object representing the implementing statement type. + + + + Executes the remove statement. + + A object containing the results of the execution. + + + + Represents a database object. + + + + + Gets the session that owns the database object. + + + + + Gets the schema that owns the database object. + + + + + Gets the database object name. + + + + + Verifies that the database object exists in the database. + + True if the object exists in database, false otherwise. + + + + Represents a generic document in JSON format. + + + + + Initializes a new instance of the DbDoc class based on the object provided. The value can be a domain object, anonymous object, or JSON string. + + The value for this DbDoc. + + + + Gets the value of a document property. + + The key path for the property. + + + + + Gets the identifier of the document. + + + + + Gets a value indicating if this document has an identifier (property named _id with a value). + + + + + Sets a property on this document. + + The key of the property. + The new property value. + + + + Returns this document in Json format. + + A Json formatted string. + + + + Compares this DbDoc with another one. + + The DbDoc to compare to. + True if they are equal, false otherwise. + + + + Gets a value that serves as a hash function for a particular type. + + A hash code for the current object. + + + + Represents a collection of documents with a generic type. + + + + + Initializes a new instance of the generic Collection class based on the specified schema + and name. + + The object associated to this collection. + The name of the collection. + + + + Creates an containing the provided generic object. The add + statement can be further modified before execution. + + The generic object to add. + An object containing the object to add. + + + + Defines elements that allow to iterate through the contents of various items. + + + + + Initializes a new instance of the Iterator class. + + + + + This method is not yet implemented. + + + + Exception is always thrown since the body of the method is not yet implemented. + + + + Encapsulates a string that is meant to be a MySQL expression. + + + + + Gets the string representation of the MySQL expression. + + + + + Main class for session operations related to Connector/NET implementation of the X DevAPI. + + + + + Opens a session to the server given or to the first available server if multiple servers were specified. + + The connection string in basic or URI format. + A object representing the established session. + Multiple hosts can be specified as part of the which + will enable client side failover when trying to establish a connection. For additional details and syntax + examples refer to the remarks section. + + + + Opens a session to the server given. + + The connection data for the server. + A object representing the established session. + + + + Enables the creation of connection strings by exposing the connection options as properties. + Contains connection options specific to the X protocol. + + + + + Gets or sets the authentication mechanism to use with X Protocol connections. + + + + + Gets or sets the path to a local file that contains a list of trusted Certificate Authorities. + + + + + Gets or sets the path to a local file that contains certificate revocation lists. + + + + + Represents a table column. + + + + + Gets the original column name. + + + + + Gets the alias of the column name. + + + + + Gets the table name the column orginates from. + + + + + Gets the alias of the table name . + + + + + Gets the schema name the column originates from. + + + + + Gets the catalog the schema originates from. + In MySQL protocol this is `def` by default. + + + + + Gets the collation used for this column. + + + + + Gets the character set used for this column. + + + + + Gets the column length. + + + + + Gets the fractional decimal digits for floating point and fixed point numbers. + + + + + Gets the Mysql data type. + + + + + Gets the .NET Clr data type. + + + + + True if it's a signed number. + + + + + True if column is UINT zerofill or BYTES rightpad. + + + + + Initializes a new instance of the Column class. + + + + + Represents a resultset that contains rows of data. + + + + + Gets the columns in this resultset. + + + + + Gets the number of columns in this resultset. + + + + + Gets a list containing the column names in this resultset. + + + + + Gets the rows of this resultset. This collection will be incomplete unless all the rows have been read + either by using the Next method or the Buffer method. + + + + + Gets the value of the column value at the current index. + + The column index. + The CLR value at the column index. + + + + Allows getting the value of the column value at the current index. + + The column index. + The CLR value at the column index. + + + + Returns the index of the given column name. + + The name of the column to find. + The numeric index of column. + + + + Represents a single row of data in a table. + + + + + Gets the value of the row at the given index. + + The column index to retrieve the value. + The value at the index. + + + + Gets the value of the column as a string. + + The name of the column. + The value of the column as a string. + + + + Gets a string based indexer into the row. Returns the value as a CLR type. + + The column index to get. + The CLR value for the column. + + + + Inherits from . Creates a resultset that contains rows of data. + + + + + Represents a resultset that contains rows of data for relational operations. + + + + + Gets a boolean value indicating if this result has data. + + + + + Gets the number of records affected by the statement that generated this result. + + + + + Gets the last inserted identifier (if there is one) by the statement that generated this result. + + + + + Moves to next resultset. + + True if there is a new resultset, false otherwise. + + + + Represents a sql statement. + + + + + Initializes a new instance of the SqlStament class bassed on the session and sql statement. + + The session the Sql statement belongs to. + The Sql statement. + + + + Gets the current Sql statement. + + + + + Gets the list of parameters associated to this Sql statement. + + + + + Executes the current Sql statement. + + A object with the resultset and execution status. + + + + Binds the parameters values by position. + + The parameter values. + This set with the binded parameters. + + + + Represents a server Table or View. + + + + + Gets a value indicating whether the object is + a View (True) or a Table (False). + + + + + Creates a set with the columns to select. The table select + statement can be further modified before execution. This method is intended to select a set + of table rows. + + The optional column names to select. + A object for select chain operations. + + + + Creates a set with the fileds to insert to. The table + insert statement can be further modified before exeuction. This method is intended to + insert one or multiple rows into a table. + + The list of fields to insert. + A object for insert chain operations. + + + + Creates a . This method is intended to update table rows + values. + + A object for update chain operations. + + + + Creates a . This method is intended to delete rows from a + table. + + A object for delete chain operations. + + + + Returns the number of rows in the table on the server. + + The number of rows. + + + + Verifies if the table exists in the database. + + true if the table exists; otherwise, false. + + + + Represents a chaining table delete statement. + + + + + Sets user-defined sorting criteria for the operation. The strings use normal SQL syntax like + "order ASC" or "pages DESC, age ASC". + + The order criteria. + A generic object representing the implementing statement type. + + + + Executes the delete statement. + + A object containing the results of the delete execution. + + + + Represents a chaining table insert statement. + + + + + Executes the insert statement. + + A object containing the results of the insert statement. + + + + Values to be inserted. + Multiple rows supported. + + The values to be inserted. + This same object. + + + + Represents a chaining table select statement. + + + + + Executes the select statement. + + A object containing the results of the execution and data. + + + + Sets user-defined limit and offset for the operation. + + The number of items to be returned. + The number of items to be skipped. + This same object set with the specified limit. + + + + Locks matching rows against updates. + + Optional row lock option to use. + This same object set with lock shared option. + The server version is lower than 8.0.3. + + + + Locks matching rows so no other transaction can read or write to it. + + Optional row lock option to use. + This same object set with the lock exclusive option. + The server version is lower than 8.0.3. + + + + Sets the table aggregation. + + The column list for aggregation. + This same object set with the specified group-by criteria. + + + + Filters criteria for aggregated groups. + + The filter criteria for aggregated groups. + This same object set with the specified filter criteria. + + + + Sets user-defined sorting criteria for the operation. The strings use normal SQL syntax like + "order ASC" or "pages DESC, age ASC". + + The order criteria. + A generic object that represents the implementing statement type. + + + + Represents a chaining table update statement. + + + + + Executes the update statement. + + A object ocntaining the results of the update statement execution. + + + + Column and value to be updated. + + Column name. + Value to be updated. + This same object. + + + + Sets user-defined sorting criteria for the operation. The strings use normal SQL syntax like + "order ASC" or "pages DESC, age ASC". + + The order criteria. + A generic object that represents the implementing statement type. + + + + Represents a schema or database. + + + + + Session related to current schema. + + + + + Returns a list of all collections in this schema. + + A list representing all found collections. + + + + Returns a list of all tables in this schema. + + A list representing all found tables. + + + + Gets a collection by name. + + The name of the collection to get. + Ensures the collection exists in the schema. + A object matching the given name. + + + + Gets a typed collection object. This is useful for using domain objects. + + The type of collection returned. + The name of collection to get. + A generic object set with the given name. + + + + Gets the given collection as a table. + + The name of the collection. + A object set with the given name. + + + + Gets a table object. Upon return the object may or may not be valid. + + The name of the table object. + A object set with the given name. + + + + Creates a collection. + + The name of the collection to create. + If false, it will throw an exception if collection exists. + Collection referente. + + + + Drops the given collection. + + The name of the collection to drop. + is null. + + + + Determines if this schema actually exists. + + True if exists, false otherwise. + + + + Represents a single server session. + + + + + Returns a object that can be used to execute the given SQL. + + The SQL to execute. + A object set with the provided SQL. + + + + Sets the schema in the database. + + The schema name to be set. + + + + Executes a query in the database to get the current schema. + + Current database object or null if no schema is selected. + + + Holder for reflection information generated from mysqlx.proto + + + File descriptor for mysqlx.proto + + + + IDs of messages that can be sent from client to the server + + .. note:: + this message is never sent on the wire. It is only used to let ``protoc`` + + * generate constants + * check for uniqueness + + + + Container for nested types declared in the ClientMessages message type. + + + + IDs of messages that can be sent from server to client + + .. note:: + this message is never sent on the wire. It is only used to let ``protoc`` + + * generate constants + * check for uniqueness + + + + Container for nested types declared in the ServerMessages message type. + + + + NOTICE has to stay at 11 forever + + + + + generic Ok message + + + + Field number for the "msg" field. + + + + optional + + + + + generic Error message + + A ``severity`` of ``ERROR`` indicates the current message sequence is + aborted for the given error and the session is ready for more. + + In case of a ``FATAL`` error message the client should not expect + the server to continue handling any further messages and should + close the connection. + + :param severity: severity of the error message + :param code: error-code + :param sql_state: SQL state + :param msg: human readable error message + + + + Field number for the "severity" field. + + + + optional [ default = ERROR ] + + + + Field number for the "code" field. + + + + required + + + + Field number for the "sql_state" field. + + + + required + + + + Field number for the "msg" field. + + + + required + + + + Container for nested types declared in the Error message type. + + + Holder for reflection information generated from mysqlx_connection.proto + + + File descriptor for mysqlx_connection.proto + + + + a Capability + + a tuple of a ``name`` and a :protobuf:msg:`Mysqlx.Datatypes::Any` + + + + Field number for the "name" field. + + + + required + + + + Field number for the "value" field. + + + + required + + + + + Capabilities + + + + Field number for the "capabilities" field. + + + + get supported connection capabilities and their current state + + :returns: :protobuf:msg:`Mysqlx.Connection::Capabilities` or :protobuf:msg:`Mysqlx::Error` + + + + + sets connection capabilities atomically + + only provided values are changed, other values are left unchanged. + If any of the changes fails, all changes are discarded. + + :precond: active sessions == 0 + :returns: :protobuf:msg:`Mysqlx::Ok` or :protobuf:msg:`Mysqlx::Error` + + + + Field number for the "capabilities" field. + + + + required + + + + + announce to the server that the client wants to close the connection + + it discards any session state of the server + + :Returns: :protobuf:msg:`Mysqlx::Ok` + + + + Holder for reflection information generated from mysqlx_crud.proto + + + File descriptor for mysqlx_crud.proto + + + + DataModel to use for filters, names, ... + + + + + ViewAlgorithm defines how MySQL Server processes the view + + + + + MySQL chooses which algorithm to use + + + + + the text of a statement that refers to the view and the view definition are merged + + + + + the view are retrieved into a temporary table + + + + + ViewSqlSecurity defines the security context in which the view is going to be + executed, this means that VIEW can be executed with current user permissions or + with permissions of the uses who defined the VIEW + + + + + ViewCheckOption limits the write operations done on a `VIEW` + (`INSERT`, `UPDATE`, `DELETE`) to rows in which the `WHERE` clause is `TRUE` + + + + + the view WHERE clause is checked, but no underlying views are checked + + + + + the view WHERE clause is checked, then checking recurses to underlying views + + + + + column definition + + + + Field number for the "name" field. + + + + optional + + + + Field number for the "alias" field. + + + + optional + + + + Field number for the "document_path" field. + + + + a projection + + :param source: the expression identifying an element from the source data + which can include a column identifier or any expression + :param alias: optional alias. Required for DOCUMENTs (clients may use + the source string as default) + + + + Field number for the "source" field. + + + + required + + + + Field number for the "alias" field. + + + + optional + + + + + collection + + + + Field number for the "name" field. + + + + required + + + + Field number for the "schema" field. + + + + optional + + + + + limit + + :param row_count: maximum rows to filter + :param offset: maximum rows to skip before applying the row_count + + + + Field number for the "row_count" field. + + + + required + + + + Field number for the "offset" field. + + + + optional + + + + + sort order + + + + Field number for the "expr" field. + + + + required + + + + Field number for the "direction" field. + + + + optional//[ default=ASC ] + + + + Container for nested types declared in the Order message type. + + + + update operations + + :param source: specification of the value to be updated + if data_model is TABLE, a column name may be specified and also a document path, if the column has type JSON + if data_model is DOCUMENT, only document paths are allowed + in both cases, schema and table must be not set + :param operation: the type of operation to be performed + :param value: an expression to be computed as the new value for the operation + + + + Field number for the "source" field. + + + + required + + + + Field number for the "operation" field. + + + + required + + + + Field number for the "value" field. + + + + optional + + + + Container for nested types declared in the UpdateOperation message type. + + + + only allowed for TABLE + + + + + no value (removes the identified path from a object or array) + + + + + sets the new value on the identified path + + + + + replaces a value if the path exists + + + + + source and value must be documents + + + + + insert the value in the array at the index identified in the source path + + + + + append the value on the array at the identified path + + + + + merge JSON object value with the provided patch expression + + + + + Find Documents/Rows in a Collection/Table + + .. uml:: + + client -> server: Find + ... one or more Resultset ... + + :param collection: collection to insert into + :param data_model: datamodel that the operations refer to + :param projection: list of column projections that shall be returned + :param args: values for parameters used in filter expression + :param criteria: filter criteria + :param limit: numbers of rows that shall be skipped and returned + :param order: sort-order in which the rows/document shall be returned in + :param grouping: column expression list for aggregation (GROUP BY) + :param grouping_criteria: filter criteria for aggregated groups + :param locking: perform row locking on matches + :param locking_options: additional options how to handle locked rows + :Returns: :protobuf:msg:`Mysqlx.Resultset::` + + + + Field number for the "collection" field. + + + + required + + + + Field number for the "data_model" field. + + + + optional + + + + Field number for the "projection" field. + + + Field number for the "criteria" field. + + + + optional + + + + Field number for the "args" field. + + + Field number for the "limit" field. + + + + optional + + + + Field number for the "order" field. + + + Field number for the "grouping" field. + + + Field number for the "grouping_criteria" field. + + + + optional + + + + Field number for the "locking" field. + + + + optional + + + + Field number for the "locking_options" field. + + + + optional + + + + Container for nested types declared in the Find message type. + + + + Lock matching rows against updates + + + + + Lock matching rows so no other transaction can read or write to it + + + + + Do not wait to acquire row lock, fail with an error if a requested row is locked + + + + + Do not wait to acquire a row lock, remove locked rows from the result set + + + + + Insert documents/rows into a collection/table + + :param collection: collection to insert into + :param data_model: datamodel that the operations refer to + :param projection: name of the columns to insert data into (empty if data_model is DOCUMENT) + :param row: set of rows to insert into the collection/table (a single expression with a JSON document literal or an OBJECT expression) + :param args: values for parameters used in row expressions + :param upsert: true if this should be treated as an Upsert (that is, update on duplicate key) + :Returns: :protobuf:msg:`Mysqlx.Resultset::` + + + + Field number for the "collection" field. + + + + required + + + + Field number for the "data_model" field. + + + + optional + + + + Field number for the "projection" field. + + + Field number for the "row" field. + + + Field number for the "args" field. + + + Field number for the "upsert" field. + + + + optional//[default = false] + + + + Container for nested types declared in the Insert message type. + + + Field number for the "field" field. + + + + Update documents/rows in a collection/table + + :param collection: collection to change + :param data_model: datamodel that the operations refer to + :param criteria: filter expression to match rows that the operations will apply on + :param args: values for parameters used in filter expression + :param limit: limits the number of rows to match + :param order: specifies order of matched rows + :param operation: list of operations to be applied. Valid operations will depend on the data_model. + :Returns: :protobuf:msg:`Mysqlx.Resultset::` + + + + Field number for the "collection" field. + + + + required + + + + Field number for the "data_model" field. + + + + optional + + + + Field number for the "criteria" field. + + + + optional + + + + Field number for the "args" field. + + + Field number for the "limit" field. + + + + optional + + + + Field number for the "order" field. + + + Field number for the "operation" field. + + + + Delete documents/rows from a Collection/Table + + :param collection: collection to change + :param data_model: datamodel that the operations refer to + :param criteria: filter expression to match rows that the operations will apply on + :param args: values for parameters used in filter expression + :param limit: limits the number of rows to match + :param order: specifies order of matched rows + :Returns: :protobuf:msg:`Mysqlx.Resultset::` + + + + Field number for the "collection" field. + + + + required + + + + Field number for the "data_model" field. + + + + optional + + + + Field number for the "criteria" field. + + + + optional + + + + Field number for the "args" field. + + + Field number for the "limit" field. + + + + optional + + + + Field number for the "order" field. + + + Field number for the "collection" field. + + + + required + + + + Field number for the "definer" field. + + + + optional + + + + Field number for the "algorithm" field. + + + + optional//[default = UNDEFINED] + + + + Field number for the "security" field. + + + + optional//[default = DEFINER] + + + + Field number for the "check" field. + + + + optional + + + + Field number for the "column" field. + + + Field number for the "stmt" field. + + + + required + + + + Field number for the "replace_existing" field. + + + + optional//[default = false] + + + + Field number for the "collection" field. + + + + required + + + + Field number for the "definer" field. + + + + optional + + + + Field number for the "algorithm" field. + + + + optional + + + + Field number for the "security" field. + + + + optional + + + + Field number for the "check" field. + + + + optional + + + + Field number for the "column" field. + + + Field number for the "stmt" field. + + + + optional + + + + Field number for the "collection" field. + + + + required + + + + Field number for the "if_exists" field. + + + + optional//[ default = false ] + + + + Holder for reflection information generated from mysqlx_datatypes.proto + + + File descriptor for mysqlx_datatypes.proto + + + + a scalar + + + + Field number for the "type" field. + + + + required + + + + Field number for the "v_signed_int" field. + + + + optional + + + + Field number for the "v_unsigned_int" field. + + + + optional + + + + Field number for the "v_octets" field. + + + + 4 is unused, was Null which doesn't have a storage anymore + + + + Field number for the "v_double" field. + + + + optional + + + + Field number for the "v_float" field. + + + + optional + + + + Field number for the "v_bool" field. + + + + optional + + + + Field number for the "v_string" field. + + + + optional + + + + Enum of possible cases for the "default_oneof" oneof. + + + Container for nested types declared in the Scalar message type. + + + + a string with a charset/collation + + + + Field number for the "value" field. + + + + required + + + + Field number for the "collation" field. + + + + optional + + + + + an opaque octet sequence, with an optional content_type + See ``Mysqlx.Resultset.ContentType_BYTES`` for list of known values. + + + + Field number for the "value" field. + + + + required + + + + Field number for the "content_type" field. + + + + optional + + + + + a object + + + + Field number for the "fld" field. + + + Container for nested types declared in the Object message type. + + + Field number for the "key" field. + + + + required + + + + Field number for the "value" field. + + + + required + + + + + a Array + + + + Field number for the "value" field. + + + + a helper to allow all field types + + + + Field number for the "type" field. + + + + required + + + + Field number for the "scalar" field. + + + + optional + + + + Field number for the "obj" field. + + + + optional + + + + Field number for the "array" field. + + + + optional + + + + Container for nested types declared in the Any message type. + + + Holder for reflection information generated from mysqlx_expect.proto + + + File descriptor for mysqlx_expect.proto + + + + open an Expect block and set/unset the conditions that have to be fulfilled + + if any of the conditions fail, all enclosed messages will fail with + a Mysqlx.Error message. + + :returns: :protobuf:msg:`Mysqlx::Ok` on success, :protobuf:msg:`Mysqlx::Error` on error + + + + Field number for the "op" field. + + + + [ default = EXPECT_CTX_COPY_PREV ];//optional + + + + Field number for the "cond" field. + + + Container for nested types declared in the Open message type. + + + + copy the operations from the parent Expect-block + + + + + start with a empty set of operations + + + + Field number for the "condition_key" field. + + + + required + + + + Field number for the "condition_value" field. + + + + optional + + + + Field number for the "op" field. + + + + [ default = EXPECT_OP_SET ];//optional + + + + Container for nested types declared in the Condition message type. + + + + Change error propagation behaviour + + + + + Check if X Protocol field exists + + + + + Check if X Protocol support document _id generation + + + + + set the condition + + set, if not set + overwrite, if set + + + + + unset the condition + + + + + close a Expect block + + closing a Expect block restores the state of the previous Expect block + for the following messages + + :returns: :protobuf:msg:`Mysqlx::Ok` on success, :protobuf:msg:`Mysqlx::Error` on error + + + + Holder for reflection information generated from mysqlx_expr.proto + + + File descriptor for mysqlx_expr.proto + + + + Expressions + + the "root" of the expression tree + + .. productionlist:: + expr: `operator` | + : `identifier` | + : `function_call` | + : variable | + : `literal` | + : placeholder + + If expression type is PLACEHOLDER then it refers to the value of a parameter + specified when executing a statement (see `args` field of `StmtExecute` command). + Field `position` (which must be present for such an expression) gives 0-based + position of the parameter in the parameter list. + + + + Field number for the "type" field. + + + + required + + + + Field number for the "identifier" field. + + + + optional + + + + Field number for the "variable" field. + + + + optional + + + + Field number for the "literal" field. + + + + optional + + + + Field number for the "function_call" field. + + + + optional + + + + Field number for the "operator" field. + + + + optional + + + + Field number for the "position" field. + + + + optional + + + + Field number for the "object" field. + + + + optional + + + + Field number for the "array" field. + + + + optional + + + + Container for nested types declared in the Expr message type. + + + + identifier: name, schame.name + + .. productionlist:: + identifier: string "." string | + : string + + + + Field number for the "name" field. + + + + required + + + + Field number for the "schema_name" field. + + + + optional + + + + + DocumentPathItem + + .. productionlist:: + document_path: path_item | path_item document_path + path_item : member | array_index | "**" + member : "." string | "." "*" + array_index : "[" number "]" | "[" "*" "]" + + + + Field number for the "type" field. + + + + required + + + + Field number for the "value" field. + + + + optional + + + + Field number for the "index" field. + + + + optional + + + + Container for nested types declared in the DocumentPathItem message type. + + + + .member + + + + + .* + + + + + [index] + + + + + [*] + + + + + ** + + + + + col_identifier (table): col@doc_path, tbl.col@doc_path col, tbl.col, schema.tbl.col + col_identifier (document): doc_path + + .. productionlist:: + col_identifier: string "." string "." string | + : string "." string | + : string | + : string "." string "." string "@" document_path | + : string "." string "@" document_path | + : string "@" document_path | + : document_path + document_path: member | arrayLocation | doubleAsterisk + member = "." string | "." "*" + arrayLocation = "[" index "]" | "[" "*" "]" + doubleAsterisk = "**" + + + + Field number for the "document_path" field. + + + Field number for the "name" field. + + + + optional + + + + Field number for the "table_name" field. + + + + optional + + + + Field number for the "schema_name" field. + + + + optional + + + + + function call: ``func(a, b, "1", 3)`` + + .. productionlist:: + function_call: `identifier` "(" [ `expr` ["," `expr` ]* ] ")" + + + + Field number for the "name" field. + + + + required + + + + Field number for the "param" field. + + + + operator: ``<<(a, b)`` + + .. note:: + + Non-authoritative list of operators implemented (case sensitive): + + Nullary + * ``*`` + * ``default`` + + Unary + * ``!`` + * ``sign_plus`` + * ``sign_minus`` + * ``~`` + + Binary + * ``&&`` + * ``||`` + * ``xor`` + * ``==`` + * ``!=`` + * ``>`` + * ``>=`` + * ``<`` + * ``<=`` + * ``&`` + * ``|`` + * ``^`` + * ``<<`` + * ``>>`` + * ``+`` + * ``-`` + * ``*`` + * ``/`` + * ``div`` + * ``%`` + * ``is`` + * ``is_not`` + * ``regexp`` + * ``not_regexp`` + * ``like`` + * ``not_like`` + * ``cast`` + * ``cont_in`` + * ``not_cont_in`` + + Using special representation, with more than 2 params + * ``in`` (param[0] IN (param[1], param[2], ...)) + * ``not_in`` (param[0] NOT IN (param[1], param[2], ...)) + + Ternary + * ``between`` + * ``between_not`` + * ``date_add`` + * ``date_sub`` + + Units for date_add/date_sub + * ``MICROSECOND`` + * ``SECOND`` + * ``MINUTE`` + * ``HOUR`` + * ``DAY`` + * ``WEEK`` + * ``MONTH`` + * ``QUARTER`` + * ``YEAR`` + * ``SECOND_MICROSECOND`` + * ``MINUTE_MICROSECOND`` + * ``MINUTE_SECOND`` + * ``HOUR_MICROSECOND`` + * ``HOUR_SECOND`` + * ``HOUR_MINUTE`` + * ``DAY_MICROSECOND`` + * ``DAY_SECOND`` + * ``DAY_MINUTE`` + * ``DAY_HOUR`` + + Types for cast + * ``BINARY[(N)]`` + * ``CHAR[(N)]`` + * ``DATE`` + * ``DATETIME`` + * ``DECIMAL[(M[,D])]`` + * ``JSON`` + * ``SIGNED [INTEGER]`` + * ``TIME`` + * ``UNSIGNED [INTEGER]`` + + .. productionlist:: + operator: `name` "(" [ `expr` ["," `expr` ]* ] ")" + + + + Field number for the "name" field. + + + + required + + + + Field number for the "param" field. + + + + an object (with expression values) + + + + Field number for the "fld" field. + + + Container for nested types declared in the Object message type. + + + Field number for the "key" field. + + + + required + + + + Field number for the "value" field. + + + + required + + + + + a Array of expressions + + + + Field number for the "value" field. + + + Holder for reflection information generated from mysqlx_notice.proto + + + File descriptor for mysqlx_notice.proto + + + + Common Frame for all Notices + + ===================================================== ===== + .type value + ===================================================== ===== + :protobuf:msg:`Mysqlx.Notice::Warning` 1 + :protobuf:msg:`Mysqlx.Notice::SessionVariableChanged` 2 + :protobuf:msg:`Mysqlx.Notice::SessionStateChanged` 3 + ===================================================== ===== + + :param type: the type of the payload + :param payload: the payload of the notification + :param scope: global or local notification + + + + Field number for the "type" field. + + + + required + + + + Field number for the "scope" field. + + + + [ default = GLOBAL ];//optional + + + + Field number for the "payload" field. + + + + optional + + + + Container for nested types declared in the Frame message type. + + + + Server-side warnings and notes + + ``.scope`` == ``local`` + ``.level``, ``.code`` and ``.msg`` map the content of + + .. code-block:: sql + + SHOW WARNINGS + + ``.scope`` == ``global`` + (undefined) will be used for global, unstructured messages like: + + * server is shutting down + * a node disconnected from group + * schema or table dropped + + ========================================== ======================= + :protobuf:msg:`Mysqlx.Notice::Frame` field value + ========================================== ======================= + ``.type`` 1 + ``.scope`` ``local`` or ``global`` + ========================================== ======================= + + :param level: warning level: Note or Warning + :param code: warning code + :param msg: warning message + + + + Field number for the "level" field. + + + + [ default = WARNING ];//optional + + + + Field number for the "code" field. + + + + required + + + + Field number for the "msg" field. + + + + required + + + + Container for nested types declared in the Warning message type. + + + + Notify clients about changes to the current session variables + + Every change to a variable that is accessible through: + + .. code-block:: sql + + SHOW SESSION VARIABLES + + ========================================== ========= + :protobuf:msg:`Mysqlx.Notice::Frame` field value + ========================================== ========= + ``.type`` 2 + ``.scope`` ``local`` + ========================================== ========= + + :param namespace: namespace that param belongs to + :param param: name of the variable + :param value: the changed value of param + + + + Field number for the "param" field. + + + + required + + + + Field number for the "value" field. + + + + optional + + + + + Notify clients about changes to the internal session state + + ========================================== ========= + :protobuf:msg:`Mysqlx.Notice::Frame` field value + ========================================== ========= + ``.type`` 3 + ``.scope`` ``local`` + ========================================== ========= + + :param param: parameter key + :param value: updated value + + + + Field number for the "param" field. + + + + required + + + + Field number for the "value" field. + + + Container for nested types declared in the SessionStateChanged message type. + + + + .. more to be added + + + + Holder for reflection information generated from mysqlx_resultset.proto + + + File descriptor for mysqlx_resultset.proto + + + + a hint about the higher-level encoding of a BYTES field + + ====== ====== =========== + type value description + ====== ====== =========== + BYTES 0x0001 GEOMETRY (WKB encoding) + BYTES 0x0002 JSON (text encoding) + BYTES 0x0003 XML (text encoding) + ====== ====== =========== + + .. note:: + this list isn't comprehensive. As guideline: the field's value is expected + to pass a validator check on client and server if this field is set. + If the server adds more internal datatypes that rely on BLOB storage + like image manipulation, seeking into complex types in BLOBs, ... more + types will be added. + + + + + a hint about the higher-level encoding of a DATETIME field + + ====== ====== =========== + type value description + ======== ====== =========== + DATE 0x0001 DATETIME contains only date part + DATETIME 0x0002 DATETIME contains both date and time parts + ====== ====== =========== + + + + + resultsets are finished, OUT paramset is next + + + + + resultset and out-params are finished, but more resultsets available + + + + + all resultsets are finished + + + + + meta data of a Column + + .. note:: the encoding used for the different ``bytes`` fields in the meta data is externally + controlled. + .. seealso:: https://dev.mysql.com/doc/refman/8.0/en/charset-connection.html + + .. note:: + The server may not set the ``original_{table|name}`` fields if they are equal to the plain + ``{table|name}`` field. + + A client has to reconstruct it like:: + + if .original_name is empty and .name is not empty: + .original_name = .name + + if .original_table is empty and .table is not empty: + .original_table = .table + + .. note:: + ``compact metadata format`` can be requested by the client. In that case only ``.type`` is set and + all other fields are empty. + + :param type: + .. table:: Expected Datatype of Mysqlx.Resultset.Row per SQL Type for non NULL values + + ================= ============ ======= ========== ====== ======== + SQL Type .type .length .frac_dig .flags .charset + ================= ============ ======= ========== ====== ======== + TINY SINT x + TINY UNSIGNED UINT x x + SHORT SINT x + SHORT UNSIGNED UINT x x + INT24 SINT x + INT24 UNSIGNED UINT x x + INT SINT x + INT UNSIGNED UINT x x + LONGLONG SINT x + LONGLONG UNSIGNED UINT x x + DOUBLE DOUBLE x x x + FLOAT FLOAT x x x + DECIMAL DECIMAL x x x + VARCHAR,CHAR,... BYTES x x x + GEOMETRY BYTES + TIME TIME x + DATE DATETIME x + DATETIME DATETIME x + YEAR UINT x x + TIMESTAMP DATETIME x + SET SET x + ENUM ENUM x + NULL BYTES + BIT BIT x + ================= ============ ======= ========== ====== ======== + + .. note:: the SQL "NULL" value is sent as an empty field value in :protobuf:msg:`Mysqlx.Resultset::Row` + .. seealso:: protobuf encoding of primitive datatypes are decribed in https://developers.google.com/protocol-buffers/docs/encoding + + SINT + + ``.length`` + maximum number of displayable decimal digits (including minus sign) of the type + + .. note:: + valid range is 0-255, but usually you'll see 1-20 + + =============== == + SQL Type max digits per type + =============== == + TINY SIGNED 4 + SHORT SIGNED 6 + INT24 SIGNED 8 + INT SIGNED 11 + LONGLONG SIGNED 20 + =============== == + + .. seealso:: definition of ``M`` in https://dev.mysql.com/doc/refman/8.0/en/numeric-type-overview.html + + ``value`` + variable length encoded signed 64 integer + + UINT + + ``.flags & 1`` (zerofill) + the client has to left pad with 0's up to .length + + ``.length`` + maximum number of displayable decimal digits of the type + + .. note:: + valid range is 0-255, but usually you'll see 1-20 + + ================= == + SQL Type max digits per type + ================= == + TINY UNSIGNED 3 + SHORT UNSIGNED 5 + INT24 UNSIGNED 8 + INT UNSIGNED 10 + LONGLONG UNSIGNED 20 + ================= == + + .. seealso:: definition of ``M`` in https://dev.mysql.com/doc/refman/8.0/en/numeric-type-overview.html + + ``value`` + variable length encoded unsigned 64 integer + + BIT + + ``.length`` + maximum number of displayable binary digits + + .. note:: valid range for M of the ``BIT`` type is 1 - 64 + .. seealso:: https://dev.mysql.com/doc/refman/8.0/en/numeric-type-overview.html + + ``value`` + variable length encoded unsigned 64 integer + + DOUBLE + + ``.length`` + maximum number of displayable decimal digits (including the decimal point and ``.fractional_digits``) + + ``.fractional_digits`` + maximum number of displayable decimal digits following the decimal point + + ``value`` + encoded as Protobuf's 'double' + + FLOAT + + ``.length`` + maximum number of displayable decimal digits (including the decimal point and ``.fractional_digits``) + + ``.fractional_digits`` + maximum number of displayable decimal digits following the decimal point + + ``value`` + encoded as Protobuf's 'float' + + BYTES, ENUM + BYTES is used for all opaque byte strings that may have a charset + + * TINYBLOB, BLOB, MEDIUMBLOB, LONGBLOB + * TINYTEXT, TEXT, MEDIUMTEXT, LONGTEXT + * VARCHAR, VARBINARY + * CHAR, BINARY + * ENUM + + ``.length`` + the maximum length of characters of the underlying type + + ``.flags & 1`` (rightpad) + if the length of the field is less than ``.length``, the receiver is + supposed to add padding characters to the right end of the string. + If the ``.charset`` is "binary", the padding character is ``0x00``, + otherwise it is a space character as defined by that character set. + + ============= ======= ======== ======= + SQL Type .length .charset .flags + ============= ======= ======== ======= + TINYBLOB 256 binary + BLOB 65535 binary + VARCHAR(32) 32 utf8 + VARBINARY(32) 32 utf8_bin + BINARY(32) 32 binary rightpad + CHAR(32) 32 utf8 rightpad + ============= ======= ======== ======= + + ``value`` + sequence of bytes with added one extra '\0' byte at the end. To obtain the + original string, the extra '\0' should be removed. + .. note:: the length of the string can be acquired with protobuf's field length() method + length of sequence-of-bytes = length-of-field - 1 + .. note:: the extra byte allows to distinguish between a NULL and empty byte sequence + + TIME + A time value. + + ``value`` + the following bytes sequence: + + ``| negate [ | hour | [ | minutes | [ | seconds | [ | useconds | ]]]]`` + + * negate - one byte, should be one of: 0x00 for "+", 0x01 for "-" + * hour - optional variable length encoded unsigned64 value for the hour + * minutes - optional variable length encoded unsigned64 value for the minutes + * seconds - optional variable length encoded unsigned64 value for the seconds + * useconds - optional variable length encoded unsigned64 value for the microseconds + + .. seealso:: protobuf encoding in https://developers.google.com/protocol-buffers/docs/encoding + .. note:: hour, minutes, seconds, useconds are optional if all the values to the right are 0 + + Example: 0x00 -> +00:00:00.000000 + + DATETIME + A date or date and time value. + + ``value`` + a sequence of variants, arranged as follows: + + ``| year | month | day | [ | hour | [ | minutes | [ | seconds | [ | useconds | ]]]]`` + + * year - variable length encoded unsigned64 value for the year + * month - variable length encoded unsigned64 value for the month + * day - variable length encoded unsigned64 value for the day + * hour - optional variable length encoded unsigned64 value for the hour + * minutes - optional variable length encoded unsigned64 value for the minutes + * seconds - optional variable length encoded unsigned64 value for the seconds + * useconds - optional variable length encoded unsigned64 value for the microseconds + + .. note:: hour, minutes, seconds, useconds are optional if all the values to the right are 0 + + ``.flags & 1`` (timestamp) + + ============= ======= + SQL Type .flags + ============= ======= + DATETIME + TIMESTAMP 1 + + DECIMAL + An arbitrary length number. The number is encoded as a single byte + indicating the position of the decimal point followed by the Packed BCD + encoded number. Packed BCD is used to simplify conversion to and + from strings and other native arbitrary precision math datatypes. + .. seealso:: packed BCD in https://en.wikipedia.org/wiki/Binary-coded_decimal + + ``.length`` + maximum number of displayable decimal digits (*excluding* the decimal point and sign, but including ``.fractional_digits``) + + .. note:: should be in the range of 1 - 65 + + ``.fractional_digits`` + is the decimal digits to display out of length + + .. note:: should be in the range of 0 - 30 + + ``value`` + the following bytes sequence: + + ``| scale | BCD | sign | [0x0] |`` + + * scale - 8bit scale value (number of decimal digit after the '.') + * BCD - BCD encoded digits (4 bits for each digit) + * sign - sign encoded on 4 bits (0xc = "+", 0xd = "-") + * 0x0 - last 4bits if length(digits) % 2 == 0 + + Example: x04 0x12 0x34 0x01 0xd0 -> -12.3401 + + SET + A list of strings representing a SET of values. + + ``value`` + A sequence of 0 or more of protobuf's bytes (length prepended octets) or one of + the special sequences with a predefined meaning listed below. + + Example (length of the bytes array shown in brackets): + * ``[0]`` - the NULL value + * ``[1] 0x00`` - a set containing a blank string '' + * ``[1] 0x01`` - this would be an invalid value, but is to be treated as the empty set + * ``[2] 0x01 0x00`` - a set with a single item, which is the '\0' character + * ``[8] 0x03 F O O 0x03 B A R`` - a set with 2 items: FOO,BAR + + :param name: name of the column + :param original_name: name of the column before an alias was applied + :param table: name of the table the column orginates from + :param original_table: name of the table the column orginates from before an alias was applied + :param schema: schema the column originates from + :param catalog: + catalog the schema originates from + + .. note:: + as there is current no support for catalogs in MySQL, don't expect this field to be set. + In the MySQL C/S protocol the field had the value ``def`` all the time. + + :param fractional_digits: displayed factional decimal digits for floating point and fixed point numbers + :param length: maximum count of displayable characters of .type + :param flags: + ``.type`` specific flags + + ======= ====== =========== + type value description + ======= ====== =========== + UINT 0x0001 zerofill + DOUBLE 0x0001 unsigned + FLOAT 0x0001 unsigned + DECIMAL 0x0001 unsigned + BYTES 0x0001 rightpad + ======= ====== =========== + + ====== ================ + value description + ====== ================ + 0x0010 NOT_NULL + 0x0020 PRIMARY_KEY + 0x0040 UNIQUE_KEY + 0x0080 MULTIPLE_KEY + 0x0100 AUTO_INCREMENT + ====== ================ + + default: 0 + :param content_type: + a hint about the higher-level encoding of a BYTES field, for more informations + please refer to Mysqlx.Resultset.ContentType_BYTES enum. + + + + Field number for the "type" field. + + + + datatype of the field in a row + + + + Field number for the "name" field. + + + + optional + + + + Field number for the "original_name" field. + + + + optional + + + + Field number for the "table" field. + + + + optional + + + + Field number for the "original_table" field. + + + + optional + + + + Field number for the "schema" field. + + + + optional + + + + Field number for the "catalog" field. + + + + optional + + + + Field number for the "collation" field. + + + + optional + + + + Field number for the "fractional_digits" field. + + + + optional + + + + Field number for the "length" field. + + + + optional + + + + Field number for the "flags" field. + + + + optional + + + + Field number for the "content_type" field. + + + + optional + + + + Container for nested types declared in the ColumnMetaData message type. + + + + Row in a Resultset + + a row is represented as a list of fields encoded as byte blobs. + Blob of size 0 represents the NULL value. Otherwise, if it contains at least + one byte, it encodes a non-null value of the field using encoding appropriate for the + type of the value given by ``ColumnMetadata``, as specified + in the :protobuf:msg:`Mysqlx.Resultset::ColumnMetaData` description. + + + + Field number for the "field" field. + + + Holder for reflection information generated from mysqlx_session.proto + + + File descriptor for mysqlx_session.proto + + + + the initial message send from the client to the server to start the + authentication proccess + + :param mech_name: authentication mechanism name + :param auth_data: authentication data + :param initial_response: initial response + :Returns: :protobuf:msg:`Mysqlx.Session::AuthenticateContinue` + + + + Field number for the "mech_name" field. + + + + required + + + + Field number for the "auth_data" field. + + + + optional + + + + Field number for the "initial_response" field. + + + + optional + + + + + send by client or server after a :protobuf:msg:`Mysqlx.Session::AuthenticateStart` to + exchange more auth data + + :param auth_data: authentication data + :Returns: :protobuf:msg:`Mysqlx.Session::AuthenticateContinue` + + + + Field number for the "auth_data" field. + + + + required + + + + + sent by the server after successful authentication + + :param auth_data: authentication data + + + + Field number for the "auth_data" field. + + + + optional + + + + + reset the current session + + :Returns: :protobuf:msg:`Mysqlx::Ok` + + + + + close the current session + + :Returns: :protobuf:msg:`Mysqlx::Ok` + + + + Holder for reflection information generated from mysqlx_sql.proto + + + File descriptor for mysqlx_sql.proto + + + + execute a statement in the given namespace + + .. uml:: + + client -> server: StmtExecute + ... zero or more Resultsets ... + server --> client: StmtExecuteOk + + Notices: + This message may generate a notice containing WARNINGs generated by its execution. + This message may generate a notice containing INFO messages generated by its execution. + + :param namespace: namespace of the statement to be executed + :param stmt: statement that shall be executed. + :param args: values for wildcard replacements + :param compact_metadata: send only type information for :protobuf:msg:`Mysqlx.Resultset::ColumnMetadata`, skipping names and others + :returns: + * zero or one :protobuf:msg:`Mysqlx.Resultset::` followed by :protobuf:msg:`Mysqlx.Sql::StmtExecuteOk` + + + + Field number for the "namespace" field. + + + + optional [ default = "sql" ] + + + + Field number for the "stmt" field. + + + + required + + + + Field number for the "args" field. + + + Field number for the "compact_metadata" field. + + + + optional [ default = false ] + + + + + statement executed successful + + +
+
diff --git a/bin/x86/Debug/net461/PCSC.Iso7816.dll b/bin/x86/Debug/net461/PCSC.Iso7816.dll new file mode 100644 index 0000000..eb2b19a Binary files /dev/null and b/bin/x86/Debug/net461/PCSC.Iso7816.dll differ diff --git a/bin/x86/Debug/net461/PCSC.Iso7816.xml b/bin/x86/Debug/net461/PCSC.Iso7816.xml new file mode 100644 index 0000000..7dea6ad --- /dev/null +++ b/bin/x86/Debug/net461/PCSC.Iso7816.xml @@ -0,0 +1,1192 @@ + + + + PCSC.Iso7816 + + + + Application Protocol Data Unit (APDU), defined by the ISO/IEC 7816 standards + + + The currently used ISO case. + + + The currently used protocol. + + + Converts the APDU structure to a transmittable byte array. + A byte array containing the APDU parameters and data in the correct order. + + + Indicates if the APDU is valid. + if the APDU is valid. + + + Converts the APDU structure to a transmittable byte array. + The APDU. + The supplied APDU as byte array. + + + + Coding and meaning of the class byte + + + + The structure and coding of command and response are as described in ISO/IEC 7816. 'x' contains the options for secure messaging and the logical channel. + + + Reserved for future use. + + + Reserved for future use. + + + Reserved for future use. + + + Reserved for future use. + + + Reserved for future use. + + + Reserved for future use. + + + Reserved for future use. + + + The structure of command and response are as described in ISO/IEC 7816. 'x' contains the options for secure messaging and the logical channel. + The coding (and meaning) of command and response are proprietary. + + + The structure of command and response are as described in ISO/IEC 7816. 'x' contains the options for secure messaging and the logical channel. + The coding (and meaning) of command and response are proprietary. + + + If not specified by the application context, structure and coding of command and response are as described in ISO/IEC 7816. 'x' contains the options for secure messaging and the logical channel. + + + The structure of command and response are as described in ISO/IEC 7816. + + + The structure of command and response are as described in ISO/IEC 7816. + + + The structure of command and response are proprietary. + + + The structure of command and response are proprietary. + + + The structure of command and response are proprietary. + + + A class the can be used to build or parse the CLA (Class byte) of a APDU. + + + Initializes a new instance of the class. + The CLA as byte that will be parsed. + + + Initializes a new instance of the class. + The high part of the CLA + The secure messaging format. + The logical channel number. + logicalChannelNumber;Logical channels must be in the range between 0 and 3. + + + Returns the CLA as byte. + + + Gets or sets the high part of the CLA + The high part of the CLA. + + + Gets or sets the secure messaging (SM) format. + + + Gets or sets the logical channel number. + The logical channel number. + value;Logical channels must be in the range between 0 and 3. + + + Implicitly converts a to a . + + The CLA as byte + + + Implicitly converts a to an instance. + CLA as byte. + The parsed CLA. + + + A Command Application Protocol Data Unit (APDU), defined by the ISO/IEC 7816 standards + + A can be build using one of the following : + + CaseAPDU structure + 1CLA INS P1 P2 + 2CLA INS P1 P2 Le + 3CLA INS P1 P2 Lc Data + 4CLA INS P1 P2 Lc Data Le + + See the documentation for for more information. + + + + Initializes a new instance of the class. + The ISO case to use. + The protocol. + + + Gets or sets the CLA byte. + You can use the class to build a well formed CLA byte. + + + Gets the CLA. + The as instance. + + + Gets the instruction byte info. + The as instance. + + + Gets or sets the instruction. + + + Sets the instruction. + + + The first parameter (P1) + + + The second parameter (P2) + + + A combination of parameter P1 and P2 + + + Command APDU data to be transmitted. + You can only set data if you created the with ISO case 3 or 4. + + + Length command + + + The third parameter (P3 or Le) + + + Length expected. + This is the expected number of response data bytes. Do not take account of the status word (SW1 and SW2) here! + + + The expected response size (Le + SW1SW2) + + + Calculates the APDU size in bytes. + The APDU size in bytes depending on the currently selected ISO case. + + + Converts the command APDU to a transmittable byte array. + The command APDU as byte array. + If the command APDU is in an invalid state. + + + Indicates if the command APDU is valid. + if the APDU is valid. + + + Creates a clone of the current instance. The data is NOT copied. + A clone of the current instance. + + + + Creates a GET RESPONSE command after receiving SW1=0x61 (More data available) + + The initial command that has been sent to the card + The received response + The expected size + A GET RESPONSE APDU + + + Category of file types + + + Working elementary file (Working EF) that is intended for storing data not interpreted by the card. + + + Internal elementary file (Internal EF) that is intended for storing data interpreted and/or analyzed by the card and for control purposes. + + + Proprietary file type. + + + Dedicated file (DF) that is used for logical organization of data in a card. + + + A file descriptor. See ISO/IEC7816-4 File control information (FCI) for more information. + + + File type bit mask. + + + Dedicated file (DF) bit. + + + Working elementary file (EF) bit. + + + Internal elementary file (EF) bit. + + + Sharemode bit mask. + + + Shareable bit. + + + Non shareable bit. + + + The file descriptor as single byte structure. + + + Gets the file type. + + + Gets the extended file type. + + + Gets the file sharing mode. + + + Gets file structure information. + + + Initializes a new instance of the class. + The file descriptor byte that shall be parsed. + + + Determines whether the specified bits are set. + The a bit mask. + The bits to check for. + + true if the specified bits are set; otherwise, false. + + + Implicitly converts a to a single byte. + The file descriptor. + A file descriptor as byte. + + + Implicitly converts a single byte to a . + The file descriptor as byte. + A instance as parsed result. + + + + File share mode + + + + Shareable file that supports at least concurrent access on different logical channels. + + + Non shareable file. + + + File structure information for elementary file (EF). + + + File structure mask bits. + + + File has not structure information bit. + + + Transparent bit. + + + Linear fixed bit. + + + Linear fixed TLV bit. + + + Linear variable bit. + + + Linear variable TLV bit. + + + Cyclic bit. + + + Cyclic TLV bit. + + + Initializes a new instance of the class. + The file descriptor containing the file structure information. + + + Gets the file structure type. + + + Gets a value indicating whether the structuring method is a transparent EF. + + + Gets the record information. + Returns a instance if the file structuring method is a record EF. Otherwise . + + + Gets the file descriptor. + The file descriptor as byte. + + + Gets a value indicating whether the structuring method is a record EF. + + true if the EF is record; otherwise, false. + + + File structure types + The following structures of elementary files are defined: + + Transparent structure; the EF contains a sequence of data units. + Record structure; the EF contains a sequence of individually identifiable records. + + When using a record structure, the size of the particular records is either fixed or variable. Furthermore records are organized as a sequence (linear) or as a ring (cyclic). + + + + No information about file structure given + + + Transparent. The EF has a sequence of data units + + + Linear fixed, no further info + + + Linear fixed SIMPLE-TLV (Type-length-value) + + + Linear variable, no further info + + + Linear variable SIMPLE-TLV (Type-length-value) + + + Cyclic, no further info + + + Cyclic, SIMPLE-TLV (Type-length-value) + + + File type + + + Dedicated file (DF) that is used for logical organization of data in the card. + + + Elementary file (EF) that is used for storing data. + The data may or may not be interpreted/analyzed by the card. You need to check the extended file type . + + + A ISO/IEC 7816 compliant reader. + + + Gets the name of the reader. + + + Gets the active protocol. + + + Gets the current share mode. + + + Gets or sets the wait time in milliseconds that is used if an APDU needs to be retransmitted. + + + Gets the maximum number of bytes that can be received. + + + Constructs a command APDU using the active protocol of the reader. + The ISO case that shall be used for this command. + An empty command APDU. + + + Connects the specified reader. + Name of the reader. + The share mode. + The communication protocol. + + + Disconnects the currently connected reader. + The action that shall be executed after disconnect. + + + Transmits the specified command APDU. + The command APDU. + A response containing one ore more . + + + A class that describes the instruction of a command APDU. + + + Initializes a new instance of the class. + The instruction code. + + + Initializes a new instance of the class. + The instruction as byte. + + + Gets or sets the instruction code. + + + Gets or sets the instruction as value. + + + Implicitly converts a to a single INS byte. + A byte containing INS. + + + Implicitly converts a byte to a instance. + The instruction as byte. + A class + + + Implicitly converts a to a instance. + The instruction code. + A instance + + + + Basic instruction codes defined in ISO/IEC 7816-4 + + + + Erase binary + + + Verify + + + Manage channel + + + External authenticate + + + Get challenge + + + Internal authenticate + + + Select file + + + Read binary + + + Read record(s) + + + Get response + + + Envelope + + + Get data + + + Write binary + + + Write record + + + Update binary + + + Put data + + + Update data + + + Append record + + + Decrement value + + + Increment value + + + The APDU is invalid. + + + + APDU bytes + + + + + APDU + + + + Initializes a new instance of the class. + The error message. + + + Initializes a new instance of the class. + The error message. + The inner exception. + + + Initializes a new instance of the class. + The error message. + The APDU. + The inner exception. + + + + Initializes a new instance of the class. + + + + + + APDU message structure for the command-response pair. + + + ISO caseCommand data, Expected response data + 1Command: no data, Expected response: no data + 2Command: no data, Expected response: data + 3Command: data, Expected response: no data + 4Command: data, Expected response: data + + In the card capabilities, the card states that the Lc and the Le field should either be short or extended. A short command has one byte for each length field, an extended command has two bytes for each length field. + + + + No command data. No response data. + + + Lc is valued to 0. + Le is valued to 0. + No data byte is present. + + + + + No command data. Expected response data. + + + Lc is valued to 0. + Le is valued from 1 to 256. + No data byte is present. + + + + + Command data. No response data. + + + Lc is valued from 1 to 255. + Le is valued to 0. + Lc data bytes are present. + + + + + Command data. Expected response data. + + + Lc is valued from 1 to 255. + Le is valued from 1 to 256. + Lc data bytes are present. + + + + + No command data. Expected response data. + + + Lc is valued to 0. + Le is valued from 1 to 65536. + No data byte is present. + + + + + Command data. No response data. + + + Lc is valued from 1 to 65536. + Le is valued to 0. + Lc data bytes are present. + + + + + Command data. Expected response data. + + + Lc is valued from 1 to 65535. + Le is valued from 1 to 65536. + Lc data bytes are present. + + + + + A ISO/IEC 7816 compliant reader. + + + Gets the name of the reader. + + + Gets the active protocol. + + + Gets the current share mode. + + + Gets or sets the wait time in milliseconds that is used if an APDU needs to be retransmitted. + Default is 0 ms + + + Gets the maximum number of bytes that can be received (le) when using a command. + Default is 128 bytes. + + + Finalizes an instance of the class. + + + Initializes a new instance of the class. + The supplied reader will be used for communication with the smart card. + if set to true the supplied will be disconnected on . + If reader is + + + Initializes a new instance of the class and immediately connects to the reader. + The supplied reader will be used for communication with the smart card. + Name of the reader to connect with. + The share mode. + The communication protocol. + if set to true the supplied will be disconnected on . + + + Initializes a new instance of the class that will create its own instance of a . + A context to the PC/SC Resource Manager. + if set to true the will be released on . + If is + + + Initializes a new instance of the class that will create its own instance of a and immediately connect. + A context to the PC/SC Resource Manager. + Name of the reader to connect with. + The share mode. + The communication protocol. + if set to true the will be released on . + + + Initializes a new instance of the class that will create its own instance of a and immediately connect. + A context to the PC/SC Resource Manager. + Name of the reader to connect with. + The share mode. + The communication protocol. + if set to true the will be released on . + Sets the maximum number of bytes that can be received (Le) when using a command. + + + Constructs a command APDU using the active protocol of the reader. + The ISO case that shall be used for this command. + An empty command APDU. + + + Connects the specified reader. + Name of the reader. + The share mode. + The communication protocol. + + + Disconnects the currently connected reader. + The action that shall be executed after disconnect. + + + Transmits the specified command APDU. + The command APDU. + A response containing one ore more . + + + Transmits the specified command APDU. + The command APDU. + A method that will be called if the card signals more data available (SW1=0x61) + A response containing one ore more . + + + + Creates a GET RESPONSE command after receiving SW1=0x61 (More data available) + + The initial command that has been sent to the card + The received response + The expected size + A GET RESPONSE APDU + + + + Releases unmanaged and managed resources. + + + + + Releases unmanaged and - optionally - managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + Record structure information. + Elementary files (EF) that have a sequence of individually identifiable records should use one of the following methods for structuring: + + Linear elementary file (EF) with records of variable size. + Linear elementary file (EF) with records of fixed size. + Cyclic elementary file (EF) with records of fixed size. + + + + + File structuring mask bits. + + + Linear fixed bit. + + + Linear variable bit. + + + Cyclic bit. + + + Initializes a new instance of the class. + The file descriptor. + + + Gets a value indicating whether the EF has cyclic records. + true if the EF is cyclic; otherwise, false. + + + Gets a value indicating whether the EF has linear records. + true if the EF is linear; otherwise, false. + + + Gets a value indicating whether the EF's record size is fixed. + true if the record's size is fixed; otherwise, false. + + + Gets a value indicating whether the EF's record size is variable. + true if the record's size is variable; otherwise, false. + + + Gets a value indicating whether the EF contains simple TLV records. + true if the EF contains simple TLV records; otherwise, false. + + + Gets the file descriptor. + The file descriptor as byte. + + + An aggregation of instances. + When using the result can consist of one or more . If the receives a SW1=0x61 status word, it will automatically transmit a GET RESPONSE command to reader (after waiting ms) to catch all remaining . + + + Gets the at the specified index. + The . + The index. + The at the specified index. + + + The SW1 status of the last received . + + + The SW2 status of the last received . + + + Gets the number of received . + + + Gets the number of received . + + + A combination of SW1 and SW2 as 16bit status word. + It contains the status word of the last received . + + + + if at least one contains data bytes. + + + Initializes a new instance of the class. + + + + Creates a new instance. + + The s in correct order. + The in correct order. + + + Adds the specified response APDU. + The response APDU. + + + Adds the specified PCI. + The PCI. + + + An aggregation of all data bytes in receive order. + An aggregation of all data bytes from all . + + + Gets the of the specified index. + The index. + The of the specified index. + + + Gets the of the specified index. + The index. + The of the specified index. + + + + + + + + + A response APDU + + + Initializes a new instance of the class. + The response as byte array that shall be parsed. + The ISO case that was used when sending the . + The communication protocol. + + + Initializes a new instance of the class. + The response as byte array that shall be parsed. + The ISO case that was used when sending the . + The communication protocol. + If the bytes of the supplied response will be copied. + + + Initializes a new instance of the class. + The response as byte array that shall be parsed. + The size of the response. + The ISO case that was used when sending the . + The communication protocol. + If is greater than the size. + + + Initializes a new instance of the class. + The response as byte array that shall be parsed. + The size of the response. + The ISO case that was used when sending the . + The communication protocol. + If the bytes of the supplied response will be copied. + If is greater than the size. + + + Gets a value indicating whether this response has data. + + true if this response has data; otherwise, false. + + + Indicates if the response APDU is valid. + + if the response APDU is valid. + + + Gets the SW1 status byte. + The response APDU is invalid. + + + Gets the SW1 status byte. + The response APDU is invalid. + + + Gets the combination of SW1 and SW2 as 16bit status word. + The response APDU is invalid. + + + + Gets the length of the response APDU + + + + + Gets the size of the data. + + + + + Gets the full response APDU. + + + The full APDU as byte array. + + + + + Gets the data. + + The data. + The response APDU is invalid. + + + Converts the APDU structure to a transmittable byte array. + A byte array containing the APDU parameters and data in the correct order. + + + + Creates a clone. + + A clone of the current instance. + + + + A enumerator. + + + + + Returns the current element. + + The current element. + if the enumerator reaches the end and therefore is invalid. + + + + Returns the current element. + + The current element. + if the enumerator reaches the end and therefore is invalid. + + + + Initializes a new instance of the class. + + A list of . + + + + Initializes a new instance of the class. + + An enumeration of . + + + + Initializes a new instance of the class. + + An array of . + + + + Returns an enumerator. + + + A objekt, that can be used to enumerate through all . + + + + + Returns an enumerator. + + + A objekt, that can be used to enumerate through all . + + + + + Sets the enumerator the the next element. + + true if there exists another element. Otherwise false. + + + + Resets the enumerator to the beginning. + + + + + Disposes the enumerator and releases all managed resources. + + + + + Releases unmanaged and - optionally - managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Secure messaging (SM) format + + + + No secure messaging + + + Proprietary secure messaging format + + + Command header not authenticated + + + Command header authenticated + + + Meaning for the first status word SW1 (ISO7816-4). + + + Normal data response. SW2 indicates the number of remaining response bytes. + + + Warning. The state of non-volatile memory has not been changed. + SW2 could have one of the following values: + + SW2Meaning + 0x00No information. + 0x81Returned data may be corrupted. + 0x82End of file or end of record reached. The number of bytes read is less than specified in + 0x83The selected file invalidated. + 0x84FCI is not correctly formatted. + + + + + Warning. The state of non-volatile memory has been changed. + SW2 could have one of the following values: + + SW2Meaning + 0x00No information. + 0x81File filled up. + + + + + An error occurred. The state of non-volatile memory has not been changed. + SW2 should be 0x00. + + + An error occurred. The state of non-volatile memory has been changed. + SW2 could have one of the following values: + + SW2Meaning + 0x00No information. + 0x81Memory failure. + + + + + An security error occurred. + + + Error wrong length. + + + The function defined in CLA is not supported. + SW2 could have one of the following values: + + SW2Meaning + 0x00No information. + 0x81Logical channel not supported + 0x82Secure messaging not supported + + + + + Error command not allowed + SW2 could have one of the following values: + + SW2Meaning + 0x00No information. + 0x81The command is not compatible with the file structure. + 0x82The security status is not satisfied. + 0x83The authentication method is blocked. + 0x84The referenced data has been invalidated. + 0x85The conditions are not satisfied. + 0x86The command is not allowed. No current elementary file (EF). + 0x87Expected secure messaging data objects are missing. + 0x88Secure messaging data objects are incorrect. + + + + + Error wrong parameters P1 and P2 + SW2 could have one of the following values: + + SW2Meaning + 0x00No information. + 0x80The parameters in the data field are incorrect. + 0x81The requested function is not supported. + 0x82File not found. + 0x83Record not found. + 0x84The file has not enough free space. + 0x85The parameter is inconsistent with the TLV structure. + 0x86The parameters and are incorrect. + 0x87 is not consistent with . + 0x88The referenced data was not found. + + + + + Error wrong parameters P1 and P2 + + + has the wrong length. + SW2 contains the exact length. + + + The instruction code is invalid or not supported. + + + The Class is not supported. + + + No precise diagnosis available. + + + Normal data response. + + + Error purse balance. + + + Memory error. + + + File error. + + + Error authorization. + + + Normal GET response + + + TLV (tag-length-value) type. + + + Simple + + + ASN.1 (abstract syntax notation) structured using basic encoding rules defined in ISO/IEC8825. + + + diff --git a/bin/x86/Debug/net461/PCSC.dll b/bin/x86/Debug/net461/PCSC.dll new file mode 100644 index 0000000..3f20c09 Binary files /dev/null and b/bin/x86/Debug/net461/PCSC.dll differ diff --git a/bin/x86/Debug/net461/PCSC.xml b/bin/x86/Debug/net461/PCSC.xml new file mode 100644 index 0000000..33c75b8 --- /dev/null +++ b/bin/x86/Debug/net461/PCSC.xml @@ -0,0 +1,5507 @@ + + + + PCSC + + + + + + + + + + + + + + + + + + + + + + + + + + Creates a new instance + + The application context to the PC/SC Resource Manager that will be used for and + + + + + + + + + + + + + + + + Dispose this instance + + true if the user called otherwise false if called from GC finalizer. + + + + + + + + + + + + + + + + + + + + + + + + + Creates a instance + + A connected card/reader handle + + + + Creates a instance + + A connected card/reader handle + If set to true, the reader will destroy the on + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dispose this instance + + If true, all managed resources will be disposed. + + + + Smart card context factory + + + + + Default factory instance. + + + + + Create and establish a new smart card context. + + Scope of the establishment. This can either be a local or remote connection. + A new established smart card context + + + + A communication error occurred. + + + + + Creates a new instance. + + Error number. + + + + Creates a new instance. + + System's error code + Error message + + + + Creates a new instance. + + System's error code + Error message + Inner exception. + + + + Serialization constructor + + + + + + + A supplied buffer is insufficient. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + An internal error occurred. + + + + + Creates a new instance. + + System's error code + + + + Creates a new instance. + + System's error code + Error message + + + + Creates a new instance. + + System's error code + Error message + Inner exception + + + + Serialization constructor + + + + + + + Invalid PC/SC context exception. + + + + + Creates a new instance. + + System's error code + + + + Creates a new instance. + + System's error code + Error message + + + + Creates a new instance. + + System's error code + Error message + Inner exception + + + + Serialization constructor + + + + + + + One or more arguments contain invalid parameters. + + + + + Creates a new instance. + + System's error code + + + + Creates a new instance. + + System's error code + Error message + + + + Creates a new instance. + + System's error code + Error message + Inner exception + + + + Serialization constructor + + + + + + + An invalid protocol has been requested. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + Invalid PC/SC scope exception. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + The share mode is invalid. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + One or more arguments contain invalid values. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + The group does not contain any reader + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + The PC/SC service is not running. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + No smart card is currently inserted. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + The reader or the smart card is not ready. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + A general PC/SC exception. + + + + + Serialization name for property + + + + + The system's error code. + + + + + Creates a new instance. + + System's error code + + + + Creates a new instance. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + Gets data for serialization + + + + + + + The requested reader is unavailable. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + A smart card has been removed. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + A sharing violation occurred. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + Operation exited successfully + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + The requested reader name is unknown. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + The smart card is unpowered. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + The smart card is unresponsive. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + The requested feature is unsupported. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + A supplied buffer is insufficient. + + + + + Initializes a new instance of the class. + + System's error code + + + + Initializes a new instance of the class. + + System's error code + An error message text. + + + + Initializes a new instance of the class. + + System's error code + An error message text. + The inner exception. + + + + Serialization constructor + + + + + + + CardError extensions methods + + + + + Throws an exception if is not . + + error code to check + + + + Throws a specific exception + + error code to check + + + + Extension methods for + + + + + Checks if a card is absent + + State to check + true if the card is absent + + + + Checks if a card is present + + State to check + true if a card is present + + + + Encapsulates a handle to a connected card / or a directly connected reader + + + + + The card handle + + + + The connected reader's friendly name. + A human readable string of the reader name or if the reader object is currently not connected. + + + The current mode of connection type: exclusive, shared or direct. + + + The currently used protocol to communicate with the card. + + if not connected. + + + The current connection state of the reader. + if the reader is connected. Otherwise . + + + Establishes a connection to the Smart Card reader. + Reader name to connect to. + Mode of connection type: exclusive or shared. + + ValueDescription + This application will allow others to share the reader. (SCARD_SHARE_SHARED) + This application will NOT allow others to share the reader. (SCARD_SHARE_EXCLUSIVE) + + + Desired protocol use. + + + is a bit mask of acceptable protocols for the connection. You can use ( | ) if you do not have a preferred protocol. + This method calls the API function SCardConnect(). + + + + Terminates a connection made through . + Reader function to execute. + + This method calls the API function SCardDisconnect(). + + + + Reestablishes a connection to a reader that was previously connected to using + + . + Mode of connection type: exclusive/shared. + + + ValueDescription + + + + + + This application will allow others to share the reader. (SCARD_SHARE_SHARED) + + + + + + This application will NOT allow others to share the reader. (SCARD_SHARE_EXCLUSIVE) + + + + Desired protocol use. + Desired action taken on the card/reader before reconnect. + + + is a bit mask of acceptable protocols for the connection. You can use ( | ) if you do not have a preferred protocol. The protocol used with this connection will be stored in . + This method calls the API function SCardReconnect(). + + + + A reader class that implements the most basic PC/SC functions to operate on smart cards, RFID tags and so on. + + + The connected reader's friendly name. + A human readable string of the reader name. + + + The current mode of connection type: exclusive, shared or direct. + + + The currently used protocol to communicate with the card. + + + + Card or reader handle. can be used for C API calls + + + + Connection state of the reader. + if the reader is connected. Otherwise . + + + Reestablishes a connection to a reader that was previously connected to using + + . + Mode of connection type: exclusive/shared. + + + ValueDescription + + + + + + This application will allow others to share the reader. (SCARD_SHARE_SHARED) + + + + + + This application will NOT allow others to share the reader. (SCARD_SHARE_EXCLUSIVE) + + + + + + Direct connection to the reader. (SCARD_SHARE_DIRECT) + + + + Desired protocol use. + Desired action taken on the card/reader before reconnect. + + + is a bit mask of acceptable protocols for the connection. You can use ( | ) if you do not have a preferred protocol. The protocol used with this connection will be stored in . + This method calls the API function SCardReconnect(). + + + + Establishes a temporary exclusive access mode for doing a serie of commands in a transaction. + Action to be taken on the reader if the user ends the transaction. + + You might want to use this when you are selecting a few files and then writing a large file so you can make sure that another application will not change the current file. If another application has a lock on this reader or this application is in + there will be no action taken. + This method calls the API function SCardBeginTransaction(). SCardEndTransaction() will be called when you dispose the returned value + + An anonymous instance implementing that must be disposed to end the transaction. + + + Sends an APDU to the smart card. + APDU to send to the card. + Response from the card. + + + This method will only work if the reader has been connected with one of the following protocols: + + ProtocolDescription + T=0 active protocol. + T=1 active protocol. + Raw active protocol. + + + + + The number of bytes written to the + + + Sends an APDU to the smart card. + A pointer to the protocol header structure for the instruction. This buffer is in the format of an SCARD_IO_REQUEST structure, followed by the specific protocol control information (PCI). You can use one of the following: + + + Protocol Control Information + Description + + + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + + + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + + + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + + + + APDU to send to the card. + Response from the card. + The number of bytes written to the + + + Sends an APDU to the smart card. + Protocol Control Information in the format of an SCARD_IO_REQUEST structure, followed by the specific protocol control information (PCI) + APDU to send to the card. + Response from the card. + The number of bytes written to the + + + Sends an APDU to the smart card. + A pointer to the protocol header structure for the instruction. This buffer is in the format of an SCARD_IO_REQUEST structure, followed by the specific protocol control information (PCI). You can use one of the following: + + + Protocol Control Information + Description + + + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + + + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + + + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + + + + APDU to send to the card. + The buffer size of in bytes. + Pointer to the protocol header structure for the instruction, followed by a buffer in which to receive any returned protocol control information (PCI) specific to the protocol in use. This parameter can be NULL if no PCI is returned. + Response from the card. + The buffer size of in bytes. + The number of bytes written to the + + + Sends an APDU to the smart card. + A pointer to the protocol header structure for the instruction. This buffer is in the format of an SCARD_IO_REQUEST structure, followed by the specific protocol control information (PCI). You can use one of the following: + + + Protocol Control Information + Description + + + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + + + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + + + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + + + + APDU to send to the card. + The buffer size of in bytes. + Response from the card. + The buffer size of in bytes. + The number of bytes written to the + + + Sends an APDU to the smart card. + A pointer to the protocol header structure for the instruction. This buffer is in the format of an SCARD_IO_REQUEST structure, followed by the specific protocol control information (PCI). You can use one of the following: + + + Protocol Control Information + Description + + + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + + + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + + + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + + + + APDU to send to the card. + The buffer size of in bytes. + Structure of Protocol Header Information followed by a buffer in which to receive any returned protocol control information (PCI) specific to the protocol in use. This parameter can be null if no PCI is returned. + Response from the card. + The buffer size of in bytes. + The number of bytes written to the + + + Sends an APDU to the smart card. + Protocol Control Information in the format of an SCARD_IO_REQUEST structure, followed by the specific protocol control information (PCI) + APDU to send to the card. + The buffer size of in bytes. + Structure of Protocol Header Information followed by a buffer in which to receive any returned protocol control information (PCI) specific to the protocol in use. This parameter can be null if no PCI is returned. + Response from the card. + The buffer size of in bytes. + The number of bytes written to the + + + Sends an APDU to the smart card. + Protocol Control Information in the format of an SCARD_IO_REQUEST structure, followed by the specific protocol control information (PCI) + APDU to send to the card. + The buffer size of in bytes. + Response from the card. + The buffer size of in bytes. + The number of bytes written to the + + + Sends a command directly to the IFD Handler (reader driver) to be processed by the reader. + Control code for the operation. + Command to send to the reader. + size + Response from the reader. + size + + This method is useful for creating client side reader drivers for functions like PIN pads, biometrics, or other extensions to the normal smart card reader that are not normally handled by PC/SC. + This method calls the API function SCardControl(). + + The number of bytes written to the + + + Sends a command directly to the IFD Handler (reader driver) to be processed by the reader. + Control code for the operation. + Command to send to the reader. + Response from the reader. + + This method is useful for creating client side reader drivers for functions like PIN pads, biometrics, or other extensions to the normal smart card reader that are not normally handled by PC/SC. + This method calls the API function SCardControl(). + + The number of bytes written to the + + + Returns the current status of the reader and the connected card. + A reader status instance + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + A buffer that receives the attribute. + size. + This method calls the API function SCardGetAttrib(). + The number of bytes written to the attributebuffer OR the required buffer size if is null. + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + A buffer that receives the attribute. + This method calls the API function SCardGetAttrib(). + The number of bytes written to the attributebuffer OR the required buffer size if is null. + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + A buffer that receives the attribute. + size. + This method calls the API function SCardGetAttrib(). + The number of bytes written to the attributebuffer OR the required buffer size if is null. + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + A buffer that receives the attribute. + This method calls the API function SCardGetAttrib(). + The number of bytes written to the attributebuffer OR the required buffer size if is null. + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + This method calls the API function SCardGetAttrib(). + The attribute bytes + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + This method calls the API function SCardGetAttrib(). + The attribute bytes + + + Set an attribute of the IFD Handler. + Identifier for the attribute to set. + Buffer that contains the new value of the attribute. + Length of the buffer in bytes. + + The list of attributes you can set depends on the IFD handler you are using. + This method calls the API function SCardSetAttrib(). + + + + Set an attribute of the IFD Handler. + Identifier for the attribute to set. + Buffer that contains the new value of the attribute. + + The list of attributes you can set depends on the IFD handler you are using. + This method calls the API function SCardSetAttrib(). + + + + Set an attribute of the IFD Handler. + Identifier for the attribute to set. + Buffer that contains the new value of the attribute. + Length of the buffer in bytes. + + The list of attributes you can set depends on the IFD handler you are using. + This method calls the API function SCardSetAttrib(). + + + + Set an attribute of the IFD Handler. + Identifier for the attribute to set. + Buffer that contains the new value of the attribute. + + The list of attributes you can set depends on the IFD handler you are using. + This method calls the API function SCardSetAttrib(). + + + + Terminates a connection and invalidates the card handle." />. + Reader function to execute. + + This method calls the API function SCardDisconnect(). You cannot Reconnect after calling this method. + + + + + Smart card context factory + + + + + Create and establish a new smart card context. + + Scope of the establishment. This can either be a local or remote connection. + A new established smart card context + + + + Gives access to the system's smart card API + + + + + PC/SC API for Linux (x86/x64) + + + + + PC/SC API for MacOS X + + + + + Platform selector (Windows or UNIX) + + + + + Returns true if the operation system runs on Windows. false otherwise. + + + + + Platform smart card library. + + + + State of the smart card in the reader. + Is a bit mask that represents the current reader status. + + + Unknown status. + + + There is no card in the reader. + + + There is a card in the reader, but it has not been moved into position for use. + + + There is a card in the reader in position for use. The card is not powered. + + + Power is being provided to the card, but the reader driver is unaware of the mode of the card. + + + The card has been reset and is awaiting PTS negotiation. + + + The card has been reset and specific communication protocols have been established. + + + + PC/SC API for Microsoft Win32/Win64 (x86/x64/IA64) + + + + An application context to the PC/SC Resource Manager. + Each thread of an application shall use its own context. + + + A pointer (Application Context) that can be used for C API calls. + The returned Application Context handle. Is if not context has been established. + This is the Application Context handle that is returned when calling the C API function SCardEstablishContext(). + + + Maximum ATR size. + + + PlatformMaximum ATR size + + Windows (Winscard.dll) + 36 + + + UNIX/Linux (PC/SClite) + 33 + + + + Attention: Size depends on platform. + + + Infinite timeout. + 0xFFFFFFFF + + + Creates an Application Context to the PC/SC Resource Manager. + Scope of the establishment. This can either be a local or remote connection. + + Creates an Application Context for a client. This must be the first WinSCard function called in a PC/SC application. Each thread of an application shall use its own . + This method calls the API function SCardEstablishContext(). + + + + Destroys a communication context to the PC/SC Resource Manager and frees unmanaged resources. + + This must be the last method called in a PC/SC application. calls this method silently. + This method calls the API function SCardReleaseContext(). + + + + Checks the validity of the current context. + + + + Return value + Description + + + + + + The context is valid. (SCARD_S_SUCCESS) + + + + + + The context is invalid. (SCARD_E_INVALID_HANDLE) + + + + + Call this function to determine whether a smart card context handle is still valid. After a smart card context handle has been set by , it may become not valid if the resource manager service has been shut down. + This method calls the API function SCardIsValidContext(). + + + + Checks the validity of the current context. + if the context is valid. + Call this function to determine whether a smart card context handle is still valid. After a smart card context handle has been set by , it may become not valid if the resource manager service has been shut down. + + + + Returns a list of currently available readers. + List of groups to list readers. + An array of s containing all Smart Card readers found by the PC/SC Resource Manager. + + Groups are not used on Linux/UNIX machines using the PC/SC Lite daemon. + This method calls the API function SCardListReaders(). + + + + Returns a list of currently available readers. + An array of s containing all Smart Card readers found by the PC/SC Resource Manager. + + This method calls the API function SCardListReaders(). + + + + Returns a list of currently available reader groups. + An array of s containing all Smart Card reader groups found by the PC/SC Resource Manager. + + This method calls the API function SCardListReaderGroups(). + + + + Establishes a connection to the Smart Card reader and returns a handle + Reader name to connect to. + Mode of connection type: exclusive or shared. + + ValueDescription + This application will allow others to share the reader. (SCARD_SHARE_SHARED) + This application will NOT allow others to share the reader. (SCARD_SHARE_EXCLUSIVE) + Direct connection to the reader. (SCARD_SHARE_DIRECT) + + + Desired protocol use. + + + is a bit mask of acceptable protocols for the connection. You can use ( | ) if you do not have a preferred protocol. + This method calls the API function SCardConnect(). + + A handle to the smartcard or reader + + + Establishes a connection to the Smart Card reader and returns a reader instance + Reader name to connect to. + Mode of connection type: exclusive or shared. + + ValueDescription + This application will allow others to share the reader. (SCARD_SHARE_SHARED) + This application will NOT allow others to share the reader. (SCARD_SHARE_EXCLUSIVE) + Direct connection to the reader. (SCARD_SHARE_DIRECT) + + + Desired protocol use. + + + is a bit mask of acceptable protocols for the connection. You can use ( | ) if you do not have a preferred protocol. + This method calls the API function SCardConnect(). + + A reader instance + + + Returns the current reader status. + The requested reader. + A that contains the current reader status. + + This method uses the method with a timeout of zero. + + + + Returns the current reader status of all requested readers. + Requested reader names. + An array of s that contains the current reader status of each requested reader. + + This method uses the method with a timeout of zero. + + + + Blocks execution until the current availability of the cards in a specific set of readers changes. + Maximum waiting time (in milliseconds) for status change, zero or for infinite. + Structures of readers with current states. + + A indicating an error or the success.The caller receives status changes through the array. + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + Server is not running (SCARD_E_NO_SERVICE) + + + + + + + is invalid or (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid States, reader name, etc (SCARD_E_INVALID_VALUE) + + + + + + Invalid context (SCARD_E_INVALID_HANDLE) + + + + + + The reader is unavailable (SCARD_E_READER_UNAVAILABLE) + + + + + + The user-specified timeout value has expired (SCARD_E_TIMEOUT) + + + + + This method receives a structure or list of structures containing reader names. It then blocks for a change in state to occur for a maximum blocking time of or forever if is used. + The new event state will be contained in . A status change might be a card insertion or removal event, a change in ATR, etc. + To wait for a reader event (reader added or removed) you may use the special reader name "\\?PnP?\Notification". If a reader event occurs the state of this reader will change and the bit will be set. + This method calls the API function SCardGetStatusChange(). + + + + Cancels all pending blocking requests on the method. + + + Return valueDescription + Successful (SCARD_S_SUCCESS) + Invalid context (SCARD_E_INVALID_HANDLE) + Server is not running (SCARD_E_NO_SERVICE) + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + This method calls the API function SCardCancel(). + + + Common functions that are needed to operate on Smart Card readers. + See . + + + Establishes a connection to the Smart Card reader. + Reader name to connect to. + Mode of connection type: exclusive or shared. + + ValueDescription + This application will allow others to share the reader. (SCARD_SHARE_SHARED) + This application will NOT allow others to share the reader. (SCARD_SHARE_EXCLUSIVE) + + + Desired protocol use. + An error code / return value: + + + Error codeDescription + Successful (SCARD_S_SUCCESS) + Invalid context handle (SCARD_E_INVALID_HANDLE) + is invalid or (SCARD_E_INVALID_PARAMETER) + Invalid sharing mode, requested protocol, or reader name (SCARD_E_INVALID_VALUE) + The server is not runing (SCARD_E_NO_SERVICE) + No smart card present (SCARD_E_NO_SMARTCARD) + Could not allocate the desired port (SCARD_E_NOT_READY) + Requested protocol is unknown (SCARD_E_PROTO_MISMATCH) + Could not power up the reader or card (SCARD_E_READER_UNAVAILABLE) + Someone else has exclusive rights (SCARD_E_SHARING_VIOLATION) + The reader name is (SCARD_E_UNKNOWN_READER) + Protocol not supported (SCARD_E_UNSUPPORTED_FEATURE) + An internal communications error has been detected (SCARD_F_COMM_ERROR) + An internal consistency check failed (SCARD_F_INTERNAL_ERROR) + Card is not powered (SCARD_W_UNPOWERED_CARD) + Card is mute (SCARD_W_UNRESPONSIVE_CARD) + + + + + + is a bit mask of acceptable protocols for the connection. You can use ( | ) if you do not have a preferred protocol. The protocol used with this connection will be stored in . + This method calls the API function SCardConnect(). + + + + Terminates a connection made through . + Reader function to execute. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + Invalid (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + No smart card present (SCARD_E_NO_SMARTCARD) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + This method calls the API function SCardDisconnect(). + + + + Reestablishes a connection to a reader that was previously connected to using + + . + Mode of connection type: exclusive/shared. + + + ValueDescription + + + + + + This application will allow others to share the reader. (SCARD_SHARE_SHARED) + + + + + + This application will NOT allow others to share the reader. (SCARD_SHARE_EXCLUSIVE) + + + + Desired protocol use. + Desired action taken on the card/reader before reconnect. + An error code / return value: + + + Error codeDescription + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + Invalid context handle (SCARD_E_INVALID_HANDLE) + + + + + + + is invalid or (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid sharing mode, requested protocol, or reader name (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + No smart card present (SCARD_E_NO_SMARTCARD) + + + + + + Could not allocate the desired port (SCARD_E_NOT_READY) + + + + + + Requested protocol is unknown (SCARD_E_PROTO_MISMATCH) + + + + + + Could not power up the reader or card (SCARD_E_READER_UNAVAILABLE) + + + + + + Someone else has exclusive rights (SCARD_E_SHARING_VIOLATION) + + + + + + Protocol not supported (SCARD_E_UNSUPPORTED_FEATURE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + An internal consistency check failed (SCARD_F_INTERNAL_ERROR) + + + + + + The smart card has been removed (SCARD_W_REMOVED_CARD) + + + + + + Card is mute (SCARD_W_UNRESPONSIVE_CARD) + + + + + + is a bit mask of acceptable protocols for the connection. You can use ( | ) if you do not have a preferred protocol. The protocol used with this connection will be stored in . + This method calls the API function SCardReconnect(). + + + + Establishes a temporary exclusive access mode for doing a serie of commands in a transaction. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + Someone else has exclusive rights (SCARD_E_SHARING_VIOLATION) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + You might want to use this when you are selecting a few files and then writing a large file so you can make sure that another application will not change the current file. If another application has a lock on this reader or this application is in + there will be no action taken. + This method calls the API function SCardBeginTransaction(). + + + + Ends a previously begun transaction. + Action to be taken on the reader. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + Invalid value for (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + Someone else has exclusive rights (SCARD_E_SHARING_VIOLATION) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + The calling application must be the owner of the previously begun transaction or an error will occur. + This method calls the API function SCardEndTransaction(). + + The disposition action is not currently used in PC/SC Lite on UNIX/Linux machines. + + + + + Sends an APDU to the smart card that was previously connected by . + A pointer to a pre-defined Structure of Protocol Control Information. You can use one of the following: + Protocol Control InformationDescriptionPre-defined T=0 PCI structure. (SCARD_PCI_T0)Pre-defined T=1 PCI structure. (SCARD_PCI_T1)Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + APDU to send to the card. + The buffer size of in bytes. + Structure of protocol information. + Response from the card. + The buffer size of in bytes. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + or are too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + + or or is (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid Protocol, reader name, etc (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + APDU exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + Connect protocol is different than desired (SCARD_E_PROTO_MISMATCH) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + The card has been reset by another application (SCARD_W_RESET_CARD) + + + + + + The card has been removed from the reader (SCARD_W_REMOVED_CARD) + + + + + The card responds from the APDU and stores this response in . The size of the returned data will be stored in . This method will return with error code if the buffer size of is too small for the result. If one of the parameters or is invalid, the method will throw an . + This method calls the API function SCardTransmit(). The pointers to the pre-defined / built-in PCI structures are determinated with dlsym() on UNIX/Linux hosts and GetProcAddress() on Windows hosts. + + + + Sends an APDU to the smart card that was previously connected by . + A pointer to a pre-defined Structure of Protocol Control Information. You can use one of the following: + Protocol Control InformationDescriptionPre-defined T=0 PCI structure. (SCARD_PCI_T0)Pre-defined T=1 PCI structure. (SCARD_PCI_T1)Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + APDU to send to the card. + Structure of protocol information. + Response from the card. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + or are too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + + or or is (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid Protocol, reader name, etc (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + APDU exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + Connect protocol is different than desired (SCARD_E_PROTO_MISMATCH) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + The card has been reset by another application (SCARD_W_RESET_CARD) + + + + + + The card has been removed from the reader (SCARD_W_REMOVED_CARD) + + + + + The card responds from the APDU and stores this response in . is a structure containing the following (implemented in ) + + + + Sends an APDU to the smart card that was previously connected by . + A pointer to a pre-defined Structure of Protocol Control Information. You can use one of the following: + + Protocol Control InformationDescription + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + + APDU to send to the card. + Response from the card. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + or are too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + + or or is (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid Protocol, reader name, etc (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + APDU exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + Connect protocol is different than desired (SCARD_E_PROTO_MISMATCH) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + The card has been reset by another application (SCARD_W_RESET_CARD) + + + + + + The card has been removed from the reader (SCARD_W_REMOVED_CARD) + + + + + The card responds from the APDU and stores this response in . + This method calls the API function SCardTransmit(). The pointers to the pre-defined / built-in PCI structures are determinated with dlsym() on UNIX/Linux hosts and GetProcAddress() on Windows hosts. + + + + Sends an APDU to the smart card that was previously connected by . + Structure of Protocol Control Information. + APDU to send to the card. + Structure of protocol information. + Response from the card. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + or are too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + + or or is (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid Protocol, reader name, etc (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + APDU exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + Connect protocol is different than desired (SCARD_E_PROTO_MISMATCH) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + The card has been reset by another application (SCARD_W_RESET_CARD) + + + + + + The card has been removed from the reader (SCARD_W_REMOVED_CARD) + + + + + The card responds from the APDU and stores this response in . and are structures containing the following (implemented in ): + + typedef struct { + DWORD dwProtocol; // SCARD_PROTOCOL_T0 or SCARD_PROTOCOL_T1 + DWORD cbPciLength; // Length of this structure - not used + } SCARD_IO_REQUEST; + + + It is recommended to use pre-defined / built-in PCI structures by calling one of the following methods: + + + + This method calls the API function SCardTransmit(). The pointers to the pre-defined / built-in PCI structures are determinated with dlsym() on UNIX/Linux hosts and GetProcAddress() on Windows hosts. + + + + Sends an APDU to the smart card that was previously connected by . + APDU to send to the card. + The buffer size of in bytes. + Response from the card. + The buffer size of in bytes. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + or are too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + + or is (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid Protocol, reader name, etc (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + APDU exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + Connect protocol is different than desired (SCARD_E_PROTO_MISMATCH) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + The card has been reset by another application (SCARD_W_RESET_CARD) + + + + + + The card has been removed from the reader (SCARD_W_REMOVED_CARD) + + + + + The card responds from the APDU and stores this response in . The buffer must be initialized. The size of the returned data will be stored in . This method will return with error code if the buffer size of is too small for the result. If one of the parameters or is invalid, the method will throw an . + This method calls the API function SCardTransmit(). + + This method will only work if the reader has been connected with one of the following protocols: + + ProtocolDescription + T=0 active protocol. + T=1 active protocol. + Raw active protocol. + + + + + + Sends an APDU to the smart card that was previously connected by . + APDU to send to the card. + Response from the card. + The buffer size of in bytes. + + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + or are too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + + or is (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid Protocol, reader name, etc (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + APDU exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + Connect protocol is different than desired (SCARD_E_PROTO_MISMATCH) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + The card has been reset by another application (SCARD_W_RESET_CARD) + + + + + + The card has been removed from the reader (SCARD_W_REMOVED_CARD) + + + + + The card responds from the APDU and stores this response in . The buffer must be initialized. The size of the returned data will be stored in . This method will return with error code if the buffer size of is too small for the result. If the parameter is invalid, the method will throw an . + This method calls the API function SCardTransmit(). + + This method will only work if the reader has been connected with one of the following protocols: + ProtocolDescriptionT=0 active protocol.T=1 active protocol.Raw active protocol. + + + + + Sends an APDU to the smart card that was previously connected by . + APDU to send to the card. + Response from the card. + + Return valueDescription + Successful (SCARD_S_SUCCESS) + or are too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + + or is (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid Protocol, reader name, etc (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + APDU exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + Connect protocol is different than desired (SCARD_E_PROTO_MISMATCH) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + The card has been reset by another application (SCARD_W_RESET_CARD) + + + + + + The card has been removed from the reader (SCARD_W_REMOVED_CARD) + + + + + The card responds from the APDU and stores this response in . The buffer must be initialized and will be resized, if the buffer was too big. + This method calls the API function SCardTransmit(). + + This method will only work if the reader has been connected with one of the following protocols: + + ProtocolDescription + T=0 active protocol. + T=1 active protocol. + Raw active protocol. + + + + + + Sends a command directly to the IFD Handler (reader driver) to be processed by the reader. + Control code for the operation. + Command to send to the reader. + Response from the reader. + + + + Return code + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + or are too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + + is and the IFDHandler is version 2.0 (without + + ) (SCARD_E_INVALID_PARAMETER) + + + + + + Invalid value was presented (SCARD_E_INVALID_VALUE) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed(SCARD_E_READER_UNAVAILABLE) + + + + + + Driver does not support (SCARD_E_UNSUPPORTED_FEATURE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + The card has been removed from the reader(SCARD_W_REMOVED_CARD) + + + + + + The card has been reset by another application (SCARD_W_RESET_CARD) + + + + + This method is useful for creating client side reader drivers for functions like PIN pads, biometrics, or other extensions to the normal smart card reader that are not normally handled by PC/SC. + This method calls the API function SCardControl(). + + The API of this function changed. In pcsc-lite 1.2.0 and before the API was not Windows(R) PC/SC compatible. This has been corrected. + + + + + Returns the current status of the reader and the connected card. + The connected readers's friendly name. + The current state. + The card's currently used protocol. + The card's ATR. + + + Return value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + The reader object did not allocate enough memory for or for (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + The reader object got invalid. Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + The reader object passed a size of null for or (SCARD_E_INVALID_PARAMETER) + + + + + + Memory allocation failed (SCARD_E_NO_MEMORY) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + + An internal consistency check failed (SCARD_F_INTERNAL_ERROR) + + + + + + The smart card has been removed (SCARD_W_REMOVED_CARD) + + + + + + The smart card has been reset (SCARD_W_RESET_CARD) + + + + + The connected readers's friendly name will be stored in . The card's ATR will be stored in . The current state, and protocol will be stored in and respectively. + This method calls the API function SCardStatus(). + + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + A buffer that receives the attribute. + Size of the result contained in attribute (in bytes). + + + + Return code + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + is too big - indicates an error in the PC/SC class library. (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Reader buffer not large enough - indicates an error in the PC/SC class library. (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + A parameter is and should not (SCARD_E_INVALID_PARAMETER) + + + + + + Memory allocation failed (SCARD_E_NO_MEMORY) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + The method will return if is + or if the buffer size is not sufficient. + contains the required amount of bytes (size). + If the method returned with then contains the exact size of the result in + + . + For an example please see . + + This method calls the API function SCardGetAttrib(). + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + A buffer that receives the attribute. + + + + Return code + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + is too big - indicates an error in the PC/SC class library. (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Reader buffer not large enough - indicates an error in the PC/SC class library. (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + A parameter is and should not (SCARD_E_INVALID_PARAMETER) + + + + + + Memory allocation failed (SCARD_E_NO_MEMORY) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + This method calls the API function SCardGetAttrib(). + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + A buffer that receives the attribute. + Size of the result contained in attribute (in bytes). + + + + Return code + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + is too big - indicates an error in the PC/SC class library. (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Reader buffer not large enough - indicates an error in the PC/SC class library. (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + A parameter is and should not (SCARD_E_INVALID_PARAMETER) + + + + + + Memory allocation failed (SCARD_E_NO_MEMORY) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + The method will return if is + or if the buffer size is not sufficient. + contains the required amount of bytes (size). + If the method returned with then contains the exact size of the result in + + . + For an example please see . + + This method calls the API function SCardGetAttrib(). + + + Gets an attribute from the IFD Handler (reader driver). + Identifier for the attribute to get. + A buffer that receives the attribute. + + + + Return code + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + + is too big - indicates an error in the PC/SC class library. (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Reader buffer not large enough - indicates an error in the PC/SC class library. (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + A parameter is and should not (SCARD_E_INVALID_PARAMETER) + + + + + + Memory allocation failed (SCARD_E_NO_MEMORY) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + This method calls the API function SCardGetAttrib(). + + + Set an attribute of the IFD Handler. + Identifier for the attribute to set. + Buffer that contains the new value of the attribute. + Length of the buffer in bytes. + + + + Column + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + attribute is too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + A parameter is and should not (SCARD_E_INVALID_PARAMETER) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + The list of attributes you can set depends on the IFD handler you are using. + This method calls the API function SCardSetAttrib(). + + + + Set an attribute of the IFD Handler. + Identifier for the attribute to set. + Buffer that contains the new value of the attribute. + + + + Column + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + attribute is too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + A parameter is and should not (SCARD_E_INVALID_PARAMETER) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + The list of attributes you can set depends on the IFD handler you are using. + This method calls the API function SCardSetAttrib(). + + + + Set an attribute of the IFD Handler. + Identifier for the attribute to set. + Buffer that contains the new value of the attribute. + Length of the buffer in bytes. + + + Column + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + attribute is too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + A parameter is and should not (SCARD_E_INVALID_PARAMETER) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + The list of attributes you can set depends on the IFD handler you are using. + This method calls the API function SCardSetAttrib(). + + + + Set an attribute of the IFD Handler. + Identifier for the attribute to set. + Buffer that contains the new value of the attribute. + + + + Value + Description + + + + + + Successful (SCARD_S_SUCCESS) + + + + + + attribute is too big (SCARD_E_INSUFFICIENT_BUFFER) + + + + + + Invalid card handle (SCARD_E_INVALID_HANDLE) + + + + + + A parameter is and should not (SCARD_E_INVALID_PARAMETER) + + + + + + The server is not runing (SCARD_E_NO_SERVICE) + + + + + + Data exchange not successful (SCARD_E_NOT_TRANSACTED) + + + + + + The reader has been removed (SCARD_E_READER_UNAVAILABLE) + + + + + + An internal communications error has been detected (SCARD_F_COMM_ERROR) + + + + + The list of attributes you can set depends on the IFD handler you are using. + This method calls the API function SCardSetAttrib(). + + + + The connected reader's friendly name. + A human readable string of the reader name or if the reader object is currently not connected. + + + The Smart Card context that will be used for this connection. + + if the reader is not connected. + + + The current mode of connection type: exclusive or shared. + + + The currently used protocol to communicate with the card. + + if not connected. + + + A pointer (Card Handle) that can be used for C API calls. + 0 if not connected. + + This is the card handle that is returned when calling the C API function SCardConnect(). + + + + The current connection state of the reader. + if the reader is connected. Otherwise . + + + + Smart card event. + + + + + Name of the reader that has raised the event. + + A human readable string of the reader name. + + + + The card's ATR (if present), otherwise null. + + + + + Creates a new instance. + + + + + Creates a new instance. + + Name of the reader that has raised the event. + The card's ATR (if present), otherwise null. + + + The reader has been Initialized. + The sender object. + Reader status information. + + + + // Create a monitor object with its own PC/SC context. + SCardMonitor monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System); + + // Point the callback function(s) to the pre-defined method MyCardInitializedMethod. + monitor.Initialized += new CardInitializedEvent(MyCardInitializedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + A new card has been inserted. + The sender object + Reader status information. + + + + // Create a monitor object with its own PC/SC context. + SCardMonitor monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System); + + // Point the callback function(s) to the pre-defined method MyCardInsertedMethod. + monitor.CardInserted += new CardInsertedEvent(MyCardInsertedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + A card has been removed. + The sender object. + Reader status information. + + + + // Create a monitor object with its own PC/SC context. + SCardMonitor monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System); + + // Point the callback function(s) to the pre-defined method MyCardRemovedMethod. + monitor.CardRemoved += new CardRemovedEvent(MyCardRemovedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + + Information about a smart card reader status. + + + + The current reader status. + + + Is a bit mask containing one or more of the following values: + + + + State + Description + + + + + + The application is unaware of the current state, and would like to know. The use of this value results in an immediate return from state transition monitoring services. This is represented by all bits set to zero. + + + + + + This reader should be ignored + + + + + + There is a difference between the state believed by the application, and the state known by the resource manager. When this bit is set, the application may assume a significant state change has occurred on this reader. + + + + + + + The given reader name is not recognized by the resource manager. If this bit is set, then + + and + + will also be set + + + + + + + The actual state of this reader is not available. If this bit is set, then all the following bits are clear. + + + + + + There is no card in the reader. If this bit is set, all the following bits will be clear + + + + + + There is a card in the reader + + + + + + + The card in the reader is allocated for exclusive use by another application. If this bit is set, + + will also be set. + + + + + + + + The card in the reader is in use by one or more other applications, but may be connected to in shared mode. If this bit is set, + + will also be set. + + + + + + + There is an unresponsive card in the reader. + + + + + + + Creates a new instance. + + + + + Creates a new instance. + + Name of the smard card reader + The reader's state + The card's ATR. + + + + A smartcard device status change + + The sender object. + Reader device changes. + + + Information about attached and detached smart card reader devices. + + + + All connected smartcard reader devices + + + + + Recently attached (added) smartcard reader devices + + + + + Recently detached (removed) smartcard reader devices + + + + + Creates a new instance + + All connected smartcard reader devices + Attached/added smartcard reader devices + Detached/removed smartcard reader devices + + + Monitors for attached and detached smartcard reader devices. + + + + The monitor object has been initialized. + + + + + New reader(s) have been attached and/or detached. + + + + An PC/SC error occurred during monitoring. + + + + Creates a new instance + + + + + + Creates a new instance + + Context factory used for this monitor + Scope of the establishment. This can either be a local or remote connection. + + + + Finalizer + + + + + Starts monitoring for device status changes + + + + Cancels the monitoring. + This will end the monitoring. The method calls the method of its Application Context to the PC/SC Resource Manager. + + + Disposes the object. + Dispose will call in order to stop the background thread. The application context will be disposed if you configured the monitor to do so at construction time. + + + An PC/SC error occurred during device monitoring. + The sender object. + Argument that contains the exception. + + + + Information about a device monitor exception + + + + + Exception that occurred in device monitor thread + + + + + Creates an instance + + Exception that occurred in monitoring thread + + + + Smartcard reader device monitoring factory + + + + + Default factory instance. Uses for context creation. + + + + + Creates a monitor instance + + Context factory to use + + + + + + + + + Monitors for attached and detached smartcard reader devices. + + + + The monitor object has been initialized. + + + + + New reader(s) have been attached and/or detached. + + + + An PC/SC error occurred during monitoring. + + + + Starts monitoring for device status changes + + + + Cancels the monitoring. + This will end the monitoring. The method calls the method of its Application Context to the PC/SC Resource Manager. + + + + Smartcard reader device monitoring factory + + + + + Creates a device monitor + + Scope of the establishment. This can either be a local or remote connection. + A + + + + Releases the smartcard device monitor and its dependencies using the method. + + Smartcard device monitor that shall be stopped and disposed. + + + + Smart card monitor factory + + + + + Creates a smart card event monitor + + Scope of the establishment. This can either be a local or remote connection. + A + + + + Releases the smart card monitor and its dependencies using the method. + + Smart card monitor that shall be stopped and disposed. + + + Monitors a Smart Card reader and triggers events on status changes. + + + A general reader status change. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + // Point the callback function(s) to the pre-defined method MyStatusChangedMethod. + monitor.StatusChanged += new StatusChangeEvent(MyStatusChangedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + A new card has been inserted. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + monitor.CardInserted += new CardInsertedEvent(MyCardInsertedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + A card has been removed. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + monitor.CardRemoved += new CardRemovedEvent(MyCardRemovedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + The monitor object has been initialized. + + This event appears only once for each reader after calling or . + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + monitor.Initialized += new CardInitializedEvent(MyCardInitializedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + An PC/SC error occurred during monitoring. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + monitor.MonitorException += new MonitorExceptionEvent(MyMonitorExceptionMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + All readers that are currently being monitored. + A array of reader names. if no readers is being monitored. + + + Indicates if there are readers currently monitored. + + + + Value + Description + + + + + + Monitoring process ongoing. + + + + + + No monitoring. + + + + + + The number of readers that currently being monitored. + Return 0 if no reader is being monitored. + + + Returns the current state of a reader that is currently being monitored. + The number of the desired reader. The index must be between 0 and ( - 1). + The current state of reader with index number . + This method will throw an if the specified is invalid. You can enumerate all readers currently monitored with the property. + If the specified is invalid. + + + Returns the current state of a reader that is currently being monitored. + The number of the desired reader. The index must be between 0 and ( - 1). + The current state of reader with index number . + This method will throw an if the specified is invalid. You can enumerate all readers currently monitored with the property. + If the specified is invalid. + + + Returns the reader name of a given . + The number of the desired reader. The index must be between 0 and ( - 1). + A reader name. + This method will throw an if the specified is invalid. You can enumerate all readers currently monitored with the property. + If the specified is invalid. + + + Cancels the monitoring of all readers that are currently being monitored. + This will end the monitoring. The method calls the method of its Application Context to the PC/SC Resource Manager. + + + The Smart Card reader that shall be monitored. + Starts to monitor a single Smart Card reader for status changes. + + + + // Create a new monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + // Start to monitor a single reader. + monitor.Start("OMNIKEY CardMan 5x21 00 00"); + + + Do not forget to register for at least one event: + + EventDescription + A new card has been inserted. + A card has been removed. + Initial status. + A general status change. + An error occurred. + + + + + A array of reader names that shall be monitored. + Starts to monitor a range Smart Card readers for status changes. + + + + string [] readerNames; + using (var ctx = new SCardContext()) { + ctx.Establish(SCardScope.System); + // Retrieve the names of all installed readers. + readerNames = ctx.GetReaders(); + ctx.Release(); + } + + // Create a new monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + foreach (string reader in readerNames) { + Console.WriteLine("Start monitoring for reader {0}.", reader); + } + + // Start monitoring multiple readers. + monitor.Start(readerNames); + + + Do not forget to register for at least one event: + + EventDescription + A new card has been inserted. + A card has been removed. + Initial status. + A general status change. + An error occurred. + + + + + An PC/SC error occurred during monitoring. + The sender object. + An exception containting the PC/SC error code returned from the native library. + + + + Smart card monitor factory + + + + + Default factory instance. Uses for context creation. + + + + + Creates a new monitor factory. + + Context factory that creates for the new instances. + + + + + + + + + Monitors a Smart Card reader and triggers events on status changes. + Creates a new thread and calls the of the given object. + + + A general reader status change. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + // Point the callback function(s) to the pre-defined method MyStatusChangedMethod. + monitor.StatusChanged += new StatusChangeEvent(MyStatusChangedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + A new card has been inserted. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + monitor.CardInserted += new CardInsertedEvent(MyCardInsertedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + A card has been removed. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + monitor.CardRemoved += new CardRemovedEvent(MyCardRemovedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + The monitor object has been initialized. + + This event appears only once for each reader after calling or . + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + monitor.Initialized += new CardInitializedEvent(MyCardInitializedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + An PC/SC error occurred during monitoring. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + monitor.MonitorException += new MonitorExceptionEvent(MyMonitorExceptionMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + All readers that are currently being monitored. + A array of reader names. if no readers is being monitored. + + + Indicates if there are readers currently monitored. + + + + Value + Description + + + + + + Monitoring process ongoing. + + + + + + No monitoring. + + + + + + + Releases unmanaged resources and stops the background thread (if running). + + + + Creates a new SCardMonitor object that is able to listen for certain smart card / reader changes. + A smartcard context factory + Scope of the establishment. This can either be a local or remote connection. + + + Returns the current state of a reader that is currently being monitored. + The number of the desired reader. The index must be between 0 and ( - 1). + The current state of reader with index number . + This method will throw an if the specified is invalid. You can enumerate all readers currently monitored with the property. + If the specified is invalid. + + + Returns the current state of a reader that is currently being monitored. + The number of the desired reader. The index must be between 0 and ( - 1). + The current state of reader with index number . + This method will throw an if the specified is invalid. You can enumerate all readers currently monitored with the property. + If the specified is invalid. + + + Returns the reader name of a given . + The number of the desired reader. The index must be between 0 and ( - 1). + A reader name. + This method will throw an if the specified is invalid. You can enumerate all readers currently monitored with the property. + If the specified is invalid. + + + The number of readers that currently being monitored. + Return 0 if no reader is being monitored. + + + Disposes the object. + Dispose will call in order to stop the background thread. The application context will be disposed if you configured the monitor to do so at construction time. + + + Disposes the object. + Ignored. It will call in order to stop the background thread. The application context will be disposed if the user configured the monitor to do so at construction time. + + + Cancels the monitoring of all readers that are currently being monitored. + This will end the monitoring. The method calls the method of its Application Context to the PC/SC Resource Manager. + + + The Smart Card reader that shall be monitored. + Starts to monitor a single Smart Card reader for status changes. + + + + // Create a new monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + // Start to monitor a single reader. + monitor.Start("OMNIKEY CardMan 5x21 00 00"); + + + Do not forget to register for at least one event: + + EventDescription + A new card has been inserted. + A card has been removed. + Initial status. + A general status change. + An error occurred. + + + + + A array of reader names that shall be monitored. + Starts to monitor a range Smart Card readers for status changes. + + + + string [] readerNames; + using (var ctx = new SCardContext()) { + ctx.Establish(SCardScope.System); + // Retrieve the names of all installed readers. + readerNames = ctx.GetReaders(); + ctx.Release(); + } + + // Create a new monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + foreach (string reader in readerNames) { + Console.WriteLine("Start monitoring for reader {0}.", reader); + } + + // Start monitoring multiple readers. + monitor.Start(readerNames); + + + Do not forget to register for at least one event: + + EventDescription + A new card has been inserted. + A card has been removed. + Initial status. + A general status change. + An error occurred. + + + + + A general reader status change. + The sender object. + Reader status information. + + + + // Create a monitor object with its own PC/SC context. + var monitor = new SCardMonitor( + new SCardContext(), + SCardScope.System, + true); + + // Point the callback function(s) to the pre-defined method MyStatusChangedMethod. + monitor.StatusChanged += new StatusChangeEvent(MyStatusChangedMethod); + + // Start to monitor the reader + monitor.Start("OMNIKEY CardMan 5x21 00 01"); + + + + + + Information about a smart card reader status change. + + + The reader's status before this event. + + Is a bit mask containing one or more of the following values: + + StateDescription + The application is unaware of the current state, and would like to know. The use of this value results in an immediate return from state transition monitoring services. This is represented by all bits set to zero. + This reader should be ignored + There is a difference between the state believed by the application, and the state known by the resource manager. When this bit is set, the application may assume a significant state change has occurred on this reader. + The given reader name is not recognized by the resource manager. If this bit is set, then and will also be set + The actual state of this reader is not available. If this bit is set, then all the following bits are clear. + There is no card in the reader. If this bit is set, all the following bits will be clear + There is a card in the reader + The card in the reader is allocated for exclusive use by another application. If this bit is set, will also be set. + The card in the reader is in use by one or more other applications, but may be connected to in shared mode. If this bit is set, will also be set. + There is an unresponsive card in the reader. + + + + + The new status of this reader. + + Is a bit mask containing one or more of the following values: + + StateDescription + The application is unaware of the current state, and would like to know. The use of this value results in an immediate return from state transition monitoring services. This is represented by all bits set to zero. + This reader should be ignored + There is a difference between the state believed by the application, and the state known by the resource manager. When this bit is set, the application may assume a significant state change has occurred on this reader. + The given reader name is not recognized by the resource manager. If this bit is set, then and will also be set + The actual state of this reader is not available. If this bit is set, then all the following bits are clear. + There is no card in the reader. If this bit is set, all the following bits will be clear + There is a card in the reader + The card in the reader is allocated for exclusive use by another application. If this bit is set, will also be set. + The card in the reader is in use by one or more other applications, but may be connected to in shared mode. If this bit is set, will also be set. + There is an unresponsive card in the reader. + + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + Name of the reader. + The last state. + The new state. + The card's ATR. + + + + Holds information about the reader status. + + + + + A bit mask that represents the reader status + + + + + The reader's currently used protocol. + + + + + A list of the reader's friendly names + + + + + Gets the card's ATR. + + A byte array containing the ATR or null if no card connected. + + + + Creates a new instance + + The reader's friendly names + A bit mask that represents the reader status + The reader's currently used protocol. + The card's ATR if available + + + Smart card reader attribute enumeration. + Can be used as parameter for the following methods: + + + + + + + + + + Vendor name. (SCARD_ATTR_VENDOR_NAME) + + + + + Vendor-supplied interface device type (model designation of reader). (SCARD_ATTR_VENDOR_IFD_TYPE) + + + + + Vendor-supplied interface device version (DWORD in the form 0xMMmmbbbb where MM = major version, mm = minor version, and bbbb = build number). (SCARD_ATTR_VENDOR_IFD_VERSION) + + + + + Vendor-supplied interface device serial number. (SCARD_ATTR_VENDOR_IFD_SERIAL_NO) + + + + + DWORD encoded as 0xDDDDCCCC, where DDDD = data channel type and CCCC = channel number (SCARD_ATTR_CHANNEL_ID) + + + + + Asynchronous protocol types (SCARD_ATTR_ASYNC_PROTOCOL_TYPES) + + + + + Default clock rate, in kHz. (SCARD_ATTR_DEFAULT_CLK) + + + + + Maximum clock rate, in kHz. (SCARD_ATTR_MAX_CLK) + + + + + Default data rate, in bps. (SCARD_ATTR_DEFAULT_DATA_RATE) + + + + + Maximum data rate, in bps. (SCARD_ATTR_MAX_DATA_RATE) + + + + + Maximum bytes for information file size device. (SCARD_ATTR_MAX_IFSD) + + + + + Synchronous protocol types (SCARD_ATTR_SYNC_PROTOCOL_TYPES) + + + + + Zero if device does not support power down while smart card is inserted. Nonzero otherwise. (SCARD_ATTR_POWER_MGMT_SUPPORT) + + + + + User to card authentication device (SCARD_ATTR_USER_TO_CARD_AUTH_DEVICE) + + + + + User authentication input device (SCARD_ATTR_USER_AUTH_INPUT_DEVICE) + + + + + DWORD indicating which mechanical characteristics are supported. If zero, no special characteristics are supported. Note that multiple bits can be set (SCARD_ATTR_CHARACTERISTICS) + + + + + Current protocol type (SCARD_ATTR_CURRENT_PROTOCOL_TYPE) + + + + + Current clock rate, in kHz. (SCARD_ATTR_CURRENT_CLK) + + + + + Clock conversion factor. (SCARD_ATTR_CURRENT_F) + + + + + Bit rate conversion factor. (SCARD_ATTR_CURRENT_D) + + + + + Current guard time. (SCARD_ATTR_CURRENT_N) + + + + + Current work waiting time. (SCARD_ATTR_CURRENT_W) + + + + + Current byte size for information field size card. (SCARD_ATTR_CURRENT_IFSC) + + + + + Current byte size for information field size device. (SCARD_ATTR_CURRENT_IFSD) + + + + + Current block waiting time. (SCARD_ATTR_CURRENT_BWT) + + + + + Current character waiting time. (SCARD_ATTR_CURRENT_CWT) + + + + + Current error block control encoding. (SCARD_ATTR_CURRENT_EBC_ENCODING) + + + + + Extended block wait time. (SCARD_ATTR_EXTENDED_BWT) + + + + + Single byte indicating smart card presence(SCARD_ATTR_ICC_PRESENCE) + + + + + Single byte. Zero if smart card electrical contact is not active; nonzero if contact is active. (SCARD_ATTR_ICC_INTERFACE_STATUS) + + + + + Current IO state (SCARD_ATTR_CURRENT_IO_STATE) + + + + + Answer to reset (ATR) string. (SCARD_ATTR_ATR_STRING) + + + + + Answer to reset (ATR) string. (SCARD_ATTR_ATR_STRING) + + + + + Single byte indicating smart card type (SCARD_ATTR_ICC_TYPE_PER_ATR) + + + + + Esc reset (SCARD_ATTR_ESC_RESET) + + + + + Esc cancel (SCARD_ATTR_ESC_CANCEL) + + + + + Esc authentication request (SCARD_ATTR_ESC_AUTHREQUEST) + + + + + Maximum input (SCARD_ATTR_MAXINPUT) + + + + + Instance of this vendor's reader attached to the computer. The first instance will be device unit 0, the next will be unit 1 (if it is the same brand of reader) and so on. Two different brands of readers will both have zero for this value. (SCARD_ATTR_DEVICE_UNIT) + + + + + Reserved for future use. (SCARD_ATTR_DEVICE_IN_USE) + + + + + Device friendly name ASCII (SCARD_ATTR_DEVICE_FRIENDLY_NAME_A) + + + + + Device system name ASCII (SCARD_ATTR_DEVICE_SYSTEM_NAME_A) + + + + + Device friendly name UNICODE (SCARD_ATTR_DEVICE_FRIENDLY_NAME_W) + + + + + Device system name UNICODE (SCARD_ATTR_DEVICE_SYSTEM_NAME_W) + + + + + Supress T1 information file size request (SCARD_ATTR_SUPRESS_T1_IFS_REQUEST) + + + + + Device friendly name (SCARD_ATTR_DEVICE_FRIENDLY_NAME) + + + + + Device system name (SCARD_ATTR_DEVICE_SYSTEM_NAME) + + + + + Smart card class + + + + Vendor information definitions + + + Communication definitions + + + Protocol definitions + + + Power Management definitions + + + Security Assurance definitions + + + Mechanical characteristic definitions + + + Vendor specific definitions + + + Interface Device Protocol options + + + ICC State specific definitions + + + System-specific definitions + + + Manages an application context to the PC/SC Resource Manager. + Each thread of an application shall use its own SCardContext. + + + + + + + + + + + + Maximum ATR size. + + + PlatformMaximum ATR size + + Windows (Winscard.dll) + 36 + + + UNIX/Linux (PC/SClite) + 33 + + + + Attention: Size depends on platform. + + + Infinite timeout. + 0xFFFFFFFF + + + + Destroys application context to the PC/SC Resource Manager. + + + + + Creates a new context instance + + + + + + + + + + + + + + + + + + + + + + + + + Disposes a PC/SC application context. + Ignored. If an application context to the PC/SC Resource Manager has been established it will call the method. + + + + + + + + + + + + + + + + + + + + + + + + Error and return codes. + + + No error. (SCARD_S_SUCCESS) + + + An internal consistency check failed. (SCARD_F_INTERNAL_ERROR) + + + The action was cancelled by an request. (SCARD_E_CANCELLED) + + + The supplied handle was invalid. (SCARD_E_INVALID_HANDLE) + + + The supplied handle was invalid. (ERROR_INVALID_HANDLE) + + + One or more of the supplied parameters could not be properly interpreted. (SCARD_E_INVALID_PARAMETER) + + + Registry startup information is missing or invalid. (SCARD_E_INVALID_TARGET) + + + Not enough memory available to complete this command. (SCARD_E_NO_MEMORY) + + + An internal consistency timer has expired. (SCARD_F_WAITED_TOO_LONG) + + + The data buffer to receive returned data is too small for the returned data. (SCARD_E_INSUFFICIENT_BUFFER) + + + Windows error ERROR_INSUFFICIENT_BUFFER: The data area passed to a system call is too small. + + + The specified reader name is not recognized. (SCARD_E_UNKNOWN_READER) + + + The user-specified timeout value has expired. (SCARD_E_TIMEOUT) + + + The smart card cannot be accessed because of other connections outstanding. (SCARD_E_SHARING_VIOLATION) + + + The operation requires a Smart Card, but no Smart Card is currently in the device. (SCARD_E_NO_SMARTCARD) + + + The specified smart card name is not recognized. (SCARD_E_UNKNOWN_CARD) + + + The system could not dispose of the media in the requested manner. (SCARD_E_CANT_DISPOSE) + + + The requested protocols are incompatible with the protocol currently in use with the smart card. (SCARD_E_PROTO_MISMATCH) + + + The reader or smart card is not ready to accept commands. (SCARD_E_NOT_READY) + + + One or more of the supplied parameters values could not be properly interpreted. (SCARD_E_INVALID_VALUE) + + + The action was cancelled by the system, presumably to log off or shut down. (SCARD_E_SYSTEM_CANCELLED) + + + An internal communications error has been detected. (SCARD_F_COMM_ERROR) + + + An internal error has been detected, but the source is unknown. (SCARD_F_UNKNOWN_ERROR) + + + An ATR obtained from the registry is not a valid ATR string. (SCARD_E_INVALID_ATR) + + + An attempt was made to end a non-existent transaction. (SCARD_E_NOT_TRANSACTED) + + + The specified reader is not currently available for use. (SCARD_E_READER_UNAVAILABLE) + + + The operation has been aborted to allow the server application to exit. (SCARD_P_SHUTDOWN) + + + The reader cannot communicate with the card, due to ATR string configuration conflicts. (SCARD_W_UNSUPPORTED_CARD) + + + The smart card is not responding to a reset. (SCARD_W_UNRESPONSIVE_CARD) + + + Power has been removed from the smart card, so that further communication is not possible. (SCARD_W_UNPOWERED_CARD) + + + The smart card has been reset, so any shared state information is invalid. (SCARD_W_RESET_CARD) + + + The smart card has been removed, so further communication is not possible. (SCARD_W_REMOVED_CARD) + + + The PCI Receive buffer was too small. (SCARD_E_PCI_TOO_SMALL) + + + The reader driver does not meet minimal requirements for support. (SCARD_E_READER_UNSUPPORTED) + + + The reader driver did not produce a unique reader name. (SCARD_E_DUPLICATE_READER) + + + The smart card does not meet minimal requirements for support. (SCARD_E_CARD_UNSUPPORTED) + + + The Smart card resource manager is not running. (SCARD_E_NO_SERVICE) + + + The Smart card resource manager has shut down. (SCARD_E_SERVICE_STOPPED) + + + An unexpected card error has occurred. (SCARD_E_UNEXPECTED) + + + Cannot find a smart card reader. (SCARD_E_NO_READERS_AVAILABLE) + + + PC/SC Lite specific extensions + Feature not supported. (SCARD_E_UNSUPPORTED_FEATURE) + + + No primary provider can be found for the smart card. (SCARD_E_ICC_INSTALLATION) + + + The requested order of object creation is not supported. (SCARD_E_ICC_CREATEORDER) + + + The identified directory does not exist in the smart card. (SCARD_E_DIR_NOT_FOUND) + + + The identified file does not exist in the smart card. (SCARD_E_FILE_NOT_FOUND) + + + The supplied path does not represent a smart card directory. (SCARD_E_NO_DIR) + + + The supplied path does not represent a smart card file. (SCARD_E_NO_FILE) + + + Access is denied to this file. (SCARD_E_NO_ACCESS) + + + The smart card does not have enough memory to store the information. (SCARD_E_WRITE_TOO_MANY) + + + There was an error trying to set the smart card file object pointer. (SCARD_E_BAD_SEEK) + + + The supplied PIN is incorrect. (SCARD_E_INVALID_CHV) + + + An unrecognized error code was returned from a layered component. (SCARD_E_UNKNOWN_RES_MNG) + + + The requested certificate does not exist. (SCARD_E_NO_SUCH_CERTIFICATE) + + + The requested certificate could not be obtained. (SCARD_E_CERTIFICATE_UNAVAILABLE) + + + A communications error with the smart card has been detected. (SCARD_E_COMM_DATA_LOST) + + + The requested key container does not exist on the smart card. (SCARD_E_NO_KEY_CONTAINER) + + + The Smart Card Resource Manager is too busy to complete this operation. (SCARD_E_SERVER_TOO_BUSY) + + + Access was denied because of a security violation. (SCARD_W_SECURITY_VIOLATION) + + + The card cannot be accessed because the wrong PIN was presented. (SCARD_W_WRONG_CHV) + + + The card cannot be accessed because the maximum number of PIN entry attempts has been reached. (SCARD_W_CHV_BLOCKED) + + + The end of the smart card file has been reached. (SCARD_W_EOF) + + + The user pressed "Cancel" on a Smart Card Selection Dialog. (SCARD_W_CANCELLED_BY_USER) + + + No PIN was presented to the smart card. (SCARD_W_CARD_NOT_AUTHENTICATED) + + + Structure of protocol control information. + + Is a structure containing the following: + + + + typedef struct { + DWORD dwProtocol; // SCARD_PROTOCOL_T0 or SCARD_PROTOCOL_T1 + DWORD cbPciLength; // Length of this structure - not used + } SCARD_IO_REQUEST; + + + + The pointers to the pre-defined / built-in PCI structures are determinated with dlsym() on UNIX/Linux hosts and GetProcAddress() on Windows hosts. + + + + Destroys the object and frees unmanaged memory. + + + Initializes a new instance of the class. + + + Creates a new SCardPCI object. + + Protocol Control InformationDescription + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + + + Size of this structure in bytes. + + + Creates a new SCardPCI object. + + + Protocol Control InformationDescription + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + + + User data. + + + Disposes the instance and frees unmanaged memory. + + + + Disposes the instance and frees unmanaged memory. + + Ignored + + + Protocol + + + Protocol Control InformationDescription + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + + + + + Size of this structure in bytes. + + + User data. + + + Pre-defined T=0 PCI structure. (SCARD_PCI_T0) + A pointer to the C structure in the system library. + This pointer to the pre-defined / built-in PCI structure is determinated with dlsym() on UNIX/Linux hosts and GetProcAddress() on Windows hosts. + + + Pre-defined T=1 PCI structure. (SCARD_PCI_T1) + A pointer to the C structure in the system library. + This pointer to the pre-defined / built-in PCI structure is determinated with dlsym() on UNIX/Linux hosts and GetProcAddress() on Windows hosts. + + + Pre-defined RAW PCI structure. (SCARD_PCI_RAW) + A pointer to the C structure in the system library. + This pointer to the pre-defined / built-in PCI structure is determinated with dlsym() on UNIX/Linux hosts and GetProcAddress() on Windows hosts. + + + Receives a PCI pointer to a given protocol. + The desired protocol. + A pointer to the PCI structure in the native system library. + + + Communication protocol use with the Smart Card. + This is a bit mask of acceptable protocols for the connection. You can use ( | ) if you do not have a preferred protocol. + + + + Protocol not defined. + + + + T=0 active protocol. + + + T=1 active protocol. + + + Raw active protocol. Use with memory type cards. + + + T=15 protocol. + + + ( | ). IFD (Interface device) determines protocol. + + + A reader class that implements the most basic PC/SC functions to operate on smart cards, RFID tags and so on. + It will use the system's native PC/SC API. + + + + + + + + + + + + + + + + + + + + + Unmanaged resources (card handle) are released! + + + Creates a new smart card reader object. + Connection context to the PC/SC Resource Manager. + + + + // Create PC/SC context + var ctx = new SCardContext(); + ctx.Establish(SCardScope.System); + + // Create reader object and connect to the Smart Card + var myReader = new SCardReader(ctx); + var rc = myReader.Connect( + "OMNIKEY CardMan 5321", + SCardShareMode.Shared, + SCardProtocol.T1); + + + + If is + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This will disconnect the reader if it is currently connected using . + Ignored. The reader will be disconnected. + + + Action to be taken on the reader. + The disposition action is not currently used in PC/SC Lite. + + + Do nothing. (SCARD_LEAVE_CARD) + + + Reset the card. (SCARD_RESET_CARD) + + + Unpower the card. (SCARD_UNPOWER_CARD) + + + Eject the card. (SCARD_EJECT_CARD) + + + A structures that contains the old and the new Smart Card reader status. + + Is used as parameter in . + The new event state will be contained in . A status change might be a card insertion or removal event, a change in ATR, etc. To wait for a reader event (reader added or removed) you may use the special reader name "\\?PnP?\Notification". If a reader event occurs the state of this reader will change and the bit will be set. + + + + + Frees unmanaged resources. + + + + + Frees unmanaged resources. + + + + + Frees unmanaged resources. + + Ignored. + + + + Initializes a new instance of the class. + + + + + User defined data. + + + + + User defined data. + + + + + Current state of reader. + + + + + Current state of reader. + + + + + Reader state after a state change. + + + + + Reader state after a state change. + + + + + Number of change events. + + + + + The reader's name. + + + + + Answer To Reset (ATR) + + + + Scope of the establishment. + The following scopes are not used on Linux/UNIX machines using the PC/SC Lite daemon: + + + + + + + + Scope in user space. + + + Scope in terminal. + + + Scope in system. Service on the local machine. + + + PC/SC Lite specific extensions + Scope is global. + + + Mode of connection type: exclusive or shared. + + can be used before using to send control commands to the reader even if a card is not present in the reader. Contrary to Windows winscard behavior, the reader is accessed in shared mode and not exclusive mode. + + + This application will NOT allow others to share the reader. (SCARD_SHARE_EXCLUSIVE) + + + This application will allow others to share the reader. (SCARD_SHARE_SHARED) + + + Direct control of the reader, even without a card. (SCARD_SHARE_DIRECT) + + + State of the smart card in the reader. + Is a bit mask that represents the current reader status. + + + Unknown status. + + + There is no card in the reader. + + + There is a card in the reader, but it has not been moved into position for use. + + + There is a card in the reader in position for use. The card is not powered. + + + Power is being provided to the card, but the reader driver is unaware of the mode of the card. + + + The card has been reset and is awaiting PTS negotiation. + + + The card has been reset and specific communication protocols have been established. + + + Reader state. + + + The application is unaware of the current state, and would like to know. The use of this value results in an immediate return from state transition monitoring services. This is represented by all bits set to zero. (SCARD_STATE_UNAWARE) + + + This reader should be ignored. (SCARD_STATE_IGNORE) + + + There is a difference between the state believed by the application, and the state known by the resource manager. When this bit is set, the application may assume a significant state change has occurred on this reader. (SCARD_STATE_CHANGED) + + + The given reader name is not recognized by the resource manager. If this bit is set, then and will also be set. (SCARD_STATE_UNKNOWN) + + + The actual state of this reader is not available. If this bit is set, then all the following bits are clear. (SCARD_STATE_UNAVAILABLE) + + + There is no card in the reader. If this bit is set, all the following bits will be clear. (SCARD_STATE_EMPTY) + + + There is a card in the reader. (SCARD_STATE_PRESENT) + + + There is a card in the reader with an ATR matching one of the target cards. If this bit is set, will also be set. This bit is only returned on the SCardLocateCards() function. (SCARD_STATE_ATRMATCH) + + + The card in the reader is allocated for exclusive use by another application. If this bit is set, will also be set. (SCARD_STATE_EXCLUSIVE) + + + The card in the reader is in use by one or more other applications, but may be connected to in shared mode. If this bit is set, will also be set. (SCARD_STATE_INUSE) + + + There is an unresponsive card in the reader. (SCARD_STATE_MUTE) + + + The card is unpowered. (SCARD_STATE_UNPOWERED) + + + + Helper class that offers methods to convert various values into strings. + + + + + Returns a human readable text for the given PC/SC error code. + + Error or return code. + A human readable string. + Warning! This method behaves differently compared to the original PC/SC-Lite pcsc_stringify_error function. Instead of the (const) variable name it returns a short text description. + + + + Returns a description string of an enumeration attribute. + + attribute type + attribute + If available: a description string of the specified attribute. Otherwise null. + + + diff --git a/bin/x86/Debug/net461/QRkakuninn.png b/bin/x86/Debug/net461/QRkakuninn.png new file mode 100644 index 0000000..032ca20 Binary files /dev/null and b/bin/x86/Debug/net461/QRkakuninn.png differ diff --git a/bin/x86/Debug/net461/SOM_config.dat b/bin/x86/Debug/net461/SOM_config.dat new file mode 100644 index 0000000..4e0cade --- /dev/null +++ b/bin/x86/Debug/net461/SOM_config.dat @@ -0,0 +1,34 @@ +127.0.0.1 +root +root +so-manager2 +3306 +0 +34 +用紙の残量が少なくなりました。交換してください。 +C:\SoM_PrnControl\log\ +SOM_LOG +0 +60 +https://so-manager.com/api/getgip.php +稼働中 +停止中 +0 +COM3 +https://rrmt.kessai.info/KessaiTest/Yoyaku.asmx +192.168.0.179 +SRJ00001 +vuOIM66.6B +41226 +SRJ +00001 +SRJ +SRI00001 +vuNIM66.6B +41225 +SRI +00001 +SRI +So-Manager駐輪場 +03-5856-4720(受付時間12:00-22:00) +TYPE-OTHER \ No newline at end of file diff --git a/bin/x86/Debug/net461/SOM_configSTG3.dat b/bin/x86/Debug/net461/SOM_configSTG3.dat new file mode 100644 index 0000000..d2a9399 --- /dev/null +++ b/bin/x86/Debug/net461/SOM_configSTG3.dat @@ -0,0 +1,34 @@ +127.0.0.1 +root + +so-manager +3306 +0 +7 +用紙の残量が少なくなりました。交換してください。 +C:\SoM_PrnControl\log\ +SOM_LOG +1 +60 +https://so-manager.com/api/getgip.php +稼働中 +停止中 +0 +COM6 +https://rrmt.kessai.info/KessaiTest/Yoyaku.asmx +192.168.105.101 +SRJ00001 +vuOIM66.6B +41226 +SRJ +00001 +SRJ +SRI00001 +vuNIM66.6B +41225 +SRI +00001 +SRI +So-Manager駐輪場 +03-5856-4720(受付時間12:00-22:00) +TYPE-OTHER \ No newline at end of file diff --git a/bin/x86/Debug/net461/SOM_config緑本番.dat b/bin/x86/Debug/net461/SOM_config緑本番.dat new file mode 100644 index 0000000..526a68b --- /dev/null +++ b/bin/x86/Debug/net461/SOM_config緑本番.dat @@ -0,0 +1,34 @@ +127.0.0.1 +root + +so-manager +3306 +0 +94 +用紙の残量が少なくなりました。交換してください。 +C:\SoM_PrnControl\log\ +SOM_LOG +1 +60 +https://so-manager.com/api/getgip.php +稼働中 +停止中 +0 +COM6 +https://rrm.kessai.info/Kessai/Yoyaku.asmx +192.168.105.101 +SRJ00001 +vuOIM66.6B +41226 +SRJ +00001 +SRJ +SRI00001 +vuNIM66.6B +41225 +SRI +00001 +SRI +So-Manager駐輪場 +03-5856-4720(受付時間12:00-22:00) +TYPE-OTHER \ No newline at end of file diff --git a/bin/x86/Debug/net461/SOM_config青本番.dat b/bin/x86/Debug/net461/SOM_config青本番.dat new file mode 100644 index 0000000..526a68b --- /dev/null +++ b/bin/x86/Debug/net461/SOM_config青本番.dat @@ -0,0 +1,34 @@ +127.0.0.1 +root + +so-manager +3306 +0 +94 +用紙の残量が少なくなりました。交換してください。 +C:\SoM_PrnControl\log\ +SOM_LOG +1 +60 +https://so-manager.com/api/getgip.php +稼働中 +停止中 +0 +COM6 +https://rrm.kessai.info/Kessai/Yoyaku.asmx +192.168.105.101 +SRJ00001 +vuOIM66.6B +41226 +SRJ +00001 +SRJ +SRI00001 +vuNIM66.6B +41225 +SRI +00001 +SRI +So-Manager駐輪場 +03-5856-4720(受付時間12:00-22:00) +TYPE-OTHER \ No newline at end of file diff --git a/bin/x86/Debug/net461/SoM_PrnControl.exe.1 b/bin/x86/Debug/net461/SoM_PrnControl.exe.1 new file mode 100644 index 0000000..ba26abc Binary files /dev/null and b/bin/x86/Debug/net461/SoM_PrnControl.exe.1 differ diff --git a/bin/x86/Debug/net461/SoM_PrnControl.exe.config b/bin/x86/Debug/net461/SoM_PrnControl.exe.config new file mode 100644 index 0000000..0cbb707 --- /dev/null +++ b/bin/x86/Debug/net461/SoM_PrnControl.exe.config @@ -0,0 +1,339 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/bin/x86/Debug/net461/System.AppContext.dll b/bin/x86/Debug/net461/System.AppContext.dll new file mode 100644 index 0000000..4ccc058 Binary files /dev/null and b/bin/x86/Debug/net461/System.AppContext.dll differ diff --git a/bin/x86/Debug/net461/System.Collections.Concurrent.dll b/bin/x86/Debug/net461/System.Collections.Concurrent.dll new file mode 100644 index 0000000..26f10d1 Binary files /dev/null and b/bin/x86/Debug/net461/System.Collections.Concurrent.dll differ diff --git a/bin/x86/Debug/net461/System.Collections.NonGeneric.dll b/bin/x86/Debug/net461/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..9da235a Binary files /dev/null and b/bin/x86/Debug/net461/System.Collections.NonGeneric.dll differ diff --git a/bin/x86/Debug/net461/System.Collections.Specialized.dll b/bin/x86/Debug/net461/System.Collections.Specialized.dll new file mode 100644 index 0000000..fbd4fc7 Binary files /dev/null and b/bin/x86/Debug/net461/System.Collections.Specialized.dll differ diff --git a/bin/x86/Debug/net461/System.Collections.dll b/bin/x86/Debug/net461/System.Collections.dll new file mode 100644 index 0000000..72ac205 Binary files /dev/null and b/bin/x86/Debug/net461/System.Collections.dll differ diff --git a/bin/x86/Debug/net461/System.ComponentModel.EventBasedAsync.dll b/bin/x86/Debug/net461/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..37742d4 Binary files /dev/null and b/bin/x86/Debug/net461/System.ComponentModel.EventBasedAsync.dll differ diff --git a/bin/x86/Debug/net461/System.ComponentModel.Primitives.dll b/bin/x86/Debug/net461/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..b0c4b68 Binary files /dev/null and b/bin/x86/Debug/net461/System.ComponentModel.Primitives.dll differ diff --git a/bin/x86/Debug/net461/System.ComponentModel.TypeConverter.dll b/bin/x86/Debug/net461/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..fb42b44 Binary files /dev/null and b/bin/x86/Debug/net461/System.ComponentModel.TypeConverter.dll differ diff --git a/bin/x86/Debug/net461/System.ComponentModel.dll b/bin/x86/Debug/net461/System.ComponentModel.dll new file mode 100644 index 0000000..8e2d829 Binary files /dev/null and b/bin/x86/Debug/net461/System.ComponentModel.dll differ diff --git a/bin/x86/Debug/net461/System.Console.dll b/bin/x86/Debug/net461/System.Console.dll new file mode 100644 index 0000000..fe61bcc Binary files /dev/null and b/bin/x86/Debug/net461/System.Console.dll differ diff --git a/bin/x86/Debug/net461/System.Data.Common.dll b/bin/x86/Debug/net461/System.Data.Common.dll new file mode 100644 index 0000000..05e3481 Binary files /dev/null and b/bin/x86/Debug/net461/System.Data.Common.dll differ diff --git a/bin/x86/Debug/net461/System.Diagnostics.Contracts.dll b/bin/x86/Debug/net461/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..98f40eb Binary files /dev/null and b/bin/x86/Debug/net461/System.Diagnostics.Contracts.dll differ diff --git a/bin/x86/Debug/net461/System.Diagnostics.Debug.dll b/bin/x86/Debug/net461/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..a51c0cf Binary files /dev/null and b/bin/x86/Debug/net461/System.Diagnostics.Debug.dll differ diff --git a/bin/x86/Debug/net461/System.Diagnostics.FileVersionInfo.dll b/bin/x86/Debug/net461/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..3c203b0 Binary files /dev/null and b/bin/x86/Debug/net461/System.Diagnostics.FileVersionInfo.dll differ diff --git a/bin/x86/Debug/net461/System.Diagnostics.Process.dll b/bin/x86/Debug/net461/System.Diagnostics.Process.dll new file mode 100644 index 0000000..b537e62 Binary files /dev/null and b/bin/x86/Debug/net461/System.Diagnostics.Process.dll differ diff --git a/bin/x86/Debug/net461/System.Diagnostics.StackTrace.dll b/bin/x86/Debug/net461/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..5dfaad6 Binary files /dev/null and b/bin/x86/Debug/net461/System.Diagnostics.StackTrace.dll differ diff --git a/bin/x86/Debug/net461/System.Diagnostics.TextWriterTraceListener.dll b/bin/x86/Debug/net461/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..a5720da Binary files /dev/null and b/bin/x86/Debug/net461/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/bin/x86/Debug/net461/System.Diagnostics.Tools.dll b/bin/x86/Debug/net461/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..bd9deae Binary files /dev/null and b/bin/x86/Debug/net461/System.Diagnostics.Tools.dll differ diff --git a/bin/x86/Debug/net461/System.Diagnostics.TraceSource.dll b/bin/x86/Debug/net461/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..5474eb2 Binary files /dev/null and b/bin/x86/Debug/net461/System.Diagnostics.TraceSource.dll differ diff --git a/bin/x86/Debug/net461/System.Diagnostics.Tracing.dll b/bin/x86/Debug/net461/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..5b8b2b4 Binary files /dev/null and b/bin/x86/Debug/net461/System.Diagnostics.Tracing.dll differ diff --git a/bin/x86/Debug/net461/System.Drawing.Primitives.dll b/bin/x86/Debug/net461/System.Drawing.Primitives.dll new file mode 100644 index 0000000..1eeacc4 Binary files /dev/null and b/bin/x86/Debug/net461/System.Drawing.Primitives.dll differ diff --git a/bin/x86/Debug/net461/System.Dynamic.Runtime.dll b/bin/x86/Debug/net461/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..d34b388 Binary files /dev/null and b/bin/x86/Debug/net461/System.Dynamic.Runtime.dll differ diff --git a/bin/x86/Debug/net461/System.Globalization.Calendars.dll b/bin/x86/Debug/net461/System.Globalization.Calendars.dll new file mode 100644 index 0000000..4a198bc Binary files /dev/null and b/bin/x86/Debug/net461/System.Globalization.Calendars.dll differ diff --git a/bin/x86/Debug/net461/System.Globalization.Extensions.dll b/bin/x86/Debug/net461/System.Globalization.Extensions.dll new file mode 100644 index 0000000..99f9e4a Binary files /dev/null and b/bin/x86/Debug/net461/System.Globalization.Extensions.dll differ diff --git a/bin/x86/Debug/net461/System.Globalization.dll b/bin/x86/Debug/net461/System.Globalization.dll new file mode 100644 index 0000000..dd3d2e3 Binary files /dev/null and b/bin/x86/Debug/net461/System.Globalization.dll differ diff --git a/bin/x86/Debug/net461/System.IO.Compression.ZipFile.dll b/bin/x86/Debug/net461/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..345acbd Binary files /dev/null and b/bin/x86/Debug/net461/System.IO.Compression.ZipFile.dll differ diff --git a/bin/x86/Debug/net461/System.IO.Compression.dll b/bin/x86/Debug/net461/System.IO.Compression.dll new file mode 100644 index 0000000..ebbb503 Binary files /dev/null and b/bin/x86/Debug/net461/System.IO.Compression.dll differ diff --git a/bin/x86/Debug/net461/System.IO.FileSystem.DriveInfo.dll b/bin/x86/Debug/net461/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..5c59398 Binary files /dev/null and b/bin/x86/Debug/net461/System.IO.FileSystem.DriveInfo.dll differ diff --git a/bin/x86/Debug/net461/System.IO.FileSystem.Primitives.dll b/bin/x86/Debug/net461/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..de4c49f Binary files /dev/null and b/bin/x86/Debug/net461/System.IO.FileSystem.Primitives.dll differ diff --git a/bin/x86/Debug/net461/System.IO.FileSystem.Watcher.dll b/bin/x86/Debug/net461/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..228d60b Binary files /dev/null and b/bin/x86/Debug/net461/System.IO.FileSystem.Watcher.dll differ diff --git a/bin/x86/Debug/net461/System.IO.FileSystem.dll b/bin/x86/Debug/net461/System.IO.FileSystem.dll new file mode 100644 index 0000000..6934080 Binary files /dev/null and b/bin/x86/Debug/net461/System.IO.FileSystem.dll differ diff --git a/bin/x86/Debug/net461/System.IO.IsolatedStorage.dll b/bin/x86/Debug/net461/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..356e123 Binary files /dev/null and b/bin/x86/Debug/net461/System.IO.IsolatedStorage.dll differ diff --git a/bin/x86/Debug/net461/System.IO.MemoryMappedFiles.dll b/bin/x86/Debug/net461/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..add3b29 Binary files /dev/null and b/bin/x86/Debug/net461/System.IO.MemoryMappedFiles.dll differ diff --git a/bin/x86/Debug/net461/System.IO.Pipes.dll b/bin/x86/Debug/net461/System.IO.Pipes.dll new file mode 100644 index 0000000..e5690c4 Binary files /dev/null and b/bin/x86/Debug/net461/System.IO.Pipes.dll differ diff --git a/bin/x86/Debug/net461/System.IO.UnmanagedMemoryStream.dll b/bin/x86/Debug/net461/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..cdd7427 Binary files /dev/null and b/bin/x86/Debug/net461/System.IO.UnmanagedMemoryStream.dll differ diff --git a/bin/x86/Debug/net461/System.IO.dll b/bin/x86/Debug/net461/System.IO.dll new file mode 100644 index 0000000..e9eb534 Binary files /dev/null and b/bin/x86/Debug/net461/System.IO.dll differ diff --git a/bin/x86/Debug/net461/System.Linq.Expressions.dll b/bin/x86/Debug/net461/System.Linq.Expressions.dll new file mode 100644 index 0000000..63b570c Binary files /dev/null and b/bin/x86/Debug/net461/System.Linq.Expressions.dll differ diff --git a/bin/x86/Debug/net461/System.Linq.Parallel.dll b/bin/x86/Debug/net461/System.Linq.Parallel.dll new file mode 100644 index 0000000..d8d097e Binary files /dev/null and b/bin/x86/Debug/net461/System.Linq.Parallel.dll differ diff --git a/bin/x86/Debug/net461/System.Linq.Queryable.dll b/bin/x86/Debug/net461/System.Linq.Queryable.dll new file mode 100644 index 0000000..404bbe2 Binary files /dev/null and b/bin/x86/Debug/net461/System.Linq.Queryable.dll differ diff --git a/bin/x86/Debug/net461/System.Linq.dll b/bin/x86/Debug/net461/System.Linq.dll new file mode 100644 index 0000000..42cd93b Binary files /dev/null and b/bin/x86/Debug/net461/System.Linq.dll differ diff --git a/bin/x86/Debug/net461/System.Net.Http.dll b/bin/x86/Debug/net461/System.Net.Http.dll new file mode 100644 index 0000000..1c5c6fd Binary files /dev/null and b/bin/x86/Debug/net461/System.Net.Http.dll differ diff --git a/bin/x86/Debug/net461/System.Net.NameResolution.dll b/bin/x86/Debug/net461/System.Net.NameResolution.dll new file mode 100644 index 0000000..e8a65c0 Binary files /dev/null and b/bin/x86/Debug/net461/System.Net.NameResolution.dll differ diff --git a/bin/x86/Debug/net461/System.Net.NetworkInformation.dll b/bin/x86/Debug/net461/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..543a6cf Binary files /dev/null and b/bin/x86/Debug/net461/System.Net.NetworkInformation.dll differ diff --git a/bin/x86/Debug/net461/System.Net.Ping.dll b/bin/x86/Debug/net461/System.Net.Ping.dll new file mode 100644 index 0000000..eeb4666 Binary files /dev/null and b/bin/x86/Debug/net461/System.Net.Ping.dll differ diff --git a/bin/x86/Debug/net461/System.Net.Primitives.dll b/bin/x86/Debug/net461/System.Net.Primitives.dll new file mode 100644 index 0000000..8a929ae Binary files /dev/null and b/bin/x86/Debug/net461/System.Net.Primitives.dll differ diff --git a/bin/x86/Debug/net461/System.Net.Requests.dll b/bin/x86/Debug/net461/System.Net.Requests.dll new file mode 100644 index 0000000..5cf38f8 Binary files /dev/null and b/bin/x86/Debug/net461/System.Net.Requests.dll differ diff --git a/bin/x86/Debug/net461/System.Net.Security.dll b/bin/x86/Debug/net461/System.Net.Security.dll new file mode 100644 index 0000000..eacb8a1 Binary files /dev/null and b/bin/x86/Debug/net461/System.Net.Security.dll differ diff --git a/bin/x86/Debug/net461/System.Net.Sockets.dll b/bin/x86/Debug/net461/System.Net.Sockets.dll new file mode 100644 index 0000000..9716795 Binary files /dev/null and b/bin/x86/Debug/net461/System.Net.Sockets.dll differ diff --git a/bin/x86/Debug/net461/System.Net.WebHeaderCollection.dll b/bin/x86/Debug/net461/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..0238e69 Binary files /dev/null and b/bin/x86/Debug/net461/System.Net.WebHeaderCollection.dll differ diff --git a/bin/x86/Debug/net461/System.Net.WebSockets.Client.dll b/bin/x86/Debug/net461/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..3275912 Binary files /dev/null and b/bin/x86/Debug/net461/System.Net.WebSockets.Client.dll differ diff --git a/bin/x86/Debug/net461/System.Net.WebSockets.dll b/bin/x86/Debug/net461/System.Net.WebSockets.dll new file mode 100644 index 0000000..7a74189 Binary files /dev/null and b/bin/x86/Debug/net461/System.Net.WebSockets.dll differ diff --git a/bin/x86/Debug/net461/System.ObjectModel.dll b/bin/x86/Debug/net461/System.ObjectModel.dll new file mode 100644 index 0000000..37e1189 Binary files /dev/null and b/bin/x86/Debug/net461/System.ObjectModel.dll differ diff --git a/bin/x86/Debug/net461/System.Reflection.Extensions.dll b/bin/x86/Debug/net461/System.Reflection.Extensions.dll new file mode 100644 index 0000000..6d12687 Binary files /dev/null and b/bin/x86/Debug/net461/System.Reflection.Extensions.dll differ diff --git a/bin/x86/Debug/net461/System.Reflection.Primitives.dll b/bin/x86/Debug/net461/System.Reflection.Primitives.dll new file mode 100644 index 0000000..2c160e9 Binary files /dev/null and b/bin/x86/Debug/net461/System.Reflection.Primitives.dll differ diff --git a/bin/x86/Debug/net461/System.Reflection.dll b/bin/x86/Debug/net461/System.Reflection.dll new file mode 100644 index 0000000..ec0b3d2 Binary files /dev/null and b/bin/x86/Debug/net461/System.Reflection.dll differ diff --git a/bin/x86/Debug/net461/System.Resources.Reader.dll b/bin/x86/Debug/net461/System.Resources.Reader.dll new file mode 100644 index 0000000..a34c693 Binary files /dev/null and b/bin/x86/Debug/net461/System.Resources.Reader.dll differ diff --git a/bin/x86/Debug/net461/System.Resources.ResourceManager.dll b/bin/x86/Debug/net461/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..c4a14ce Binary files /dev/null and b/bin/x86/Debug/net461/System.Resources.ResourceManager.dll differ diff --git a/bin/x86/Debug/net461/System.Resources.Writer.dll b/bin/x86/Debug/net461/System.Resources.Writer.dll new file mode 100644 index 0000000..0ce2946 Binary files /dev/null and b/bin/x86/Debug/net461/System.Resources.Writer.dll differ diff --git a/bin/x86/Debug/net461/System.Runtime.CompilerServices.VisualC.dll b/bin/x86/Debug/net461/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..30a2f81 Binary files /dev/null and b/bin/x86/Debug/net461/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/bin/x86/Debug/net461/System.Runtime.Extensions.dll b/bin/x86/Debug/net461/System.Runtime.Extensions.dll new file mode 100644 index 0000000..eb0e80b Binary files /dev/null and b/bin/x86/Debug/net461/System.Runtime.Extensions.dll differ diff --git a/bin/x86/Debug/net461/System.Runtime.Handles.dll b/bin/x86/Debug/net461/System.Runtime.Handles.dll new file mode 100644 index 0000000..37f15ff Binary files /dev/null and b/bin/x86/Debug/net461/System.Runtime.Handles.dll differ diff --git a/bin/x86/Debug/net461/System.Runtime.InteropServices.RuntimeInformation.dll b/bin/x86/Debug/net461/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..c3e0c71 Binary files /dev/null and b/bin/x86/Debug/net461/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/bin/x86/Debug/net461/System.Runtime.InteropServices.dll b/bin/x86/Debug/net461/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..ab54429 Binary files /dev/null and b/bin/x86/Debug/net461/System.Runtime.InteropServices.dll differ diff --git a/bin/x86/Debug/net461/System.Runtime.Numerics.dll b/bin/x86/Debug/net461/System.Runtime.Numerics.dll new file mode 100644 index 0000000..3202cd9 Binary files /dev/null and b/bin/x86/Debug/net461/System.Runtime.Numerics.dll differ diff --git a/bin/x86/Debug/net461/System.Runtime.Serialization.Formatters.dll b/bin/x86/Debug/net461/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..06b5480 Binary files /dev/null and b/bin/x86/Debug/net461/System.Runtime.Serialization.Formatters.dll differ diff --git a/bin/x86/Debug/net461/System.Runtime.Serialization.Json.dll b/bin/x86/Debug/net461/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..1f30098 Binary files /dev/null and b/bin/x86/Debug/net461/System.Runtime.Serialization.Json.dll differ diff --git a/bin/x86/Debug/net461/System.Runtime.Serialization.Primitives.dll b/bin/x86/Debug/net461/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..19a6dd2 Binary files /dev/null and b/bin/x86/Debug/net461/System.Runtime.Serialization.Primitives.dll differ diff --git a/bin/x86/Debug/net461/System.Runtime.Serialization.Xml.dll b/bin/x86/Debug/net461/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..3a839e2 Binary files /dev/null and b/bin/x86/Debug/net461/System.Runtime.Serialization.Xml.dll differ diff --git a/bin/x86/Debug/net461/System.Runtime.dll b/bin/x86/Debug/net461/System.Runtime.dll new file mode 100644 index 0000000..344ee77 Binary files /dev/null and b/bin/x86/Debug/net461/System.Runtime.dll differ diff --git a/bin/x86/Debug/net461/System.Security.Claims.dll b/bin/x86/Debug/net461/System.Security.Claims.dll new file mode 100644 index 0000000..9cb6423 Binary files /dev/null and b/bin/x86/Debug/net461/System.Security.Claims.dll differ diff --git a/bin/x86/Debug/net461/System.Security.Cryptography.Algorithms.dll b/bin/x86/Debug/net461/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..01b7bb5 Binary files /dev/null and b/bin/x86/Debug/net461/System.Security.Cryptography.Algorithms.dll differ diff --git a/bin/x86/Debug/net461/System.Security.Cryptography.Csp.dll b/bin/x86/Debug/net461/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..d7721e7 Binary files /dev/null and b/bin/x86/Debug/net461/System.Security.Cryptography.Csp.dll differ diff --git a/bin/x86/Debug/net461/System.Security.Cryptography.Encoding.dll b/bin/x86/Debug/net461/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..f588614 Binary files /dev/null and b/bin/x86/Debug/net461/System.Security.Cryptography.Encoding.dll differ diff --git a/bin/x86/Debug/net461/System.Security.Cryptography.Primitives.dll b/bin/x86/Debug/net461/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..35a21ef Binary files /dev/null and b/bin/x86/Debug/net461/System.Security.Cryptography.Primitives.dll differ diff --git a/bin/x86/Debug/net461/System.Security.Cryptography.X509Certificates.dll b/bin/x86/Debug/net461/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..53d05b2 Binary files /dev/null and b/bin/x86/Debug/net461/System.Security.Cryptography.X509Certificates.dll differ diff --git a/bin/x86/Debug/net461/System.Security.Principal.dll b/bin/x86/Debug/net461/System.Security.Principal.dll new file mode 100644 index 0000000..6d7c2ba Binary files /dev/null and b/bin/x86/Debug/net461/System.Security.Principal.dll differ diff --git a/bin/x86/Debug/net461/System.Security.SecureString.dll b/bin/x86/Debug/net461/System.Security.SecureString.dll new file mode 100644 index 0000000..355a050 Binary files /dev/null and b/bin/x86/Debug/net461/System.Security.SecureString.dll differ diff --git a/bin/x86/Debug/net461/System.Text.Encoding.Extensions.dll b/bin/x86/Debug/net461/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..4f2b83d Binary files /dev/null and b/bin/x86/Debug/net461/System.Text.Encoding.Extensions.dll differ diff --git a/bin/x86/Debug/net461/System.Text.Encoding.dll b/bin/x86/Debug/net461/System.Text.Encoding.dll new file mode 100644 index 0000000..557551f Binary files /dev/null and b/bin/x86/Debug/net461/System.Text.Encoding.dll differ diff --git a/bin/x86/Debug/net461/System.Text.RegularExpressions.dll b/bin/x86/Debug/net461/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..1a64a17 Binary files /dev/null and b/bin/x86/Debug/net461/System.Text.RegularExpressions.dll differ diff --git a/bin/x86/Debug/net461/System.Threading.Overlapped.dll b/bin/x86/Debug/net461/System.Threading.Overlapped.dll new file mode 100644 index 0000000..5d7e7b7 Binary files /dev/null and b/bin/x86/Debug/net461/System.Threading.Overlapped.dll differ diff --git a/bin/x86/Debug/net461/System.Threading.Tasks.Parallel.dll b/bin/x86/Debug/net461/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..c4df330 Binary files /dev/null and b/bin/x86/Debug/net461/System.Threading.Tasks.Parallel.dll differ diff --git a/bin/x86/Debug/net461/System.Threading.Tasks.dll b/bin/x86/Debug/net461/System.Threading.Tasks.dll new file mode 100644 index 0000000..25999be Binary files /dev/null and b/bin/x86/Debug/net461/System.Threading.Tasks.dll differ diff --git a/bin/x86/Debug/net461/System.Threading.Thread.dll b/bin/x86/Debug/net461/System.Threading.Thread.dll new file mode 100644 index 0000000..9b7da65 Binary files /dev/null and b/bin/x86/Debug/net461/System.Threading.Thread.dll differ diff --git a/bin/x86/Debug/net461/System.Threading.ThreadPool.dll b/bin/x86/Debug/net461/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..9405b8f Binary files /dev/null and b/bin/x86/Debug/net461/System.Threading.ThreadPool.dll differ diff --git a/bin/x86/Debug/net461/System.Threading.Timer.dll b/bin/x86/Debug/net461/System.Threading.Timer.dll new file mode 100644 index 0000000..c9eae71 Binary files /dev/null and b/bin/x86/Debug/net461/System.Threading.Timer.dll differ diff --git a/bin/x86/Debug/net461/System.Threading.dll b/bin/x86/Debug/net461/System.Threading.dll new file mode 100644 index 0000000..deae2be Binary files /dev/null and b/bin/x86/Debug/net461/System.Threading.dll differ diff --git a/bin/x86/Debug/net461/System.ValueTuple.dll b/bin/x86/Debug/net461/System.ValueTuple.dll new file mode 100644 index 0000000..502f8cd Binary files /dev/null and b/bin/x86/Debug/net461/System.ValueTuple.dll differ diff --git a/bin/x86/Debug/net461/System.Xml.ReaderWriter.dll b/bin/x86/Debug/net461/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..24df9a0 Binary files /dev/null and b/bin/x86/Debug/net461/System.Xml.ReaderWriter.dll differ diff --git a/bin/x86/Debug/net461/System.Xml.XDocument.dll b/bin/x86/Debug/net461/System.Xml.XDocument.dll new file mode 100644 index 0000000..cbbc4f0 Binary files /dev/null and b/bin/x86/Debug/net461/System.Xml.XDocument.dll differ diff --git a/bin/x86/Debug/net461/System.Xml.XPath.XDocument.dll b/bin/x86/Debug/net461/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..0830ed1 Binary files /dev/null and b/bin/x86/Debug/net461/System.Xml.XPath.XDocument.dll differ diff --git a/bin/x86/Debug/net461/System.Xml.XPath.dll b/bin/x86/Debug/net461/System.Xml.XPath.dll new file mode 100644 index 0000000..8327f2e Binary files /dev/null and b/bin/x86/Debug/net461/System.Xml.XPath.dll differ diff --git a/bin/x86/Debug/net461/System.Xml.XmlDocument.dll b/bin/x86/Debug/net461/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..4f044b1 Binary files /dev/null and b/bin/x86/Debug/net461/System.Xml.XmlDocument.dll differ diff --git a/bin/x86/Debug/net461/System.Xml.XmlSerializer.dll b/bin/x86/Debug/net461/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..7b47de8 Binary files /dev/null and b/bin/x86/Debug/net461/System.Xml.XmlSerializer.dll differ diff --git a/bin/x86/Debug/net461/adachiku.CLF b/bin/x86/Debug/net461/adachiku.CLF new file mode 100644 index 0000000..2f83514 --- /dev/null +++ b/bin/x86/Debug/net461/adachiku.CLF @@ -0,0 +1,7480 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +iVBORw0KGgoAAAANSUhEUgAAAG4AAADICAYAAAAJHtQIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAACJISURBVHhe7d0HlCxFFQZgzAkDZgwIIuaAGAAVAyIoipgVA/GBWcScAUUxgoigBEHFLKCoCIpPERFQgigq5ow559yer5i71hY9PT2zM/um3+v/nHt2Zrqnt6f/qltVN9VaVY9Ooieuo+iJ6yh64jqKnriOoieuo+iJ6yh64jqKnriOoieuo5gKcZ/73Oeqddddt/rNb34z+GQxfL7++utXf/7zn6tXvepV1S677FL94Ac/qB74wAcukn/84x+Db1TVBz/4weq2t73t4F1VnX766dVpp522IF/96lcHR6rq17/+dXWXu9yl+u1vfzv4pKq23HLL6l3vetfg3f/x7ne/O91DiP8DT33qU6vHPe5x1Z/+9Kf0fhg23njj6vDDDx+8uyT++Mc/Vs94xjPSb3XP17rWtdJn/s/b3va26r///e/gzKVhIuL8+Lvd7W4L4gFf7nKXW/QZ+eQnP5lu1ANE7AknnFA95jGPqbbYYovqpJNOqi51qUtVr3nNa6rnPe951VprrVX97W9/SyT47u1ud7tqnXXWSa8POOCA6hGPeER1jWtco7rjHe9Y3frWt6623XbbdC/f+ta30vcf9ahHVa997WsTqRqF63lwGg35+9//ns6/z33uU22//fbpOhrQcccdlz6/6KKLqnvc4x7V6173uvQePPD895ArXvGK1a1udatFnz396U8ffONibLXVVtWBBx5YvfGNb0yvkXjLW96yestb3jI4Y+mYiDg/Dlla3jC58Y1vnAj+z3/+Uz360Y+urnrVq1Y77rhjdfvb3z71vsMOOywRB9/5zncWiPvXv/5VnXzyyYmEq1zlKtVHP/rRdPzf//53tcEGGyQyHAviHvawh1WXucxlqk996lPVta997eqcc86pnvjEJ6br5XLkkUem8xF3/etfv7r61a9erbfeetUb3vCG1BCI+4rXn/nMZxLZ5e+6znWuk3pn/tnHPvaxdG1A5HWve910jatd7Wrpnm50oxule7j5zW9e3fnOdx6cuTRMTNwDHvCA6jnPeU71yEc+8hLih1EpiAO9yA846KCDqm222SYRecEFF6Qf43zX8hpx8OAHP7i6xS1ukQi5053ulHouwq585StXv/rVrxYR94tf/CI1hpvc5CbVk5/85OrUU0+trnCFK6Se99Of/jTJJptssog4xN773veu9t577+rrX/969YEPfCAJrUEDeO178Lvf/a662c1uljQGcU/XvOY1F97f7373S+cFfv7zn6fvfvjDH073e+6556aGEtf82c9+NjhzaZiIOL3CeHTooYemH//Sl740PfinPe1p6f0rX/nK1Fr1EkCcH+vYve51rwXi9DikvOMd71ggTg/13Xe+851JLe2zzz5JEPiCF7wg9SwqzfgUoJY0FJ/tvvvu1fHHH19997vfHRytqs0222wRcRqFh+k773//+9PngHAPugSCXvGKV6Te77Xf6/X973//pHIDe+yxR3WlK10pyeUvf/nq0pe+dHrtr/dxbKeddhp8Y3IsaXLykpe8JI1biPTgv/nNb1b//Oc/U6vLgTgPhZq4wQ1usIg4yFUlVaelUivOQ8pb3/rW1Eu0fg9qo402qn784x+n71K/1B7VbOy54Q1vWH35y19Oava8885L55TE6W3GHGOdz/fff//qmc98ZupNj33sY9Prv/71r+l8QJZx2TjrutSh1ze96U0XEfe9732v+vznP5+GEaqSljj77LOT6Jn+56c//elFjWpSTEycnqHlfuhDH1ogzphBn6+99tqDsy4G4qiyb3/726lX5qqSGnIsiNPbPvvZz1YXXnjhglzveter3vzmNy/67Ec/+lG6toezcuXKpC5NBvQM6ugJT3hCdc973jP1+jvc4Q4LxFHfb3rTm9KE4ilPeUpSy3rQihUrEnEPechD0uu//OUv6XwN0bi29dZbp55irL7vfe+bXvv9OXFIoxn0qjg/xHBgjHatI444YvCNyTExccYGD/uoo45aIO6ss85KJOXLAtN2N62lauF+rF7xwhe+MLVK52uRQZz3m2+++YIg1jHqJv/8Wc96Vrr+e97znvTw73rXu6Yxjvozk/3a175WHX300enB+75ZLHjoT3rSk6rtttsu9T7fDdSpSjNC41UIFfviF7944b1JTGCvvfaq9txzz9TzqGCTE8OD82ga4xwNoocvFRMRpxVbd3mAfohJh4dDVZb4/e9/n34c9XTIIYekh6WXaoXx0HJVmYOqQ5z1VZCNiBwvf/nLU49BnEakRf/yl78cHK3Sa9f+xje+ke6bynvQgx6UiEe0yUigJM44phfmEo0o/0wPg1ij+bvvvvum5QyVaz7g/o2908JExFF3xpUf/vCHC2rKD9KbvA4x5UeG9RKVYkZozbXDDjsklWMCouf6kQZvapIKtW5DqgdEpSGLenRNY5kJyHvf+97UG8xgP/7xjy8Q94lPfCJ9bganN+oBFsHGRw3kRS96UXXiiScmlarHa0Bxv8Zc46fX1O4f/vCHNF7m4v9TtflnX/nKVwZPpkrrQhrGZOwLX/hCuje/3/Nx7rQwEXE/+clPFqkIQKIW5WGFfP/730/TdWut6AVao89YF7RE03cPSs8BKs5kwgzS6xzGHYt545cFdw6TCiopgDyzT+MbkktQo3qwiUJ+zyHnn3/+4MzFoGnc8zBomBqb5wEaorHUBMu8YFqYeIzrsWrRE9dR9MR1FD1xHcVqQ5xJj6l3TMnHhbVoOeGaBtwPs55JyjQxNeJMnU3Bm2Sas6oSHjzLjVlk7pcbBjNUbhv3zU/GfGX5wW5qeWLWW0pYa4B1hZWkTqwFzaJJGADKWfBSMTXinv3sZ6cbbJLc/ZGDRSF3k+RizVQ3na+DNZj/g8RR4Bvj3yO+w47IrMbOyjTFXmqdRxgZnMOOGrCQ9/+sKUN4OpzHZMefyIoTxO26666Db04HUyMOKdYwTTKsJ3g4ftwwuexlL5uM2aMwLnHO3XnnnZOpLve+I84aMBCWoZK4xz/+8YN3F4ORwHmdIm4p8EDysISQ5z//+elHU4FsmKMwCXFnnHHG4JP/g021DXEsLdRriPfO6wRxrAiMtuNIPlYMA/NXGJiHqdgSQRwbZ96D6lAS5/8JefA9lpk2xDGzuQ5DMrI5mL03ns89ccYFNzaOhJ+sCR6ec/0Nh+woBHGET4yn3EOsQxAnzIAryl/vTSzaEOf8UJXstY7nvXfuiXNjIqNyMZvixqE6PLjy+KjZJY+373JgtpkhBoI4YQ1Ul9cs/maEuWMUgjhjHIdwiKChNsS5P8ZrvkczScf1Qh4BPsJOjnHIcbNuflxwpXjYvk84Q03b2yAf47hxGJ55HcwYS5SqMkdb4pzjc6T4yzCuwXZ2cmJ672Z5BcaB9ZM4Ew+b784Y4joIEYY3CjlxAY5ccSollkIcVe+9cAR/NTZ/efgFRXWWOA5WN3vssccOPmkGPx2VpRVbM/nhYJEsLtG1jEMeTBPqiBuGII4a5f+L2E1uniDOdfjULLadG8Q51/uY9dYRZ3x9/etf3w3ijF0ehBvVW0qPdgnn86HxDvsOlVbng4uWzYnZNOZNQpwebrEd8qUvfSmFNSCOyjeGOY/6DuuPnsRRyhHsWBDH5+Ya0fBg7onTUkUpu0kLWE7UUTAR4ES1wNZ6h41lQd5+++03+KQekxBXpyrdv4YHHLesN+JiQDyN/8NZeswxx6RrBHGMDBofRzNHrrgTwUmOzS1xxqC73/3uyXvdhrQAW2E8lCaM6r0wDnHiYzz48MznQBy1PQzWoTzceqTAIGOo/5urcvew4YYbps81TGEc08RUVaXFK9WwqqARiC1ZKgQQmSG2hVgWGqO07lgT6o2l+p8GZjI56TF79MR1FD1xHUVPXEfRE9dR9MR1FD1xHcXYxImN5/6YZeBPj9FoJI61QgJhLry9rAG8xeWxNhaLHtNBI3FCBpDURhhdV6XVpATzE3skKwgbp5hJFg7hd6sDWhEnFUqe2zBxnry05YasHwUEhBGUkHEjs0b6suxQvkE54uqfMFi77y6jkTi5ZnrSRz7ykRQeN0ykV0n3Ze1fTghUkiIs87ME4sSEyMsT88n2+Pa3vz2lMZ955plJtXcZrSYnfGwifYmepRfGe5L7n1YFxHmUQJzeximq6pDYTQRKvhTtnIchdBGtiOP6iN6khSOubeTVcmAYcRIK+dXcs9mw17SHHtd1tCLu4IMPXvAAB3ESGfihiEF/VWIYcXLHhVEIOJLey/Uihp/Dt+toRdxuu+224BEO4sSGhEyjisAkoO7UJNGo/BUfEojJiSR9KlII3cMf/vAUkrBGECecQHyjcg9U5jypSuESJhwhuQc6VCUgzrim2sKmm266ZhBnwS1WkMrR69TymLcxrg5mjVHlQIgegwFYQrQJlZh3NBJnbBN7IbJYkIw1UEQIGzfU5colryHZY7ZoJE4BUbWycouIYFDBqiKa1CsJcd404j16tEOryUmP+UNPXEfRE9dR9MR1FD1xLSHy2TJiHCkDYQXIKntYSpSJFBndFj1xLRFZQ+OI5JAcKvJFeV8S5ynbKJmFFUplwjboiWsJuRFMbKXwBfI+1B3jxwwIT+dSCncSY7dal+p3MtnxXqjCLhdBLxxVImS1Jk5ihmqu0/IGWKdar+YirUpPKT8vCxQwxzG7SUzhhZeGLOWZBYqTV8/j/2S6kyTCldaEqRCnFalHnNsKS1i4O6cpyMgDNjYMg1brGnlhzyZQQSw/ClhPA7wjHrB8PgW1iexZRVfjvV7jnLqiomy9PBmO81ZEBhJvPJMi9akXCsYaVdpqScTx0ank6uG4GX8ZcfMq6Cz2EhIdJzzqsR9BQHJjOGgJo3b+sLVKuj/+D1FKQybMMFA5HqjKQQqKNskXv/jFwbeaEcSxGgWQyBQYUDLDOTlxLE+M3py4jlGNbL75Pfh9zImIc56cPJm6wzAxcXoOt4kbUQ5JYA4d7n1s5iDtimpwo4zV0mupFkZryX9gRqUVIpR7SC+hKqifaJF+mOuKHeH/k8ork1R54LoMVQ/K2KE3qLAeEvWT889I25JTQZxGJseb2GRC1mq8d9/OyYlTSthnogVUwo2dPzQs/981PCPl9419VKrjTfVdJiZOLpqL+8cRlsfy7sFE+Xo62zlyqwORN41EkPDnvaCfQDQARQDAhkJCEPIEfkZu59SNX3xwjqm/nMNEwk4jkyKIs3OIWtBEI0REvJfc6ZycOI3cs4iSHca//P5ksYa/EzQ85zdhYuLoYOuOfEzyYKkz6gP0IDeYbzSkuLTPbAABsQ9O7CoFdhDx2TAHrf8ta1QjKTNK+Q+1WGOIHq9RhSBOr80/a+uecm48cI0svu+36t3xXjigc6zZvA/4TQp4E993Do+K93ow8uM4GTUuT2VyArnqpMpAnRHvc+KiFxqMwYDufU5c9EJehxzGwnCKmpXl38nhAUdBtFGS7zvQhHzdNY7EolqKNYKIqDTHqErvqXDDQxwno/Ldp0Kc5ProOVpfzBybiIu94ZqI47HOITzB58Q+Bk2lpSwF4hrqURIPzP+N9+SUU04ZfKMZpul2vnJNe+rk18glSh/yYXpfFyRM7TsnVH+pKjU8yf9NWDJxSLN7hhspN86bNnHUoHHUAI4ELXZYoYAgzjouMK0xLp9VlqibVeZQUkPveuhDH7ow5S+JM9EzYYsJXB2WRJx/bAcnN2pCUK49YjZYR5zvAXXofR1x+Y5VJcSTOMePzKFOif9xzKCUhet7TywNBA3F+1xUzxuFJuJM9y0LouJfTpyx1mw5lgMmN7EvAbCaaIjWb84zfptlN2FJxMUkwmyqDlEaylYogRi8Y2sUs8v8PTjfZ7FFGJXIDJTDWOecGE8DNjXy+bjSZl+3JuIQZaJCNKq86JtJip5uaaTaYFkQDunqvcT3Na58e7Q6TEycBa7ubDqs9BEVEEK3AxORSQSxyDV115qsWyIWk7XFGsa2Yywi4jWVVbLei3WcH2K2al8613QtIe+uU1pRLP7dW524D8uIumNtZpfOcW6+6VNbUPNtZ7BtMDFxMa2vk3wbMiTmx1gHXv3qVw+OXgzqIT8HaXlWDfVHdcQxJBonchXcBksd4+YJExPHYiGYqE7KMktmT8giw+yM1oOOU311Nk89Te0s5whWmiRpoyeuozD2hMWm61ijiFud0BPXUfTEdRQ9cR1FT1xH0RPXUfTETQB5eW1sm7NET9yY4A3htYj4R7ZHdtbcAKGOM0NBHp43bfTEdRQ9cR1FT1xH0RPXUfTEdRTLTpwYETOzpYIzcxrX6SqWnThhedzziqIJBZgUIoaFsdmzjUNVON6ahGUljkM1ym0QsYrCEcaFveHyPAKCxDKWY3XGshJnI6H8YRO1I8eFxW95HUkSaxKWjTihBuJF8od9m9vcZmTgZwk5CwKF8uuIbF7TsGzExb5yuch1Cxx11FGpaOkodRfhfbnIgBEe1yQycvJY/q5jpsRFgKyQamF8+cMWqh3HkRWBpLJ/BAMJIi0hSlrAT36dcUTh0UlC6+YRMyNO75HvpfhZGaQqry2P5IqKfLkIyx4WGb0UicyarmMmxCktIfjUg4q/uUgjCuQbteeiQkEOM1LJjOV5k4iG0nVMnTiTDWu1ugdGTCTyDJbY8TcXu/PnueIW2tZr+TlSk6i+Jokg2lyEetft0tg1TJ04GSZCyMsHRqzh8kRIQbUybvJzxNeXM81IBMxFJHNTmpVrr7feeou+43+t6jLE08JMVKVo5bpJhLj9fNySLJIf14s4InNIfpAjkJ8XIjtmWDz+y172skucX6YWdxkzm5yotlD3wD1QUMBFcn1+rKyqc9ppp13inFLqxisNp/yeSg6rg4oMzIw4kD6kF+UPkKlKDkA5ZlGR+RqO279caJNIww2h/nKVKStGpZ/8HCKLaHXCTIkDC9+SvFKMfStXrhx8o1pIoyrPQ4jywZYT+ecmHIrXmNCY2OTHyCRmtXnHzImDUesvud05LJIl1efnyKuLtGEL9PwYsRVLpPHmogHIaVvdsCzE6Qk2aigfKqEi2R9N+eXEqVJ31llnpfWdaCrn8CLk6pBVxcSkvFadNBV56TKWhTgw9jBn5Q+VilQPhF9OfnZ8ruwGIG/XXXdNOdolLDvq1GmIsVTJidL6srpg2YizfitnmbkFJSoFhTQVdAvYE04acv69ECUtVmcsC3GySdWxyh8slZhbR0xi8uNKRzVBrrdJR/6dXDQS9cPGdRt1BTMhLg9JoKrsaZM/VGsstUqs9YhqevLAc++4ycgw+K4tY/JrDhNlCJuq7HUVMyGOwxQ5IXUPtI2cf/75gyteDM7YKNBWSpRVqjtGVG5A+DQrH6xKzIQ45ZrqHt64opYJ8OcJeyg96CEW5apA6L3KbtSdE2ItqD4L9d0WaqCYDLWVUQkh8gqU0FpKI5oJcXaLqnto44r6jwgrnbC5KKWUT2T0yqin1SQW8ZYbUVqxCcxlddcYJqN2sGSjDS8Fg8IkySEzIU5po7of5CGLMyk/t6A2DqmIWuebqxNqURhDnafcuCqLRuRX3XdzaSo7FZgGcYwQljzETJhqj4p8nte4mAlxesCee+6ZqrmW6sCarPyheX3+KCzd5DRVc1JL5bC1ge0w945J0k477TR07ON+aoMgrnTu5jDLjevWEed4pGGtWLGi2nDDDedPVTZhFHGnn356qkvph6qwl59n/LJs8IMt6KOomcW2anTGwjpYQ26//faXsJmOWnIEpkEc65DCcES9FZEBxjnVcycxyc2MOIE9Yh09NKUKA03E6SGs+GaOHoQKRY5TeQrL5CUVlVgsr2PywueWn5eDK2m77bZL51JTw0omlgjiLGv8pjoR2Bv3UUechqbsL5uqJYr/zx5rDPdbx8XMiNP644dYEghZECY3jDhZnLllxbhnrEJ8OY5RwfmarxRlcv2fYeYuAUx5aOAoTHtyEtXyloJlIY5QU1FLMv+cIE5IQa7KGKWbwMlaqtJSdtlll6mEpQdxHrYxuE6irDGpI06wEy1hgmZ8M74qUDdp4sqyEWe2CE2qMjdCUyWjfpSgI2NeU6ylIp6xP+qkmMYYZzdkM0sEUqtmlvZjcG2F58adqMyMOHUn44cQYws0EWcGmH9uUd0G7JFRE7oUE5dTTz11cOZkmAZxeps4U5MovS2qtFvSGEbGreIwM+JKo/HOO++cPm8iThh6/nlT7eM6KPleRnaVTtpJEMRZhlhz1Uns1kzqiNO4jOM8IiZguTbJje1tMTPiPPT4IUR8PzQRZwzMP7fdy7gwgxWt7PvGk7oq5OOAJWZYlNkwGTU5mQZmRlzpETjiiCPS503EmUjknzNLRXlfMDYYBy0XDj/88KHrNtdRblge3VIhYizux28S01InuZpvIs6azbJEEXBLFypUAz366KMHZ7TDTIiju0O9hFxwwQXpWBNxpu82y8uPxd7izGG5l5zoCXIMLKRdY9j0fykQTuF/seQ0TSCaxjj7FYisFpHmnk2mzCydy4hg0mKWPA5mQhyS4kcQNxzT8ibioOyp1jwQmyw0iZmruE3rxWnBuOba+b4AdWgizm9W3p9bieo16UJcrFWZ7vTaOrvrMMyEuDKKOB+rRhEXeXTWTPvuu28KJVejv8nXVorFuX1rqKNJ10mgAUZoxKjC3aNmlQF7xVkGUPVAFQvbsG496aST0mdtMBPiSp9YbhMcRZwCZ9RGPtMywbChhP0I6rwLTcImaLePcddyzGYRWMuUxs9WIjetuef4n03EIcc95Q3KLJN5bxxVPxPikGPrlUiwz6uijyJuFPw43geTHWqsbU9klbFlTJsgJP8jdhIh0TtKRHQaY0F+H02q2njHJLfU8XgmxAVsJFSWi18qcSVM/83IeN1L63+djNp7FERFxy7EVFjTkkJsTH79MrGlBNur82LsnhQzJa4OdcRx40wDap1Qy8PSvHgZbA/aBpYhcvdGhTiwymighOF6lOnKEGA5w/DO1URzjBNGEZgL4oapoklh/NCiLRXy/yPWYx7AvMV8ZgLmviYprrPsxIlcZqfLZRwXyzigspjebJOmEtG8xVi6v0m94MtO3KpC7sxdHbDGELe6oSeuo+iJ6yh64jqKnriOoieuo+iJ6yh64jqKnriOoieuo+iJ6yh64jqKuSROzP+2226b4vG5+k888cTkw5KqFFDlNUQiv9iUeB+OTG4cjstTTjklBaKG+CwHN9Bmm222kGe3VO/0cmAuiRPoI6pLHKVkECm3PNdCIMJ3JdFCyWAi5C1ekwjp22GHHVJElVxy7iNOViEVBx98cDoOXD283eJANBSpUCtWrBgcnV/MJXFC4YQiCBY9/vjjUw/kMfY3AkdFR6k6RERixWv1LUGEmKR+AbSIE7on8UKEVRAnNkTwEVJFkknIEOgUMaDzjLkkTnSVh0w9qngA66yzTvoboD49dL1IsKq/CIhKDRIJJVhIiESi4yFKRVG7eq9aXxqHbWOkbZVqdF4xtz1OxQVqTRK+qCjqEFERZDOKOKAqZfGIrNLzgjgVhyK0XS0VBItIE5SqUA6RbTTPmEvi5EkfeOCBSTVGgdC8x4n4lQYcabziHuO15HjHXUO0sIAcEx2qF0F6lbBv2H///VMDkUkkdM/khIjDtGnTPGPuiBNi4EHvuOOOKUVKMRmTDeOVv+Ii9RI1SkL0xvy9eH/nmHj4vs9MOExoFAcwjkH0OhFaJkOuT0Ri98SNCTNIE4/DDjssTSRUQDfehZiwlCjHvxyWB6KjFc0xsVHSPlK+AoiTlBGqVCxoT1yPmaAnrqPoiesoeuI6ip64jqInrqOYe+LaJOAzX+XlhHNEdk7UhhwGdspJylasKswlcR6gbE8Pk/XDBhLe5xUYrMtYV4CZy3pPHlvukpECJeED5Fnvtttu6XUJx9gqWV38ny7swTOXxEl0ZPFnowyR2yaxP8D/xsqPLGYrOdhMWHLaAjZZUtFARVZ1LVV08JrElpsW+6rZsapoDBbzSl/MO+aWOD1N8n2IwqVBXFj+zzzzzESOjSNYVGSPrr322snCLydbei8fnoo+7JORI+c9cxgHq7IeiOIlOO6445JhW0bqvGNuidPL9JYQlv68x3HFMGExV3norPkqGiBDaSi2SbUhkSyZnoM0nK8BvY7biGFZHjeHalc2v51b4hQsUxckRMhBTpzxjiGZQZhtkSGZW2f33XcfnHGxW8c46VqIVWvEeKi4p3EUqVw+xjeuIcZt17ERhV4+z5hb4nispRiHKHKWE8fTbbJhXDr55JPTZ2agYkcCiEMmZyqnrLGQ10FohMrjSOOBUFA7L9bGldQbmScA4iTgK0Mf4mHnxFF9xjjEcYCalPCj5cQptWi80ju5czhVqcaygg91y1/nGsRY2RM3ARSTMWGg3kJUJ9hnn33ScSrOuAfCELiAnPO+971v0XadelwUgrG1mdqQdVBQgDsn/pceGkXj5hVzSVyP0eiJ6yh64jqKnriOoieuo+iJ6yh64jqKnriOYiziFAzLazeqQi5ucVwojG0RPU9Q0U78ZR1ETbNttt1ECTyXvILstNGKODlqDLT2GbXDYRSFVrYvvMqsGirUlcKAW4KRV4g4nHDCCdXKlSvTayas2HDd5xylhBWjbZ3JcaDxcAER0c+8CfGeBJjXuIG4gDhd+fXYQCWnAN+g+2TztK0YI7Xj4egNsMg4novrTYJWxNn7RYi2Wv7ANcK7jLio/c/qzjjLLqhKqv1Kvc6jjP0w1ndVVT0kpXnF8sfNS8ZglwR2Rm4WDcJrjlQ2zGmCu4efzv8ohZsHJJ3w9/EccO5y3toMQ3FQDljQG907z4T9x+225XlpiDn4EGkb3yV2CCnPaYuRxPFPSSpkvN1iiy1SsuEw4jxo5/KlSaLwOh6AFqy3Eq1RLptkQtfzGZJL4ni0AxylbI/TBA8Bt5D7zMX/jS1lwN43vOZ6nMbDycuVFMQxfguP97kazXITbBWjYYZNFVRSzw3nhNtpEowkLmLvN9poo9Q7ZIgOI4532bnK1dvz1Gt7DgBPNHVEXXgAfrj3IfYlaCJOjhvVO23wFLhXvd69uudyBxHaQUxLEFf2ODEqeqKtYahVPW/LLbdMewU5xkNhA/th8tznPjddZxy0UpXGGL0IIazvw4jz0Fng3YxQA6/tKAyqwEqb8l4LDqelVhpoIs71PZhpw0N1P9SddC27KJK8mqzedOyxxy4Qx1dIawRxtItGZYhwj455NnqeHu3aNBe1KF/d61zy/9UWI4nTEjfZZJOkj411JiN+hNTbnDik2kFfrIcWalM7r6VHgbRdYQVaIpWLNCJ7JlAS571wBJMXatXOGNPGkUcemZIe7XljPPaQScAY52FraI7z/1F/JiRBHJio7LHHHkkzIdL9U685NAiNIH67mtExbxgXI4mjSqTcSk1CXABJ9DjixDRKiaI+gFPSzlQ2WQhVGUCccU3AjpllTpxZmHr/wLvtgZLNN998JqEEGp+NAY2xslvl2cUmRzanMHPWI43vJls0hgR//ruIDgu0Ic6YKnxQD+NzdC2xM5OglaoEzsqYwgM1aPbFUWmAzVuOCt9+9IoVK1JYXA7633FFrqUFUy+rCu5RLCVYcyHDfYWA3yn6CzRgKltjRoxxL2DyJIkyvisdOVf1ORQHsKTQA0tvfFu0Jq7HfKEnrqPoiesoeuI6ip64jqInrqPoiesoeuI6iar6HxEwx6jL+TZIAAAAAElFTkSuQmCC + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +14 + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +48 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/x86/Debug/net461/arakawa.CLF b/bin/x86/Debug/net461/arakawa.CLF new file mode 100644 index 0000000..d26ab5c --- /dev/null +++ b/bin/x86/Debug/net461/arakawa.CLF @@ -0,0 +1,7480 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +iVBORw0KGgoAAAANSUhEUgAAAG4AAADICAYAAAAJHtQIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAACN8SURBVHhe7d0F2CxVGQdw7O5uFPQqioIdYF6xuwtRr41gYYAKJraiGKBiIiogNirYiordgo2F3R3j8zt87/V8587szmx9Ox/zf5732d3Z2dmZ+c855z1vna2qAb3EQFxPMRDXUwzE9RQDcT3FQFxPMRDXUwzE9RTrhri//vWv1b/+9a+VT8uBf/7zn9Xf/va3lU+zxUyI+/SnP11d6lKXqr785S+vbNkSN77xjau3vOUt1cc//vFqxx13TBf03ve+t3rFK16xWf7973+v7F1Vn/vc56rtttuu+stf/pI+f//736+++tWvbpYf/OAHaXvgyU9+cvWoRz1q5VNVvfnNb6723HPPlU//xzvf+c5V/3nIIYek7V/60peqq13tatWvfvWr9LkJj370o6v9999/5VM9DjzwwOqNb3xjOuZFL3rR6o9//GP1ohe9qHrBC15Q/fe//13ZazpMRNy3vvWt6la3utVmufa1r11ttdVW1Q1ucINV2z/ykY+k/RF6yUtesnr605+eTv4CF7hAIvBmN7tZdaMb3ah6yEMekn4fT+emTZuq6173utUZznCG6ta3vnUi4DWveU11kYtcJH32m1ve8pZpX3CDznKWs1RHHnlk9dKXvrT6/e9/X932tretnvCEJ6zs8X/E/13wghes9ttvv+qDH/xg2u6huepVr1o9+9nPTp8Dru3c5z73ZjnjGc9YnfnMZ161zX/leMxjHpOu8bnPfW618847p/M5+9nPXj3/+c9f2WN6TEScFna2s52t+tSnPtUol73sZatDDz007f+mN70p3aj73Oc+iZRznetc1XOe85xq48aN6fW73/3uKuJ++MMfphvoP7SQn/70p6kbvPCFL1x99KMfTTckiDv44IOrc57znKm13eQmN6nud7/7pRvlt/e85z2rxz3ucUne9ra3pf0Rd6UrXSkRfc1rXjM9TG5o7Bfyvve9L+0PH/jAB9J5EL+/4x3vuPmz88nx+Mc/vrrWta5VXeYyl0niWj2E2267bXWNa1wjtdhZYCLiPOFXuMIVqte//vWN4mRdWODyl7986opc1MUudrG0TatEqIvKifv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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +14 + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS UI Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +21.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +11.25 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +60 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +18 + +110 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +80 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +85 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +85 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/x86/Debug/net461/homeButton.png b/bin/x86/Debug/net461/homeButton.png new file mode 100644 index 0000000..723b7a2 Binary files /dev/null and b/bin/x86/Debug/net461/homeButton.png differ diff --git a/bin/x86/Debug/net461/katsushika-1.CLF b/bin/x86/Debug/net461/katsushika-1.CLF new file mode 100644 index 0000000..58f416a --- /dev/null +++ b/bin/x86/Debug/net461/katsushika-1.CLF @@ -0,0 +1,8007 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +15 + + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>3.67 +<_y>16.44 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + + +タグ +Millimeter + +<_x>25.485620784759533 +<_y>34.17238206863405 +<_width>12.611807346343994 +<_height>5.7326416969299316 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>3.67 +<_y>16.44 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>25.485620784759533 +<_y>34.17238206863405 +<_width>12.611807346343994 +<_height>5.7326416969299316 + + +100 +false +true +true +true + + +Text + +タグ + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>3.67 +<_y>16.44 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>25.485620784759533 +<_y>34.17238206863405 +<_width>12.611807346343994 +<_height>5.7326416969299316 + + +100 +false +true +true +true + +タグ + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +24 + +90 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +21.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS UI Gothic +Point +11.25 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +60 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +18 + +110 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +80 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +85 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +85 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +18 + +110 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/x86/Debug/net461/katsushika.CLF b/bin/x86/Debug/net461/katsushika.CLF new file mode 100644 index 0000000..58f416a --- /dev/null +++ b/bin/x86/Debug/net461/katsushika.CLF @@ -0,0 +1,8007 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +15 + + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>3.67 +<_y>16.44 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + + +タグ +Millimeter + +<_x>25.485620784759533 +<_y>34.17238206863405 +<_width>12.611807346343994 +<_height>5.7326416969299316 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>3.67 +<_y>16.44 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>25.485620784759533 +<_y>34.17238206863405 +<_width>12.611807346343994 +<_height>5.7326416969299316 + + +100 +false +true +true +true + + +Text + +タグ + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>3.67 +<_y>16.44 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>3.27417038679123 +<_y>24.079672336578376 +<_width>13.22916442155838 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>16.82936735153195 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>25.485620784759533 +<_y>23.589050006866472 +<_width>12.964582920074463 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.94733106040954507 +<_y>54.535913944244385 +<_width>38.1000018119812 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.88899766349792486 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.2723320796489945 +<_y>65.939043080806783 +<_width>17.197919189929962 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>19.85254117393497 +<_y>66.039043080806778 +<_width>18.529167175292969 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>25.485620784759533 +<_y>34.17238206863405 +<_width>12.611807346343994 +<_height>5.7326416969299316 + + +100 +false +true +true +true + +タグ + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +24 + +90 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +21.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS UI Gothic +Point +11.25 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +60 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +18 + +110 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +80 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +85 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +9 + +85 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +18 + +110 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/x86/Debug/net461/kessaiCancelButton.png b/bin/x86/Debug/net461/kessaiCancelButton.png new file mode 100644 index 0000000..91e9da5 Binary files /dev/null and b/bin/x86/Debug/net461/kessaiCancelButton.png differ diff --git a/bin/x86/Debug/net461/kessaiChangeButton.png b/bin/x86/Debug/net461/kessaiChangeButton.png new file mode 100644 index 0000000..a720b73 Binary files /dev/null and b/bin/x86/Debug/net461/kessaiChangeButton.png differ diff --git a/bin/x86/Debug/net461/kessaiCompleteButton.png b/bin/x86/Debug/net461/kessaiCompleteButton.png new file mode 100644 index 0000000..8a351cd Binary files /dev/null and b/bin/x86/Debug/net461/kessaiCompleteButton.png differ diff --git a/bin/x86/Debug/net461/kessaiKikanButton_1.png b/bin/x86/Debug/net461/kessaiKikanButton_1.png new file mode 100644 index 0000000..61d4b84 Binary files /dev/null and b/bin/x86/Debug/net461/kessaiKikanButton_1.png differ diff --git a/bin/x86/Debug/net461/kessaiKikanButton_12.png b/bin/x86/Debug/net461/kessaiKikanButton_12.png new file mode 100644 index 0000000..8988c11 Binary files /dev/null and b/bin/x86/Debug/net461/kessaiKikanButton_12.png differ diff --git a/bin/x86/Debug/net461/kessaiKikanButton_2.png b/bin/x86/Debug/net461/kessaiKikanButton_2.png new file mode 100644 index 0000000..aaf3f19 Binary files /dev/null and b/bin/x86/Debug/net461/kessaiKikanButton_2.png differ diff --git a/bin/x86/Debug/net461/kessaiKikanButton_3.png b/bin/x86/Debug/net461/kessaiKikanButton_3.png new file mode 100644 index 0000000..aaef815 Binary files /dev/null and b/bin/x86/Debug/net461/kessaiKikanButton_3.png differ diff --git a/bin/x86/Debug/net461/kessaiKikanButton_6.png b/bin/x86/Debug/net461/kessaiKikanButton_6.png new file mode 100644 index 0000000..5928c0f Binary files /dev/null and b/bin/x86/Debug/net461/kessaiKikanButton_6.png differ diff --git a/bin/x86/Debug/net461/kessaiOKButton.png b/bin/x86/Debug/net461/kessaiOKButton.png new file mode 100644 index 0000000..4f27a3a Binary files /dev/null and b/bin/x86/Debug/net461/kessaiOKButton.png differ diff --git a/bin/x86/Debug/net461/kessaiPrintButton.png b/bin/x86/Debug/net461/kessaiPrintButton.png new file mode 100644 index 0000000..becc734 Binary files /dev/null and b/bin/x86/Debug/net461/kessaiPrintButton.png differ diff --git a/bin/x86/Debug/net461/kita.CLF b/bin/x86/Debug/net461/kita.CLF new file mode 100644 index 0000000..fe68c96 --- /dev/null +++ b/bin/x86/Debug/net461/kita.CLF @@ -0,0 +1,7480 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +iVBORw0KGgoAAAANSUhEUgAAAG4AAADICAYAAAAJHtQIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAACH6SURBVHhe7d0HlCxFFQZgjKiYI2YxPUyAiiCYUMEcURQDYkBRMD0FBUxgQp+oGBDBhD5FRcwBFQyYs2DOWcw5x/Z8xdyltuye6Zmd2Z2e1/859+x0T8/sdP1dt6puqs2qHp1ET1xH0RPXUfTEdRQ9cR1FT1xH0RPXUfTEdRQLQ9xf//rX6l//+tfgaD7wz3/+s/rb3/42OJoupkLci170ouo617lOarw6/Pa3v62ueMUrVt/97ner5z3vedX97ne/dP4Vr3hFdfTRRyd505velM4FPvvZz1bXvOY1q7/85S/p+Hvf+171pS99aUm+//3vp/OBJz3pSdX69esHR1V1/PHHV4961KMGR2fh7W9/+9L/JK985SvT+S9+8YvV9a9//epXv/pVOm7CYx7zmOrwww8fHNXjxS9+cbVx48b0nZe5zGWqP/7xj9Xzn//86rnPfW713//+d3DVyjARcW9+85ur29/+9kuybt266tznPveyc+QXv/hF+qHvfOc7q80226x629veVt3//vevbnGLW1Sf+9znqgtf+MLVXnvtVd3hDndIjRbYZ599qp133rk617nOld5DAJIvfelLp+Ob3/zm1e1ud7vB1Wc2+nnPe970uzxEv//976s73elO1UEHHTS44iz47EMf+tDqkpe8ZHXooYdW73//+9P5f//739X1rne96lnPelY6DtzwhjdMvzPEfZ7nPOdZds7/yvHYxz62usQlLlFt2LChuslNbpJ+z/nPf/7qiCOOGFyxckxE3HOe85x0Qx//+Mdr5ZRTTklE/eAHP0jEPeUpT0nHesWuu+5abbvttulJd9Ouf/WrX72MOJ/TgFtssUXqIT/96U+TGtxyyy2rD3/4w6lBgrhjjz22uuAFL5h62y1vecvqAQ94QGoon733ve9dPe5xj0tywgknpOsRd+1rXzsRvcMOO1RPe9rTUoPGdSHvec970vXwvve9L/0O4vO777770rHfk+Pxj398teOOO1ZXvvKVk1zoQhdKD+FVr3rV6gY3uEHqsdPARMS97GUvq25961unBq8T7/vRP/nJT9L1v/71rxNxu+22W3X1q1+9uuc975nOI+5KV7pSUic5cV/72tdS453vfOdLxFCxeqjG/vnPf1499alPTY0XoH4333zzRMTXv/716olPfGK13Xbbpc8S/xehoOH1Sqr73e9+dzqHVNdtvfXW1Z577plef/rTn07vgZ7uwXB+p512Svfu9QMf+MDqute97uCqM/GjH/2o+upXv1p95jOfSQ+UB/QCF7hAehCc/+EPfzi4cmWYeIzTuI985COT3O1ud0uNGscHHnjg4KozEcRRSw9+8IOXEeepfcELXrBE3J///Od0TD1SlXvssUd117veNakcKui4445L4+kLX/jCdL2x71WvelXqYW94wxvSQ6C3fuc730nvg8/lxJU9LqDHxvfmQNxNb3rT9FsQbmjw2udz4l73utelawlV7J5pCffhXuO9/fbbb/CJybGiyckxxxyTntoPfehDSac3IYjTgDe72c2WEYck6iWI+/vf/17tv//+aSBHtM8+4xnPSCrmP//5T7qe6jXhAWMkMq5whStUV7nKVdKDYfKDABMCKIlz3vXGXP/PGGm8oyVue9vbptff/OY30/Wgsd/61rdWv/vd71KP9HB67f5z4qhzE7QPfOAD1cUvfvHqve99bzr+wx/+kB62hz/84Wmi8o9//GPwicmxIuLobioDcec85zmr7bfffknixj35JgOIe8hDHpL0P3X56Ec/Oqk3DUn3B3Fu0nu5GNipxvL8GWeckT6jUU16HvSgB6WZokmRsdP4ohFz4pB+97vfPQlNoad+9KMfTWT6Xf6P13pywJhsbPaZ6HFe64XOB5Ckt1/0ohdNkreHIcHDQl7+8pcPPjE5JibuN7/5TXWRi1wk9QbE+aHf/va3l8STDG7GMV1PLVJrr3/966uvfOUrqdHKyYnrqcMQ45GZ3NnPfvbqsMMOW/aeXmfMoPaoH8TFwwRU5ze+8Y3qvve9b5qig6feA0TVmd1e7GIXS+ehVJW+23idizHuNre5zf+d/+Uvf5keil122SXdm3v2QB5wwAHp9VZbbVW95S1vqU488cRadTwuJiaO6rrsZS+bnqBb3epWQ1WlCQOSqRYNaLCmDi93ucsl9ZITl8N797rXvdL4FuoNGflC+13vele1zTbbpN+DuLvc5S5pYpPDDDiecr/TGHeNa1wjfW4YcSYTGj6Xa13rWmlsK8+blFhsU+dgaeI+f/zjH6e14Tn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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +14 + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +true +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS UI Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +48 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/x86/Debug/net461/kokubunnji.CLF b/bin/x86/Debug/net461/kokubunnji.CLF new file mode 100644 index 0000000..fe68c96 --- /dev/null +++ b/bin/x86/Debug/net461/kokubunnji.CLF @@ -0,0 +1,7480 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +iVBORw0KGgoAAAANSUhEUgAAAG4AAADICAYAAAAJHtQIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAACH6SURBVHhe7d0HlCxFFQZgjKiYI2YxPUyAiiCYUMEcURQDYkBRMD0FBUxgQp+oGBDBhD5FRcwBFQyYs2DOWcw5x/Z8xdyltuye6Zmd2Z2e1/859+x0T8/sdP1dt6puqs2qHp1ET1xH0RPXUfTEdRQ9cR1FT1xH0RPXUfTEdRQLQ9xf//rX6l//+tfgaD7wz3/+s/rb3/42OJoupkLci170ouo617lOarw6/Pa3v62ueMUrVt/97ner5z3vedX97ne/dP4Vr3hFdfTRRyd505velM4FPvvZz1bXvOY1q7/85S/p+Hvf+171pS99aUm+//3vp/OBJz3pSdX69esHR1V1/PHHV4961KMGR2fh7W9/+9L/JK985SvT+S9+8YvV9a9//epXv/pVOm7CYx7zmOrwww8fHNXjxS9+cbVx48b0nZe5zGWqP/7xj9Xzn//86rnPfW713//+d3DVyjARcW9+85ur29/+9kuybt266tznPveyc+QXv/hF+qHvfOc7q80226x629veVt3//vevbnGLW1Sf+9znqgtf+MLVXnvtVd3hDndIjRbYZ599qp133rk617nOld5DAJIvfelLp+Ob3/zm1e1ud7vB1Wc2+nnPe970uzxEv//976s73elO1UEHHTS44iz47EMf+tDqkpe8ZHXooYdW73//+9P5f//739X1rne96lnPelY6DtzwhjdMvzPEfZ7nPOdZds7/yvHYxz62usQlLlFt2LChuslNbpJ+z/nPf/7qiCOOGFyxckxE3HOe85x0Qx//+Mdr5ZRTTklE/eAHP0jEPeUpT0nHesWuu+5abbvttulJd9Ouf/WrX72MOJ/TgFtssUXqIT/96U+TGtxyyy2rD3/4w6lBgrhjjz22uuAFL5h62y1vecvqAQ94QGoon733ve9dPe5xj0tywgknpOsRd+1rXzsRvcMOO1RPe9rTUoPGdSHvec970vXwvve9L/0O4vO777770rHfk+Pxj398teOOO1ZXvvKVk1zoQhdKD+FVr3rV6gY3uEHqsdPARMS97GUvq25961unBq8T7/vRP/nJT9L1v/71rxNxu+22W3X1q1+9uuc975nOI+5KV7pSUic5cV/72tdS453vfOdLxFCxeqjG/vnPf1499alPTY0XoH4333zzRMTXv/716olPfGK13Xbbpc8S/xehoOH1Sqr73e9+dzqHVNdtvfXW1Z577plef/rTn07vgZ7uwXB+p512Svfu9QMf+MDqute97uCqM/GjH/2o+upXv1p95jOfSQ+UB/QCF7hAehCc/+EPfzi4cmWYeIzTuI985COT3O1ud0uNGscHHnjg4KozEcRRSw9+8IOXEeepfcELXrBE3J///Od0TD1SlXvssUd117veNakcKui4445L4+kLX/jCdL2x71WvelXqYW94wxvSQ6C3fuc730nvg8/lxJU9LqDHxvfmQNxNb3rT9FsQbmjw2udz4l73utelawlV7J5pCffhXuO9/fbbb/CJybGiyckxxxyTntoPfehDSac3IYjTgDe72c2WEYck6iWI+/vf/17tv//+aSBHtM8+4xnPSCrmP//5T7qe6jXhAWMkMq5whStUV7nKVdKDYfKDABMCKIlz3vXGXP/PGGm8oyVue9vbptff/OY30/Wgsd/61rdWv/vd71KP9HB67f5z4qhzE7QPfOAD1cUvfvHqve99bzr+wx/+kB62hz/84Wmi8o9//GPwicmxIuLobioDcec85zmr7bfffknixj35JgOIe8hDHpL0P3X56Ec/Oqk3DUn3B3Fu0nu5GNipxvL8GWeckT6jUU16HvSgB6WZokmRsdP4ohFz4pB+97vfPQlNoad+9KMfTWT6Xf6P13pywJhsbPaZ6HFe64XOB5Ckt1/0ohdNkreHIcHDQl7+8pcPPjE5JibuN7/5TXWRi1wk9QbE+aHf/va3l8STDG7GMV1PLVJrr3/966uvfOUrqdHKyYnrqcMQ45GZ3NnPfvbqsMMOW/aeXmfMoPaoH8TFwwRU5ze+8Y3qvve9b5qig6feA0TVmd1e7GIXS+ehVJW+23idizHuNre5zf+d/+Uvf5keil122SXdm3v2QB5wwAHp9VZbbVW95S1vqU488cRadTwuJiaO6rrsZS+bnqBb3epWQ1WlCQOSqRYNaLCmDi93ucsl9ZITl8N797rXvdL4FuoNGflC+13vele1zTbbpN+DuLvc5S5pYpPDDDiecr/TGHeNa1wjfW4YcSYTGj6Xa13rWmlsK8+blFhsU+dgaeI+f/zjH6e14TnOcY5E3LQwEXGmz55y6zMzR+sYvcf4lcsHP/jBNDXXQDGugUY24zLT0sPueMc7LiMOOXoG9eIJd/NgUe3JRaAJi6fcQv0d73jHEnEaLha5ehV1draznS01pPGFikXiySefnHqzSYQx0e815pq2e+3/18G15YOR4xOf+ER14xvfuLr85S+fNJGH0j3QGH7vtDARcR/5yEcSaTmMN6effvoyiUHYDYTqBOs8Nwh/+tOfUq8yNgU0rpmpwb2E7zEhMoHIwVIRKjLwmte8pjrqqKPS+fz/gx7i/4Y6LX97PivNkf/2OvzsZz9LD5hJFVjG+A1le60UK5qc9Fg79MR1FD1xHcUmSZxZqYlKlzFT4gzyZn1NwiK/UrBcWEgPAwuM/8dSwuZotmoB3QZmpcxWTeI7A8x0zoVVZ5aYKXGsDCwmTcJsFLC4to5qErOzOlgLsr4Mg3Wc/2dKbhljLWbtyfjMelOKNWaAT5D90yw2l/vc5z7pO81Kn/70p1dvfOMbk/XGuWk8kKMwU+I4PDV4k+Q3yMYYRthceAg0RvjNSrQlztqPISAH15D1J/sn4a7yv/bdd9/BFWcSV2ccsPAP4vxGvX5hiJsGNKLG+NjHPjY4sxxtibva1a42ODoLiMstJ7ztdcTpheFfC6ESF444KjCcqqMkfHZNYO7SGBHCUAJxvAIMzU1YKXFICgcrozIPAqIWjjgWDzfQRp797GcPPvX/YOTVKMa4JiAuvotqNVaG1yCQj3EhzHBtictVpYeErZNZLcxrC0Mcc1IekEPY+NwUc1Z+ni+sCaz4PmM8aQLiGH2PPPLIJRIZd4VJBBDHJpn/X5OJcYjjmuFT46lAlNfkpJNOWhzi6sCd46b4x9qAfdP1fGplD8qRj3HhPafaOGcDK1WViDMb5Uu81KUulfx21KZrF35yMg5x3/rWtxIhGom13pPdZFnPiQvwOOQL7GkRZ+1HVfL5bTKzyoj0EvgzDDznyBCnwX916qmnJtWHPJ7tEnXElUCckDo9JkQEWE4cFxMScuI8AN7fZInjETZx4LwcdlOm/PxYxhGRXAGNxKdmnBEdnKMtcfx/whdCjIE5cV5rdGIcBg+NY2vMkjiuoiAO0RzEC0OcJ5ar3pjjiW/yY4kY0wMQJgSijGoG/jmNUs5C2xI3SlX6DZytJCw6HMT+p/G2JI4Ktb7zucDCEMdJyrzE9DVsbPvkJz+ZGkYsR1PcocYQO2ICkqMNcaw0/keJcowrwdJiEmLKL/D1y1/+8hJxen7e+x/2sIclrbIQxAGPcNnYdWjyOI+CxjSZmQRyAIQ7jAOheflSI/CSl7ykusc97pEChyJ0YpZYtclJj+miJ66j6InrKHriOoqeuI6iJ66j6InrKMYmTnSyyN+I1O2xNhibONYE1gFZOj3WDkOJ07Ok5eYSuW7MTOV7oyoW9JgehhIXrgv2PDbBJuHsdF2exbmW4LuT4SMfL7wM/nY9CDZHK+K4LoZBXOFaEsf9ctpppw2OqpQmxegr9I5XgBM38rbr7IxdxEhVefDBBydHol7VJFz5rlttVcnPR0Wz2MsZDyBOwKp8bQ5Y5S4Qx8KvQsMioNXkhMpR7IUvTPal3sUF45hIDV5LUIMlcYrN8EpT5cLIEafMBZfMIqAVcZICqR0qMWaVEuKFIYSUiYOriTriuFeE9fFUS8iXxCg7lJtpEdCKuC984QuJLGomiCvlU5/61ODq1UcdcTJAVUuQHuw10dukNy8CWhEnVxo5cr+DOHEb4vlD5HqvFeqIEwFNrSMufqPc7E2GOPEXQg8UXBFUqo4H4uZpAa63f/7znx8cnUlczDJNnvxmIgJ5kyBOzEgEwEhAN0ER0ONY1YO8zgeZl3WcfIQYc/NCM8Y3AUyLgKHEScoQM/jkJz95KY7ClFpJQ+FyCMxFacIeq4ORqlIwTh1EMpWyGkEyPc7ESOJEaKnbYTGuco7XKu70WFuMJE4JXWqQ9UGtSK/logkSleWZy6jw8h7Tw1DiFNtUVAxZCoopWuY1q4RwcK/VzjKL83peJiebAoYSpwexQSJF/LxJitd77713CiT1mupcayPzakAmD+fxuFKO+/IjVGoIMVOPKg2uHZWhG2itKiVjsLR7TVXKbvFaRQIV6RadOJUW3OO4YkmVIzRYLmyqIKPJejlfkzahNXGs8KrOeZ0TJx+aKcnrRSbOhEwySik3utGNUpHVuvdIWaKRa8nakugIiqgqiWjIscTi1WBjHZZiDa2Jk68mO6UkblNRlQGqLjf16UGIy8+RKNWYw3CjnVRt4LFAmEmeso/OK7bDsCFHXeq1arlNGEocHW2C4kvZAzdu3Jheq/b62te+Nr1WP5K69HoeiVNRaBo1kAN8f+51lEgCqcMhhxyS3tcRFN8GVp5I6SLPfOYz0/lhGEqc6glcIW3FE8KkJDGeO0UB0KiYGlDrUn629KWyZr/BWQ+WtM+2WC4vfL8alL6bGhrlSpKypYHMgqdl6kKc7wt3FiuS/xHHflcdcbKRFEOVTuZ99l+9KkQhVnZVlipJmNrIQ9eEkapyHKjTzBseTw5hpQ/Q227SAGxCQ8VQswG63Wfofu9JIWZ2A5YZnnjvy2z1V+7dsDiSqBQkwCmvrVJKm8lAAHGSL/UQQttQbXHMA+F/5sR5GGOYEVJhPHP/xjTzA7nu3lNJ1jioXJVjqrUJUyUu8rx1dT3tzne+czrmIZe/zRnLE22mxSKj4T2BdvLQS12rt+l5whLcmIbwXeyg8d1gsuS4SSX5H23VmgIBbeE71ZeObWgkMyIujmOilv8u92raz/oUkIFrjINYWuUqnamxbpwMTJW4GGQ1OigW49iTH1UX8jIW0fhUnzRdr6nSAJXknLUN3xr1EpshSez3nv9RAtERRmjNGRspefKdszaNc2ScsRlxyAlQcTwmAenS/kf5QNl2JmqjEH5CD6bXHgSf4XaK9/3uYZgqcbq53hXjmthLP852JZ64sqFlhDonDMKP9VrabyDUTpmG7AkWP+K9cpyEWLbI/c6zYWOixTE8LvRK8StUOKIiNNGY5B7jOHb4QIbj+H00jqp8IYYUn/NaPrnPUKPxfmx20YSpEpeDt9wPM+2FffbZJ/24OuIMzpE/XUccNRqgbmKAp2JKy4QxTxyoB0Hvtk4Kic8Zb+IcG2sbWIDTEEGI13US/kvrW8d1ac6M9e43xv9SVSJZ0e5yYpdjJsSpXOCHaBRLCpgWcSZAHgrqCgF26ShBVTNRcf76/CMe8Yj0Gfnbjq2VHBPXjINSVZZoUpUB45YIOdfY9AJK4ux94HjYInzqxAkNMAkxc8xJcCN+TB1xNiYysHtdR5xZn90y8uWBEvbeY4loQhAXFRdWoioDTcSxrNjdyv52/kdOnB7mt0jupw28Tx1Gjwri9FbfQS3TVsbfJkyVOIM89WO6nBMArAl+nDC5gE0ZnDM2KovrtYV9gIXB2kYgkrHDTcfWlUEcwnOYTSKIRL0tM1LHMUEy0YlrQprKdJRoIo4mUAyOmNabjAQQ5HPaxoOmcJvlTYA1huksPk9M6IZhasTp5mZFGobq478LUSHPAtiTZHA3i2R9Mcirj2wCYbFpjRc7ZETlPE8hxLElh9gRD4Bj6i6H3uX8uBLVhEahrG/SFoaMST7XhKkRJ9GirkGI9RxQdeFhIMxlVGCA1cFTGe9bqEYP0+vC70esnayFysbwEIgDrRNWF581aSnfG7ZmKuEhbet+mRWmRpyuH1bvUnjOA3penDeBKOHJjPdL+B961MaNG5eporagEhG3kjEOJI4wJBjX/JaXvvSltVK6dKaJqU9O5hnTII6JzsRBRICHx45eoQVKUXB1VtikiDN5MuubZIMifrVwXyFNEG4+wVhtbFLErQR6l3Uj4j0A1p0sQ3XqfjXQEzcGTKSMW7HmtJxhmrJgbpK2y4xx0RM3BsxwgzRJkyYmljS5mO16P46tX2eBnriWMP3Pq8iy+tTB0ocjdNboiWsJ5iqEicjqiesQLNAVMWA/7InrICy6e+I6iJ64jkK0Fidt0+75fH4877PGmhLHoThsa+YmKBmvIrrGs7YqveCbAtaMOHGYVA43Dxd/HuE0CiK9fDZE4M0s7YLziDUhjplIWEPe+FK42tr+IlAoxJYr09zVvgtYE+Ke8IQnLGt4Yj+3Nr2Op1loRP7ZYS7+RcWqE8eqHmahEIGxbSsT8ajnnxXeoAf7fJ0wUwkOmsQjMM9YVeJ4qyN+MgSJQhXago0w/3xbsbcPt8w4Y+k8Y1WJi+CdXMSSBIT1CUfIPeY5xJrIJyi/YxwR378IWDXiRDiXKlJgqTELxIpQmc6L6Mo3Rg/YjTH//CTCe91UAqRLmClxoootRvmlygkFEvMtojds2LDsfQ2c54kZryIPL4Rj01pQ1HCdRJBtiCQLUcKLsO6bKXGiqfKGy8VGeQEuEzH4+ft64zHHHDO44qzo3lJMVuog1CCPKCNlDGaXMTPieH7LXhYiWjdyo63dIvo3F6nKAWu0prEtEt9LULXltQqmLgpmRlxEJpdCRUqRCkinLa9BbK7OmLfKa0Kov5NPPnlw5ZmgViP5McTxoswoYWbESVaM5IZSuPSpvrpZosjm2OoSIjU3l4hqDrHEyKsbRIJliIclD21fBMx0jPPky33LGzHExEI8fX5OFHNeT1ISYzkhEVlFvar+mp/fb7/90md8vpy9jtqKs4uYKXEBExEL4Lwx60QvDIimkgiRv2/MVKEWqMf8PWSpfBTZnSF8Y5NuxTnPWBXiwGRjGHnGNZYV2SzSrmS45LkCpKyHKYMzf79ORmW9dBWrRhwgzzS/bFx51OyNSItzSm3II4gMIKUmSlgnRhpunchJX8to41liVYkzrWcUzhtXNR2zvXL6rndKz5LUKMmiadFsEW9mmX+WIDSyYRcRq0YcK305y9S4LBlgVliqRpOXYSHeHoS6NSAxW7V1y6JiZsQZo+S0ESlTpfOTsE1KYA8pnauEYboOZpwSJcvrczFLVa19EdXlTIjTWFtvvXVtY44r1nxRNyXAzFVnlZHNWp4jZqfld3QdMyFOTH1dA04qSgGChbkKCuU6jSgXZUEvjbl8jyBaBNYZZ5yRvqvrmAlx1mB5SnAbMcFQE8WygNqM82qTyIixsC4nNiEmOOEeohYZt3kX6q71fevXr19aD3YVMxvjoqAaoe4UHWOdt7VLne2RaStgNmjhzLpvtimBv66Xkd12222JtBzCxX1H3WdCBChNkpI8D5gZcRbLqihImC8T3TVq2Yg5cSA2RW1HoXfltQSRqsvlNsoSYi7rJkUhW265ZWd3/pgZcWAjwLr11yjiNKbxjEorryPUsHFUFQeTIL1Y1dqmjQd53+sW6m03AVSVwbVtRa75rDFT4kDgq9TbvGc0EccoLTxBQjxritgTvSKuMW7pQVHa4sADD1z2HYJr5bCJXfFdOYRGKF4atSF5x9v2tnFDJlZjw6iZExfjjDWaojIiuuqI40UoQw3E6ZuYeG2qr6hNQKNHeaU6YWzm3ikNzKrMqpGV1wcbhSCONUeeXJPEhKwtcYaTOlNeG8yUOGHhxrm8QVk66ojjLyst+2aHeqq94UrzVdSEHiUa20w1L4QzLoI4D9YwhEFgGHHWkyGWJyZIcZyXaByFmRIXSYC5KP3UpCqjZGCIiUmTyUuP8116ap3FpRSzz0kxTeKY9RSXIwqn0hpxXNY/G4aZEqfIZt54xNjTRJyYkPK8Am1tgERV6OqWAMbGlWz4F8RZ1kQj10m4rdqqStcpezUJZkpclDoM8XRRfU3E8RKovJefNwEZB2aW/q8QiPiOlearTWtycvrppyf7bIiJkgctjo8++ujBlaMxU+KisGeIijzQRByIZM7Pr1u3Lp0PtK2PRZVqCOOmcocrQRDnu/z2JokZcBNxHkxr2hBjOI9JHA+r6F5ipsRFTZCQKGHoJvPzJIgTS5mfZ6LK12cmGmIwBbyaHVozDVuEcxsNK5HbBtMc4/wWxgV1pqn2uVOVbIaltztiSoYRZ6wq34vyvXx6+bouhLqx7qMiw783TUyTONXerTWFZ1CPejECVQUcJ8J6ZsRZCuSNS4KAYcSZRcbuWMxaBn1V1EFp+/JzpZggWKSb6Azbm2YcBHEW+OynTRJLn2HE0RbhofCwiZvx/cZ2O6u0xcyIO/HEE5c1qKl96PBhxIFQO/ndpQmrtJSMEj3EODvOvgJ1COLayjDiVKJVut5uHsoWxy4j8tpLa88wzIw4Fg9PaNwMb0FgFHFNYDkxJjQZnpvEckB6FavNJN7wfQYV3M2KfUeTRO3KYcSBEvyuH4eoEjOdnHiKhB6I/7AbVmBS4nJYrIqjtKCN9VMbUYdkXMSOIzzpw9BmjJsWZkpcwFaS+TR+GsTl4PmmzvTqvJfXybjVYc1aI4psFCELR1yJaROXw3rI7FIoQ+kF1/PHqc5gmWHt6bP2URD4NAyjiONApuZzMc6F7L777oMrR2PhiMvBjyYGJVSpjZLaAmkaMn5fvgFECRMpQ0IYydv2OAW3ZRFxN9kObS6WA8OwWsQF+O9Uc2WBb4sooEN8dlijlgmcvBmjwJojhkaYofAJjl49MnZxHIU1Ic4a74QTTlgm49T9Xy0IYUfaKMuLslaWHUSVpFGzRcsidspYn0oCpdotxD3UbbAmxHUFlg7jqK+24O7idB0WpT0KPXFrALZKNthxHKcleuLWAMIJ9ThBTJOiJ26NIPTC8uTII49MWUnjoiduDWErNXXGeDcsCcZBT1xH0RPXUfTEdRQ9cR1FT1xH0RPXUfTEdRQ9cR1FT1xH0RPXUfTEdRQ9cR3FXBIn4V+pRKK8oZTi/ffff5nj8bTTTktWdSIPPF6TcH7an1TmqbB2QbYMuSrXlhHDgoDEXYpR8fl59MaXmEvixGKIsd97773Tfm2CR8VDCtiJxHiF2YQJEMFA8ZpEqMFRRx2VtoOR2L/99tsn4oTwlSF6An1EFvusUPIoiDPPmFvi9tprr9RL5HAfccQRKWxbb4mUKVFRyEUGb7K/8rAlUwKSlUxEhLIaqsS6RhxJ7P2mPqaILKFxBxxwQCrL6P+MCsObB8wtcSKU5Y5RXSAVOIJrgC9ru+22W0acXqV3BfS4gw8+OKVmlSI7hgo96KCDUsCu/4XkLqhJmFviJLXLrzvppJNS7L7dP/SaiG9EnMgodUUQ5+8OO+zwf8RRlXb2kKFK9QqlI5GOJYPI/5K+5fsVFxAqN6v9u6eFuSROwqLGpfqoTCrN2EQ9ClQVi3j88cen+EW7VInf8Bd5QgIUrhFJhXgkSJI3Ru68884pMUPPEhJHZSJKYTdZNAH/c953v5o74qRWie7VwBrbhhDCyhVo08v0FKlJkiRD5Jzlx1Sq1Cr5dGAig0S54FQq4nIcd9xxKdnQDJQoAtcTNybEMmp4kVAaG3n77rvvkig6U2KnnXYavKqHlC/fI/BWImGZvhuF3ixDCKLnfTPBuVSVPUajJ66j6InrKHriOoqeuI6iJ66jmHvieAZGlUriNWC2KiFPLUpuKMc0rP5yXV3necbcE2fhne+lGlCnKwqPKvPLylKCOYsZDBir43UJ7ylkagMlBu18Y8J5xdwSp7oQcxTjr78sG0pMBVRaUItZr1JJiOsHeUxZAe4aNb+4a3ga7EUXrp/YXFCZKdcceuih1SmnnJKsKocffnh6b54xt8RJhJdyzFpP2B8ZgoHq1NjKPimTwShtB+Mdd9wx7cdDvVKfbJScsTwMUoLlZ3PdOKY6fa+Hgi9u1113TZWLmNi8N++Ya+JUSQjhUwvigNeA7ZI5S8K78YswHFN9ek0QpSxwVJFlNgt4MGz3orYWN5KNJxS+Ye4apwThWmCuidOLQlSby4njJTAW8a2p+KPn8CDoOUBlcpoil0dbYjw3kDEzMkERd9hhh6UaJuqZ8N0RDtjeyDwhEGdSwpVDjGE5cSYmkgL33HPPpRgSNbLyarCqru+yyy7pHFEQRuyKQjKcqHobV5CJTu/WmRIQRz2G6DFBXIx3XDeIM965xuSkJE4VP9Vi81mliQ0fX4Bbx87G8b9MUHriJoSQAltSG38In5ztN8HkIWpfanQ90zX2KVB5NaDIjEJwoBRUU+EYAUiWFPG/xK34O8+YW+J6DEdPXEfRE9dR9MR1FD1xHUVPXEfRE9dR9MR1FGtGnOLaK6nXOAswRtdt98Lg7LdKBllJyflpojVxYumPPfbYFMcvsyVy0JwTmw+sGN4vJbcDsobYhE+AKpeMXfk5MBl81wJ+S4hqdu4ljgN77LFHstowUntf1pD7EiYPLC9xr1xD9rRj+N6wYUN6PyDUnSGcQZy4xq6Nk6A1cRIJGXMZaD2BTEuigtkDuViApZ7xly3QvjEMuUxVNloISMRApGRE5Ak3t92knDamrG222SbZHOWwyb5xg/xss4gs9j/l1vk9pTgPiGLHRIqweMQIeWfQlkgCfreSvJIj5T3YY0ECCZtqDkZxxvKAFC8P7SRoTZxcNE+LBAuNKWTblmElcdHYSvm5Xhh5ECfUO542N73VVlul3DTXOMfBqa4xG6MY//BE68nriu3IpgFag4FaWHspzgf0uCCOPdQ+OLzuQVzkJgiFt+8B8bC5J26igL10wgVFePeFxU+CscY4T4gfL7CGg7KOuIjXkLvGsSkXIO9xoLStG3ejfrjvCtQRB9RYHpYwLRjT/H6Gag8bRyrJt3KpI05wUhDnAdCTkCLEQlYQcR+0k/E8im3XCV/juGhNHNXA1bL55pun1CWe5nF7nHxu6oJLhqWeKpF5I9wg4EaaiJNeNQtQ1757iy22SPsUkEio5CXwkLlf6t9wQUvkPY7DVo5e7oLiaadutZGHwL3yQHDaRo4e4QucZHxvRZyiz7YD4002NiHRjyiJo06RA3U9zphnMmKQpjaQY3+cUcQZP4QVzALGYOrfHqocrbQJCX+dsV3kFyIQRG0jJO9xAo540AUneVCpQCpSG+RAqHmBWBkigInTdhK07nHUgSAcxAUMyshCHEelMSum+EEcNViqSsSZeXkQkBLE+T437ubEkmy77bYpFEHP1YDTBjUpOIgqtPGRXmOGaNpPPHRUnd+HWCpNGJ/G1hZBHCDODJvW8b7ZYklczMQRTdP43zOfVYKbyTebFVIgnoOaoVryqt7GLjdNxfBC59CjXGumKBdu/fr1g3dWF5YmZrTWZrzkslwtddwT4WE3QxbiAEL6qEI90gNnWRAwQTn11FPTPRFj5iGHHDJ4dzmsF32/HjfpWnYs4nrMD3riOoqeuI6iJ66j6InrKHriOoqeuI6iJ66j6InrJKrqf5yhpyOAGF3/AAAAAElFTkSuQmCC + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +14 + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +true +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS UI Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +48 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/x86/Debug/net461/koutou.CLF b/bin/x86/Debug/net461/koutou.CLF new file mode 100644 index 0000000..fe68c96 --- /dev/null +++ b/bin/x86/Debug/net461/koutou.CLF @@ -0,0 +1,7480 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +iVBORw0KGgoAAAANSUhEUgAAAG4AAADICAYAAAAJHtQIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAACH6SURBVHhe7d0HlCxFFQZgjKiYI2YxPUyAiiCYUMEcURQDYkBRMD0FBUxgQp+oGBDBhD5FRcwBFQyYs2DOWcw5x/Z8xdyltuye6Zmd2Z2e1/859+x0T8/sdP1dt6puqs2qHp1ET1xH0RPXUfTEdRQ9cR1FT1xH0RPXUfTEdRQLQ9xf//rX6l//+tfgaD7wz3/+s/rb3/42OJoupkLci170ouo617lOarw6/Pa3v62ueMUrVt/97ner5z3vedX97ne/dP4Vr3hFdfTRRyd505velM4FPvvZz1bXvOY1q7/85S/p+Hvf+171pS99aUm+//3vp/OBJz3pSdX69esHR1V1/PHHV4961KMGR2fh7W9/+9L/JK985SvT+S9+8YvV9a9//epXv/pVOm7CYx7zmOrwww8fHNXjxS9+cbVx48b0nZe5zGWqP/7xj9Xzn//86rnPfW713//+d3DVyjARcW9+85ur29/+9kuybt266tznPveyc+QXv/hF+qHvfOc7q80226x629veVt3//vevbnGLW1Sf+9znqgtf+MLVXnvtVd3hDndIjRbYZ599qp133rk617nOld5DAJIvfelLp+Ob3/zm1e1ud7vB1Wc2+nnPe970uzxEv//976s73elO1UEHHTS44iz47EMf+tDqkpe8ZHXooYdW73//+9P5f//739X1rne96lnPelY6DtzwhjdMvzPEfZ7nPOdZds7/yvHYxz62usQlLlFt2LChuslNbpJ+z/nPf/7qiCOOGFyxckxE3HOe85x0Qx//+Mdr5ZRTTklE/eAHP0jEPeUpT0nHesWuu+5abbvttulJd9Ouf/WrX72MOJ/TgFtssUXqIT/96U+TGtxyyy2rD3/4w6lBgrhjjz22uuAFL5h62y1vecvqAQ94QGoon733ve9dPe5xj0tywgknpOsRd+1rXzsRvcMOO1RPe9rTUoPGdSHvec970vXwvve9L/0O4vO777770rHfk+Pxj398teOOO1ZXvvKVk1zoQhdKD+FVr3rV6gY3uEHqsdPARMS97GUvq25961unBq8T7/vRP/nJT9L1v/71rxNxu+22W3X1q1+9uuc975nOI+5KV7pSUic5cV/72tdS453vfOdLxFCxeqjG/vnPf1499alPTY0XoH4333zzRMTXv/716olPfGK13Xbbpc8S/xehoOH1Sqr73e9+dzqHVNdtvfXW1Z577plef/rTn07vgZ7uwXB+p512Svfu9QMf+MDqute97uCqM/GjH/2o+upXv1p95jOfSQ+UB/QCF7hAehCc/+EPfzi4cmWYeIzTuI985COT3O1ud0uNGscHHnjg4KozEcRRSw9+8IOXEeepfcELXrBE3J///Od0TD1SlXvssUd117veNakcKui4445L4+kLX/jCdL2x71WvelXqYW94wxvSQ6C3fuc730nvg8/lxJU9LqDHxvfmQNxNb3rT9FsQbmjw2udz4l73utelawlV7J5pCffhXuO9/fbbb/CJybGiyckxxxyTntoPfehDSac3IYjTgDe72c2WEYck6iWI+/vf/17tv//+aSBHtM8+4xnPSCrmP//5T7qe6jXhAWMkMq5whStUV7nKVdKDYfKDABMCKIlz3vXGXP/PGGm8oyVue9vbptff/OY30/Wgsd/61rdWv/vd71KP9HB67f5z4qhzE7QPfOAD1cUvfvHqve99bzr+wx/+kB62hz/84Wmi8o9//GPwicmxIuLobioDcec85zmr7bfffknixj35JgOIe8hDHpL0P3X56Ec/Oqk3DUn3B3Fu0nu5GNipxvL8GWeckT6jUU16HvSgB6WZokmRsdP4ohFz4pB+97vfPQlNoad+9KMfTWT6Xf6P13pywJhsbPaZ6HFe64XOB5Ckt1/0ohdNkreHIcHDQl7+8pcPPjE5JibuN7/5TXWRi1wk9QbE+aHf/va3l8STDG7GMV1PLVJrr3/966uvfOUrqdHKyYnrqcMQ45GZ3NnPfvbqsMMOW/aeXmfMoPaoH8TFwwRU5ze+8Y3qvve9b5qig6feA0TVmd1e7GIXS+ehVJW+23idizHuNre5zf+d/+Uvf5keil122SXdm3v2QB5wwAHp9VZbbVW95S1vqU488cRadTwuJiaO6rrsZS+bnqBb3epWQ1WlCQOSqRYNaLCmDi93ucsl9ZITl8N797rXvdL4FuoNGflC+13vele1zTbbpN+DuLvc5S5pYpPDDDiecr/TGHeNa1wjfW4YcSYTGj6Xa13rWmlsK8+blFhsU+dgaeI+f/zjH6e14Tn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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +14 + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +true +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>18.729367351531977 +<_y>18.479672336578297 +<_width>5.5562500953674316 +<_height>14.0229172706604 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS UI Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +48 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + + +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/x86/Debug/net461/matudo.CLF b/bin/x86/Debug/net461/matudo.CLF new file mode 100644 index 0000000..6f9421f --- /dev/null +++ b/bin/x86/Debug/net461/matudo.CLF @@ -0,0 +1,6424 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +12 + + + + + + + + + + + + + + +0 + + + +駐車場名 +Millimeter + +<_x>3.3379562585949936 +<_y>57.260420989990266 +<_width>33.072920307517052 +<_height>13.758327960968018 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.10162657356261845 +<_y>5.131249999999997 +<_width>39.952085971832275 +<_height>5.2916655540466309 + + +100 +true +true +true +true + +FieldText + + + + + + +定期種別 +Millimeter + +<_x>7.3741664123535156 +<_y>22.319167556762682 +<_width>7.4083395004272461 +<_height>5.2916665077209473 + + +100 +false +true +true +true + +FieldText + + + + + + +有効期限年 +Millimeter + +<_x>2.6587856634855163 +<_y>36.396873378753668 +<_width>32.8083348274231 +<_height>5.0270819664001465 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン +Millimeter + +<_x>21.090561620831476 +<_y>25.41249618530275 +<_width>16.139584064483635 +<_height>9.5250039100646973 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車位置_ラベル +Millimeter + +<_x>1.618687139391926 +<_y>28.322917556762711 +<_width>18.785419940948479 +<_height>6.6145825386047363 + + +100 +false +true +true +true + +FieldText + + + + + + +許可番号ラベル +Millimeter + +<_x>2.1473299577236267 +<_y>10.582288837432865 +<_width>25.929171085357666 +<_height>5.0270819664001536 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者連番 +Millimeter + +<_x>2.1473299577236267 +<_y>15.203124904632547 +<_width>35.454172909259796 +<_height>6.3499979972839524 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>4.1785805627107582 +<_y>41.901040744781525 +<_width>20.974740366608245 +<_height>15.345839023590088 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.989235634930282 +<_y>51.426049900054956 +<_width>12.100811526291254 +<_height>5.8208298683166539 + + +100 +false +true +true +true + +FieldText + + + + + + +タグ +Millimeter + +<_x>27.90873886931309 +<_y>44.095817470550571 +<_width>6.2618050575256348 +<_height>5.7326416969299316 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>22.077287960052558 +<_y>22.353633594512935 +<_width>15.874998569488525 +<_height>5.0270829200744629 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>3.3379562585949936 +<_y>57.260420989990266 +<_width>33.072920307517052 +<_height>13.758327960968018 + + +100 +false +true +true +true + + +Text + +松戸駅西口第5自転車駐車場ssssssssssssssssssssssssssssssssss + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.10162657356261845 +<_y>5.131249999999997 +<_width>39.952085971832275 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期使用シール + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>7.3741664123535156 +<_y>22.319167556762682 +<_width>7.4083395004272461 +<_height>5.2916665077209473 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>2.6587856634855163 +<_y>36.396873378753668 +<_width>32.8083348274231 +<_height>5.0270819664001465 + + +100 +false +true +true +true + + +Text + +有効期限0000年 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>21.090561620831476 +<_y>25.41249618530275 +<_width>16.139584064483635 +<_height>9.5250039100646973 + + +100 +false +true +true +true + + +Text + +大型 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.618687139391926 +<_y>28.322917556762711 +<_width>18.785419940948479 +<_height>6.6145825386047363 + + +100 +false +true +true +true + + +Text + +駐車位置 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>2.1473299577236267 +<_y>10.582288837432865 +<_width>25.929171085357666 +<_height>5.0270819664001536 + + +100 +false +true +true +true + + +Text + +許可番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>2.1473299577236267 +<_y>15.203124904632547 +<_width>35.454172909259796 +<_height>6.3499979972839524 + + +100 +false +true +true +true + + +Text + +0000000000 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>4.1785805627107582 +<_y>41.901040744781525 +<_width>20.974740366608245 +<_height>15.345839023590088 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.989235634930282 +<_y>51.426049900054956 +<_width>12.100811526291254 +<_height>5.8208298683166539 + + +100 +false +true +true +true + + +Text + +月末 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>27.90873886931309 +<_y>44.095817470550571 +<_width>6.2618050575256348 +<_height>5.7326416969299316 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>22.077287960052558 +<_y>22.353633594512935 +<_width>15.874998569488525 +<_height>5.0270829200744629 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>3.3379562585949936 +<_y>57.260420989990266 +<_width>33.072920307517052 +<_height>13.758327960968018 + + +100 +false +true +true +true + +松戸駅西口第5自転車駐車場ssssssssssssssssssssssssssssssssss + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.10162657356261845 +<_y>5.131249999999997 +<_width>39.952085971832275 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期使用シール + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>7.3741664123535156 +<_y>22.319167556762682 +<_width>7.4083395004272461 +<_height>5.2916665077209473 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>2.6587856634855163 +<_y>36.396873378753668 +<_width>32.8083348274231 +<_height>5.0270819664001465 + + +100 +false +true +true +true + +有効期限0000年 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>21.090561620831476 +<_y>25.41249618530275 +<_width>16.139584064483635 +<_height>9.5250039100646973 + + +100 +false +true +true +true + +大型 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.618687139391926 +<_y>28.322917556762711 +<_width>18.785419940948479 +<_height>6.6145825386047363 + + +100 +false +true +true +true + +駐車位置 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>2.1473299577236267 +<_y>10.582288837432865 +<_width>25.929171085357666 +<_height>5.0270819664001536 + + +100 +false +true +true +true + +許可番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>2.1473299577236267 +<_y>15.203124904632547 +<_width>35.454172909259796 +<_height>6.3499979972839524 + + +100 +false +true +true +true + +0000000000 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>4.1785805627107582 +<_y>41.901040744781525 +<_width>20.974740366608245 +<_height>15.345839023590088 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.989235634930282 +<_y>51.426049900054956 +<_width>12.100811526291254 +<_height>5.8208298683166539 + + +100 +false +true +true +true + +月末 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>27.90873886931309 +<_y>44.095817470550571 +<_width>6.2618050575256348 +<_height>5.7326416969299316 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>22.077287960052558 +<_y>22.353633594512935 +<_width>15.874998569488525 +<_height>5.0270829200744629 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Bottom +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +12 + +80 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +15 + +90 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Bottom +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +20 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Bottom +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +20 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Bottom +Wrap +Millimeter +0 +0 + + + + + +MS ゴシック +Point +40 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +MS UI Gothic +Point +15 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +15 + +110 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Bottom +Wrap +Millimeter +0 +0 + + + + + +MS Pゴシック +Point +12 + +110 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/x86/Debug/net461/netstandard.dll b/bin/x86/Debug/net461/netstandard.dll new file mode 100644 index 0000000..1f1ab22 Binary files /dev/null and b/bin/x86/Debug/net461/netstandard.dll differ diff --git a/bin/x86/Debug/net461/pic0.png b/bin/x86/Debug/net461/pic0.png new file mode 100644 index 0000000..8a70912 Binary files /dev/null and b/bin/x86/Debug/net461/pic0.png differ diff --git a/bin/x86/Debug/net461/pic1.png b/bin/x86/Debug/net461/pic1.png new file mode 100644 index 0000000..20be2ff Binary files /dev/null and b/bin/x86/Debug/net461/pic1.png differ diff --git a/bin/x86/Debug/net461/pic1_B.png b/bin/x86/Debug/net461/pic1_B.png new file mode 100644 index 0000000..cf700dc Binary files /dev/null and b/bin/x86/Debug/net461/pic1_B.png differ diff --git a/bin/x86/Debug/net461/pic1_C.png b/bin/x86/Debug/net461/pic1_C.png new file mode 100644 index 0000000..1821ffe Binary files /dev/null and b/bin/x86/Debug/net461/pic1_C.png differ diff --git a/bin/x86/Debug/net461/pic1_D.png b/bin/x86/Debug/net461/pic1_D.png new file mode 100644 index 0000000..8dcc237 Binary files /dev/null and b/bin/x86/Debug/net461/pic1_D.png differ diff --git a/bin/x86/Debug/net461/pic2-1.png b/bin/x86/Debug/net461/pic2-1.png new file mode 100644 index 0000000..80c1832 Binary files /dev/null and b/bin/x86/Debug/net461/pic2-1.png differ diff --git a/bin/x86/Debug/net461/pic2.png b/bin/x86/Debug/net461/pic2.png new file mode 100644 index 0000000..57e9540 Binary files /dev/null and b/bin/x86/Debug/net461/pic2.png differ diff --git a/bin/x86/Debug/net461/pic3.png b/bin/x86/Debug/net461/pic3.png new file mode 100644 index 0000000..e3323fc Binary files /dev/null and b/bin/x86/Debug/net461/pic3.png differ diff --git a/bin/x86/Debug/net461/pic4.png b/bin/x86/Debug/net461/pic4.png new file mode 100644 index 0000000..e7630ab Binary files /dev/null and b/bin/x86/Debug/net461/pic4.png differ diff --git a/bin/x86/Debug/net461/pic5.png b/bin/x86/Debug/net461/pic5.png new file mode 100644 index 0000000..a52a954 Binary files /dev/null and b/bin/x86/Debug/net461/pic5.png differ diff --git a/bin/x86/Debug/net461/pic6.png b/bin/x86/Debug/net461/pic6.png new file mode 100644 index 0000000..e372181 Binary files /dev/null and b/bin/x86/Debug/net461/pic6.png differ diff --git a/bin/x86/Debug/net461/pic7.png b/bin/x86/Debug/net461/pic7.png new file mode 100644 index 0000000..266080f Binary files /dev/null and b/bin/x86/Debug/net461/pic7.png differ diff --git a/bin/x86/Debug/net461/pic8_1.png b/bin/x86/Debug/net461/pic8_1.png new file mode 100644 index 0000000..20be2ff Binary files /dev/null and b/bin/x86/Debug/net461/pic8_1.png differ diff --git a/bin/x86/Debug/net461/pic8_2.png b/bin/x86/Debug/net461/pic8_2.png new file mode 100644 index 0000000..4725ff5 Binary files /dev/null and b/bin/x86/Debug/net461/pic8_2.png differ diff --git a/bin/x86/Debug/net461/pic_err_201.png b/bin/x86/Debug/net461/pic_err_201.png new file mode 100644 index 0000000..354a3d9 Binary files /dev/null and b/bin/x86/Debug/net461/pic_err_201.png differ diff --git a/bin/x86/Debug/net461/pic_err_202.png b/bin/x86/Debug/net461/pic_err_202.png new file mode 100644 index 0000000..8230f9b Binary files /dev/null and b/bin/x86/Debug/net461/pic_err_202.png differ diff --git a/bin/x86/Debug/net461/pic_err_203.png b/bin/x86/Debug/net461/pic_err_203.png new file mode 100644 index 0000000..a53202e Binary files /dev/null and b/bin/x86/Debug/net461/pic_err_203.png differ diff --git a/bin/x86/Debug/net461/pic_err_204.png b/bin/x86/Debug/net461/pic_err_204.png new file mode 100644 index 0000000..71dc025 Binary files /dev/null and b/bin/x86/Debug/net461/pic_err_204.png differ diff --git a/bin/x86/Debug/net461/pic_err_205.png b/bin/x86/Debug/net461/pic_err_205.png new file mode 100644 index 0000000..ba8f702 Binary files /dev/null and b/bin/x86/Debug/net461/pic_err_205.png differ diff --git a/bin/x86/Debug/net461/pic_genmen_120.png b/bin/x86/Debug/net461/pic_genmen_120.png new file mode 100644 index 0000000..d6e1c5d Binary files /dev/null and b/bin/x86/Debug/net461/pic_genmen_120.png differ diff --git a/bin/x86/Debug/net461/pic_kessai_0.png b/bin/x86/Debug/net461/pic_kessai_0.png new file mode 100644 index 0000000..a620dbf Binary files /dev/null and b/bin/x86/Debug/net461/pic_kessai_0.png differ diff --git a/bin/x86/Debug/net461/pic_kessai_1.png b/bin/x86/Debug/net461/pic_kessai_1.png new file mode 100644 index 0000000..df21e72 Binary files /dev/null and b/bin/x86/Debug/net461/pic_kessai_1.png differ diff --git a/bin/x86/Debug/net461/pic_kessai_1_2.png b/bin/x86/Debug/net461/pic_kessai_1_2.png new file mode 100644 index 0000000..e1b3616 Binary files /dev/null and b/bin/x86/Debug/net461/pic_kessai_1_2.png differ diff --git a/bin/x86/Debug/net461/pic_kessai_2.png b/bin/x86/Debug/net461/pic_kessai_2.png new file mode 100644 index 0000000..7a06ce8 Binary files /dev/null and b/bin/x86/Debug/net461/pic_kessai_2.png differ diff --git a/bin/x86/Debug/net461/pic_kessai_3.png b/bin/x86/Debug/net461/pic_kessai_3.png new file mode 100644 index 0000000..1b98d04 Binary files /dev/null and b/bin/x86/Debug/net461/pic_kessai_3.png differ diff --git a/bin/x86/Debug/net461/pic_kessai_4-1.png b/bin/x86/Debug/net461/pic_kessai_4-1.png new file mode 100644 index 0000000..f37990a Binary files /dev/null and b/bin/x86/Debug/net461/pic_kessai_4-1.png differ diff --git a/bin/x86/Debug/net461/pic_kessai_4.png b/bin/x86/Debug/net461/pic_kessai_4.png new file mode 100644 index 0000000..d444c32 Binary files /dev/null and b/bin/x86/Debug/net461/pic_kessai_4.png differ diff --git a/bin/x86/Debug/net461/pic_kessai_5.png b/bin/x86/Debug/net461/pic_kessai_5.png new file mode 100644 index 0000000..7657667 Binary files /dev/null and b/bin/x86/Debug/net461/pic_kessai_5.png differ diff --git a/bin/x86/Debug/net461/pic_kessai_err_00.png b/bin/x86/Debug/net461/pic_kessai_err_00.png new file mode 100644 index 0000000..507b6af Binary files /dev/null and b/bin/x86/Debug/net461/pic_kessai_err_00.png differ diff --git a/bin/x86/Debug/net461/pic_kessai_err_01.jpg b/bin/x86/Debug/net461/pic_kessai_err_01.jpg new file mode 100644 index 0000000..04d0469 Binary files /dev/null and b/bin/x86/Debug/net461/pic_kessai_err_01.jpg differ diff --git a/bin/x86/Debug/net461/pic_kessai_err_01.png b/bin/x86/Debug/net461/pic_kessai_err_01.png new file mode 100644 index 0000000..5cd4aff Binary files /dev/null and b/bin/x86/Debug/net461/pic_kessai_err_01.png differ diff --git a/bin/x86/Debug/net461/pic_kessai_err_02.png b/bin/x86/Debug/net461/pic_kessai_err_02.png new file mode 100644 index 0000000..145b654 Binary files /dev/null and b/bin/x86/Debug/net461/pic_kessai_err_02.png differ diff --git a/bin/x86/Debug/net461/pic_kessai_err_c_open.png b/bin/x86/Debug/net461/pic_kessai_err_c_open.png new file mode 100644 index 0000000..fb34eb5 Binary files /dev/null and b/bin/x86/Debug/net461/pic_kessai_err_c_open.png differ diff --git a/bin/x86/Debug/net461/pic_kessai_err_p_out.png b/bin/x86/Debug/net461/pic_kessai_err_p_out.png new file mode 100644 index 0000000..18923b0 Binary files /dev/null and b/bin/x86/Debug/net461/pic_kessai_err_p_out.png differ diff --git a/bin/x86/Debug/net461/print_layout22.CLF b/bin/x86/Debug/net461/print_layout22.CLF new file mode 100644 index 0000000..2f83514 --- /dev/null +++ b/bin/x86/Debug/net461/print_layout22.CLF @@ -0,0 +1,7480 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +iVBORw0KGgoAAAANSUhEUgAAAG4AAADICAYAAAAJHtQIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAACJISURBVHhe7d0HlCxFFQZgzAkDZgwIIuaAGAAVAyIoipgVA/GBWcScAUUxgoigBEHFLKCoCIpPERFQgigq5ow559yer5i71hY9PT2zM/um3+v/nHt2Zrqnt6f/qltVN9VaVY9Ooieuo+iJ6yh64jqKnriOoieuo+iJ6yh64jqKnriOoieuo5gKcZ/73Oeqddddt/rNb34z+GQxfL7++utXf/7zn6tXvepV1S677FL94Ac/qB74wAcukn/84x+Db1TVBz/4weq2t73t4F1VnX766dVpp522IF/96lcHR6rq17/+dXWXu9yl+u1vfzv4pKq23HLL6l3vetfg3f/x7ne/O91DiP8DT33qU6vHPe5x1Z/+9Kf0fhg23njj6vDDDx+8uyT++Mc/Vs94xjPSb3XP17rWtdJn/s/b3va26r///e/gzKVhIuL8+Lvd7W4L4gFf7nKXW/QZ+eQnP5lu1ANE7AknnFA95jGPqbbYYovqpJNOqi51qUtVr3nNa6rnPe951VprrVX97W9/SyT47u1ud7tqnXXWSa8POOCA6hGPeER1jWtco7rjHe9Y3frWt6623XbbdC/f+ta30vcf9ahHVa997WsTqRqF63lwGg35+9//ns6/z33uU22//fbpOhrQcccdlz6/6KKLqnvc4x7V6173uvQePPD895ArXvGK1a1udatFnz396U8ffONibLXVVtWBBx5YvfGNb0yvkXjLW96yestb3jI4Y+mYiDg/Dlla3jC58Y1vnAj+z3/+Uz360Y+urnrVq1Y77rhjdfvb3z71vsMOOywRB9/5zncWiPvXv/5VnXzyyYmEq1zlKtVHP/rRdPzf//53tcEGGyQyHAviHvawh1WXucxlqk996lPVta997eqcc86pnvjEJ6br5XLkkUem8xF3/etfv7r61a9erbfeetUb3vCG1BCI+4rXn/nMZxLZ5e+6znWuk3pn/tnHPvaxdG1A5HWve910jatd7Wrpnm50oxule7j5zW9e3fnOdx6cuTRMTNwDHvCA6jnPeU71yEc+8hLih1EpiAO9yA846KCDqm222SYRecEFF6Qf43zX8hpx8OAHP7i6xS1ukQi5053ulHouwq585StXv/rVrxYR94tf/CI1hpvc5CbVk5/85OrUU0+trnCFK6Se99Of/jTJJptssog4xN773veu9t577+rrX/969YEPfCAJrUEDeO178Lvf/a662c1uljQGcU/XvOY1F97f7373S+cFfv7zn6fvfvjDH073e+6556aGEtf82c9+NjhzaZiIOL3CeHTooYemH//Sl740PfinPe1p6f0rX/nK1Fr1EkCcH+vYve51rwXi9DikvOMd71ggTg/13Xe+851JLe2zzz5JEPiCF7wg9SwqzfgUoJY0FJ/tvvvu1fHHH19997vfHRytqs0222wRcRqFh+k773//+9PngHAPugSCXvGKV6Te77Xf6/X973//pHIDe+yxR3WlK10pyeUvf/nq0pe+dHrtr/dxbKeddhp8Y3IsaXLykpe8JI1biPTgv/nNb1b//Oc/U6vLgTgPhZq4wQ1usIg4yFUlVaelUivOQ8pb3/rW1Eu0fg9qo402qn784x+n71K/1B7VbOy54Q1vWH35y19Oava8885L55TE6W3GHGOdz/fff//qmc98ZupNj33sY9Prv/71r+l8QJZx2TjrutSh1ze96U0XEfe9732v+vznP5+GEaqSljj77LOT6Jn+56c//elFjWpSTEycnqHlfuhDH1ogzphBn6+99tqDsy4G4qiyb3/726lX5qqSGnIsiNPbPvvZz1YXXnjhglzveter3vzmNy/67Ec/+lG6toezcuXKpC5NBvQM6ugJT3hCdc973jP1+jvc4Q4LxFHfb3rTm9KE4ilPeUpSy3rQihUrEnEPechD0uu//OUv6XwN0bi29dZbp55irL7vfe+bXvv9OXFIoxn0qjg/xHBgjHatI444YvCNyTExccYGD/uoo45aIO6ss85KJOXLAtN2N62lauF+rF7xwhe+MLVK52uRQZz3m2+++YIg1jHqJv/8Wc96Vrr+e97znvTw73rXu6Yxjvozk/3a175WHX300enB+75ZLHjoT3rSk6rtttsu9T7fDdSpSjNC41UIFfviF7944b1JTGCvvfaq9txzz9TzqGCTE8OD82ga4xwNoocvFRMRpxVbd3mAfohJh4dDVZb4/e9/n34c9XTIIYekh6WXaoXx0HJVmYOqQ5z1VZCNiBwvf/nLU49BnEakRf/yl78cHK3Sa9f+xje+ke6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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +14 + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +48 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/x86/Debug/net461/print_layout47.CLF b/bin/x86/Debug/net461/print_layout47.CLF new file mode 100644 index 0000000..2f83514 --- /dev/null +++ b/bin/x86/Debug/net461/print_layout47.CLF @@ -0,0 +1,7480 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +iVBORw0KGgoAAAANSUhEUgAAAG4AAADICAYAAAAJHtQIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAACJISURBVHhe7d0HlCxFFQZgzAkDZgwIIuaAGAAVAyIoipgVA/GBWcScAUUxgoigBEHFLKCoCIpPERFQgigq5ow559yer5i71hY9PT2zM/um3+v/nHt2Zrqnt6f/qltVN9VaVY9Ooieuo+iJ6yh64jqKnriOoieuo+iJ6yh64jqKnriOoieuo5gKcZ/73Oeqddddt/rNb34z+GQxfL7++utXf/7zn6tXvepV1S677FL94Ac/qB74wAcukn/84x+Db1TVBz/4weq2t73t4F1VnX766dVpp522IF/96lcHR6rq17/+dXWXu9yl+u1vfzv4pKq23HLL6l3vetfg3f/x7ne/O91DiP8DT33qU6vHPe5x1Z/+9Kf0fhg23njj6vDDDx+8uyT++Mc/Vs94xjPSb3XP17rWtdJn/s/b3va26r///e/gzKVhIuL8+Lvd7W4L4gFf7nKXW/QZ+eQnP5lu1ANE7AknnFA95jGPqbbYYovqpJNOqi51qUtVr3nNa6rnPe951VprrVX97W9/SyT47u1ud7tqnXXWSa8POOCA6hGPeER1jWtco7rjHe9Y3frWt6623XbbdC/f+ta30vcf9ahHVa997WsTqRqF63lwGg35+9//ns6/z33uU22//fbpOhrQcccdlz6/6KKLqnvc4x7V6173uvQePPD895ArXvGK1a1udatFnz396U8ffONibLXVVtWBBx5YvfGNb0yvkXjLW96yestb3jI4Y+mYiDg/Dlla3jC58Y1vnAj+z3/+Uz360Y+urnrVq1Y77rhjdfvb3z71vsMOOywRB9/5zncWiPvXv/5VnXzyyYmEq1zlKtVHP/rRdPzf//53tcEGGyQyHAviHvawh1WXucxlqk996lPVta997eqcc86pnvjEJ6br5XLkkUem8xF3/etfv7r61a9erbfeetUb3vCG1BCI+4rXn/nMZxLZ5e+6znWuk3pn/tnHPvaxdG1A5HWve910jatd7Wrpnm50oxule7j5zW9e3fnOdx6cuTRMTNwDHvCA6jnPeU71yEc+8hLih1EpiAO9yA846KCDqm222SYRecEFF6Qf43zX8hpx8OAHP7i6xS1ukQi5053ulHouwq585StXv/rVrxYR94tf/CI1hpvc5CbVk5/85OrUU0+trnCFK6Se99Of/jTJJptssog4xN773veu9t577+rrX/969YEPfCAJrUEDeO178Lvf/a662c1uljQGcU/XvOY1F97f7373S+cFfv7zn6fvfvjDH073e+6556aGEtf82c9+NjhzaZiIOL3CeHTooYemH//Sl740PfinPe1p6f0rX/nK1Fr1EkCcH+vYve51rwXi9DikvOMd71ggTg/13Xe+851JLe2zzz5JEPiCF7wg9SwqzfgUoJY0FJ/tvvvu1fHHH19997vfHRytqs0222wRcRqFh+k773//+9PngHAPugSCXvGKV6Te77Xf6/X973//pHIDe+yxR3WlK10pyeUvf/nq0pe+dHrtr/dxbKeddhp8Y3IsaXLykpe8JI1biPTgv/nNb1b//Oc/U6vLgTgPhZq4wQ1usIg4yFUlVaelUivOQ8pb3/rW1Eu0fg9qo402qn784x+n71K/1B7VbOy54Q1vWH35y19Oava8885L55TE6W3GHGOdz/fff//qmc98ZupNj33sY9Prv/71r+l8QJZx2TjrutSh1ze96U0XEfe9732v+vznP5+GEaqSljj77LOT6Jn+56c//elFjWpSTEycnqHlfuhDH1ogzphBn6+99tqDsy4G4qiyb3/726lX5qqSGnIsiNPbPvvZz1YXXnjhglzveter3vzmNy/67Ec/+lG6toezcuXKpC5NBvQM6ugJT3hCdc973jP1+jvc4Q4LxFHfb3rTm9KE4ilPeUpSy3rQihUrEnEPechD0uu//OUv6XwN0bi29dZbp55irL7vfe+bXvv9OXFIoxn0qjg/xHBgjHatI444YvCNyTExccYGD/uoo45aIO6ss85KJOXLAtN2N62lauF+rF7xwhe+MLVK52uRQZz3m2+++YIg1jHqJv/8Wc96Vrr+e97znvTw73rXu6Yxjvozk/3a175WHX300enB+75ZLHjoT3rSk6rtttsu9T7fDdSpSjNC41UIFfviF7944b1JTGCvvfaq9txzz9TzqGCTE8OD82ga4xwNoocvFRMRpxVbd3mAfohJh4dDVZb4/e9/n34c9XTIIYekh6WXaoXx0HJVmYOqQ5z1VZCNiBwvf/nLU49BnEakRf/yl78cHK3Sa9f+xje+ke6bynvQgx6UiEe0yUigJM44phfmEo0o/0wPg1ij+bvvvvum5QyVaz7g/o2908JExFF3xpUf/vCHC2rKD9KbvA4x5UeG9RKVYkZozbXDDjsklWMCouf6kQZvapIKtW5DqgdEpSGLenRNY5kJyHvf+97UG8xgP/7xjy8Q94lPfCJ9bganN+oBFsHGRw3kRS96UXXiiScmlarHa0Bxv8Zc46fX1O4f/vCHNF7m4v9TtflnX/nKVwZPpkrrQhrGZOwLX/hCuje/3/Nx7rQwEXE/+clPFqkIQKIW5WGFfP/730/TdWut6AVao89YF7RE03cPSs8BKs5kwgzS6xzGHYt545cFdw6TCiopgDyzT+MbkktQo3qwiUJ+zyHnn3/+4MzFoGnc8zBomBqb5wEaorHUBMu8YFqYeIzrsWrRE9dR9MR1FD1xHcVqQ5xJj6l3TMnHhbVoOeGaBtwPs55JyjQxNeJMnU3Bm2Sas6oSHjzLjVlk7pcbBjNUbhv3zU/GfGX5wW5qeWLWW0pYa4B1hZWkTqwFzaJJGADKWfBSMTXinv3sZ6cbbJLc/ZGDRSF3k+RizVQ3na+DNZj/g8RR4Bvj3yO+w47IrMbOyjTFXmqdRxgZnMOOGrCQ9/+sKUN4OpzHZMefyIoTxO26666Db04HUyMOKdYwTTKsJ3g4ftwwuexlL5uM2aMwLnHO3XnnnZOpLve+I84aMBCWoZK4xz/+8YN3F4ORwHmdIm4p8EDysISQ5z//+elHU4FsmKMwCXFnnHHG4JP/g021DXEsLdRriPfO6wRxrAiMtuNIPlYMA/NXGJiHqdgSQRwbZ96D6lAS5/8JefA9lpk2xDGzuQ5DMrI5mL03ns89ccYFNzaOhJ+sCR6ec/0Nh+woBHGET4yn3EOsQxAnzIAryl/vTSzaEOf8UJXstY7nvXfuiXNjIqNyMZvixqE6PLjy+KjZJY+373JgtpkhBoI4YQ1Ul9cs/maEuWMUgjhjHIdwiKChNsS5P8ZrvkczScf1Qh4BPsJOjnHIcbNuflxwpXjYvk84Q03b2yAf47hxGJ55HcwYS5SqMkdb4pzjc6T4yzCuwXZ2cmJ672Z5BcaB9ZM4Ew+b784Y4joIEYY3CjlxAY5ccSollkIcVe+9cAR/NTZ/efgFRXWWOA5WN3vssccOPmkGPx2VpRVbM/nhYJEsLtG1jEMeTBPqiBuGII4a5f+L2E1uniDOdfjULLadG8Q51/uY9dYRZ3x9/etf3w3ijF0ehBvVW0qPdgnn86HxDvsOlVbng4uWzYnZNOZNQpwebrEd8qUvfSmFNSCOyjeGOY/6DuuPnsRRyhHsWBDH5+Ya0fBg7onTUkUpu0kLWE7UUTAR4ES1wNZ6h41lQd5+++03+KQekxBXpyrdv4YHHLesN+JiQDyN/8NZeswxx6RrBHGMDBofRzNHrrgTwUmOzS1xxqC73/3uyXvdhrQAW2E8lCaM6r0wDnHiYzz48MznQBy1PQzWoTzceqTAIGOo/5urcvew4YYbps81TGEc08RUVaXFK9WwqqARiC1ZKgQQmSG2hVgWGqO07lgT6o2l+p8GZjI56TF79MR1FD1xHUVPXEfRE9dR9MR1FD1xHcXYxImN5/6YZeBPj9FoJI61QgJhLry9rAG8xeWxNhaLHtNBI3FCBpDURhhdV6XVpATzE3skKwgbp5hJFg7hd6sDWhEnFUqe2zBxnry05YasHwUEhBGUkHEjs0b6suxQvkE54uqfMFi77y6jkTi5ZnrSRz7ykRQeN0ykV0n3Ze1fTghUkiIs87ME4sSEyMsT88n2+Pa3vz2lMZ955plJtXcZrSYnfGwifYmepRfGe5L7n1YFxHmUQJzeximq6pDYTQRKvhTtnIchdBGtiOP6iN6khSOubeTVcmAYcRIK+dXcs9mw17SHHtd1tCLu4IMPXvAAB3ESGfihiEF/VWIYcXLHhVEIOJLey/Uihp/Dt+toRdxuu+224BEO4sSGhEyjisAkoO7UJNGo/BUfEojJiSR9KlII3cMf/vAUkrBGECecQHyjcg9U5jypSuESJhwhuQc6VCUgzrim2sKmm266ZhBnwS1WkMrR69TymLcxrg5mjVHlQIgegwFYQrQJlZh3NBJnbBN7IbJYkIw1UEQIGzfU5colryHZY7ZoJE4BUbWycouIYFDBqiKa1CsJcd404j16tEOryUmP+UNPXEfRE9dR9MR1FD1xLSHy2TJiHCkDYQXIKntYSpSJFBndFj1xLRFZQ+OI5JAcKvJFeV8S5ynbKJmFFUplwjboiWsJuRFMbKXwBfI+1B3jxwwIT+dSCncSY7dal+p3MtnxXqjCLhdBLxxVImS1Jk5ihmqu0/IGWKdar+YirUpPKT8vCxQwxzG7SUzhhZeGLOWZBYqTV8/j/2S6kyTCldaEqRCnFalHnNsKS1i4O6cpyMgDNjYMg1brGnlhzyZQQSw/ClhPA7wjHrB8PgW1iexZRVfjvV7jnLqiomy9PBmO81ZEBhJvPJMi9akXCsYaVdpqScTx0ank6uG4GX8ZcfMq6Cz2EhIdJzzqsR9BQHJjOGgJo3b+sLVKuj/+D1FKQybMMFA5HqjKQQqKNskXv/jFwbeaEcSxGgWQyBQYUDLDOTlxLE+M3py4jlGNbL75Pfh9zImIc56cPJm6wzAxcXoOt4kbUQ5JYA4d7n1s5iDtimpwo4zV0mupFkZryX9gRqUVIpR7SC+hKqifaJF+mOuKHeH/k8ork1R54LoMVQ/K2KE3qLAeEvWT889I25JTQZxGJseb2GRC1mq8d9/OyYlTSthnogVUwo2dPzQs/981PCPl9419VKrjTfVdJiZOLpqL+8cRlsfy7sFE+Xo62zlyqwORN41EkPDnvaCfQDQARQDAhkJCEPIEfkZu59SNX3xwjqm/nMNEwk4jkyKIs3OIWtBEI0REvJfc6ZycOI3cs4iSHca//P5ksYa/EzQ85zdhYuLoYOuOfEzyYKkz6gP0IDeYbzSkuLTPbAABsQ9O7CoFdhDx2TAHrf8ta1QjKTNK+Q+1WGOIHq9RhSBOr80/a+uecm48cI0svu+36t3xXjigc6zZvA/4TQp4E993Do+K93ow8uM4GTUuT2VyArnqpMpAnRHvc+KiFxqMwYDufU5c9EJehxzGwnCKmpXl38nhAUdBtFGS7zvQhHzdNY7EolqKNYKIqDTHqErvqXDDQxwno/Ldp0Kc5ProOVpfzBybiIu94ZqI47HOITzB58Q+Bk2lpSwF4hrqURIPzP+N9+SUU04ZfKMZpul2vnJNe+rk18glSh/yYXpfFyRM7TsnVH+pKjU8yf9NWDJxSLN7hhspN86bNnHUoHHUAI4ELXZYoYAgzjouMK0xLp9VlqibVeZQUkPveuhDH7ow5S+JM9EzYYsJXB2WRJx/bAcnN2pCUK49YjZYR5zvAXXofR1x+Y5VJcSTOMePzKFOif9xzKCUhet7TywNBA3F+1xUzxuFJuJM9y0LouJfTpyx1mw5lgMmN7EvAbCaaIjWb84zfptlN2FJxMUkwmyqDlEaylYogRi8Y2sUs8v8PTjfZ7FFGJXIDJTDWOecGE8DNjXy+bjSZl+3JuIQZaJCNKq86JtJip5uaaTaYFkQDunqvcT3Na58e7Q6TEycBa7ubDqs9BEVEEK3AxORSQSxyDV115qsWyIWk7XFGsa2Yywi4jWVVbLei3WcH2K2al8613QtIe+uU1pRLP7dW524D8uIumNtZpfOcW6+6VNbUPNtZ7BtMDFxMa2vk3wbMiTmx1gHXv3qVw+OXgzqIT8HaXlWDfVHdcQxJBonchXcBksd4+YJExPHYiGYqE7KMktmT8giw+yM1oOOU311Nk89Te0s5whWmiRpoyeuozD2hMWm61ijiFud0BPXUfTEdRQ9cR1FT1xH0RPXUfTETQB5eW1sm7NET9yY4A3htYj4R7ZHdtbcAKGOM0NBHp43bfTEdRQ9cR1FT1xH0RPXUfTEdRTLTpwYETOzpYIzcxrX6SqWnThhedzziqIJBZgUIoaFsdmzjUNVON6ahGUljkM1ym0QsYrCEcaFveHyPAKCxDKWY3XGshJnI6H8YRO1I8eFxW95HUkSaxKWjTihBuJF8od9m9vcZmTgZwk5CwKF8uuIbF7TsGzExb5yuch1Cxx11FGpaOkodRfhfbnIgBEe1yQycvJY/q5jpsRFgKyQamF8+cMWqh3HkRWBpLJ/BAMJIi0hSlrAT36dcUTh0UlC6+YRMyNO75HvpfhZGaQqry2P5IqKfLkIyx4WGb0UicyarmMmxCktIfjUg4q/uUgjCuQbteeiQkEOM1LJjOV5k4iG0nVMnTiTDWu1ugdGTCTyDJbY8TcXu/PnueIW2tZr+TlSk6i+Jokg2lyEetft0tg1TJ04GSZCyMsHRqzh8kRIQbUybvJzxNeXM81IBMxFJHNTmpVrr7feeou+43+t6jLE08JMVKVo5bpJhLj9fNySLJIf14s4InNIfpAjkJ8XIjtmWDz+y172skucX6YWdxkzm5yotlD3wD1QUMBFcn1+rKyqc9ppp13inFLqxisNp/yeSg6rg4oMzIw4kD6kF+UPkKlKDkA5ZlGR+RqO279caJNIww2h/nKVKStGpZ/8HCKLaHXCTIkDC9+SvFKMfStXrhx8o1pIoyrPQ4jywZYT+ecmHIrXmNCY2OTHyCRmtXnHzImDUesvud05LJIl1efnyKuLtGEL9PwYsRVLpPHmogHIaVvdsCzE6Qk2aigfKqEi2R9N+eXEqVJ31llnpfWdaCrn8CLk6pBVxcSkvFadNBV56TKWhTgw9jBn5Q+VilQPhF9OfnZ8ruwGIG/XXXdNOdolLDvq1GmIsVTJidL6srpg2YizfitnmbkFJSoFhTQVdAvYE04acv69ECUtVmcsC3GySdWxyh8slZhbR0xi8uNKRzVBrrdJR/6dXDQS9cPGdRt1BTMhLg9JoKrsaZM/VGsstUqs9YhqevLAc++4ycgw+K4tY/JrDhNlCJuq7HUVMyGOwxQ5IXUPtI2cf/75gyteDM7YKNBWSpRVqjtGVG5A+DQrH6xKzIQ45ZrqHt64opYJ8OcJeyg96CEW5apA6L3KbtSdE2ItqD4L9d0WaqCYDLWVUQkh8gqU0FpKI5oJcXaLqnto44r6jwgrnbC5KKWUT2T0yqin1SQW8ZYbUVqxCcxlddcYJqN2sGSjDS8Fg8IkySEzIU5po7of5CGLMyk/t6A2DqmIWuebqxNqURhDnafcuCqLRuRX3XdzaSo7FZgGcYwQljzETJhqj4p8nte4mAlxesCee+6ZqrmW6sCarPyheX3+KCzd5DRVc1JL5bC1ge0w945J0k477TR07ON+aoMgrnTu5jDLjevWEed4pGGtWLGi2nDDDedPVTZhFHGnn356qkvph6qwl59n/LJs8IMt6KOomcW2anTGwjpYQ26//faXsJmOWnIEpkEc65DCcES9FZEBxjnVcycxyc2MOIE9Yh09NKUKA03E6SGs+GaOHoQKRY5TeQrL5CUVlVgsr2PywueWn5eDK2m77bZL51JTw0omlgjiLGv8pjoR2Bv3UUechqbsL5uqJYr/zx5rDPdbx8XMiNP644dYEghZECY3jDhZnLllxbhnrEJ8OY5RwfmarxRlcv2fYeYuAUx5aOAoTHtyEtXyloJlIY5QU1FLMv+cIE5IQa7KGKWbwMlaqtJSdtlll6mEpQdxHrYxuE6irDGpI06wEy1hgmZ8M74qUDdp4sqyEWe2CE2qMjdCUyWjfpSgI2NeU6ylIp6xP+qkmMYYZzdkM0sEUqtmlvZjcG2F58adqMyMOHUn44cQYws0EWcGmH9uUd0G7JFRE7oUE5dTTz11cOZkmAZxeps4U5MovS2qtFvSGEbGreIwM+JKo/HOO++cPm8iThh6/nlT7eM6KPleRnaVTtpJEMRZhlhz1Uns1kzqiNO4jOM8IiZguTbJje1tMTPiPPT4IUR8PzQRZwzMP7fdy7gwgxWt7PvGk7oq5OOAJWZYlNkwGTU5mQZmRlzpETjiiCPS503EmUjknzNLRXlfMDYYBy0XDj/88KHrNtdRblge3VIhYizux28S01InuZpvIs6azbJEEXBLFypUAz366KMHZ7TDTIiju0O9hFxwwQXpWBNxpu82y8uPxd7izGG5l5zoCXIMLKRdY9j0fykQTuF/seQ0TSCaxjj7FYisFpHmnk2mzCydy4hg0mKWPA5mQhyS4kcQNxzT8ibioOyp1jwQmyw0iZmruE3rxWnBuOba+b4AdWgizm9W3p9bieo16UJcrFWZ7vTaOrvrMMyEuDKKOB+rRhEXeXTWTPvuu28KJVejv8nXVorFuX1rqKNJ10mgAUZoxKjC3aNmlQF7xVkGUPVAFQvbsG496aST0mdtMBPiSp9YbhMcRZwCZ9RGPtMywbChhP0I6rwLTcImaLePcddyzGYRWMuUxs9WIjetuef4n03EIcc95Q3KLJN5bxxVPxPikGPrlUiwz6uijyJuFPw43geTHWqsbU9klbFlTJsgJP8jdhIh0TtKRHQaY0F+H02q2njHJLfU8XgmxAVsJFSWi18qcSVM/83IeN1L63+djNp7FERFxy7EVFjTkkJsTH79MrGlBNur82LsnhQzJa4OdcRx40wDap1Qy8PSvHgZbA/aBpYhcvdGhTiwymighOF6lOnKEGA5w/DO1URzjBNGEZgL4oapoklh/NCiLRXy/yPWYx7AvMV8ZgLmviYprrPsxIlcZqfLZRwXyzigspjebJOmEtG8xVi6v0m94MtO3KpC7sxdHbDGELe6oSeuo+iJ6yh64jqKnriOoieuo+iJ6yh64jqKnriOoieuo+iJ6yh64jqKuSROzP+2226b4vG5+k888cTkw5KqFFDlNUQiv9iUeB+OTG4cjstTTjklBaKG+CwHN9Bmm222kGe3VO/0cmAuiRPoI6pLHKVkECm3PNdCIMJ3JdFCyWAi5C1ekwjp22GHHVJElVxy7iNOViEVBx98cDoOXD283eJANBSpUCtWrBgcnV/MJXFC4YQiCBY9/vjjUw/kMfY3AkdFR6k6RERixWv1LUGEmKR+AbSIE7on8UKEVRAnNkTwEVJFkknIEOgUMaDzjLkkTnSVh0w9qngA66yzTvoboD49dL1IsKq/CIhKDRIJJVhIiESi4yFKRVG7eq9aXxqHbWOkbZVqdF4xtz1OxQVqTRK+qCjqEFERZDOKOKAqZfGIrNLzgjgVhyK0XS0VBItIE5SqUA6RbTTPmEvi5EkfeOCBSTVGgdC8x4n4lQYcabziHuO15HjHXUO0sIAcEx2qF0F6lbBv2H///VMDkUkkdM/khIjDtGnTPGPuiBNi4EHvuOOOKUVKMRmTDeOVv+Ii9RI1SkL0xvy9eH/nmHj4vs9MOExoFAcwjkH0OhFaJkOuT0Ri98SNCTNIE4/DDjssTSRUQDfehZiwlCjHvxyWB6KjFc0xsVHSPlK+AoiTlBGqVCxoT1yPmaAnrqPoiesoeuI6ip64jqInrqOYe+LaJOAzX+XlhHNEdk7UhhwGdspJylasKswlcR6gbE8Pk/XDBhLe5xUYrMtYV4CZy3pPHlvukpECJeED5Fnvtttu6XUJx9gqWV38ny7swTOXxEl0ZPFnowyR2yaxP8D/xsqPLGYrOdhMWHLaAjZZUtFARVZ1LVV08JrElpsW+6rZsapoDBbzSl/MO+aWOD1N8n2IwqVBXFj+zzzzzESOjSNYVGSPrr322snCLydbei8fnoo+7JORI+c9cxgHq7IeiOIlOO6445JhW0bqvGNuidPL9JYQlv68x3HFMGExV3norPkqGiBDaSi2SbUhkSyZnoM0nK8BvY7biGFZHjeHalc2v51b4hQsUxckRMhBTpzxjiGZQZhtkSGZW2f33XcfnHGxW8c46VqIVWvEeKi4p3EUqVw+xjeuIcZt17ERhV4+z5hb4nispRiHKHKWE8fTbbJhXDr55JPTZ2agYkcCiEMmZyqnrLGQ10FohMrjSOOBUFA7L9bGldQbmScA4iTgK0Mf4mHnxFF9xjjEcYCalPCj5cQptWi80ju5czhVqcaygg91y1/nGsRY2RM3ARSTMWGg3kJUJ9hnn33ScSrOuAfCELiAnPO+971v0XadelwUgrG1mdqQdVBQgDsn/pceGkXj5hVzSVyP0eiJ6yh64jqKnriOoieuo+iJ6yh64jqKnriOYiziFAzLazeqQi5ucVwojG0RPU9Q0U78ZR1ETbNttt1ECTyXvILstNGKODlqDLT2GbXDYRSFVrYvvMqsGirUlcKAW4KRV4g4nHDCCdXKlSvTayas2HDd5xylhBWjbZ3JcaDxcAER0c+8CfGeBJjXuIG4gDhd+fXYQCWnAN+g+2TztK0YI7Xj4egNsMg4novrTYJWxNn7RYi2Wv7ANcK7jLio/c/qzjjLLqhKqv1Kvc6jjP0w1ndVVT0kpXnF8sfNS8ZglwR2Rm4WDcJrjlQ2zGmCu4efzv8ohZsHJJ3w9/EccO5y3toMQ3FQDljQG907z4T9x+225XlpiDn4EGkb3yV2CCnPaYuRxPFPSSpkvN1iiy1SsuEw4jxo5/KlSaLwOh6AFqy3Eq1RLptkQtfzGZJL4ni0AxylbI/TBA8Bt5D7zMX/jS1lwN43vOZ6nMbDycuVFMQxfguP97kazXITbBWjYYZNFVRSzw3nhNtpEowkLmLvN9poo9Q7ZIgOI4532bnK1dvz1Gt7DgBPNHVEXXgAfrj3IfYlaCJOjhvVO23wFLhXvd69uudyBxHaQUxLEFf2ODEqeqKtYahVPW/LLbdMewU5xkNhA/th8tznPjddZxy0UpXGGL0IIazvw4jz0Fng3YxQA6/tKAyqwEqb8l4LDqelVhpoIs71PZhpw0N1P9SddC27KJK8mqzedOyxxy4Qx1dIawRxtItGZYhwj455NnqeHu3aNBe1KF/d61zy/9UWI4nTEjfZZJOkj411JiN+hNTbnDik2kFfrIcWalM7r6VHgbRdYQVaIpWLNCJ7JlAS571wBJMXatXOGNPGkUcemZIe7XljPPaQScAY52FraI7z/1F/JiRBHJio7LHHHkkzIdL9U685NAiNIH67mtExbxgXI4mjSqTcSk1CXABJ9DjixDRKiaI+gFPSzlQ2WQhVGUCccU3AjpllTpxZmHr/wLvtgZLNN998JqEEGp+NAY2xslvl2cUmRzanMHPWI43vJls0hgR//ruIDgu0Ic6YKnxQD+NzdC2xM5OglaoEzsqYwgM1aPbFUWmAzVuOCt9+9IoVK1JYXA7633FFrqUFUy+rCu5RLCVYcyHDfYWA3yn6CzRgKltjRoxxL2DyJIkyvisdOVf1ORQHsKTQA0tvfFu0Jq7HfKEnrqPoiesoeuI6ip64jqInrqPoiesoeuI6iar6HxEwx6jL+TZIAAAAAElFTkSuQmCC + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +14 + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +48 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/x86/Debug/net461/print_layout5.CLF b/bin/x86/Debug/net461/print_layout5.CLF new file mode 100644 index 0000000..2f83514 --- /dev/null +++ b/bin/x86/Debug/net461/print_layout5.CLF @@ -0,0 +1,7480 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>68.749330749511714 +<_height>40.04733462524414 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +true + + + +iVBORw0KGgoAAAANSUhEUgAAAG4AAADICAYAAAAJHtQIAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAACJISURBVHhe7d0HlCxFFQZgzAkDZgwIIuaAGAAVAyIoipgVA/GBWcScAUUxgoigBEHFLKCoCIpPERFQgigq5ow559yer5i71hY9PT2zM/um3+v/nHt2Zrqnt6f/qltVN9VaVY9Ooieuo+iJ6yh64jqKnriOoieuo+iJ6yh64jqKnriOoieuo5gKcZ/73Oeqddddt/rNb34z+GQxfL7++utXf/7zn6tXvepV1S677FL94Ac/qB74wAcukn/84x+Db1TVBz/4weq2t73t4F1VnX766dVpp522IF/96lcHR6rq17/+dXWXu9yl+u1vfzv4pKq23HLL6l3vetfg3f/x7ne/O91DiP8DT33qU6vHPe5x1Z/+9Kf0fhg23njj6vDDDx+8uyT++Mc/Vs94xjPSb3XP17rWtdJn/s/b3va26r///e/gzKVhIuL8+Lvd7W4L4gFf7nKXW/QZ+eQnP5lu1ANE7AknnFA95jGPqbbYYovqpJNOqi51qUtVr3nNa6rnPe951VprrVX97W9/SyT47u1ud7tqnXXWSa8POOCA6hGPeER1jWtco7rjHe9Y3frWt6623XbbdC/f+ta30vcf9ahHVa997WsTqRqF63lwGg35+9//ns6/z33uU22//fbpOhrQcccdlz6/6KKLqnvc4x7V6173uvQePPD895ArXvGK1a1udatFnz396U8ffONibLXVVtWBBx5YvfGNb0yvkXjLW96yestb3jI4Y+mYiDg/Dlla3jC58Y1vnAj+z3/+Uz360Y+urnrVq1Y77rhjdfvb3z71vsMOOywRB9/5zncWiPvXv/5VnXzyyYmEq1zlKtVHP/rRdPzf//53tcEGGyQyHAviHvawh1WXucxlqk996lPVta997eqcc86pnvjEJ6br5XLkkUem8xF3/etfv7r61a9erbfeetUb3vCG1BCI+4rXn/nMZxLZ5e+6znWuk3pn/tnHPvaxdG1A5HWve910jatd7Wrpnm50oxule7j5zW9e3fnOdx6cuTRMTNwDHvCA6jnPeU71yEc+8hLih1EpiAO9yA846KCDqm222SYRecEFF6Qf43zX8hpx8OAHP7i6xS1ukQi5053ulHouwq585StXv/rVrxYR94tf/CI1hpvc5CbVk5/85OrUU0+trnCFK6Se99Of/jTJJptssog4xN773veu9t577+rrX/969YEPfCAJrUEDeO178Lvf/a662c1uljQGcU/XvOY1F97f7373S+cFfv7zn6fvfvjDH073e+6556aGEtf82c9+NjhzaZiIOL3CeHTooYemH//Sl740PfinPe1p6f0rX/nK1Fr1EkCcH+vYve51rwXi9DikvOMd71ggTg/13Xe+851JLe2zzz5JEPiCF7wg9SwqzfgUoJY0FJ/tvvvu1fHHH19997vfHRytqs0222wRcRqFh+k773//+9PngHAPugSCXvGKV6Te77Xf6/X973//pHIDe+yxR3WlK10pyeUvf/nq0pe+dHrtr/dxbKeddhp8Y3IsaXLykpe8JI1biPTgv/nNb1b//Oc/U6vLgTgPhZq4wQ1usIg4yFUlVaelUivOQ8pb3/rW1Eu0fg9qo402qn784x+n71K/1B7VbOy54Q1vWH35y19Oava8885L55TE6W3GHGOdz/fff//qmc98ZupNj33sY9Prv/71r+l8QJZx2TjrutSh1ze96U0XEfe9732v+vznP5+GEaqSljj77LOT6Jn+56c//elFjWpSTEycnqHlfuhDH1ogzphBn6+99tqDsy4G4qiyb3/726lX5qqSGnIsiNPbPvvZz1YXXnjhglzveter3vzmNy/67Ec/+lG6toezcuXKpC5NBvQM6ugJT3hCdc973jP1+jvc4Q4LxFHfb3rTm9KE4ilPeUpSy3rQihUrEnEPechD0uu//OUv6XwN0bi29dZbp55irL7vfe+bXvv9OXFIoxn0qjg/xHBgjHatI444YvCNyTExccYGD/uoo45aIO6ss85KJOXLAtN2N62lauF+rF7xwhe+MLVK52uRQZz3m2+++YIg1jHqJv/8Wc96Vrr+e97znvTw73rXu6Yxjvozk/3a175WHX300enB+75ZLHjoT3rSk6rtttsu9T7fDdSpSjNC41UIFfviF7944b1JTGCvvfaq9txzz9TzqGCTE8OD82ga4xwNoocvFRMRpxVbd3mAfohJh4dDVZb4/e9/n34c9XTIIYekh6WXaoXx0HJVmYOqQ5z1VZCNiBwvf/nLU49BnEakRf/yl78cHK3Sa9f+xje+ke6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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +14 + + + + + + + + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + +FieldText + + + + + + +再発行 +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +FieldText + + + + + + +駐車場名 +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +FieldText + + + + + + +自治体名 +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +FieldText + + + + + + +利用者ID +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +FieldText + + + + + + +定期番号 +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY -(2) 終了日 +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +FieldText + + + + + + +text +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + + +Text + +再発行 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + + +Text + +駐車場名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + + +Text + +自治体名 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + + +Text + +利用者ID + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + + +Text + +定期番号 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + + +Text + +まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.869984722137451 +<_y>16.435915470123291 +<_width>7.9375057220458984 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>8.3661255836486816 +<_width>38.893751621246338 +<_height>7.1437497138977051 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.34082708358764657 +<_y>17.319248676300063 +<_width>38.364588260650635 +<_height>4.497917652130127 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.605420207977295 +<_y>23.579672336578369 +<_width>17.197914600372314 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>18.729367351531977 +<_y>23.579672336578369 +<_width>5.5562500953674316 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>1.8439583778381352 +<_y>32.159882640838589 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>24.730424404144308 +<_y>41.155715084075894 +<_width>7.9374947547912633 +<_height>8.7312493324279821 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>26.543953227996838 +<_y>22.389050006866455 +<_width>11.906250476837158 +<_height>10.0541672706604 + + +100 +false +true +true +true + +再発行 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>54.535913944244385 +<_width>38.10000467300415 +<_height>4.497917652130127 + + +100 +false +true +true +true + +駐車場名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.48899766349792495 +<_y>59.827582836151123 +<_width>38.10000467300415 +<_height>3.968752384185791 + + +100 +false +true +true +true + +自治体名 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>0.8077487304210893 +<_y>66.039043080806778 +<_width>17.462502539157867 +<_height>3.9687505960464478 + + +100 +false +true +true +true + +利用者ID + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>20.252541173934976 +<_y>66.039043080806778 +<_width>18 +<_height>3.97 + + +100 +false +true +true +true + +定期番号 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>31.003340816497804 +<_y>42.143214702606159 +<_width>5.8208241462707555 +<_height>9.52499628067017 + + +100 +false +true +true +true + +まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>-0.056042575836181663 +<_y>3.0744595527648926 +<_width>38.893751621246338 +<_height>5.2916655540466309 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +48 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +22 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +9 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Vertical +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +0 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/bin/x86/Debug/net461/shinki_btn.png b/bin/x86/Debug/net461/shinki_btn.png new file mode 100644 index 0000000..a78e3c7 Binary files /dev/null and b/bin/x86/Debug/net461/shinki_btn.png differ diff --git a/bin/x86/Debug/net461/stdole.dll b/bin/x86/Debug/net461/stdole.dll new file mode 100644 index 0000000..9673c81 Binary files /dev/null and b/bin/x86/Debug/net461/stdole.dll differ diff --git a/bin/x86/Debug/net461/syuuryou_btn.png b/bin/x86/Debug/net461/syuuryou_btn.png new file mode 100644 index 0000000..b09b122 Binary files /dev/null and b/bin/x86/Debug/net461/syuuryou_btn.png differ diff --git a/bin/x86/Debug/net461/名称未設定.CLF b/bin/x86/Debug/net461/名称未設定.CLF new file mode 100644 index 0000000..0f2fce0 --- /dev/null +++ b/bin/x86/Debug/net461/名称未設定.CLF @@ -0,0 +1,3791 @@ + + + +CITIZEN Layout Utilities Document + +Millimeter + + +Citizen CL-E331J +Citizen CL-E331J + +false + +300 +300 + +<_x>2.54 +<_y>0 +<_width>100.33 +<_height>152.4 + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + + + + + +1 +CITIZEN + +USER +Inch +2.85 +1.57 + + +1 + + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Frame1 +false +false +true + + + +Millimeter +72.39 +39.878 +false + + + +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 + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +7 + + + + + + + + + +0 + + + +定期種別 +Millimeter + +<_x>49.159570217132568 +<_y>15.906748294830322 +<_width>38.10000467300415 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +FieldText + + + + + + +ゾーン、車室名 +Millimeter + +<_x>38.973123073577881 +<_y>14.716125965118408 +<_width>38.893751621246338 +<_height>9.789583683013916 + + +100 +false +true +true +true + +FieldText + + + + + + +場所種別 +Millimeter + +<_x>33.284575939178467 +<_y>16.171333789825439 +<_width>38.364588260650635 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +開始日 +Millimeter + +<_x>35.665834903717041 +<_y>8.4984221458435059 +<_width>21.960413455963135 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 開始日 +Millimeter + +<_x>40.296037197113037 +<_y>25.828632831573486 +<_width>11.906250476837158 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +FieldText + + + + + + +終了月 +Millimeter + +<_x>22.833540439605713 +<_y>4.661963939666748 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + +FieldText + + + + + + +COPY - 終了日 +Millimeter + +<_x>20.849170207977291 +<_y>29.929672718048096 +<_width>13.758327960968021 +<_height>5.5562500953674352 + + +100 +false +true +true +true + +FieldText + + + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>49.159570217132568 +<_y>15.906748294830322 +<_width>38.10000467300415 +<_height>7.9375004768371582 + + +100 +false +true +true +true + + +Text + +定期契約駐車券 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>38.973123073577881 +<_y>14.716125965118408 +<_width>38.893751621246338 +<_height>9.789583683013916 + + +100 +false +true +true +true + + +Text + +テスト印刷 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>33.284575939178467 +<_y>16.171333789825439 +<_width>38.364588260650635 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +1階 + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>35.665834903717041 +<_y>8.4984221458435059 +<_width>21.960413455963135 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + +2003 + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>40.296037197113037 +<_y>25.828632831573486 +<_width>11.906250476837158 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>22.833540439605713 +<_y>4.661963939666748 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + +Text + + + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + +Millimeter + +<_x>20.849170207977291 +<_y>29.929672718048096 +<_width>13.758327960968021 +<_height>5.5562500953674352 + + +100 +false +true +true +true + + +Text + +月まで + + + + + + + +Millimeter +0.01 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>49.159570217132568 +<_y>15.906748294830322 +<_width>38.10000467300415 +<_height>7.9375004768371582 + + +100 +false +true +true +true + +定期契約駐車券 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>38.973123073577881 +<_y>14.716125965118408 +<_width>38.893751621246338 +<_height>9.789583683013916 + + +100 +false +true +true +true + +テスト印刷 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>33.284575939178467 +<_y>16.171333789825439 +<_width>38.364588260650635 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +1階 + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>35.665834903717041 +<_y>8.4984221458435059 +<_width>21.960413455963135 +<_height>6.3500008583068848 + + +100 +false +true +true +true + +2003 + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>40.296037197113037 +<_y>25.828632831573486 +<_width>11.906250476837158 +<_height>6.3500008583068848 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>22.833540439605713 +<_y>4.661963939666748 +<_width>21.960413455963135 +<_height>18.256250858306885 + + +100 +false +true +true +true + + + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + + + + + +Millimeter + +<_x>20.849170207977291 +<_y>29.929672718048096 +<_width>13.758327960968021 +<_height>5.5562500953674352 + + +100 +false +true +true +true + +月まで + + + + +false +false +FontA +false +false +false +1 +1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>127 +<_g>255 +<_b>212 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +Citizen.LayoutUtilities.Common.Parts.FieldText +4 +Citizen.LayoutUtilities.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + +Citizen.LayoutUtilities.Common.Parts.FieldImage +4 + + + +Citizen.LayoutUtilities.Common.Parts.FieldBarcode +4 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +14 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Center +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +15.75 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Right +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +48 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +0 +0 +90 +None + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Horizontal +Left +Top +Wrap +Millimeter +0 +0 + + + + + +Yu Gothic +Point +12 + +100 +100 + + + + + +None +Millimeter +0 +0 +0 + + + + +<_Major>1 +<_Minor>1 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + +Millimeter +0.25 +Solid +Flat +Flat +Flat +Miter +10 + + + + + + +<_a>255 +<_r>0 +<_g>0 +<_b>0 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>255 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + + + +<_a>0 +<_r>255 +<_g>255 +<_b>255 + + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + +<_Major>1 +<_Minor>0 +<_Build>-1 +<_Revision>-1 + + + diff --git a/obj/Debug/net461/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs b/obj/Debug/net461/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs new file mode 100644 index 0000000..1fa624e --- /dev/null +++ b/obj/Debug/net461/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.6.1", FrameworkDisplayName = "")] diff --git a/obj/Debug/net461/SoM_PrnC.DCBCDB39.Up2Date b/obj/Debug/net461/SoM_PrnC.DCBCDB39.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net461/SoM_PrnControl.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net461/SoM_PrnControl.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..436e90f --- /dev/null +++ b/obj/Debug/net461/SoM_PrnControl.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,14 @@ +is_global = true +build_property.ApplicationManifest = app.manifest +build_property.StartupObject = +build_property.ApplicationDefaultFont = +build_property.ApplicationHighDpiMode = +build_property.ApplicationUseCompatibleTextRendering = +build_property.ApplicationVisualStyles = +build_property.RootNamespace = +build_property.ProjectDir = C:\SoM_PrnControl-New\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.CsWinRTUseWindowsUIXamlProjections = false +build_property.EffectiveAnalysisLevelStyle = +build_property.EnableCodeStyleSeverity = diff --git a/obj/Debug/net461/SoM_PrnControl.csproj.BuildWithSkipAnalyzers b/obj/Debug/net461/SoM_PrnControl.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net461/SoM_PrnControl.csproj.FileListAbsolute.txt b/obj/Debug/net461/SoM_PrnControl.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..e56c44d --- /dev/null +++ b/obj/Debug/net461/SoM_PrnControl.csproj.FileListAbsolute.txt @@ -0,0 +1,134 @@ +C:\SoM_PrnControl-New\bin\Debug\net461\SoM_PrnControl.exe.config +C:\SoM_PrnControl-New\bin\Debug\net461\SoM_PrnControl.exe +C:\SoM_PrnControl-New\bin\Debug\net461\SoM_PrnControl.pdb +C:\SoM_PrnControl-New\bin\Debug\net461\Microsoft.Win32.Primitives.dll +C:\SoM_PrnControl-New\bin\Debug\net461\netstandard.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.AppContext.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Collections.Concurrent.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Collections.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Collections.NonGeneric.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Collections.Specialized.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.ComponentModel.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.ComponentModel.EventBasedAsync.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.ComponentModel.Primitives.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.ComponentModel.TypeConverter.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Console.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Data.Common.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Diagnostics.Contracts.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Diagnostics.Debug.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Diagnostics.FileVersionInfo.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Diagnostics.Process.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Diagnostics.StackTrace.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Diagnostics.TextWriterTraceListener.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Diagnostics.Tools.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Diagnostics.TraceSource.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Diagnostics.Tracing.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Drawing.Primitives.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Dynamic.Runtime.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Globalization.Calendars.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Globalization.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Globalization.Extensions.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.IO.Compression.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.IO.Compression.ZipFile.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.IO.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.IO.FileSystem.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.IO.FileSystem.DriveInfo.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.IO.FileSystem.Primitives.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.IO.FileSystem.Watcher.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.IO.IsolatedStorage.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.IO.MemoryMappedFiles.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.IO.Pipes.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.IO.UnmanagedMemoryStream.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Linq.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Linq.Expressions.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Linq.Parallel.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Linq.Queryable.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Net.Http.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Net.NameResolution.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Net.NetworkInformation.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Net.Ping.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Net.Primitives.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Net.Requests.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Net.Security.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Net.Sockets.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Net.WebHeaderCollection.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Net.WebSockets.Client.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Net.WebSockets.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.ObjectModel.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Reflection.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Reflection.Extensions.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Reflection.Primitives.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Resources.Reader.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Resources.ResourceManager.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Resources.Writer.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Runtime.CompilerServices.VisualC.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Runtime.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Runtime.Extensions.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Runtime.Handles.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Runtime.InteropServices.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Runtime.InteropServices.RuntimeInformation.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Runtime.Numerics.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Runtime.Serialization.Formatters.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Runtime.Serialization.Json.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Runtime.Serialization.Primitives.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Runtime.Serialization.Xml.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Security.Claims.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Security.Cryptography.Algorithms.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Security.Cryptography.Csp.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Security.Cryptography.Encoding.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Security.Cryptography.Primitives.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Security.Cryptography.X509Certificates.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Security.Principal.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Security.SecureString.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Text.Encoding.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Text.Encoding.Extensions.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Text.RegularExpressions.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Threading.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Threading.Overlapped.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Threading.Tasks.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Threading.Tasks.Parallel.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Threading.Thread.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Threading.ThreadPool.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Threading.Timer.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.ValueTuple.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Xml.ReaderWriter.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Xml.XDocument.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Xml.XmlDocument.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Xml.XmlSerializer.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Xml.XPath.dll +C:\SoM_PrnControl-New\bin\Debug\net461\System.Xml.XPath.XDocument.dll +C:\SoM_PrnControl-New\bin\Debug\net461\Citizen.LayoutUtilities.Printing.dll +C:\SoM_PrnControl-New\bin\Debug\net461\CSJLabelLib.dll +C:\SoM_PrnControl-New\bin\Debug\net461\MLComponent.dll +C:\SoM_PrnControl-New\bin\Debug\net461\MySql.Data.dll +C:\SoM_PrnControl-New\bin\Debug\net461\PCSC.dll +C:\SoM_PrnControl-New\bin\Debug\net461\PCSC.Iso7816.dll +C:\SoM_PrnControl-New\bin\Debug\net461\Google.Protobuf.dll +C:\SoM_PrnControl-New\bin\Debug\net461\GrapeSystems.Core.Drawing.Fx20.dll +C:\SoM_PrnControl-New\bin\Debug\net461\Citizen.LayoutUtilities.Common.dll +C:\SoM_PrnControl-New\bin\Debug\net461\GrapeSystems.Core.Common.dll +C:\SoM_PrnControl-New\bin\Debug\net461\GrapeSystems.Core.Parts.dll +C:\SoM_PrnControl-New\bin\Debug\net461\GrapeSystems.Library.Image.dll +C:\SoM_PrnControl-New\bin\Debug\net461\GrapeSystems.Core.Parts.Frames.dll +C:\SoM_PrnControl-New\bin\Debug\net461\GrapeSystems.Library.BarcodeAd.dll +C:\SoM_PrnControl-New\bin\Debug\net461\Interop.QRMAKERADLib.dll +C:\SoM_PrnControl-New\bin\Debug\net461\GrapeSystems.Library.Controls.dll +C:\SoM_PrnControl-New\bin\Debug\net461\AxInterop.QRMAKERADLib.dll +C:\SoM_PrnControl-New\bin\Debug\net461\stdole.dll +C:\SoM_PrnControl-New\bin\Debug\net461\MySql.Data.xml +C:\SoM_PrnControl-New\bin\Debug\net461\PCSC.pdb +C:\SoM_PrnControl-New\bin\Debug\net461\PCSC.xml +C:\SoM_PrnControl-New\bin\Debug\net461\PCSC.Iso7816.pdb +C:\SoM_PrnControl-New\bin\Debug\net461\PCSC.Iso7816.xml +C:\SoM_PrnControl-New\bin\Debug\net461\Google.Protobuf.xml +C:\SoM_PrnControl-New\bin\Debug\net461\MLComponent.XmlSerializers.dll +C:\SoM_PrnControl-New\obj\Debug\net461\SoM_PrnControl.csproj.AssemblyReference.cache +C:\SoM_PrnControl-New\obj\Debug\net461\qk30ic.Form1.resources +C:\SoM_PrnControl-New\obj\Debug\net461\qk30ic.Form2.resources +C:\SoM_PrnControl-New\obj\Debug\net461\SoM_PrnControl.csproj.GenerateResource.cache +C:\SoM_PrnControl-New\obj\Debug\net461\SoM_PrnControl.GeneratedMSBuildEditorConfig.editorconfig +C:\SoM_PrnControl-New\obj\Debug\net461\SoM_PrnControl.csproj.CoreCompileInputs.cache +C:\SoM_PrnControl-New\obj\Debug\net461\SoM_PrnC.DCBCDB39.Up2Date +C:\SoM_PrnControl-New\obj\Debug\net461\SoM_PrnControl.exe +C:\SoM_PrnControl-New\obj\Debug\net461\SoM_PrnControl.pdb +C:\SoM_PrnControl-New\obj\Debug\net461\SoM_PrnControl.exe.config diff --git a/obj/Debug/net461/SoM_PrnControl.exe b/obj/Debug/net461/SoM_PrnControl.exe new file mode 100644 index 0000000..96f4f91 Binary files /dev/null and b/obj/Debug/net461/SoM_PrnControl.exe differ diff --git a/obj/Debug/net461/SoM_PrnControl.exe.config b/obj/Debug/net461/SoM_PrnControl.exe.config new file mode 100644 index 0000000..0cbb707 --- /dev/null +++ b/obj/Debug/net461/SoM_PrnControl.exe.config @@ -0,0 +1,339 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/obj/Debug/net461/SoM_PrnControl.exe.withSupportedRuntime.config b/obj/Debug/net461/SoM_PrnControl.exe.withSupportedRuntime.config new file mode 100644 index 0000000..0cbb707 --- /dev/null +++ b/obj/Debug/net461/SoM_PrnControl.exe.withSupportedRuntime.config @@ -0,0 +1,339 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/obj/Debug/net461/qk30ic.Form1.resources b/obj/Debug/net461/qk30ic.Form1.resources new file mode 100644 index 0000000..e26dd6d Binary files /dev/null and b/obj/Debug/net461/qk30ic.Form1.resources differ diff --git a/obj/Debug/net461/qk30ic.Form2.resources b/obj/Debug/net461/qk30ic.Form2.resources new file mode 100644 index 0000000..e26dd6d Binary files /dev/null and b/obj/Debug/net461/qk30ic.Form2.resources differ diff --git a/obj/SoM_PrnControl.csproj.nuget.dgspec.json b/obj/SoM_PrnControl.csproj.nuget.dgspec.json new file mode 100644 index 0000000..605245d --- /dev/null +++ b/obj/SoM_PrnControl.csproj.nuget.dgspec.json @@ -0,0 +1,70 @@ +{ + "format": 1, + "restore": { + "D:\\spt\\SoM_PrnControl.csproj": {} + }, + "projects": { + "D:\\spt\\SoM_PrnControl.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\spt\\SoM_PrnControl.csproj", + "projectName": "SoM_PrnControl", + "projectPath": "D:\\spt\\SoM_PrnControl.csproj", + "packagesPath": "C:\\Users\\T-bao\\.nuget\\packages\\", + "outputPath": "D:\\spt\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\T-bao\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net461" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net461": { + "targetAlias": "net461", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net461": { + "targetAlias": "net461", + "dependencies": { + "Microsoft.NETFramework.ReferenceAssemblies": { + "suppressParent": "All", + "target": "Package", + "version": "[1.0.3, )", + "autoReferenced": true + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304\\RuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "win-x86": { + "#import": [] + } + } + } + } +} \ No newline at end of file diff --git a/obj/SoM_PrnControl.csproj.nuget.g.props b/obj/SoM_PrnControl.csproj.nuget.g.props new file mode 100644 index 0000000..a38ba2f --- /dev/null +++ b/obj/SoM_PrnControl.csproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\T-bao\.nuget\packages\;D:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.14.1 + + + + + + \ No newline at end of file diff --git a/obj/SoM_PrnControl.csproj.nuget.g.targets b/obj/SoM_PrnControl.csproj.nuget.g.targets new file mode 100644 index 0000000..95f8961 --- /dev/null +++ b/obj/SoM_PrnControl.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/obj/project.assets.json b/obj/project.assets.json new file mode 100644 index 0000000..52efc8b --- /dev/null +++ b/obj/project.assets.json @@ -0,0 +1,445 @@ +{ + "version": 3, + "targets": { + ".NETFramework,Version=v4.6.1": { + "Microsoft.NETFramework.ReferenceAssemblies/1.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETFramework.ReferenceAssemblies.net461": "1.0.3" + } + }, + "Microsoft.NETFramework.ReferenceAssemblies.net461/1.0.3": { + "type": "package", + "build": { + "build/Microsoft.NETFramework.ReferenceAssemblies.net461.targets": {} + } + } + }, + ".NETFramework,Version=v4.6.1/win-x86": { + "Microsoft.NETFramework.ReferenceAssemblies/1.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETFramework.ReferenceAssemblies.net461": "1.0.3" + } + }, + "Microsoft.NETFramework.ReferenceAssemblies.net461/1.0.3": { + "type": "package", + "build": { + "build/Microsoft.NETFramework.ReferenceAssemblies.net461.targets": {} + } + } + } + }, + "libraries": { + "Microsoft.NETFramework.ReferenceAssemblies/1.0.3": { + "sha512": "vUc9Npcs14QsyOD01tnv/m8sQUnGTGOw1BCmKcv77LBJY7OxhJ+zJF7UD/sCL3lYNFuqmQEVlkfS4Quif6FyYg==", + "type": "package", + "path": "microsoft.netframework.referenceassemblies/1.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "microsoft.netframework.referenceassemblies.1.0.3.nupkg.sha512", + "microsoft.netframework.referenceassemblies.nuspec" + ] + }, + "Microsoft.NETFramework.ReferenceAssemblies.net461/1.0.3": { + "sha512": "AmOJZwCqnOCNp6PPcf9joyogScWLtwy0M1WkqfEQ0M9nYwyDD7EX9ZjscKS5iYnyvteX7kzSKFCKt9I9dXA6mA==", + "type": "package", + "path": "microsoft.netframework.referenceassemblies.net461/1.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/.NETFramework/v4.6.1/Accessibility.dll", + "build/.NETFramework/v4.6.1/Accessibility.xml", + "build/.NETFramework/v4.6.1/CustomMarshalers.dll", + "build/.NETFramework/v4.6.1/CustomMarshalers.xml", + "build/.NETFramework/v4.6.1/Facades/System.Collections.Concurrent.dll", + "build/.NETFramework/v4.6.1/Facades/System.Collections.dll", + "build/.NETFramework/v4.6.1/Facades/System.ComponentModel.Annotations.dll", + "build/.NETFramework/v4.6.1/Facades/System.ComponentModel.EventBasedAsync.dll", + "build/.NETFramework/v4.6.1/Facades/System.ComponentModel.dll", + "build/.NETFramework/v4.6.1/Facades/System.Diagnostics.Contracts.dll", + "build/.NETFramework/v4.6.1/Facades/System.Diagnostics.Debug.dll", + "build/.NETFramework/v4.6.1/Facades/System.Diagnostics.Tools.dll", + "build/.NETFramework/v4.6.1/Facades/System.Diagnostics.Tracing.dll", + "build/.NETFramework/v4.6.1/Facades/System.Dynamic.Runtime.dll", + "build/.NETFramework/v4.6.1/Facades/System.Globalization.dll", + "build/.NETFramework/v4.6.1/Facades/System.IO.dll", + "build/.NETFramework/v4.6.1/Facades/System.Linq.Expressions.dll", + "build/.NETFramework/v4.6.1/Facades/System.Linq.Parallel.dll", + "build/.NETFramework/v4.6.1/Facades/System.Linq.Queryable.dll", + "build/.NETFramework/v4.6.1/Facades/System.Linq.dll", + "build/.NETFramework/v4.6.1/Facades/System.Net.NetworkInformation.dll", + "build/.NETFramework/v4.6.1/Facades/System.Net.Primitives.dll", + "build/.NETFramework/v4.6.1/Facades/System.Net.Requests.dll", + "build/.NETFramework/v4.6.1/Facades/System.Net.WebHeaderCollection.dll", + "build/.NETFramework/v4.6.1/Facades/System.ObjectModel.dll", + "build/.NETFramework/v4.6.1/Facades/System.Reflection.Emit.ILGeneration.dll", + "build/.NETFramework/v4.6.1/Facades/System.Reflection.Emit.Lightweight.dll", + "build/.NETFramework/v4.6.1/Facades/System.Reflection.Emit.dll", + "build/.NETFramework/v4.6.1/Facades/System.Reflection.Extensions.dll", + "build/.NETFramework/v4.6.1/Facades/System.Reflection.Primitives.dll", + "build/.NETFramework/v4.6.1/Facades/System.Reflection.dll", + "build/.NETFramework/v4.6.1/Facades/System.Resources.ResourceManager.dll", + "build/.NETFramework/v4.6.1/Facades/System.Runtime.Extensions.dll", + "build/.NETFramework/v4.6.1/Facades/System.Runtime.Handles.dll", + "build/.NETFramework/v4.6.1/Facades/System.Runtime.InteropServices.WindowsRuntime.dll", + "build/.NETFramework/v4.6.1/Facades/System.Runtime.InteropServices.dll", + "build/.NETFramework/v4.6.1/Facades/System.Runtime.Numerics.dll", + "build/.NETFramework/v4.6.1/Facades/System.Runtime.Serialization.Json.dll", + "build/.NETFramework/v4.6.1/Facades/System.Runtime.Serialization.Primitives.dll", + "build/.NETFramework/v4.6.1/Facades/System.Runtime.Serialization.Xml.dll", + "build/.NETFramework/v4.6.1/Facades/System.Runtime.dll", + "build/.NETFramework/v4.6.1/Facades/System.Security.Principal.dll", + "build/.NETFramework/v4.6.1/Facades/System.ServiceModel.Duplex.dll", + "build/.NETFramework/v4.6.1/Facades/System.ServiceModel.Http.dll", + "build/.NETFramework/v4.6.1/Facades/System.ServiceModel.NetTcp.dll", + "build/.NETFramework/v4.6.1/Facades/System.ServiceModel.Primitives.dll", + "build/.NETFramework/v4.6.1/Facades/System.ServiceModel.Security.dll", + "build/.NETFramework/v4.6.1/Facades/System.Text.Encoding.Extensions.dll", + "build/.NETFramework/v4.6.1/Facades/System.Text.Encoding.dll", + "build/.NETFramework/v4.6.1/Facades/System.Text.RegularExpressions.dll", + "build/.NETFramework/v4.6.1/Facades/System.Threading.Tasks.Parallel.dll", + "build/.NETFramework/v4.6.1/Facades/System.Threading.Tasks.dll", + "build/.NETFramework/v4.6.1/Facades/System.Threading.Timer.dll", + "build/.NETFramework/v4.6.1/Facades/System.Threading.dll", + "build/.NETFramework/v4.6.1/Facades/System.Xml.ReaderWriter.dll", + "build/.NETFramework/v4.6.1/Facades/System.Xml.XDocument.dll", + "build/.NETFramework/v4.6.1/Facades/System.Xml.XmlSerializer.dll", + "build/.NETFramework/v4.6.1/ISymWrapper.dll", + "build/.NETFramework/v4.6.1/ISymWrapper.xml", + "build/.NETFramework/v4.6.1/Microsoft.Activities.Build.dll", + "build/.NETFramework/v4.6.1/Microsoft.Activities.Build.xml", + "build/.NETFramework/v4.6.1/Microsoft.Build.Conversion.v4.0.dll", + "build/.NETFramework/v4.6.1/Microsoft.Build.Conversion.v4.0.xml", + "build/.NETFramework/v4.6.1/Microsoft.Build.Engine.dll", + "build/.NETFramework/v4.6.1/Microsoft.Build.Engine.xml", + "build/.NETFramework/v4.6.1/Microsoft.Build.Framework.dll", + "build/.NETFramework/v4.6.1/Microsoft.Build.Framework.xml", + "build/.NETFramework/v4.6.1/Microsoft.Build.Tasks.v4.0.dll", + "build/.NETFramework/v4.6.1/Microsoft.Build.Tasks.v4.0.xml", + "build/.NETFramework/v4.6.1/Microsoft.Build.Utilities.v4.0.dll", + "build/.NETFramework/v4.6.1/Microsoft.Build.Utilities.v4.0.xml", + "build/.NETFramework/v4.6.1/Microsoft.Build.dll", + "build/.NETFramework/v4.6.1/Microsoft.Build.xml", + "build/.NETFramework/v4.6.1/Microsoft.CSharp.dll", + "build/.NETFramework/v4.6.1/Microsoft.CSharp.xml", + "build/.NETFramework/v4.6.1/Microsoft.JScript.dll", + "build/.NETFramework/v4.6.1/Microsoft.JScript.xml", + "build/.NETFramework/v4.6.1/Microsoft.VisualBasic.Compatibility.Data.dll", + "build/.NETFramework/v4.6.1/Microsoft.VisualBasic.Compatibility.Data.xml", + "build/.NETFramework/v4.6.1/Microsoft.VisualBasic.Compatibility.dll", + "build/.NETFramework/v4.6.1/Microsoft.VisualBasic.Compatibility.xml", + "build/.NETFramework/v4.6.1/Microsoft.VisualBasic.dll", + "build/.NETFramework/v4.6.1/Microsoft.VisualBasic.xml", + "build/.NETFramework/v4.6.1/Microsoft.VisualC.STLCLR.dll", + "build/.NETFramework/v4.6.1/Microsoft.VisualC.STLCLR.xml", + "build/.NETFramework/v4.6.1/Microsoft.VisualC.dll", + "build/.NETFramework/v4.6.1/Microsoft.VisualC.xml", + "build/.NETFramework/v4.6.1/PermissionSets/FullTrust.xml", + "build/.NETFramework/v4.6.1/PermissionSets/Internet.xml", + "build/.NETFramework/v4.6.1/PermissionSets/LocalIntranet.xml", + "build/.NETFramework/v4.6.1/PresentationBuildTasks.dll", + "build/.NETFramework/v4.6.1/PresentationBuildTasks.xml", + "build/.NETFramework/v4.6.1/PresentationCore.dll", + "build/.NETFramework/v4.6.1/PresentationCore.xml", + "build/.NETFramework/v4.6.1/PresentationFramework.Aero.dll", + "build/.NETFramework/v4.6.1/PresentationFramework.Aero.xml", + "build/.NETFramework/v4.6.1/PresentationFramework.Aero2.dll", + "build/.NETFramework/v4.6.1/PresentationFramework.Aero2.xml", + "build/.NETFramework/v4.6.1/PresentationFramework.AeroLite.dll", + "build/.NETFramework/v4.6.1/PresentationFramework.AeroLite.xml", + "build/.NETFramework/v4.6.1/PresentationFramework.Classic.dll", + "build/.NETFramework/v4.6.1/PresentationFramework.Classic.xml", + "build/.NETFramework/v4.6.1/PresentationFramework.Luna.dll", + "build/.NETFramework/v4.6.1/PresentationFramework.Luna.xml", + "build/.NETFramework/v4.6.1/PresentationFramework.Royale.dll", + "build/.NETFramework/v4.6.1/PresentationFramework.Royale.xml", + "build/.NETFramework/v4.6.1/PresentationFramework.dll", + "build/.NETFramework/v4.6.1/PresentationFramework.xml", + "build/.NETFramework/v4.6.1/ReachFramework.dll", + "build/.NETFramework/v4.6.1/ReachFramework.xml", + "build/.NETFramework/v4.6.1/RedistList/FrameworkList.xml", + "build/.NETFramework/v4.6.1/System.Activities.Core.Presentation.dll", + "build/.NETFramework/v4.6.1/System.Activities.Core.Presentation.xml", + "build/.NETFramework/v4.6.1/System.Activities.DurableInstancing.dll", + "build/.NETFramework/v4.6.1/System.Activities.DurableInstancing.xml", + "build/.NETFramework/v4.6.1/System.Activities.Presentation.dll", + "build/.NETFramework/v4.6.1/System.Activities.Presentation.xml", + "build/.NETFramework/v4.6.1/System.Activities.dll", + "build/.NETFramework/v4.6.1/System.Activities.xml", + "build/.NETFramework/v4.6.1/System.AddIn.Contract.dll", + "build/.NETFramework/v4.6.1/System.AddIn.Contract.xml", + "build/.NETFramework/v4.6.1/System.AddIn.dll", + "build/.NETFramework/v4.6.1/System.AddIn.xml", + "build/.NETFramework/v4.6.1/System.ComponentModel.Composition.Registration.dll", + "build/.NETFramework/v4.6.1/System.ComponentModel.Composition.Registration.xml", + "build/.NETFramework/v4.6.1/System.ComponentModel.Composition.dll", + "build/.NETFramework/v4.6.1/System.ComponentModel.Composition.xml", + "build/.NETFramework/v4.6.1/System.ComponentModel.DataAnnotations.dll", + "build/.NETFramework/v4.6.1/System.ComponentModel.DataAnnotations.xml", + "build/.NETFramework/v4.6.1/System.Configuration.Install.dll", + "build/.NETFramework/v4.6.1/System.Configuration.Install.xml", + "build/.NETFramework/v4.6.1/System.Configuration.dll", + "build/.NETFramework/v4.6.1/System.Configuration.xml", + "build/.NETFramework/v4.6.1/System.Core.dll", + "build/.NETFramework/v4.6.1/System.Core.xml", + "build/.NETFramework/v4.6.1/System.Data.DataSetExtensions.dll", + "build/.NETFramework/v4.6.1/System.Data.DataSetExtensions.xml", + "build/.NETFramework/v4.6.1/System.Data.Entity.Design.dll", + "build/.NETFramework/v4.6.1/System.Data.Entity.Design.xml", + "build/.NETFramework/v4.6.1/System.Data.Entity.dll", + "build/.NETFramework/v4.6.1/System.Data.Entity.xml", + "build/.NETFramework/v4.6.1/System.Data.Linq.dll", + "build/.NETFramework/v4.6.1/System.Data.Linq.xml", + "build/.NETFramework/v4.6.1/System.Data.OracleClient.dll", + "build/.NETFramework/v4.6.1/System.Data.OracleClient.xml", + "build/.NETFramework/v4.6.1/System.Data.Services.Client.dll", + "build/.NETFramework/v4.6.1/System.Data.Services.Client.xml", + "build/.NETFramework/v4.6.1/System.Data.Services.Design.dll", + "build/.NETFramework/v4.6.1/System.Data.Services.Design.xml", + "build/.NETFramework/v4.6.1/System.Data.Services.dll", + "build/.NETFramework/v4.6.1/System.Data.Services.xml", + "build/.NETFramework/v4.6.1/System.Data.SqlXml.dll", + "build/.NETFramework/v4.6.1/System.Data.SqlXml.xml", + "build/.NETFramework/v4.6.1/System.Data.dll", + "build/.NETFramework/v4.6.1/System.Data.xml", + "build/.NETFramework/v4.6.1/System.Deployment.dll", + "build/.NETFramework/v4.6.1/System.Deployment.xml", + "build/.NETFramework/v4.6.1/System.Design.dll", + "build/.NETFramework/v4.6.1/System.Design.xml", + "build/.NETFramework/v4.6.1/System.Device.dll", + "build/.NETFramework/v4.6.1/System.Device.xml", + "build/.NETFramework/v4.6.1/System.DirectoryServices.AccountManagement.dll", + "build/.NETFramework/v4.6.1/System.DirectoryServices.AccountManagement.xml", + "build/.NETFramework/v4.6.1/System.DirectoryServices.Protocols.dll", + "build/.NETFramework/v4.6.1/System.DirectoryServices.Protocols.xml", + "build/.NETFramework/v4.6.1/System.DirectoryServices.dll", + "build/.NETFramework/v4.6.1/System.DirectoryServices.xml", + "build/.NETFramework/v4.6.1/System.Drawing.Design.dll", + "build/.NETFramework/v4.6.1/System.Drawing.Design.xml", + "build/.NETFramework/v4.6.1/System.Drawing.dll", + "build/.NETFramework/v4.6.1/System.Drawing.xml", + "build/.NETFramework/v4.6.1/System.Dynamic.dll", + "build/.NETFramework/v4.6.1/System.EnterpriseServices.Thunk.dll", + "build/.NETFramework/v4.6.1/System.EnterpriseServices.Wrapper.dll", + "build/.NETFramework/v4.6.1/System.EnterpriseServices.dll", + "build/.NETFramework/v4.6.1/System.EnterpriseServices.xml", + "build/.NETFramework/v4.6.1/System.IO.Compression.FileSystem.dll", + "build/.NETFramework/v4.6.1/System.IO.Compression.FileSystem.xml", + "build/.NETFramework/v4.6.1/System.IO.Compression.dll", + "build/.NETFramework/v4.6.1/System.IO.Compression.xml", + "build/.NETFramework/v4.6.1/System.IO.Log.dll", + "build/.NETFramework/v4.6.1/System.IO.Log.xml", + "build/.NETFramework/v4.6.1/System.IdentityModel.Selectors.dll", + "build/.NETFramework/v4.6.1/System.IdentityModel.Selectors.xml", + "build/.NETFramework/v4.6.1/System.IdentityModel.Services.dll", + "build/.NETFramework/v4.6.1/System.IdentityModel.Services.xml", + "build/.NETFramework/v4.6.1/System.IdentityModel.dll", + "build/.NETFramework/v4.6.1/System.IdentityModel.xml", + "build/.NETFramework/v4.6.1/System.Linq.xml", + "build/.NETFramework/v4.6.1/System.Management.Instrumentation.dll", + "build/.NETFramework/v4.6.1/System.Management.Instrumentation.xml", + "build/.NETFramework/v4.6.1/System.Management.dll", + "build/.NETFramework/v4.6.1/System.Management.xml", + "build/.NETFramework/v4.6.1/System.Messaging.dll", + "build/.NETFramework/v4.6.1/System.Messaging.xml", + "build/.NETFramework/v4.6.1/System.Net.Http.WebRequest.dll", + "build/.NETFramework/v4.6.1/System.Net.Http.WebRequest.xml", + "build/.NETFramework/v4.6.1/System.Net.Http.dll", + "build/.NETFramework/v4.6.1/System.Net.Http.xml", + "build/.NETFramework/v4.6.1/System.Net.dll", + "build/.NETFramework/v4.6.1/System.Net.xml", + "build/.NETFramework/v4.6.1/System.Numerics.Vectors.dll", + "build/.NETFramework/v4.6.1/System.Numerics.dll", + "build/.NETFramework/v4.6.1/System.Numerics.xml", + "build/.NETFramework/v4.6.1/System.Printing.dll", + "build/.NETFramework/v4.6.1/System.Printing.xml", + "build/.NETFramework/v4.6.1/System.Reflection.Context.dll", + "build/.NETFramework/v4.6.1/System.Reflection.Context.xml", + "build/.NETFramework/v4.6.1/System.Runtime.Caching.dll", + "build/.NETFramework/v4.6.1/System.Runtime.Caching.xml", + "build/.NETFramework/v4.6.1/System.Runtime.DurableInstancing.dll", + "build/.NETFramework/v4.6.1/System.Runtime.DurableInstancing.xml", + "build/.NETFramework/v4.6.1/System.Runtime.Remoting.dll", + "build/.NETFramework/v4.6.1/System.Runtime.Remoting.xml", + "build/.NETFramework/v4.6.1/System.Runtime.Serialization.Formatters.Soap.dll", + "build/.NETFramework/v4.6.1/System.Runtime.Serialization.Formatters.Soap.xml", + "build/.NETFramework/v4.6.1/System.Runtime.Serialization.dll", + "build/.NETFramework/v4.6.1/System.Runtime.Serialization.xml", + "build/.NETFramework/v4.6.1/System.Security.dll", + "build/.NETFramework/v4.6.1/System.Security.xml", + "build/.NETFramework/v4.6.1/System.ServiceModel.Activation.dll", + "build/.NETFramework/v4.6.1/System.ServiceModel.Activation.xml", + "build/.NETFramework/v4.6.1/System.ServiceModel.Activities.dll", + "build/.NETFramework/v4.6.1/System.ServiceModel.Activities.xml", + "build/.NETFramework/v4.6.1/System.ServiceModel.Channels.dll", + "build/.NETFramework/v4.6.1/System.ServiceModel.Channels.xml", + "build/.NETFramework/v4.6.1/System.ServiceModel.Discovery.dll", + "build/.NETFramework/v4.6.1/System.ServiceModel.Discovery.xml", + "build/.NETFramework/v4.6.1/System.ServiceModel.Routing.dll", + "build/.NETFramework/v4.6.1/System.ServiceModel.Routing.xml", + "build/.NETFramework/v4.6.1/System.ServiceModel.Web.dll", + "build/.NETFramework/v4.6.1/System.ServiceModel.Web.xml", + "build/.NETFramework/v4.6.1/System.ServiceModel.dll", + "build/.NETFramework/v4.6.1/System.ServiceModel.xml", + "build/.NETFramework/v4.6.1/System.ServiceProcess.dll", + "build/.NETFramework/v4.6.1/System.ServiceProcess.xml", + "build/.NETFramework/v4.6.1/System.Speech.dll", + "build/.NETFramework/v4.6.1/System.Speech.xml", + "build/.NETFramework/v4.6.1/System.Threading.Tasks.Dataflow.xml", + "build/.NETFramework/v4.6.1/System.Transactions.dll", + "build/.NETFramework/v4.6.1/System.Transactions.xml", + "build/.NETFramework/v4.6.1/System.Web.Abstractions.dll", + "build/.NETFramework/v4.6.1/System.Web.ApplicationServices.dll", + "build/.NETFramework/v4.6.1/System.Web.ApplicationServices.xml", + "build/.NETFramework/v4.6.1/System.Web.DataVisualization.Design.dll", + "build/.NETFramework/v4.6.1/System.Web.DataVisualization.dll", + "build/.NETFramework/v4.6.1/System.Web.DataVisualization.xml", + "build/.NETFramework/v4.6.1/System.Web.DynamicData.Design.dll", + "build/.NETFramework/v4.6.1/System.Web.DynamicData.Design.xml", + "build/.NETFramework/v4.6.1/System.Web.DynamicData.dll", + "build/.NETFramework/v4.6.1/System.Web.DynamicData.xml", + "build/.NETFramework/v4.6.1/System.Web.Entity.Design.dll", + "build/.NETFramework/v4.6.1/System.Web.Entity.Design.xml", + "build/.NETFramework/v4.6.1/System.Web.Entity.dll", + "build/.NETFramework/v4.6.1/System.Web.Entity.xml", + "build/.NETFramework/v4.6.1/System.Web.Extensions.Design.dll", + "build/.NETFramework/v4.6.1/System.Web.Extensions.Design.xml", + "build/.NETFramework/v4.6.1/System.Web.Extensions.dll", + "build/.NETFramework/v4.6.1/System.Web.Extensions.xml", + "build/.NETFramework/v4.6.1/System.Web.Mobile.dll", + "build/.NETFramework/v4.6.1/System.Web.Mobile.xml", + "build/.NETFramework/v4.6.1/System.Web.RegularExpressions.dll", + "build/.NETFramework/v4.6.1/System.Web.RegularExpressions.xml", + "build/.NETFramework/v4.6.1/System.Web.Routing.dll", + "build/.NETFramework/v4.6.1/System.Web.Services.dll", + "build/.NETFramework/v4.6.1/System.Web.Services.xml", + "build/.NETFramework/v4.6.1/System.Web.dll", + "build/.NETFramework/v4.6.1/System.Web.xml", + "build/.NETFramework/v4.6.1/System.Windows.Controls.Ribbon.dll", + "build/.NETFramework/v4.6.1/System.Windows.Controls.Ribbon.xml", + "build/.NETFramework/v4.6.1/System.Windows.Forms.DataVisualization.Design.dll", + "build/.NETFramework/v4.6.1/System.Windows.Forms.DataVisualization.dll", + "build/.NETFramework/v4.6.1/System.Windows.Forms.DataVisualization.xml", + "build/.NETFramework/v4.6.1/System.Windows.Forms.dll", + "build/.NETFramework/v4.6.1/System.Windows.Forms.xml", + "build/.NETFramework/v4.6.1/System.Windows.Input.Manipulations.dll", + "build/.NETFramework/v4.6.1/System.Windows.Input.Manipulations.xml", + "build/.NETFramework/v4.6.1/System.Windows.Presentation.dll", + "build/.NETFramework/v4.6.1/System.Windows.Presentation.xml", + "build/.NETFramework/v4.6.1/System.Windows.dll", + "build/.NETFramework/v4.6.1/System.Workflow.Activities.dll", + "build/.NETFramework/v4.6.1/System.Workflow.Activities.xml", + "build/.NETFramework/v4.6.1/System.Workflow.ComponentModel.dll", + "build/.NETFramework/v4.6.1/System.Workflow.ComponentModel.xml", + "build/.NETFramework/v4.6.1/System.Workflow.Runtime.dll", + "build/.NETFramework/v4.6.1/System.Workflow.Runtime.xml", + "build/.NETFramework/v4.6.1/System.WorkflowServices.dll", + "build/.NETFramework/v4.6.1/System.WorkflowServices.xml", + "build/.NETFramework/v4.6.1/System.Xaml.dll", + "build/.NETFramework/v4.6.1/System.Xaml.xml", + "build/.NETFramework/v4.6.1/System.Xml.Linq.dll", + "build/.NETFramework/v4.6.1/System.Xml.Linq.xml", + "build/.NETFramework/v4.6.1/System.Xml.Serialization.dll", + "build/.NETFramework/v4.6.1/System.Xml.dll", + "build/.NETFramework/v4.6.1/System.Xml.xml", + "build/.NETFramework/v4.6.1/System.dll", + "build/.NETFramework/v4.6.1/System.xml", + "build/.NETFramework/v4.6.1/UIAutomationClient.dll", + "build/.NETFramework/v4.6.1/UIAutomationClient.xml", + "build/.NETFramework/v4.6.1/UIAutomationClientsideProviders.dll", + "build/.NETFramework/v4.6.1/UIAutomationClientsideProviders.xml", + "build/.NETFramework/v4.6.1/UIAutomationProvider.dll", + "build/.NETFramework/v4.6.1/UIAutomationProvider.xml", + "build/.NETFramework/v4.6.1/UIAutomationTypes.dll", + "build/.NETFramework/v4.6.1/UIAutomationTypes.xml", + "build/.NETFramework/v4.6.1/WindowsBase.dll", + "build/.NETFramework/v4.6.1/WindowsBase.xml", + "build/.NETFramework/v4.6.1/WindowsFormsIntegration.dll", + "build/.NETFramework/v4.6.1/WindowsFormsIntegration.xml", + "build/.NETFramework/v4.6.1/XamlBuildTask.dll", + "build/.NETFramework/v4.6.1/XamlBuildTask.xml", + "build/.NETFramework/v4.6.1/mscorlib.dll", + "build/.NETFramework/v4.6.1/mscorlib.xml", + "build/.NETFramework/v4.6.1/namespaces.xml", + "build/.NETFramework/v4.6.1/sysglobl.dll", + "build/.NETFramework/v4.6.1/sysglobl.xml", + "build/Microsoft.NETFramework.ReferenceAssemblies.net461.targets", + "microsoft.netframework.referenceassemblies.net461.1.0.3.nupkg.sha512", + "microsoft.netframework.referenceassemblies.net461.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + ".NETFramework,Version=v4.6.1": [ + "Microsoft.NETFramework.ReferenceAssemblies >= 1.0.3" + ] + }, + "packageFolders": { + "C:\\Users\\T-bao\\.nuget\\packages\\": {}, + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\spt\\SoM_PrnControl.csproj", + "projectName": "SoM_PrnControl", + "projectPath": "D:\\spt\\SoM_PrnControl.csproj", + "packagesPath": "C:\\Users\\T-bao\\.nuget\\packages\\", + "outputPath": "D:\\spt\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\T-bao\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net461" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net461": { + "targetAlias": "net461", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net461": { + "targetAlias": "net461", + "dependencies": { + "Microsoft.NETFramework.ReferenceAssemblies": { + "suppressParent": "All", + "target": "Package", + "version": "[1.0.3, )", + "autoReferenced": true + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.304\\RuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "win-x86": { + "#import": [] + } + } + } +} \ No newline at end of file diff --git a/obj/x64/Debug/net461/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs b/obj/x64/Debug/net461/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs new file mode 100644 index 0000000..3aa5318 --- /dev/null +++ b/obj/x64/Debug/net461/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.6.1", FrameworkDisplayName = ".NET Framework 4.6.1")] diff --git a/obj/x64/Debug/net461/SoM_PrnC.DCBCDB39.Up2Date b/obj/x64/Debug/net461/SoM_PrnC.DCBCDB39.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/obj/x64/Debug/net461/SoM_PrnControl.GeneratedMSBuildEditorConfig.editorconfig b/obj/x64/Debug/net461/SoM_PrnControl.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..436e90f --- /dev/null +++ b/obj/x64/Debug/net461/SoM_PrnControl.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,14 @@ +is_global = true +build_property.ApplicationManifest = app.manifest +build_property.StartupObject = +build_property.ApplicationDefaultFont = +build_property.ApplicationHighDpiMode = +build_property.ApplicationUseCompatibleTextRendering = +build_property.ApplicationVisualStyles = +build_property.RootNamespace = +build_property.ProjectDir = C:\SoM_PrnControl-New\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.CsWinRTUseWindowsUIXamlProjections = false +build_property.EffectiveAnalysisLevelStyle = +build_property.EnableCodeStyleSeverity = diff --git a/obj/x64/Debug/net461/SoM_PrnControl.csproj.BuildWithSkipAnalyzers b/obj/x64/Debug/net461/SoM_PrnControl.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/obj/x64/Debug/net461/SoM_PrnControl.csproj.FileListAbsolute.txt b/obj/x64/Debug/net461/SoM_PrnControl.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..e885998 --- /dev/null +++ b/obj/x64/Debug/net461/SoM_PrnControl.csproj.FileListAbsolute.txt @@ -0,0 +1,134 @@ +C:\SoM_PrnControl-New\bin\x64\Debug\net461\SoM_PrnControl.exe.config +C:\SoM_PrnControl-New\bin\x64\Debug\net461\SoM_PrnControl.exe +C:\SoM_PrnControl-New\bin\x64\Debug\net461\SoM_PrnControl.pdb +C:\SoM_PrnControl-New\bin\x64\Debug\net461\Microsoft.Win32.Primitives.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\netstandard.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.AppContext.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Collections.Concurrent.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Collections.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Collections.NonGeneric.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Collections.Specialized.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.ComponentModel.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.ComponentModel.EventBasedAsync.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.ComponentModel.Primitives.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.ComponentModel.TypeConverter.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Console.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Data.Common.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Diagnostics.Contracts.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Diagnostics.Debug.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Diagnostics.FileVersionInfo.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Diagnostics.Process.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Diagnostics.StackTrace.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Diagnostics.TextWriterTraceListener.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Diagnostics.Tools.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Diagnostics.TraceSource.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Diagnostics.Tracing.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Drawing.Primitives.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Dynamic.Runtime.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Globalization.Calendars.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Globalization.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Globalization.Extensions.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.IO.Compression.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.IO.Compression.ZipFile.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.IO.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.IO.FileSystem.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.IO.FileSystem.DriveInfo.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.IO.FileSystem.Primitives.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.IO.FileSystem.Watcher.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.IO.IsolatedStorage.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.IO.MemoryMappedFiles.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.IO.Pipes.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.IO.UnmanagedMemoryStream.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Linq.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Linq.Expressions.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Linq.Parallel.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Linq.Queryable.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Net.Http.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Net.NameResolution.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Net.NetworkInformation.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Net.Ping.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Net.Primitives.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Net.Requests.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Net.Security.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Net.Sockets.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Net.WebHeaderCollection.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Net.WebSockets.Client.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Net.WebSockets.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.ObjectModel.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Reflection.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Reflection.Extensions.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Reflection.Primitives.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Resources.Reader.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Resources.ResourceManager.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Resources.Writer.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Runtime.CompilerServices.VisualC.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Runtime.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Runtime.Extensions.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Runtime.Handles.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Runtime.InteropServices.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Runtime.InteropServices.RuntimeInformation.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Runtime.Numerics.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Runtime.Serialization.Formatters.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Runtime.Serialization.Json.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Runtime.Serialization.Primitives.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Runtime.Serialization.Xml.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Security.Claims.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Security.Cryptography.Algorithms.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Security.Cryptography.Csp.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Security.Cryptography.Encoding.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Security.Cryptography.Primitives.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Security.Cryptography.X509Certificates.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Security.Principal.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Security.SecureString.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Text.Encoding.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Text.Encoding.Extensions.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Text.RegularExpressions.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Threading.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Threading.Overlapped.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Threading.Tasks.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Threading.Tasks.Parallel.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Threading.Thread.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Threading.ThreadPool.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Threading.Timer.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.ValueTuple.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Xml.ReaderWriter.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Xml.XDocument.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Xml.XmlDocument.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Xml.XmlSerializer.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Xml.XPath.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\System.Xml.XPath.XDocument.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\Citizen.LayoutUtilities.Printing.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\CSJLabelLib.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\MLComponent.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\MySql.Data.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\PCSC.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\PCSC.Iso7816.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\Google.Protobuf.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\GrapeSystems.Core.Drawing.Fx20.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\Citizen.LayoutUtilities.Common.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\GrapeSystems.Core.Common.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\GrapeSystems.Core.Parts.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\GrapeSystems.Library.Image.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\GrapeSystems.Core.Parts.Frames.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\GrapeSystems.Library.BarcodeAd.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\Interop.QRMAKERADLib.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\GrapeSystems.Library.Controls.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\AxInterop.QRMAKERADLib.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\stdole.dll +C:\SoM_PrnControl-New\bin\x64\Debug\net461\MySql.Data.xml +C:\SoM_PrnControl-New\bin\x64\Debug\net461\PCSC.pdb +C:\SoM_PrnControl-New\bin\x64\Debug\net461\PCSC.xml +C:\SoM_PrnControl-New\bin\x64\Debug\net461\PCSC.Iso7816.pdb +C:\SoM_PrnControl-New\bin\x64\Debug\net461\PCSC.Iso7816.xml +C:\SoM_PrnControl-New\bin\x64\Debug\net461\Google.Protobuf.xml +C:\SoM_PrnControl-New\bin\x64\Debug\net461\MLComponent.XmlSerializers.dll +C:\SoM_PrnControl-New\obj\x64\Debug\net461\SoM_PrnControl.csproj.AssemblyReference.cache +C:\SoM_PrnControl-New\obj\x64\Debug\net461\qk30ic.Form1.resources +C:\SoM_PrnControl-New\obj\x64\Debug\net461\qk30ic.Form2.resources +C:\SoM_PrnControl-New\obj\x64\Debug\net461\SoM_PrnControl.csproj.GenerateResource.cache +C:\SoM_PrnControl-New\obj\x64\Debug\net461\SoM_PrnControl.GeneratedMSBuildEditorConfig.editorconfig +C:\SoM_PrnControl-New\obj\x64\Debug\net461\SoM_PrnControl.csproj.CoreCompileInputs.cache +C:\SoM_PrnControl-New\obj\x64\Debug\net461\SoM_PrnC.DCBCDB39.Up2Date +C:\SoM_PrnControl-New\obj\x64\Debug\net461\SoM_PrnControl.exe +C:\SoM_PrnControl-New\obj\x64\Debug\net461\SoM_PrnControl.pdb +C:\SoM_PrnControl-New\obj\x64\Debug\net461\SoM_PrnControl.exe.config diff --git a/obj/x64/Debug/net461/SoM_PrnControl.exe b/obj/x64/Debug/net461/SoM_PrnControl.exe new file mode 100644 index 0000000..97508bb Binary files /dev/null and b/obj/x64/Debug/net461/SoM_PrnControl.exe differ diff --git a/obj/x64/Debug/net461/SoM_PrnControl.exe.config b/obj/x64/Debug/net461/SoM_PrnControl.exe.config new file mode 100644 index 0000000..0cbb707 --- /dev/null +++ b/obj/x64/Debug/net461/SoM_PrnControl.exe.config @@ -0,0 +1,339 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/obj/x64/Debug/net461/SoM_PrnControl.exe.withSupportedRuntime.config b/obj/x64/Debug/net461/SoM_PrnControl.exe.withSupportedRuntime.config new file mode 100644 index 0000000..0cbb707 --- /dev/null +++ b/obj/x64/Debug/net461/SoM_PrnControl.exe.withSupportedRuntime.config @@ -0,0 +1,339 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/obj/x64/Debug/net461/qk30ic.Form1.resources b/obj/x64/Debug/net461/qk30ic.Form1.resources new file mode 100644 index 0000000..e26dd6d Binary files /dev/null and b/obj/x64/Debug/net461/qk30ic.Form1.resources differ diff --git a/obj/x64/Debug/net461/qk30ic.Form2.resources b/obj/x64/Debug/net461/qk30ic.Form2.resources new file mode 100644 index 0000000..e26dd6d Binary files /dev/null and b/obj/x64/Debug/net461/qk30ic.Form2.resources differ diff --git a/obj/x86/Debug/net461/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs b/obj/x86/Debug/net461/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs new file mode 100644 index 0000000..3aa5318 --- /dev/null +++ b/obj/x86/Debug/net461/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.6.1", FrameworkDisplayName = ".NET Framework 4.6.1")] diff --git a/obj/x86/Debug/net461/SoM_PrnC.DCBCDB39.Up2Date b/obj/x86/Debug/net461/SoM_PrnC.DCBCDB39.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/obj/x86/Debug/net461/SoM_PrnControl.GeneratedMSBuildEditorConfig.editorconfig b/obj/x86/Debug/net461/SoM_PrnControl.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..e0b5a4a --- /dev/null +++ b/obj/x86/Debug/net461/SoM_PrnControl.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,14 @@ +is_global = true +build_property.ApplicationManifest = app.manifest +build_property.StartupObject = +build_property.ApplicationDefaultFont = +build_property.ApplicationHighDpiMode = +build_property.ApplicationUseCompatibleTextRendering = +build_property.ApplicationVisualStyles = +build_property.RootNamespace = +build_property.ProjectDir = D:\spt\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.CsWinRTUseWindowsUIXamlProjections = false +build_property.EffectiveAnalysisLevelStyle = +build_property.EnableCodeStyleSeverity = diff --git a/obj/x86/Debug/net461/SoM_PrnControl.csproj.BuildWithSkipAnalyzers b/obj/x86/Debug/net461/SoM_PrnControl.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/obj/x86/Debug/net461/SoM_PrnControl.csproj.FileListAbsolute.txt b/obj/x86/Debug/net461/SoM_PrnControl.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..65c868a --- /dev/null +++ b/obj/x86/Debug/net461/SoM_PrnControl.csproj.FileListAbsolute.txt @@ -0,0 +1,138 @@ +C:\SoM_PrnControl-New\bin\x86\Debug\net461\SoM_PrnControl.exe.config +C:\SoM_PrnControl-New\bin\x86\Debug\net461\SoM_PrnControl.exe +C:\SoM_PrnControl-New\bin\x86\Debug\net461\SoM_PrnControl.pdb +C:\SoM_PrnControl-New\bin\x86\Debug\net461\Microsoft.Win32.Primitives.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\netstandard.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.AppContext.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Collections.Concurrent.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Collections.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Collections.NonGeneric.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Collections.Specialized.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.ComponentModel.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.ComponentModel.EventBasedAsync.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.ComponentModel.Primitives.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.ComponentModel.TypeConverter.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Console.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Data.Common.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Diagnostics.Contracts.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Diagnostics.Debug.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Diagnostics.FileVersionInfo.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Diagnostics.Process.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Diagnostics.StackTrace.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Diagnostics.TextWriterTraceListener.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Diagnostics.Tools.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Diagnostics.TraceSource.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Diagnostics.Tracing.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Drawing.Primitives.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Dynamic.Runtime.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Globalization.Calendars.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Globalization.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Globalization.Extensions.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.IO.Compression.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.IO.Compression.ZipFile.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.IO.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.IO.FileSystem.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.IO.FileSystem.DriveInfo.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.IO.FileSystem.Primitives.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.IO.FileSystem.Watcher.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.IO.IsolatedStorage.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.IO.MemoryMappedFiles.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.IO.Pipes.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.IO.UnmanagedMemoryStream.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Linq.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Linq.Expressions.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Linq.Parallel.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Linq.Queryable.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Net.Http.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Net.NameResolution.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Net.NetworkInformation.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Net.Ping.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Net.Primitives.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Net.Requests.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Net.Security.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Net.Sockets.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Net.WebHeaderCollection.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Net.WebSockets.Client.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Net.WebSockets.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.ObjectModel.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Reflection.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Reflection.Extensions.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Reflection.Primitives.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Resources.Reader.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Resources.ResourceManager.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Resources.Writer.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Runtime.CompilerServices.VisualC.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Runtime.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Runtime.Extensions.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Runtime.Handles.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Runtime.InteropServices.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Runtime.InteropServices.RuntimeInformation.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Runtime.Numerics.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Runtime.Serialization.Formatters.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Runtime.Serialization.Json.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Runtime.Serialization.Primitives.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Runtime.Serialization.Xml.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Security.Claims.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Security.Cryptography.Algorithms.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Security.Cryptography.Csp.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Security.Cryptography.Encoding.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Security.Cryptography.Primitives.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Security.Cryptography.X509Certificates.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Security.Principal.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Security.SecureString.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Text.Encoding.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Text.Encoding.Extensions.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Text.RegularExpressions.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Threading.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Threading.Overlapped.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Threading.Tasks.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Threading.Tasks.Parallel.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Threading.Thread.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Threading.ThreadPool.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Threading.Timer.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.ValueTuple.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Xml.ReaderWriter.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Xml.XDocument.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Xml.XmlDocument.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Xml.XmlSerializer.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Xml.XPath.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\System.Xml.XPath.XDocument.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\Citizen.LayoutUtilities.Printing.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\CSJLabelLib.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\MLComponent.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\MySql.Data.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\PCSC.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\PCSC.Iso7816.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\Google.Protobuf.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\GrapeSystems.Core.Drawing.Fx20.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\Citizen.LayoutUtilities.Common.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\GrapeSystems.Core.Common.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\GrapeSystems.Core.Parts.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\GrapeSystems.Library.Image.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\GrapeSystems.Core.Parts.Frames.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\GrapeSystems.Library.BarcodeAd.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\Interop.QRMAKERADLib.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\GrapeSystems.Library.Controls.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\AxInterop.QRMAKERADLib.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\stdole.dll +C:\SoM_PrnControl-New\bin\x86\Debug\net461\MySql.Data.xml +C:\SoM_PrnControl-New\bin\x86\Debug\net461\PCSC.pdb +C:\SoM_PrnControl-New\bin\x86\Debug\net461\PCSC.xml +C:\SoM_PrnControl-New\bin\x86\Debug\net461\PCSC.Iso7816.pdb +C:\SoM_PrnControl-New\bin\x86\Debug\net461\PCSC.Iso7816.xml +C:\SoM_PrnControl-New\bin\x86\Debug\net461\Google.Protobuf.xml +C:\SoM_PrnControl-New\bin\x86\Debug\net461\MLComponent.XmlSerializers.dll +C:\SoM_PrnControl-New\obj\x86\Debug\net461\SoM_PrnControl.csproj.AssemblyReference.cache +C:\SoM_PrnControl-New\obj\x86\Debug\net461\qk30ic.Form1.resources +C:\SoM_PrnControl-New\obj\x86\Debug\net461\qk30ic.Form2.resources +C:\SoM_PrnControl-New\obj\x86\Debug\net461\SoM_PrnControl.csproj.GenerateResource.cache +C:\SoM_PrnControl-New\obj\x86\Debug\net461\SoM_PrnControl.GeneratedMSBuildEditorConfig.editorconfig +C:\SoM_PrnControl-New\obj\x86\Debug\net461\SoM_PrnControl.csproj.CoreCompileInputs.cache +C:\SoM_PrnControl-New\obj\x86\Debug\net461\SoM_PrnC.DCBCDB39.Up2Date +C:\SoM_PrnControl-New\obj\x86\Debug\net461\SoM_PrnControl.exe +C:\SoM_PrnControl-New\obj\x86\Debug\net461\SoM_PrnControl.pdb +C:\SoM_PrnControl-New\obj\x86\Debug\net461\SoM_PrnControl.exe.config +D:\spt\obj\x86\Debug\net461\SoM_PrnControl.csproj.AssemblyReference.cache +D:\spt\obj\x86\Debug\net461\SoM_PrnControl.exe.config +D:\spt\obj\x86\Debug\net461\SoM_PrnControl.exe +D:\spt\obj\x86\Debug\net461\SoM_PrnControl.pdb diff --git a/obj/x86/Debug/net461/SoM_PrnControl.exe b/obj/x86/Debug/net461/SoM_PrnControl.exe new file mode 100644 index 0000000..ba26abc Binary files /dev/null and b/obj/x86/Debug/net461/SoM_PrnControl.exe differ diff --git a/obj/x86/Debug/net461/SoM_PrnControl.exe.config b/obj/x86/Debug/net461/SoM_PrnControl.exe.config new file mode 100644 index 0000000..0cbb707 --- /dev/null +++ b/obj/x86/Debug/net461/SoM_PrnControl.exe.config @@ -0,0 +1,339 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/obj/x86/Debug/net461/SoM_PrnControl.exe.withSupportedRuntime.config b/obj/x86/Debug/net461/SoM_PrnControl.exe.withSupportedRuntime.config new file mode 100644 index 0000000..0cbb707 --- /dev/null +++ b/obj/x86/Debug/net461/SoM_PrnControl.exe.withSupportedRuntime.config @@ -0,0 +1,339 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/obj/x86/Debug/net461/qk30ic.Form1.resources b/obj/x86/Debug/net461/qk30ic.Form1.resources new file mode 100644 index 0000000..e26dd6d Binary files /dev/null and b/obj/x86/Debug/net461/qk30ic.Form1.resources differ diff --git a/obj/x86/Debug/net461/qk30ic.Form2.resources b/obj/x86/Debug/net461/qk30ic.Form2.resources new file mode 100644 index 0000000..e26dd6d Binary files /dev/null and b/obj/x86/Debug/net461/qk30ic.Form2.resources differ