make all tests pass
|
@ -1,5 +1,8 @@
|
||||||
dependencies {
|
dependencies {
|
||||||
testImplementation project(':io-vector')
|
testImplementation project(':io-vector')
|
||||||
|
testImplementation project(':io-vector-eps')
|
||||||
|
testImplementation project(':io-vector-pdf')
|
||||||
|
testImplementation project(':io-vector-svg')
|
||||||
testImplementation "org.junit.jupiter:junit-jupiter-params:5.7.0"
|
testImplementation "org.junit.jupiter:junit-jupiter-params:5.7.0"
|
||||||
testImplementation "junit:junit:4.12"
|
testImplementation "junit:junit:4.12"
|
||||||
testImplementation "com.google.zxing:javase:${project.property('zxing.version')}"
|
testImplementation "com.google.zxing:javase:${project.property('zxing.version')}"
|
||||||
|
|
|
@ -474,21 +474,16 @@ public class MaxiCode extends Symbol {
|
||||||
* @return the primary message codewords
|
* @return the primary message codewords
|
||||||
*/
|
*/
|
||||||
private int[] getPrimaryCodewords() {
|
private int[] getPrimaryCodewords() {
|
||||||
|
|
||||||
assert mode == 2 || mode == 3;
|
|
||||||
|
|
||||||
if (primaryData.length() != 15) {
|
if (primaryData.length() != 15) {
|
||||||
errorMsg.append("Invalid Primary String");
|
errorMsg.append("Invalid Primary String");
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 9; i < 15; i++) { /* check that country code and service are numeric */
|
for (int i = 9; i < 15; i++) { /* check that country code and service are numeric */
|
||||||
if ((primaryData.charAt(i) < '0') || (primaryData.charAt(i) > '9')) {
|
if ((primaryData.charAt(i) < '0') || (primaryData.charAt(i) > '9')) {
|
||||||
errorMsg.append("Invalid Primary String");
|
errorMsg.append("Invalid Primary String");
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
String postcode;
|
String postcode;
|
||||||
if (mode == 2) {
|
if (mode == 2) {
|
||||||
postcode = primaryData.substring(0, 9);
|
postcode = primaryData.substring(0, 9);
|
||||||
|
@ -500,10 +495,8 @@ public class MaxiCode extends Symbol {
|
||||||
// if (mode == 3)
|
// if (mode == 3)
|
||||||
postcode = primaryData.substring(0, 6);
|
postcode = primaryData.substring(0, 6);
|
||||||
}
|
}
|
||||||
|
|
||||||
int country = Integer.parseInt(primaryData.substring(9, 12));
|
int country = Integer.parseInt(primaryData.substring(9, 12));
|
||||||
int service = Integer.parseInt(primaryData.substring(12, 15));
|
int service = Integer.parseInt(primaryData.substring(12, 15));
|
||||||
|
|
||||||
if (mode == 2) {
|
if (mode == 2) {
|
||||||
return getMode2PrimaryCodewords(postcode, country, service);
|
return getMode2PrimaryCodewords(postcode, country, service);
|
||||||
} else { // mode == 3
|
} else { // mode == 3
|
||||||
|
|
|
@ -442,7 +442,7 @@ public class Pdf417 extends Symbol {
|
||||||
579, 623, 766, 146, 10, 739, 246, 127, 71, 244, 211, 477, 920, 876, 427, 820,
|
579, 623, 766, 146, 10, 739, 246, 127, 71, 244, 211, 477, 920, 876, 427, 820,
|
||||||
718, 435
|
718, 435
|
||||||
};
|
};
|
||||||
private int[] codeWords = new int[2700];
|
private final int[] codeWords = new int[2700];
|
||||||
private int codeWordCount;
|
private int codeWordCount;
|
||||||
private Mode symbolMode = Mode.NORMAL;
|
private Mode symbolMode = Mode.NORMAL;
|
||||||
private int[] inputData;
|
private int[] inputData;
|
||||||
|
@ -651,7 +651,7 @@ public class Pdf417 extends Symbol {
|
||||||
*/
|
*/
|
||||||
public void setPreferredEccLevel(int eccLevel) {
|
public void setPreferredEccLevel(int eccLevel) {
|
||||||
if (eccLevel < 0 || eccLevel > 8) {
|
if (eccLevel < 0 || eccLevel > 8) {
|
||||||
throw new IllegalArgumentException("ECC level must be between 0 and 8.");
|
throw new IllegalArgumentException("ECC level must be between 0 and 8, but is " + eccLevel);
|
||||||
}
|
}
|
||||||
preferredEccLevel = eccLevel;
|
preferredEccLevel = eccLevel;
|
||||||
}
|
}
|
||||||
|
@ -664,10 +664,10 @@ public class Pdf417 extends Symbol {
|
||||||
*/
|
*/
|
||||||
public void setVariant(int variant) {
|
public void setVariant(int variant) {
|
||||||
if (symbolMode != Mode.MICRO) {
|
if (symbolMode != Mode.MICRO) {
|
||||||
throw new IllegalArgumentException("Can only set variant when using MICRO mode.");
|
throw new IllegalArgumentException("Can only set variant when using MICRO mode");
|
||||||
}
|
}
|
||||||
if (variant < 1 || variant > 34) {
|
if (variant < 1 || variant > 34) {
|
||||||
throw new IllegalArgumentException("Variant must be between 1 and 34.");
|
throw new IllegalArgumentException("Variant must be between 1 and 34");
|
||||||
}
|
}
|
||||||
this.columns = MICRO_VARIANTS[variant - 1];
|
this.columns = MICRO_VARIANTS[variant - 1];
|
||||||
this.rows = MICRO_VARIANTS[variant - 1 + 34];
|
this.rows = MICRO_VARIANTS[variant - 1 + 34];
|
||||||
|
|
|
@ -48,18 +48,15 @@ public class ParameterizedExtension implements TestTemplateInvocationContextProv
|
||||||
boolean hasParameterFields = !fields.isEmpty();
|
boolean hasParameterFields = !fields.isEmpty();
|
||||||
boolean hasCorrectParameterFields = areParametersFormedCorrectly(fields);
|
boolean hasCorrectParameterFields = areParametersFormedCorrectly(fields);
|
||||||
boolean hasArgsConstructor = hasArgsConstructor(context);
|
boolean hasArgsConstructor = hasArgsConstructor(context);
|
||||||
|
|
||||||
if (hasArgsConstructor) {
|
if (hasArgsConstructor) {
|
||||||
return !hasParameterFields;
|
return !hasParameterFields;
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
return !hasParameterFields || hasCorrectParameterFields;
|
return !hasParameterFields || hasCorrectParameterFields;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Stream<TestTemplateInvocationContext> provideTestTemplateInvocationContexts(ExtensionContext context) {
|
public Stream<TestTemplateInvocationContext> provideTestTemplateInvocationContexts(ExtensionContext context) {
|
||||||
// grabbing the parent ensures the PARAMETERS are stored in the same store across multiple TestTemplates.
|
|
||||||
return context.getParent().flatMap(ParameterizedExtension::parameters).map(
|
return context.getParent().flatMap(ParameterizedExtension::parameters).map(
|
||||||
o -> testTemplateContextsFromParameters(o, context)).orElse(Stream.empty());
|
o -> testTemplateContextsFromParameters(o, context)).orElse(Stream.empty());
|
||||||
}
|
}
|
||||||
|
@ -68,35 +65,28 @@ public class ParameterizedExtension implements TestTemplateInvocationContextProv
|
||||||
List<Integer> parameterValues = parameterIndexes(fields);
|
List<Integer> parameterValues = parameterIndexes(fields);
|
||||||
List<Integer> duplicateIndexes = duplicatedIndexes(parameterValues);
|
List<Integer> duplicateIndexes = duplicatedIndexes(parameterValues);
|
||||||
boolean hasAllIndexes = indexRangeComplete(parameterValues);
|
boolean hasAllIndexes = indexRangeComplete(parameterValues);
|
||||||
|
|
||||||
return hasAllIndexes && duplicateIndexes.isEmpty();
|
return hasAllIndexes && duplicateIndexes.isEmpty();
|
||||||
}
|
}
|
||||||
|
|
||||||
private static List<Integer> parameterIndexes(List<Field> fields) {
|
private static List<Integer> parameterIndexes(List<Field> fields) {
|
||||||
// @formatter:off
|
|
||||||
return fields.stream()
|
return fields.stream()
|
||||||
.map(f -> f.getAnnotation(Parameterized.Parameter.class))
|
.map(f -> f.getAnnotation(Parameterized.Parameter.class))
|
||||||
.map(Parameterized.Parameter::value)
|
.map(Parameterized.Parameter::value)
|
||||||
.collect(toList());
|
.collect(toList());
|
||||||
// @formatter:on
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static List<Integer> duplicatedIndexes(List<Integer> parameterValues) {
|
private static List<Integer> duplicatedIndexes(List<Integer> parameterValues) {
|
||||||
// @formatter:off
|
|
||||||
return parameterValues.stream().collect(groupingBy(identity())).entrySet().stream()
|
return parameterValues.stream().collect(groupingBy(identity())).entrySet().stream()
|
||||||
.filter(e -> e.getValue().size() > 1)
|
.filter(e -> e.getValue().size() > 1)
|
||||||
.map(Map.Entry::getKey)
|
.map(Map.Entry::getKey)
|
||||||
.collect(toList());
|
.collect(toList());
|
||||||
// @formatter:on
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Boolean indexRangeComplete(List<Integer> parameterValues) {
|
private static Boolean indexRangeComplete(List<Integer> parameterValues) {
|
||||||
// @formatter:off
|
|
||||||
return parameterValues.stream()
|
return parameterValues.stream()
|
||||||
.max(Integer::compareTo)
|
.max(Integer::compareTo)
|
||||||
.map(i -> parameterValues.containsAll(IntStream.range(0, i).boxed().collect(toList())))
|
.map(i -> parameterValues.containsAll(IntStream.range(0, i).boxed().collect(toList())))
|
||||||
.orElse(false);
|
.orElse(false);
|
||||||
// @formatter:on
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Optional<Collection<Object[]>> parameters(ExtensionContext context) {
|
private static Optional<Collection<Object[]>> parameters(ExtensionContext context) {
|
||||||
|
@ -106,11 +96,9 @@ public class ParameterizedExtension implements TestTemplateInvocationContextProv
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Optional<Collection<Object[]>> callParameters(ExtensionContext context) {
|
private static Optional<Collection<Object[]>> callParameters(ExtensionContext context) {
|
||||||
// @formatter:off
|
|
||||||
return findParametersMethod(context)
|
return findParametersMethod(context)
|
||||||
.map(m -> ReflectionUtils.invokeMethod(m, null))
|
.map(m -> ReflectionUtils.invokeMethod(m, null))
|
||||||
.map(ParameterizedExtension::convertParametersMethodReturnType);
|
.map(ParameterizedExtension::convertParametersMethodReturnType);
|
||||||
// @formatter:on
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static boolean hasParametersMethod(ExtensionContext context) {
|
private static boolean hasParametersMethod(ExtensionContext context) {
|
||||||
|
@ -118,11 +106,9 @@ public class ParameterizedExtension implements TestTemplateInvocationContextProv
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Optional<Method> findParametersMethod(ExtensionContext extensionContext) {
|
private static Optional<Method> findParametersMethod(ExtensionContext extensionContext) {
|
||||||
// @formatter:off
|
|
||||||
return extensionContext.getTestClass()
|
return extensionContext.getTestClass()
|
||||||
.flatMap(ParameterizedExtension::ensureSingleParametersMethod)
|
.flatMap(ParameterizedExtension::ensureSingleParametersMethod)
|
||||||
.filter(ReflectionUtils::isPublic);
|
.filter(ReflectionUtils::isPublic);
|
||||||
// @formatter:on
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Optional<Method> ensureSingleParametersMethod(Class<?> testClass) {
|
private static Optional<Method> ensureSingleParametersMethod(Class<?> testClass) {
|
||||||
|
@ -135,14 +121,11 @@ public class ParameterizedExtension implements TestTemplateInvocationContextProv
|
||||||
List<Field> fields = parametersFields(context);
|
List<Field> fields = parametersFields(context);
|
||||||
boolean hasParameterFields = !fields.isEmpty();
|
boolean hasParameterFields = !fields.isEmpty();
|
||||||
boolean hasCorrectParameterFields = areParametersFormedCorrectly(fields);
|
boolean hasCorrectParameterFields = areParametersFormedCorrectly(fields);
|
||||||
|
|
||||||
if (!hasParameterFields) {
|
if (!hasParameterFields) {
|
||||||
return o.stream().map(ParameterizedExtension::parameterResolver);
|
return o.stream().map(ParameterizedExtension::parameterResolver);
|
||||||
}
|
} else if (hasCorrectParameterFields) {
|
||||||
else if (hasCorrectParameterFields) {
|
|
||||||
return o.stream().map(ParameterizedExtension::contextFactory);
|
return o.stream().map(ParameterizedExtension::contextFactory);
|
||||||
}
|
}
|
||||||
|
|
||||||
return Stream.empty();
|
return Stream.empty();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -181,11 +164,9 @@ public class ParameterizedExtension implements TestTemplateInvocationContextProv
|
||||||
@Override
|
@Override
|
||||||
public void postProcessTestInstance(Object testInstance, ExtensionContext context) throws Exception {
|
public void postProcessTestInstance(Object testInstance, ExtensionContext context) throws Exception {
|
||||||
List<Field> parameters = parametersFields(context);
|
List<Field> parameters = parametersFields(context);
|
||||||
|
|
||||||
if (!parameters.isEmpty() && parameters.size() != this.parameters.length) {
|
if (!parameters.isEmpty() && parameters.size() != this.parameters.length) {
|
||||||
throw unMatchedAmountOfParametersException();
|
throw unMatchedAmountOfParametersException();
|
||||||
}
|
}
|
||||||
|
|
||||||
for (Field param : parameters) {
|
for (Field param : parameters) {
|
||||||
Parameterized.Parameter annotation = param.getAnnotation(Parameterized.Parameter.class);
|
Parameterized.Parameter annotation = param.getAnnotation(Parameterized.Parameter.class);
|
||||||
int paramIndex = annotation.value();
|
int paramIndex = annotation.value();
|
||||||
|
@ -205,29 +186,21 @@ public class ParameterizedExtension implements TestTemplateInvocationContextProv
|
||||||
}
|
}
|
||||||
|
|
||||||
private static boolean hasArgsConstructor(ExtensionContext context) {
|
private static boolean hasArgsConstructor(ExtensionContext context) {
|
||||||
// @formatter:off
|
|
||||||
return context.getTestClass()
|
return context.getTestClass()
|
||||||
.map(ReflectionUtils::getDeclaredConstructor)
|
.map(ReflectionUtils::getDeclaredConstructor)
|
||||||
.filter(c -> c.getParameterCount() > 0)
|
.filter(c -> c.getParameterCount() > 0)
|
||||||
.isPresent();
|
.isPresent();
|
||||||
// @formatter:on
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static List<Field> parametersFields(ExtensionContext context) {
|
private static List<Field> parametersFields(ExtensionContext context) {
|
||||||
// @formatter:off
|
|
||||||
Stream<Field> fieldStream = context.getTestClass()
|
Stream<Field> fieldStream = context.getTestClass()
|
||||||
.map(Class::getDeclaredFields)
|
.map(Class::getDeclaredFields).stream().flatMap(Stream::of);
|
||||||
.map(Stream::of)
|
|
||||||
.orElse(Stream.empty());
|
|
||||||
// @formatter:on
|
|
||||||
|
|
||||||
return fieldStream.filter(f -> f.isAnnotationPresent(Parameterized.Parameter.class)).filter(
|
return fieldStream.filter(f -> f.isAnnotationPresent(Parameterized.Parameter.class)).filter(
|
||||||
ReflectionUtils::isPublic).collect(toList());
|
ReflectionUtils::isPublic).collect(toList());
|
||||||
}
|
}
|
||||||
|
|
||||||
private static ParameterResolutionException unMatchedAmountOfParametersException() {
|
private static ParameterResolutionException unMatchedAmountOfParametersException() {
|
||||||
return new ParameterResolutionException(
|
return new ParameterResolutionException("The amount of parametersFields in the constructor doesn't match those in the provided parametersFields");
|
||||||
"The amount of parametersFields in the constructor doesn't match those in the provided parametersFields");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Collection<Object[]> convertParametersMethodReturnType(Object obj) {
|
private static Collection<Object[]> convertParametersMethodReturnType(Object obj) {
|
||||||
|
@ -240,6 +213,7 @@ public class ParameterizedExtension implements TestTemplateInvocationContextProv
|
||||||
}
|
}
|
||||||
|
|
||||||
private static class ParameterWrapper {
|
private static class ParameterWrapper {
|
||||||
|
|
||||||
private final Optional<Collection<Object[]>> value;
|
private final Optional<Collection<Object[]>> value;
|
||||||
|
|
||||||
public ParameterWrapper(Optional<Collection<Object[]>> value) {
|
public ParameterWrapper(Optional<Collection<Object[]>> value) {
|
||||||
|
|
|
@ -53,7 +53,6 @@ import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
import java.util.logging.Logger;
|
|
||||||
import javax.imageio.ImageIO;
|
import javax.imageio.ImageIO;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -62,17 +61,16 @@ import javax.imageio.ImageIO;
|
||||||
* Tests that verify successful behavior will contain the following sets of files:
|
* Tests that verify successful behavior will contain the following sets of files:
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* /src/test/resources/uk/org/okapibarcode/backend/[symbol-name]/[test-name].properties (bar code initialization attributes)
|
* backend/[symbol-name]/[test-name].properties (bar code initialization attributes)
|
||||||
* /src/test/resources/uk/org/okapibarcode/backend/[symbol-name]/[test-name].codewords (expected intermediate coding of the bar code)
|
* /backend/[symbol-name]/[test-name].codewords (expected intermediate coding of the bar code)
|
||||||
* /src/test/resources/uk/org/okapibarcode/backend/[symbol-name]/[test-name].png (expected final rendering of the bar code)
|
* backend/[symbol-name]/[test-name].png (expected final rendering of the bar code)
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
* <p>
|
|
||||||
* Tests that verify error conditions will contain the following sets of files:
|
* Tests that verify error conditions will contain the following sets of files:
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* /src/test/resources/uk/org/okapibarcode/backend/[symbol-name]/[test-name].properties (bar code initialization attributes)
|
* backend/[symbol-name]/[test-name].properties (bar code initialization attributes)
|
||||||
* /src/test/resources/uk/org/okapibarcode/backend/[symbol-name]/[test-name].error (expected error message)
|
* backend/[symbol-name]/[test-name].error (expected error message)
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
* If a properties file is found with no matching expectation files, we assume that it was recently added to the test suite and
|
* If a properties file is found with no matching expectation files, we assume that it was recently added to the test suite and
|
||||||
|
@ -110,7 +108,7 @@ public class SymbolTest {
|
||||||
*/
|
*/
|
||||||
@Parameterized.Parameters
|
@Parameterized.Parameters
|
||||||
public static List<Object[]> data() throws IOException {
|
public static List<Object[]> data() throws IOException {
|
||||||
String path = "/org/xbib/graphics/barcode/fonts/OkapiDejaVuSans.ttf";
|
String path = "/org/xbib/graphics/barcode/fonts/DejaVuSans.ttf";
|
||||||
try {
|
try {
|
||||||
InputStream is = SymbolTest.class.getResourceAsStream(path);
|
InputStream is = SymbolTest.class.getResourceAsStream(path);
|
||||||
DEJA_VU_SANS = Font.createFont(Font.TRUETYPE_FONT, is);
|
DEJA_VU_SANS = Font.createFont(Font.TRUETYPE_FONT, is);
|
||||||
|
@ -139,6 +137,7 @@ public class SymbolTest {
|
||||||
}
|
}
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a new test.
|
* Creates a new test.
|
||||||
*
|
*
|
||||||
|
@ -174,14 +173,12 @@ public class SymbolTest {
|
||||||
} catch (InvocationTargetException e) {
|
} catch (InvocationTargetException e) {
|
||||||
symbol.errorMsg.append(e.getCause().getMessage());
|
symbol.errorMsg.append(e.getCause().getMessage());
|
||||||
}
|
}
|
||||||
|
//generateExpectationFiles(symbol);
|
||||||
if (codewordsFile.exists()) {
|
if (codewordsFile.exists()) {
|
||||||
verifySuccess(symbol);
|
verifySuccess(symbol);
|
||||||
} else if (errorFile.exists()) {
|
} else if (errorFile.exists()) {
|
||||||
verifyError(symbol);
|
verifyError(symbol);
|
||||||
}
|
}
|
||||||
if (!pngFile.exists()) {
|
|
||||||
generateExpectationFiles(symbol);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -224,7 +221,7 @@ public class SymbolTest {
|
||||||
if (expected != null && actual != null) {
|
if (expected != null && actual != null) {
|
||||||
assertEqualImage(pngFile.getName(), expected, actual);
|
assertEqualImage(pngFile.getName(), expected, actual);
|
||||||
}
|
}
|
||||||
// if possible, ensure an independent third party (ZXing) can read the generated barcode and agrees on what it represents
|
//*/ if possible, ensure an independent third party (ZXing) can read the generated barcode and agrees on what it represents
|
||||||
Reader zxingReader = findReader(symbol);
|
Reader zxingReader = findReader(symbol);
|
||||||
if (zxingReader != null && expected != null) {
|
if (zxingReader != null && expected != null) {
|
||||||
LuminanceSource source = new BufferedImageLuminanceSource(expected);
|
LuminanceSource source = new BufferedImageLuminanceSource(expected);
|
||||||
|
@ -316,7 +313,7 @@ public class SymbolTest {
|
||||||
*/
|
*/
|
||||||
private void verifyError(Symbol symbol) throws IOException {
|
private void verifyError(Symbol symbol) throws IOException {
|
||||||
String expectedError = Files.readAllLines(errorFile.toPath(), StandardCharsets.UTF_8).get(0);
|
String expectedError = Files.readAllLines(errorFile.toPath(), StandardCharsets.UTF_8).get(0);
|
||||||
assertTrue(symbol.errorMsg.toString().startsWith(expectedError));
|
assertTrue(symbol.errorMsg.toString().contains(expectedError));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -355,7 +352,7 @@ public class SymbolTest {
|
||||||
* @throws IOException if there is any I/O error
|
* @throws IOException if there is any I/O error
|
||||||
*/
|
*/
|
||||||
private void generateCodewordsExpectationFile(Symbol symbol) throws IOException {
|
private void generateCodewordsExpectationFile(Symbol symbol) throws IOException {
|
||||||
if (!codewordsFile.exists()) {
|
//if (!codewordsFile.exists()) {
|
||||||
PrintWriter writer = new PrintWriter(codewordsFile);
|
PrintWriter writer = new PrintWriter(codewordsFile);
|
||||||
try {
|
try {
|
||||||
int[] codewords = symbol.getCodewords();
|
int[] codewords = symbol.getCodewords();
|
||||||
|
@ -368,7 +365,7 @@ public class SymbolTest {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
writer.close();
|
writer.close();
|
||||||
}
|
//}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -411,9 +408,7 @@ public class SymbolTest {
|
||||||
if (width > 0 && height > 0) {
|
if (width > 0 && height > 0) {
|
||||||
BufferedImage img = new BufferedImage(width, height, BufferedImage.TYPE_BYTE_GRAY);
|
BufferedImage img = new BufferedImage(width, height, BufferedImage.TYPE_BYTE_GRAY);
|
||||||
Graphics2D g2d = img.createGraphics();
|
Graphics2D g2d = img.createGraphics();
|
||||||
g2d.setPaint(Color.WHITE);
|
GraphicsRenderer renderer = new GraphicsRenderer(g2d, scalingFactor, Color.WHITE, Color.BLACK, true, false);
|
||||||
g2d.fillRect(0, 0, width, height);
|
|
||||||
GraphicsRenderer renderer = new GraphicsRenderer(g2d, scalingFactor, Color.WHITE, Color.BLACK, true, true);
|
|
||||||
renderer.render(symbol);
|
renderer.render(symbol);
|
||||||
g2d.dispose();
|
g2d.dispose();
|
||||||
return img;
|
return img;
|
||||||
|
|
|
@ -51,9 +51,6 @@ public class Code39Test {
|
||||||
|
|
||||||
private GraphicsRenderer createRenderer(BufferedImage bufferedImage, double scalingFactor) {
|
private GraphicsRenderer createRenderer(BufferedImage bufferedImage, double scalingFactor) {
|
||||||
Graphics2D g2d = bufferedImage.createGraphics();
|
Graphics2D g2d = bufferedImage.createGraphics();
|
||||||
g2d.setPaint(Color.WHITE);
|
|
||||||
g2d.setBackground(Color.BLACK);
|
|
||||||
g2d.fillRect(0, 0, bufferedImage.getWidth(), bufferedImage.getHeight());
|
|
||||||
return new GraphicsRenderer(g2d, scalingFactor, Color.WHITE, Color.BLACK, false, false);
|
return new GraphicsRenderer(g2d, scalingFactor, Color.WHITE, Color.BLACK, false, false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
112211 start
|
112211
|
||||||
111121 0
|
111121
|
||||||
211121 1
|
211121
|
||||||
121121 2
|
121121
|
||||||
221111 3
|
221111
|
||||||
112121 4
|
112121
|
||||||
112111 -
|
112111
|
||||||
212111 5
|
212111
|
||||||
122111 6
|
122111
|
||||||
111221 7
|
111221
|
||||||
211211 8
|
211211
|
||||||
211111 9
|
211111
|
||||||
112121 4 (check digit C)
|
112121
|
||||||
221111 3 (check digit K)
|
221111
|
||||||
112211 stop
|
112211
|
||||||
|
|
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 36 KiB |
|
@ -1,4 +1,4 @@
|
||||||
34 mode 2 + part of the postal code
|
34
|
||||||
20
|
20
|
||||||
45
|
45
|
||||||
20
|
20
|
||||||
|
@ -7,8 +7,8 @@
|
||||||
2
|
2
|
||||||
18
|
18
|
||||||
7
|
7
|
||||||
0 end primary message
|
0
|
||||||
61 start primary message error correction
|
61
|
||||||
53
|
53
|
||||||
12
|
12
|
||||||
1
|
1
|
||||||
|
@ -17,92 +17,92 @@
|
||||||
55
|
55
|
||||||
6
|
6
|
||||||
31
|
31
|
||||||
40 end primary message error correction
|
40
|
||||||
59 [Shift B]
|
59
|
||||||
42 [
|
42
|
||||||
41 )
|
41
|
||||||
59 [Shift B]
|
59
|
||||||
40 >
|
40
|
||||||
30 RS
|
30
|
||||||
48 0
|
48
|
||||||
49 1
|
49
|
||||||
29 GS
|
29
|
||||||
57 9
|
57
|
||||||
54 6
|
54
|
||||||
49 1
|
49
|
||||||
26 Z
|
26
|
||||||
48 0
|
48
|
||||||
48 0
|
48
|
||||||
48 0
|
48
|
||||||
48 0
|
48
|
||||||
52 4
|
52
|
||||||
57 9
|
57
|
||||||
53 5
|
53
|
||||||
49 1
|
49
|
||||||
29 GS
|
29
|
||||||
21 U
|
21
|
||||||
16 P
|
16
|
||||||
19 S
|
19
|
||||||
14 N
|
14
|
||||||
29 GS
|
29
|
||||||
48 0
|
48
|
||||||
54 6
|
54
|
||||||
24 X
|
24
|
||||||
54 6
|
54
|
||||||
49 1
|
49
|
||||||
48 0
|
48
|
||||||
29 GS
|
29
|
||||||
49 1
|
49
|
||||||
53 5
|
53
|
||||||
57 9
|
57
|
||||||
29 GS
|
29
|
||||||
49 1
|
49
|
||||||
50 2
|
50
|
||||||
51 3
|
51
|
||||||
52 4
|
52
|
||||||
53 5
|
53
|
||||||
54 6
|
54
|
||||||
55 7
|
55
|
||||||
29 GS
|
29
|
||||||
49 1
|
49
|
||||||
47 /
|
47
|
||||||
49 1
|
49
|
||||||
29 GS
|
29
|
||||||
29 GS
|
29
|
||||||
25 Y
|
25
|
||||||
29 GS
|
29
|
||||||
54 6
|
54
|
||||||
51 3
|
51
|
||||||
52 4
|
52
|
||||||
32
|
32
|
||||||
1 A
|
1
|
||||||
12 L
|
12
|
||||||
16 P
|
16
|
||||||
8 H
|
8
|
||||||
1 A
|
1
|
||||||
32
|
32
|
||||||
4 D
|
4
|
||||||
18 R
|
18
|
||||||
29 GS
|
29
|
||||||
16 P
|
16
|
||||||
9 I
|
9
|
||||||
20 T
|
20
|
||||||
20 T
|
20
|
||||||
19 S
|
19
|
||||||
2 B
|
2
|
||||||
21 U
|
21
|
||||||
18 R
|
18
|
||||||
7 G
|
7
|
||||||
8 H
|
8
|
||||||
29 GS
|
29
|
||||||
16 P
|
16
|
||||||
1 A
|
1
|
||||||
30 RS
|
30
|
||||||
62 [Shift E]
|
62
|
||||||
4 EOT
|
4
|
||||||
33 start padding
|
|
||||||
33
|
33
|
||||||
44 start secondary message error correction
|
33
|
||||||
|
44
|
||||||
40
|
40
|
||||||
52
|
52
|
||||||
23
|
23
|
||||||
|
@ -141,4 +141,4 @@
|
||||||
40
|
40
|
||||||
17
|
17
|
||||||
49
|
49
|
||||||
31 end secondary message error correction
|
31
|
||||||
|
|
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 37 KiB |
|
@ -1,4 +1,4 @@
|
||||||
34 mode 2 + part of the postal code
|
34
|
||||||
20
|
20
|
||||||
45
|
45
|
||||||
20
|
20
|
||||||
|
@ -7,8 +7,8 @@
|
||||||
2
|
2
|
||||||
18
|
18
|
||||||
7
|
7
|
||||||
0 end primary message
|
0
|
||||||
61 start primary message error correction
|
61
|
||||||
53
|
53
|
||||||
12
|
12
|
||||||
1
|
1
|
||||||
|
@ -17,9 +17,9 @@
|
||||||
55
|
55
|
||||||
6
|
6
|
||||||
31
|
31
|
||||||
40 end primary message error correction
|
40
|
||||||
33 padding
|
33
|
||||||
7 structured append 1 of 8 = 000 111 = 7
|
7
|
||||||
59
|
59
|
||||||
42
|
42
|
||||||
41
|
41
|
||||||
|
|
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 37 KiB |
|
@ -1,4 +1,4 @@
|
||||||
19 mode 3 + part of the postal code
|
19
|
||||||
28
|
28
|
||||||
16
|
16
|
||||||
28
|
28
|
||||||
|
@ -8,7 +8,7 @@
|
||||||
31
|
31
|
||||||
4
|
4
|
||||||
0
|
0
|
||||||
59 start primary message error correction
|
59
|
||||||
33
|
33
|
||||||
49
|
49
|
||||||
2
|
2
|
||||||
|
@ -18,7 +18,7 @@
|
||||||
0
|
0
|
||||||
48
|
48
|
||||||
25
|
25
|
||||||
59 start secondary message
|
59
|
||||||
42
|
42
|
||||||
41
|
41
|
||||||
59
|
59
|
||||||
|
@ -102,7 +102,7 @@
|
||||||
4
|
4
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
44 start secondary message error correction
|
44
|
||||||
40
|
40
|
||||||
52
|
52
|
||||||
23
|
23
|
||||||
|
|
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 36 KiB |
|
@ -1,14 +1,14 @@
|
||||||
4 mode 4
|
4
|
||||||
1 A
|
1
|
||||||
2 B
|
2
|
||||||
3 C
|
3
|
||||||
33 start padding
|
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
13 start primary message error correction
|
33
|
||||||
|
13
|
||||||
1
|
1
|
||||||
28
|
28
|
||||||
60
|
60
|
||||||
|
@ -17,8 +17,7 @@
|
||||||
0
|
0
|
||||||
48
|
48
|
||||||
52
|
52
|
||||||
15 end primary message error correction
|
15
|
||||||
33 start secondary message
|
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
|
@ -102,7 +101,8 @@
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
60 start secondary message error correction
|
33
|
||||||
|
60
|
||||||
60
|
60
|
||||||
40
|
40
|
||||||
40
|
40
|
||||||
|
@ -141,4 +141,4 @@
|
||||||
31
|
31
|
||||||
31
|
31
|
||||||
40
|
40
|
||||||
40 end secondary message error correction
|
40
|
||||||
|
|
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 31 KiB |
|
@ -1,14 +1,14 @@
|
||||||
4 mode 4
|
4
|
||||||
1 A
|
1
|
||||||
2 B
|
2
|
||||||
3 C
|
3
|
||||||
33 start padding
|
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
13 start primary message error correction
|
33
|
||||||
|
13
|
||||||
1
|
1
|
||||||
28
|
28
|
||||||
60
|
60
|
||||||
|
@ -17,8 +17,7 @@
|
||||||
0
|
0
|
||||||
48
|
48
|
||||||
52
|
52
|
||||||
15 end primary message error correction
|
15
|
||||||
33 start secondary message
|
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
|
@ -102,7 +101,8 @@
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
60 start secondary message error correction
|
33
|
||||||
|
60
|
||||||
60
|
60
|
||||||
40
|
40
|
||||||
40
|
40
|
||||||
|
@ -141,4 +141,4 @@
|
||||||
31
|
31
|
||||||
31
|
31
|
||||||
40
|
40
|
||||||
40 end secondary message error correction
|
40
|
||||||
|
|
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 31 KiB |
|
@ -1,5 +1,5 @@
|
||||||
4 mode 4
|
4
|
||||||
0 start primary message
|
0
|
||||||
1
|
1
|
||||||
2
|
2
|
||||||
3
|
3
|
||||||
|
@ -7,8 +7,8 @@
|
||||||
5
|
5
|
||||||
6
|
6
|
||||||
7
|
7
|
||||||
8 end primary message
|
8
|
||||||
52 start primary message error correction
|
52
|
||||||
20
|
20
|
||||||
12
|
12
|
||||||
4
|
4
|
||||||
|
@ -17,8 +17,8 @@
|
||||||
12
|
12
|
||||||
15
|
15
|
||||||
8
|
8
|
||||||
39 end primary message error correction
|
39
|
||||||
9 start secondary message
|
9
|
||||||
10
|
10
|
||||||
11
|
11
|
||||||
12
|
12
|
||||||
|
@ -65,7 +65,6 @@
|
||||||
55
|
55
|
||||||
56
|
56
|
||||||
57
|
57
|
||||||
33 start padding
|
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
|
@ -101,8 +100,9 @@
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33 end secondary message
|
33
|
||||||
57 start secondary message error correction
|
33
|
||||||
|
57
|
||||||
9
|
9
|
||||||
46
|
46
|
||||||
29
|
29
|
||||||
|
@ -141,4 +141,4 @@
|
||||||
34
|
34
|
||||||
31
|
31
|
||||||
61
|
61
|
||||||
46 end secondary message error correction
|
46
|
||||||
|
|
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 34 KiB |
|
@ -1,5 +1,5 @@
|
||||||
4 mode 4
|
4
|
||||||
63 [Latch B], since next 2+ chars are in Code Set B
|
63
|
||||||
0
|
0
|
||||||
1
|
1
|
||||||
2
|
2
|
||||||
|
@ -8,7 +8,7 @@
|
||||||
5
|
5
|
||||||
6
|
6
|
||||||
7
|
7
|
||||||
42 start primary message error correction
|
42
|
||||||
34
|
34
|
||||||
1
|
1
|
||||||
61
|
61
|
||||||
|
@ -17,8 +17,8 @@
|
||||||
59
|
59
|
||||||
47
|
47
|
||||||
38
|
38
|
||||||
7 end primary message error correction
|
7
|
||||||
8 start secondary message
|
8
|
||||||
9
|
9
|
||||||
10
|
10
|
||||||
11
|
11
|
||||||
|
@ -62,7 +62,6 @@
|
||||||
52
|
52
|
||||||
53
|
53
|
||||||
54
|
54
|
||||||
33 start padding
|
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
|
@ -101,8 +100,9 @@
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33 end secondary message
|
33
|
||||||
8 start secondary message error correction
|
33
|
||||||
|
8
|
||||||
25
|
25
|
||||||
22
|
22
|
||||||
26
|
26
|
||||||
|
@ -141,4 +141,4 @@
|
||||||
48
|
48
|
||||||
40
|
40
|
||||||
9
|
9
|
||||||
10 end secondary message error correction
|
10
|
||||||
|
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 34 KiB |
|
@ -1,14 +1,14 @@
|
||||||
4 mode 4
|
4
|
||||||
1 A
|
1
|
||||||
59 [Shift B], since only next 1 char is in Code Set B
|
59
|
||||||
2 b
|
2
|
||||||
1 A
|
1
|
||||||
1 A
|
1
|
||||||
1 A
|
1
|
||||||
63 [Latch B], since next 2 chars are in Code Set B
|
63
|
||||||
2 b
|
2
|
||||||
2 b
|
2
|
||||||
11 start primary message error correction
|
11
|
||||||
13
|
13
|
||||||
16
|
16
|
||||||
33
|
33
|
||||||
|
@ -17,34 +17,33 @@
|
||||||
48
|
48
|
||||||
15
|
15
|
||||||
56
|
56
|
||||||
56 end primary message error correction
|
56
|
||||||
59 [Shift A], since only next 1 char is in Code Set A
|
59
|
||||||
1 A
|
1
|
||||||
2 b
|
2
|
||||||
2 b
|
2
|
||||||
2 b
|
2
|
||||||
63 [Latch A], since next 4 chars are in Code Set A
|
63
|
||||||
1 A
|
1
|
||||||
1 A
|
1
|
||||||
1 A
|
1
|
||||||
1 A
|
1
|
||||||
63 [Latch B], since next 2 chars are in Code Set B
|
63
|
||||||
2 b
|
2
|
||||||
2 b
|
2
|
||||||
57 [3 Shift A], since next 3 chars are in Code Set A
|
57
|
||||||
1 A
|
1
|
||||||
1 A
|
1
|
||||||
1 A
|
1
|
||||||
2 b
|
2
|
||||||
2 b
|
2
|
||||||
56 [2 Shift A], since next 2 chars are in Code Set A
|
56
|
||||||
1 A
|
1
|
||||||
1 A
|
1
|
||||||
2 b
|
2
|
||||||
2 b
|
2
|
||||||
63 [Latch A], since next 4 chars (including padding) are in Code Set A
|
63
|
||||||
1 A
|
1
|
||||||
33 start padding
|
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
|
@ -102,7 +101,8 @@
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
18 start secondary message error correction
|
33
|
||||||
|
18
|
||||||
45
|
45
|
||||||
20
|
20
|
||||||
58
|
58
|
||||||
|
@ -141,4 +141,4 @@
|
||||||
52
|
52
|
||||||
57
|
57
|
||||||
59
|
59
|
||||||
53 end secondary message error correction
|
53
|
||||||
|
|
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 32 KiB |
|
@ -1,14 +1,14 @@
|
||||||
4 mode 4
|
4
|
||||||
60 [Shift C]
|
60
|
||||||
7
|
7
|
||||||
61 [Shift D]
|
61
|
||||||
17
|
17
|
||||||
62 [Shift E]
|
62
|
||||||
39
|
39
|
||||||
60 [Shift C]
|
60
|
||||||
7
|
7
|
||||||
60 [Shift C]
|
60
|
||||||
34 start primary message error correction
|
34
|
||||||
18
|
18
|
||||||
16
|
16
|
||||||
28
|
28
|
||||||
|
@ -17,75 +17,74 @@
|
||||||
1
|
1
|
||||||
47
|
47
|
||||||
51
|
51
|
||||||
8 end primary message error correction
|
8
|
||||||
7 start secondary message
|
|
||||||
61 [Shift D]
|
|
||||||
17
|
|
||||||
61 [Shift D]
|
|
||||||
17
|
|
||||||
62 [Shift E]
|
|
||||||
39
|
|
||||||
62 [Shift E]
|
|
||||||
39
|
|
||||||
60 [Shift C]
|
|
||||||
7
|
7
|
||||||
60 [Shift C]
|
61
|
||||||
|
17
|
||||||
|
61
|
||||||
|
17
|
||||||
|
62
|
||||||
|
39
|
||||||
|
62
|
||||||
|
39
|
||||||
|
60
|
||||||
7
|
7
|
||||||
60 [Shift C]
|
60
|
||||||
7
|
7
|
||||||
61 [Shift D]
|
60
|
||||||
|
7
|
||||||
|
61
|
||||||
17
|
17
|
||||||
61 [Shift D]
|
61
|
||||||
17
|
17
|
||||||
61 [Shift D]
|
61
|
||||||
17
|
17
|
||||||
62 [Shift E]
|
62
|
||||||
39
|
39
|
||||||
62 [Shift E]
|
62
|
||||||
39
|
39
|
||||||
62 [Shift E]
|
62
|
||||||
39
|
39
|
||||||
60 [Shift C]
|
60
|
||||||
60 [Lock In C]
|
60
|
||||||
7
|
7
|
||||||
7
|
7
|
||||||
7
|
7
|
||||||
7
|
7
|
||||||
61 [Shift D]
|
61
|
||||||
61 [Lock In D]
|
61
|
||||||
17
|
17
|
||||||
17
|
17
|
||||||
17
|
17
|
||||||
17
|
17
|
||||||
62 [Shift E]
|
62
|
||||||
62 [Lock In E]
|
62
|
||||||
39
|
39
|
||||||
39
|
39
|
||||||
39
|
39
|
||||||
39
|
39
|
||||||
60 [Shift C]
|
60
|
||||||
60 [Lock In C]
|
60
|
||||||
7
|
7
|
||||||
7
|
7
|
||||||
7
|
7
|
||||||
7
|
7
|
||||||
7
|
7
|
||||||
61 [Shift D]
|
61
|
||||||
61 [Lock In D]
|
61
|
||||||
17
|
17
|
||||||
17
|
17
|
||||||
17
|
17
|
||||||
17
|
17
|
||||||
17
|
17
|
||||||
62 [Shift E]
|
62
|
||||||
62 [Lock In E]
|
62
|
||||||
39
|
39
|
||||||
39
|
39
|
||||||
39
|
39
|
||||||
39
|
39
|
||||||
39
|
39
|
||||||
63 [Latch B]
|
63
|
||||||
33 start padding
|
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
|
@ -102,7 +101,8 @@
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
5 start secondary message error correction
|
33
|
||||||
|
5
|
||||||
43
|
43
|
||||||
15
|
15
|
||||||
62
|
62
|
||||||
|
@ -141,4 +141,4 @@
|
||||||
29
|
29
|
||||||
16
|
16
|
||||||
61
|
61
|
||||||
5 end secondary message error correction
|
5
|
||||||
|
|
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 37 KiB |
|
@ -1,4 +1,4 @@
|
||||||
4 mode 4
|
4
|
||||||
1
|
1
|
||||||
2
|
2
|
||||||
3
|
3
|
||||||
|
@ -8,7 +8,7 @@
|
||||||
7
|
7
|
||||||
8
|
8
|
||||||
9
|
9
|
||||||
2 start primary message error correction
|
2
|
||||||
35
|
35
|
||||||
59
|
59
|
||||||
36
|
36
|
||||||
|
@ -17,8 +17,8 @@
|
||||||
42
|
42
|
||||||
17
|
17
|
||||||
52
|
52
|
||||||
51 end primary message error correction
|
51
|
||||||
10 start secondary message
|
10
|
||||||
11
|
11
|
||||||
12
|
12
|
||||||
13
|
13
|
||||||
|
@ -101,8 +101,8 @@
|
||||||
12
|
12
|
||||||
13
|
13
|
||||||
14
|
14
|
||||||
15 end secondary message
|
15
|
||||||
58 start secondary message error correction
|
58
|
||||||
47
|
47
|
||||||
56
|
56
|
||||||
17
|
17
|
||||||
|
@ -141,4 +141,4 @@
|
||||||
26
|
26
|
||||||
25
|
25
|
||||||
39
|
39
|
||||||
9 end secondary message error correction
|
9
|
||||||
|
|
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 34 KiB |
|
@ -1,14 +1,14 @@
|
||||||
4 mode 4
|
4
|
||||||
31 start numeric shift [NS]
|
31
|
||||||
7 numeric compression codeword 1
|
7
|
||||||
22 numeric compression codeword 2
|
22
|
||||||
60 numeric compression codeword 3
|
60
|
||||||
52 numeric compression codeword 4
|
52
|
||||||
21 numeric compression codeword 5
|
21
|
||||||
1 A
|
1
|
||||||
1 A
|
1
|
||||||
1 A
|
1
|
||||||
40 start primary message error correction
|
40
|
||||||
60
|
60
|
||||||
12
|
12
|
||||||
24
|
24
|
||||||
|
@ -17,16 +17,15 @@
|
||||||
21
|
21
|
||||||
40
|
40
|
||||||
5
|
5
|
||||||
55 end primary message error correction
|
55
|
||||||
1 A
|
1
|
||||||
1 A
|
1
|
||||||
31 start numeric shift [NS]
|
31
|
||||||
58 numeric compression codeword 1
|
58
|
||||||
55 numeric compression codeword 2
|
55
|
||||||
38 numeric compression codeword 3
|
38
|
||||||
34 numeric compression codeword 4
|
34
|
||||||
49 numeric compression codeword 5
|
49
|
||||||
33 start padding
|
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
|
@ -102,7 +101,8 @@
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
47 start secondary message error correction
|
33
|
||||||
|
47
|
||||||
46
|
46
|
||||||
50
|
50
|
||||||
54
|
54
|
||||||
|
@ -141,4 +141,4 @@
|
||||||
21
|
21
|
||||||
26
|
26
|
||||||
43
|
43
|
||||||
47 end secondary message error correction
|
47
|
||||||
|
|
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 32 KiB |
|
@ -1,6 +1,6 @@
|
||||||
4 mode 4
|
4
|
||||||
33 padding
|
33
|
||||||
2 structured append 1 of 3 = 000 010 = 2
|
2
|
||||||
1
|
1
|
||||||
2
|
2
|
||||||
3
|
3
|
||||||
|
|
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 31 KiB |
|
@ -1,6 +1,6 @@
|
||||||
4 mode 4
|
4
|
||||||
33 padding
|
33
|
||||||
10 structured append 2 of 3 = 001 010 = 10
|
10
|
||||||
4
|
4
|
||||||
5
|
5
|
||||||
6
|
6
|
||||||
|
|
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 31 KiB |
|
@ -1,6 +1,6 @@
|
||||||
4 mode 4
|
4
|
||||||
33 padding
|
33
|
||||||
18 structured append 3 of 3 = 010 010 = 18
|
18
|
||||||
7
|
7
|
||||||
8
|
8
|
||||||
9
|
9
|
||||||
|
|
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 31 KiB |
|
@ -1,14 +1,14 @@
|
||||||
5 mode 5
|
5
|
||||||
1 A
|
1
|
||||||
2 B
|
2
|
||||||
3 C
|
3
|
||||||
33 start padding
|
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
26 start primary message error correction
|
33
|
||||||
|
26
|
||||||
33
|
33
|
||||||
12
|
12
|
||||||
53
|
53
|
||||||
|
@ -17,8 +17,7 @@
|
||||||
21
|
21
|
||||||
37
|
37
|
||||||
45
|
45
|
||||||
59 end primary message error correction
|
59
|
||||||
33 start secondary message
|
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
|
@ -85,8 +84,9 @@
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33
|
33
|
||||||
33 end secondary message
|
33
|
||||||
5 start secondary message error correction
|
33
|
||||||
|
5
|
||||||
5
|
5
|
||||||
39
|
39
|
||||||
39
|
39
|
||||||
|
@ -141,4 +141,4 @@
|
||||||
44
|
44
|
||||||
44
|
44
|
||||||
34
|
34
|
||||||
34 end secondary message error correction
|
34
|
||||||
|
|
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 32 KiB |
|
@ -1,4 +1,4 @@
|
||||||
5 mode 5
|
5
|
||||||
1
|
1
|
||||||
2
|
2
|
||||||
3
|
3
|
||||||
|
@ -8,7 +8,7 @@
|
||||||
7
|
7
|
||||||
8
|
8
|
||||||
9
|
9
|
||||||
21 start primary message error correction
|
21
|
||||||
3
|
3
|
||||||
43
|
43
|
||||||
45
|
45
|
||||||
|
@ -17,33 +17,7 @@
|
||||||
63
|
63
|
||||||
4
|
4
|
||||||
45
|
45
|
||||||
7 end primary message error correction
|
|
||||||
10 start secondary message
|
|
||||||
11
|
|
||||||
12
|
|
||||||
13
|
|
||||||
14
|
|
||||||
15
|
|
||||||
16
|
|
||||||
17
|
|
||||||
18
|
|
||||||
19
|
|
||||||
20
|
|
||||||
21
|
|
||||||
22
|
|
||||||
23
|
|
||||||
24
|
|
||||||
25
|
|
||||||
26
|
|
||||||
1
|
|
||||||
2
|
|
||||||
3
|
|
||||||
4
|
|
||||||
5
|
|
||||||
6
|
|
||||||
7
|
7
|
||||||
8
|
|
||||||
9
|
|
||||||
10
|
10
|
||||||
11
|
11
|
||||||
12
|
12
|
||||||
|
@ -85,8 +59,34 @@
|
||||||
22
|
22
|
||||||
23
|
23
|
||||||
24
|
24
|
||||||
25 end secondary message
|
25
|
||||||
5 start secondary message error correction
|
26
|
||||||
|
1
|
||||||
|
2
|
||||||
|
3
|
||||||
|
4
|
||||||
|
5
|
||||||
|
6
|
||||||
|
7
|
||||||
|
8
|
||||||
|
9
|
||||||
|
10
|
||||||
|
11
|
||||||
|
12
|
||||||
|
13
|
||||||
|
14
|
||||||
|
15
|
||||||
|
16
|
||||||
|
17
|
||||||
|
18
|
||||||
|
19
|
||||||
|
20
|
||||||
|
21
|
||||||
|
22
|
||||||
|
23
|
||||||
|
24
|
||||||
|
25
|
||||||
|
5
|
||||||
60
|
60
|
||||||
20
|
20
|
||||||
38
|
38
|
||||||
|
@ -141,4 +141,4 @@
|
||||||
36
|
36
|
||||||
53
|
53
|
||||||
20
|
20
|
||||||
11 end secondary message error correction
|
11
|
||||||
|
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 35 KiB |
|
@ -1,5 +1,4 @@
|
||||||
6 mode 6
|
6
|
||||||
47 start primary message
|
|
||||||
47
|
47
|
||||||
47
|
47
|
||||||
47
|
47
|
||||||
|
@ -7,8 +6,9 @@
|
||||||
47
|
47
|
||||||
47
|
47
|
||||||
47
|
47
|
||||||
47 end primary message
|
47
|
||||||
37 start primary message error correction
|
47
|
||||||
|
37
|
||||||
32
|
32
|
||||||
5
|
5
|
||||||
29
|
29
|
||||||
|
@ -17,8 +17,7 @@
|
||||||
35
|
35
|
||||||
21
|
21
|
||||||
27
|
27
|
||||||
58 end primary message error correction
|
58
|
||||||
47 start secondary message
|
|
||||||
47
|
47
|
||||||
47
|
47
|
||||||
47
|
47
|
||||||
|
@ -101,8 +100,9 @@
|
||||||
47
|
47
|
||||||
47
|
47
|
||||||
47
|
47
|
||||||
47 end secondary message
|
47
|
||||||
49 start secondary message error correction
|
47
|
||||||
|
49
|
||||||
49
|
49
|
||||||
31
|
31
|
||||||
31
|
31
|
||||||
|
@ -141,4 +141,4 @@
|
||||||
36
|
36
|
||||||
36
|
36
|
||||||
31
|
31
|
||||||
31 end secondary message error correction
|
31
|
||||||
|
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 34 KiB |
143
barcode/src/test/resources/org/xbib/graphics/barcode/output/code93-basic.eps
Executable file → Normal file
|
@ -1,71 +1,76 @@
|
||||||
%!PS-Adobe-3.0 EPSF-3.0
|
%!PS-Adobe-3.0 EPSF-3.0
|
||||||
%%Creator: OkapiBarcode
|
%%BoundingBox: 0 0 363 171
|
||||||
%%Title: 123456789
|
%%HiResBoundingBox: 0.0 0.0 362.8346456692914 170.07874015748033
|
||||||
%%Pages: 0
|
%%LanguageLevel: 3
|
||||||
%%BoundingBox: 0 0 128 60
|
%%Pages: 1
|
||||||
%%EndComments
|
%%EndComments
|
||||||
/TL { setlinewidth moveto lineto stroke } bind def
|
%%Page: 1 1
|
||||||
/TC { moveto 0 360 arc 360 0 arcn fill } bind def
|
/M /moveto load def
|
||||||
/TH { 0 setlinewidth moveto lineto lineto lineto lineto lineto closepath fill } bind def
|
/L /lineto load def
|
||||||
/TB { 2 copy } bind def
|
/C /curveto load def
|
||||||
/TR { newpath 4 1 roll exch moveto 1 index 0 rlineto 0 exch rlineto neg 0 rlineto closepath fill } bind def
|
/Z /closepath load def
|
||||||
/TE { pop pop } bind def
|
/RL /rlineto load def
|
||||||
newpath
|
/rgb /setrgbcolor load def
|
||||||
0.00 0.00 0.00 setrgbcolor
|
/rect { /height exch def /width exch def /y exch def /x exch def x y M width 0 RL 0 height RL width neg 0 RL } bind def
|
||||||
1.00 1.00 1.00 setrgbcolor
|
/ellipse { /endangle exch def /startangle exch def /ry exch def /rx exch def /y exch def /x exch def /savematrix matrix currentmatrix def x y translate rx ry scale 0 0 1 startangle endangle arcn savematrix setmatrix } bind def
|
||||||
60.00 0.00 TB 0.00 128.00 TR
|
/imgdict { /datastream exch def /hasdata exch def /decodeScale exch def /bits exch def /bands exch def /imgheight exch def /imgwidth exch def << /ImageType 1 /Width imgwidth /Height imgheight /BitsPerComponent bits /Decode [bands {0 decodeScale} repeat]
|
||||||
TE
|
/ImageMatrix [imgwidth 0 0 imgheight 0 0] hasdata { /DataSource datastream } if >> } bind def
|
||||||
0.00 0.00 0.00 setrgbcolor
|
/latinize { /fontName exch def /fontNameNew exch def fontName findfont 0 dict copy begin /Encoding ISOLatin1Encoding def fontNameNew /FontName def currentdict end dup /FID undef fontNameNew exch definefont pop } bind def
|
||||||
40.00 15.00 TB 5.00 1.00 TR
|
/LucidaGrandeLat /LucidaGrande latinize /LucidaGrandeLat 12.0 selectfont
|
||||||
TB 7.00 1.00 TR
|
gsave
|
||||||
TB 9.00 4.00 TR
|
clipsave
|
||||||
TB 14.00 1.00 TR
|
/DeviceRGB setcolorspace
|
||||||
TB 16.00 1.00 TR
|
0 170.07874015748033 translate
|
||||||
TB 19.00 1.00 TR
|
2.834645669291339 -2.834645669291339 scale
|
||||||
TB 23.00 1.00 TR
|
/basematrix matrix currentmatrix def
|
||||||
TB 25.00 1.00 TR
|
gsave
|
||||||
TB 29.00 1.00 TR
|
0.0 0.0 0.0 rgb
|
||||||
TB 32.00 1.00 TR
|
1.0 setlinewidth 0 setlinejoin 0 setlinecap [] 0.0 setdash
|
||||||
TB 34.00 1.00 TR
|
1.0 1.0 1.0 rgb
|
||||||
TB 39.00 1.00 TR
|
newpath 0.0 0.0 1920.0 1200.0 rect Z fill
|
||||||
TB 41.00 1.00 TR
|
0.0 0.0 0.0 rgb
|
||||||
TB 44.00 1.00 TR
|
newpath 5.0 5.0 M 6.0 5.0 L 6.0 45.0 L 5.0 45.0 L Z fill
|
||||||
TB 46.00 1.00 TR
|
newpath 7.0 5.0 M 8.0 5.0 L 8.0 45.0 L 7.0 45.0 L Z fill
|
||||||
TB 50.00 1.00 TR
|
newpath 9.0 5.0 M 13.0 5.0 L 13.0 45.0 L 9.0 45.0 L Z fill
|
||||||
TB 53.00 1.00 TR
|
newpath 14.0 5.0 M 15.0 5.0 L 15.0 45.0 L 14.0 45.0 L Z fill
|
||||||
TB 56.00 1.00 TR
|
newpath 16.0 5.0 M 17.0 5.0 L 17.0 45.0 L 16.0 45.0 L Z fill
|
||||||
TB 59.00 1.00 TR
|
newpath 19.0 5.0 M 20.0 5.0 L 20.0 45.0 L 19.0 45.0 L Z fill
|
||||||
TB 62.00 1.00 TR
|
newpath 23.0 5.0 M 24.0 5.0 L 24.0 45.0 L 23.0 45.0 L Z fill
|
||||||
TB 66.00 1.00 TR
|
newpath 25.0 5.0 M 26.0 5.0 L 26.0 45.0 L 25.0 45.0 L Z fill
|
||||||
TB 68.00 1.00 TR
|
newpath 29.0 5.0 M 30.0 5.0 L 30.0 45.0 L 29.0 45.0 L Z fill
|
||||||
TB 70.00 1.00 TR
|
newpath 32.0 5.0 M 33.0 5.0 L 33.0 45.0 L 32.0 45.0 L Z fill
|
||||||
TB 72.00 1.00 TR
|
newpath 34.0 5.0 M 35.0 5.0 L 35.0 45.0 L 34.0 45.0 L Z fill
|
||||||
TB 77.00 1.00 TR
|
newpath 39.0 5.0 M 40.0 5.0 L 40.0 45.0 L 39.0 45.0 L Z fill
|
||||||
TB 81.00 1.00 TR
|
newpath 41.0 5.0 M 42.0 5.0 L 42.0 45.0 L 41.0 45.0 L Z fill
|
||||||
TB 84.00 1.00 TR
|
newpath 44.0 5.0 M 45.0 5.0 L 45.0 45.0 L 44.0 45.0 L Z fill
|
||||||
TB 86.00 1.00 TR
|
newpath 46.0 5.0 M 47.0 5.0 L 47.0 45.0 L 46.0 45.0 L Z fill
|
||||||
TB 91.00 1.00 TR
|
newpath 50.0 5.0 M 51.0 5.0 L 51.0 45.0 L 50.0 45.0 L Z fill
|
||||||
TB 93.00 1.00 TR
|
newpath 53.0 5.0 M 54.0 5.0 L 54.0 45.0 L 53.0 45.0 L Z fill
|
||||||
TB 95.00 1.00 TR
|
newpath 56.0 5.0 M 57.0 5.0 L 57.0 45.0 L 56.0 45.0 L Z fill
|
||||||
TB 98.00 1.00 TR
|
newpath 59.0 5.0 M 60.0 5.0 L 60.0 45.0 L 59.0 45.0 L Z fill
|
||||||
TB 100.00 2.00 TR
|
newpath 62.0 5.0 M 63.0 5.0 L 63.0 45.0 L 62.0 45.0 L Z fill
|
||||||
TB 104.00 1.00 TR
|
newpath 66.0 5.0 M 67.0 5.0 L 67.0 45.0 L 66.0 45.0 L Z fill
|
||||||
TB 107.00 2.00 TR
|
newpath 68.0 5.0 M 69.0 5.0 L 69.0 45.0 L 68.0 45.0 L Z fill
|
||||||
TB 111.00 1.00 TR
|
newpath 70.0 5.0 M 71.0 5.0 L 71.0 45.0 L 70.0 45.0 L Z fill
|
||||||
TB 113.00 1.00 TR
|
newpath 72.0 5.0 M 73.0 5.0 L 73.0 45.0 L 72.0 45.0 L Z fill
|
||||||
TB 115.00 1.00 TR
|
newpath 77.0 5.0 M 78.0 5.0 L 78.0 45.0 L 77.0 45.0 L Z fill
|
||||||
TB 117.00 4.00 TR
|
newpath 81.0 5.0 M 82.0 5.0 L 82.0 45.0 L 81.0 45.0 L Z fill
|
||||||
TB 122.00 1.00 TR
|
newpath 84.0 5.0 M 85.0 5.0 L 85.0 45.0 L 84.0 45.0 L Z fill
|
||||||
TE
|
newpath 86.0 5.0 M 87.0 5.0 L 87.0 45.0 L 86.0 45.0 L Z fill
|
||||||
0.00 0.00 0.00 setrgbcolor
|
newpath 91.0 5.0 M 92.0 5.0 L 92.0 45.0 L 91.0 45.0 L Z fill
|
||||||
matrix currentmatrix
|
newpath 93.0 5.0 M 94.0 5.0 L 94.0 45.0 L 93.0 45.0 L Z fill
|
||||||
/Helvetica findfont
|
newpath 95.0 5.0 M 96.0 5.0 L 96.0 45.0 L 95.0 45.0 L Z fill
|
||||||
8.00 scalefont setfont
|
newpath 98.0 5.0 M 99.0 5.0 L 99.0 45.0 L 98.0 45.0 L Z fill
|
||||||
0 0 moveto 64.00 7.00 translate 0.00 rotate 0 0 moveto
|
newpath 100.0 5.0 M 102.0 5.0 L 102.0 45.0 L 100.0 45.0 L Z fill
|
||||||
(123456789Od) stringwidth
|
newpath 104.0 5.0 M 105.0 5.0 L 105.0 45.0 L 104.0 45.0 L Z fill
|
||||||
pop
|
newpath 107.0 5.0 M 109.0 5.0 L 109.0 45.0 L 107.0 45.0 L Z fill
|
||||||
-2 div 0 rmoveto
|
newpath 111.0 5.0 M 112.0 5.0 L 112.0 45.0 L 111.0 45.0 L Z fill
|
||||||
(123456789Od) show
|
newpath 113.0 5.0 M 114.0 5.0 L 114.0 45.0 L 113.0 45.0 L Z fill
|
||||||
setmatrix
|
newpath 115.0 5.0 M 116.0 5.0 L 116.0 45.0 L 115.0 45.0 L Z fill
|
||||||
|
newpath 117.0 5.0 M 121.0 5.0 L 121.0 45.0 L 117.0 45.0 L Z fill
|
||||||
showpage
|
newpath 122.0 5.0 M 123.0 5.0 L 123.0 45.0 L 122.0 45.0 L Z fill
|
||||||
|
/HelveticaLat /Helvetica latinize /HelveticaLat 8.0 selectfont
|
||||||
|
gsave 1 -1 scale 41.0 -53.0 M (123456789Od) show grestore
|
||||||
|
/LucidaGrandeLat /LucidaGrande latinize /LucidaGrandeLat 12.0 selectfont
|
||||||
|
grestore
|
||||||
|
%%EOF
|
97
barcode/src/test/resources/org/xbib/graphics/barcode/output/code93-basic.svg
Executable file → Normal file
|
@ -1,53 +1,46 @@
|
||||||
<?xml version="1.0" standalone="no"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
<svg xmlns:xlink="http://www.w3.org/1999/xlink" height="21.16666419722251mm" version="1.1" viewBox="0.0 0.0 128.0 60.0" width="45.15555028740802mm" x="0mm" y="0mm" xmlns="http://www.w3.org/2000/svg">
|
||||||
<svg width="128" height="60" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
<rect height="1200" style="fill:rgb(255,255,255);stroke:none;" width="1920" x="0" y="0"/>
|
||||||
<desc>123456789</desc>
|
<path d="M5.0,5.0 L6.0,5.0 L6.0,45.0 L5.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<g id="barcode" fill="#000000">
|
<path d="M7.0,5.0 L8.0,5.0 L8.0,45.0 L7.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="0" y="0" width="128" height="60" fill="#FFFFFF" />
|
<path d="M9.0,5.0 L13.0,5.0 L13.0,45.0 L9.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="5.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M14.0,5.0 L15.0,5.0 L15.0,45.0 L14.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="7.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M16.0,5.0 L17.0,5.0 L17.0,45.0 L16.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="9.00" y="5.00" width="4.00" height="40.00" />
|
<path d="M19.0,5.0 L20.0,5.0 L20.0,45.0 L19.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="14.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M23.0,5.0 L24.0,5.0 L24.0,45.0 L23.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="16.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M25.0,5.0 L26.0,5.0 L26.0,45.0 L25.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="19.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M29.0,5.0 L30.0,5.0 L30.0,45.0 L29.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="23.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M32.0,5.0 L33.0,5.0 L33.0,45.0 L32.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="25.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M34.0,5.0 L35.0,5.0 L35.0,45.0 L34.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="29.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M39.0,5.0 L40.0,5.0 L40.0,45.0 L39.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="32.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M41.0,5.0 L42.0,5.0 L42.0,45.0 L41.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="34.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M44.0,5.0 L45.0,5.0 L45.0,45.0 L44.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="39.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M46.0,5.0 L47.0,5.0 L47.0,45.0 L46.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="41.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M50.0,5.0 L51.0,5.0 L51.0,45.0 L50.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="44.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M53.0,5.0 L54.0,5.0 L54.0,45.0 L53.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="46.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M56.0,5.0 L57.0,5.0 L57.0,45.0 L56.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="50.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M59.0,5.0 L60.0,5.0 L60.0,45.0 L59.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="53.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M62.0,5.0 L63.0,5.0 L63.0,45.0 L62.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="56.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M66.0,5.0 L67.0,5.0 L67.0,45.0 L66.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="59.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M68.0,5.0 L69.0,5.0 L69.0,45.0 L68.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="62.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M70.0,5.0 L71.0,5.0 L71.0,45.0 L70.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="66.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M72.0,5.0 L73.0,5.0 L73.0,45.0 L72.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="68.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M77.0,5.0 L78.0,5.0 L78.0,45.0 L77.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="70.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M81.0,5.0 L82.0,5.0 L82.0,45.0 L81.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="72.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M84.0,5.0 L85.0,5.0 L85.0,45.0 L84.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="77.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M86.0,5.0 L87.0,5.0 L87.0,45.0 L86.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="81.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M91.0,5.0 L92.0,5.0 L92.0,45.0 L91.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="84.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M93.0,5.0 L94.0,5.0 L94.0,45.0 L93.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="86.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M95.0,5.0 L96.0,5.0 L96.0,45.0 L95.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="91.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M98.0,5.0 L99.0,5.0 L99.0,45.0 L98.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="93.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M100.0,5.0 L102.0,5.0 L102.0,45.0 L100.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="95.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M104.0,5.0 L105.0,5.0 L105.0,45.0 L104.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="98.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M107.0,5.0 L109.0,5.0 L109.0,45.0 L107.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="100.00" y="5.00" width="2.00" height="40.00" />
|
<path d="M111.0,5.0 L112.0,5.0 L112.0,45.0 L111.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="104.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M113.0,5.0 L114.0,5.0 L114.0,45.0 L113.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="107.00" y="5.00" width="2.00" height="40.00" />
|
<path d="M115.0,5.0 L116.0,5.0 L116.0,45.0 L115.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="111.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M117.0,5.0 L121.0,5.0 L121.0,45.0 L117.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="113.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M122.0,5.0 L123.0,5.0 L123.0,45.0 L122.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="115.00" y="5.00" width="1.00" height="40.00" />
|
<text style="fill:rgb(0,0,0);stroke:none;font-family:"Helvetica";font-size:8px;" x="41" y="53">123456789Od</text>
|
||||||
<rect x="117.00" y="5.00" width="4.00" height="40.00" />
|
|
||||||
<rect x="122.00" y="5.00" width="1.00" height="40.00" />
|
|
||||||
<text x="64.00" y="53.00" text-anchor="middle"
|
|
||||||
font-family="Helvetica" font-size="8.00" fill="#000000">
|
|
||||||
123456789Od
|
|
||||||
</text>
|
|
||||||
</g>
|
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 4.3 KiB |
144
barcode/src/test/resources/org/xbib/graphics/barcode/output/code93-colors.eps
Executable file → Normal file
|
@ -1,71 +1,77 @@
|
||||||
%!PS-Adobe-3.0 EPSF-3.0
|
%!PS-Adobe-3.0 EPSF-3.0
|
||||||
%%Creator: OkapiBarcode
|
%%BoundingBox: 0 0 363 171
|
||||||
%%Title: 123456789
|
%%HiResBoundingBox: 0.0 0.0 362.8346456692914 170.07874015748033
|
||||||
%%Pages: 0
|
%%LanguageLevel: 3
|
||||||
%%BoundingBox: 0 0 128 60
|
%%Pages: 1
|
||||||
%%EndComments
|
%%EndComments
|
||||||
/TL { setlinewidth moveto lineto stroke } bind def
|
%%Page: 1 1
|
||||||
/TC { moveto 0 360 arc 360 0 arcn fill } bind def
|
/M /moveto load def
|
||||||
/TH { 0 setlinewidth moveto lineto lineto lineto lineto lineto closepath fill } bind def
|
/L /lineto load def
|
||||||
/TB { 2 copy } bind def
|
/C /curveto load def
|
||||||
/TR { newpath 4 1 roll exch moveto 1 index 0 rlineto 0 exch rlineto neg 0 rlineto closepath fill } bind def
|
/Z /closepath load def
|
||||||
/TE { pop pop } bind def
|
/RL /rlineto load def
|
||||||
newpath
|
/rgb /setrgbcolor load def
|
||||||
1.00 0.00 0.00 setrgbcolor
|
/rect { /height exch def /width exch def /y exch def /x exch def x y M width 0 RL 0 height RL width neg 0 RL } bind def
|
||||||
0.00 1.00 0.00 setrgbcolor
|
/ellipse { /endangle exch def /startangle exch def /ry exch def /rx exch def /y exch def /x exch def /savematrix matrix currentmatrix def x y translate rx ry scale 0 0 1 startangle endangle arcn savematrix setmatrix } bind def
|
||||||
60.00 0.00 TB 0.00 128.00 TR
|
/imgdict { /datastream exch def /hasdata exch def /decodeScale exch def /bits exch def /bands exch def /imgheight exch def /imgwidth exch def << /ImageType 1 /Width imgwidth /Height imgheight /BitsPerComponent bits /Decode [bands {0 decodeScale} repeat]
|
||||||
TE
|
/ImageMatrix [imgwidth 0 0 imgheight 0 0] hasdata { /DataSource datastream } if >> } bind def
|
||||||
1.00 0.00 0.00 setrgbcolor
|
/latinize { /fontName exch def /fontNameNew exch def fontName findfont 0 dict copy begin /Encoding ISOLatin1Encoding def fontNameNew /FontName def currentdict end dup /FID undef fontNameNew exch definefont pop } bind def
|
||||||
40.00 15.00 TB 5.00 1.00 TR
|
/LucidaGrandeLat /LucidaGrande latinize /LucidaGrandeLat 12.0 selectfont
|
||||||
TB 7.00 1.00 TR
|
gsave
|
||||||
TB 9.00 4.00 TR
|
clipsave
|
||||||
TB 14.00 1.00 TR
|
/DeviceRGB setcolorspace
|
||||||
TB 16.00 1.00 TR
|
0 170.07874015748033 translate
|
||||||
TB 19.00 1.00 TR
|
2.834645669291339 -2.834645669291339 scale
|
||||||
TB 23.00 1.00 TR
|
/basematrix matrix currentmatrix def
|
||||||
TB 25.00 1.00 TR
|
gsave
|
||||||
TB 29.00 1.00 TR
|
0.0 0.0 0.0 rgb
|
||||||
TB 32.00 1.00 TR
|
1.0 setlinewidth 0 setlinejoin 0 setlinecap [] 0.0 setdash
|
||||||
TB 34.00 1.00 TR
|
0.0 1.0 0.0 rgb
|
||||||
TB 39.00 1.00 TR
|
newpath 0.0 0.0 1920.0 1200.0 rect Z fill
|
||||||
TB 41.00 1.00 TR
|
1.0 0.0 0.0 rgb
|
||||||
TB 44.00 1.00 TR
|
newpath 5.0 5.0 M 6.0 5.0 L 6.0 45.0 L 5.0 45.0 L Z fill
|
||||||
TB 46.00 1.00 TR
|
newpath 7.0 5.0 M 8.0 5.0 L 8.0 45.0 L 7.0 45.0 L Z fill
|
||||||
TB 50.00 1.00 TR
|
newpath 9.0 5.0 M 13.0 5.0 L 13.0 45.0 L 9.0 45.0 L Z fill
|
||||||
TB 53.00 1.00 TR
|
newpath 14.0 5.0 M 15.0 5.0 L 15.0 45.0 L 14.0 45.0 L Z fill
|
||||||
TB 56.00 1.00 TR
|
newpath 16.0 5.0 M 17.0 5.0 L 17.0 45.0 L 16.0 45.0 L Z fill
|
||||||
TB 59.00 1.00 TR
|
newpath 19.0 5.0 M 20.0 5.0 L 20.0 45.0 L 19.0 45.0 L Z fill
|
||||||
TB 62.00 1.00 TR
|
newpath 23.0 5.0 M 24.0 5.0 L 24.0 45.0 L 23.0 45.0 L Z fill
|
||||||
TB 66.00 1.00 TR
|
newpath 25.0 5.0 M 26.0 5.0 L 26.0 45.0 L 25.0 45.0 L Z fill
|
||||||
TB 68.00 1.00 TR
|
newpath 29.0 5.0 M 30.0 5.0 L 30.0 45.0 L 29.0 45.0 L Z fill
|
||||||
TB 70.00 1.00 TR
|
newpath 32.0 5.0 M 33.0 5.0 L 33.0 45.0 L 32.0 45.0 L Z fill
|
||||||
TB 72.00 1.00 TR
|
newpath 34.0 5.0 M 35.0 5.0 L 35.0 45.0 L 34.0 45.0 L Z fill
|
||||||
TB 77.00 1.00 TR
|
newpath 39.0 5.0 M 40.0 5.0 L 40.0 45.0 L 39.0 45.0 L Z fill
|
||||||
TB 81.00 1.00 TR
|
newpath 41.0 5.0 M 42.0 5.0 L 42.0 45.0 L 41.0 45.0 L Z fill
|
||||||
TB 84.00 1.00 TR
|
newpath 44.0 5.0 M 45.0 5.0 L 45.0 45.0 L 44.0 45.0 L Z fill
|
||||||
TB 86.00 1.00 TR
|
newpath 46.0 5.0 M 47.0 5.0 L 47.0 45.0 L 46.0 45.0 L Z fill
|
||||||
TB 91.00 1.00 TR
|
newpath 50.0 5.0 M 51.0 5.0 L 51.0 45.0 L 50.0 45.0 L Z fill
|
||||||
TB 93.00 1.00 TR
|
newpath 53.0 5.0 M 54.0 5.0 L 54.0 45.0 L 53.0 45.0 L Z fill
|
||||||
TB 95.00 1.00 TR
|
newpath 56.0 5.0 M 57.0 5.0 L 57.0 45.0 L 56.0 45.0 L Z fill
|
||||||
TB 98.00 1.00 TR
|
newpath 59.0 5.0 M 60.0 5.0 L 60.0 45.0 L 59.0 45.0 L Z fill
|
||||||
TB 100.00 2.00 TR
|
newpath 62.0 5.0 M 63.0 5.0 L 63.0 45.0 L 62.0 45.0 L Z fill
|
||||||
TB 104.00 1.00 TR
|
newpath 66.0 5.0 M 67.0 5.0 L 67.0 45.0 L 66.0 45.0 L Z fill
|
||||||
TB 107.00 2.00 TR
|
newpath 68.0 5.0 M 69.0 5.0 L 69.0 45.0 L 68.0 45.0 L Z fill
|
||||||
TB 111.00 1.00 TR
|
newpath 70.0 5.0 M 71.0 5.0 L 71.0 45.0 L 70.0 45.0 L Z fill
|
||||||
TB 113.00 1.00 TR
|
newpath 72.0 5.0 M 73.0 5.0 L 73.0 45.0 L 72.0 45.0 L Z fill
|
||||||
TB 115.00 1.00 TR
|
newpath 77.0 5.0 M 78.0 5.0 L 78.0 45.0 L 77.0 45.0 L Z fill
|
||||||
TB 117.00 4.00 TR
|
newpath 81.0 5.0 M 82.0 5.0 L 82.0 45.0 L 81.0 45.0 L Z fill
|
||||||
TB 122.00 1.00 TR
|
newpath 84.0 5.0 M 85.0 5.0 L 85.0 45.0 L 84.0 45.0 L Z fill
|
||||||
TE
|
newpath 86.0 5.0 M 87.0 5.0 L 87.0 45.0 L 86.0 45.0 L Z fill
|
||||||
1.00 0.00 0.00 setrgbcolor
|
newpath 91.0 5.0 M 92.0 5.0 L 92.0 45.0 L 91.0 45.0 L Z fill
|
||||||
matrix currentmatrix
|
newpath 93.0 5.0 M 94.0 5.0 L 94.0 45.0 L 93.0 45.0 L Z fill
|
||||||
/Helvetica findfont
|
newpath 95.0 5.0 M 96.0 5.0 L 96.0 45.0 L 95.0 45.0 L Z fill
|
||||||
8.00 scalefont setfont
|
newpath 98.0 5.0 M 99.0 5.0 L 99.0 45.0 L 98.0 45.0 L Z fill
|
||||||
0 0 moveto 64.00 7.00 translate 0.00 rotate 0 0 moveto
|
newpath 100.0 5.0 M 102.0 5.0 L 102.0 45.0 L 100.0 45.0 L Z fill
|
||||||
(123456789Od) stringwidth
|
newpath 104.0 5.0 M 105.0 5.0 L 105.0 45.0 L 104.0 45.0 L Z fill
|
||||||
pop
|
newpath 107.0 5.0 M 109.0 5.0 L 109.0 45.0 L 107.0 45.0 L Z fill
|
||||||
-2 div 0 rmoveto
|
newpath 111.0 5.0 M 112.0 5.0 L 112.0 45.0 L 111.0 45.0 L Z fill
|
||||||
(123456789Od) show
|
newpath 113.0 5.0 M 114.0 5.0 L 114.0 45.0 L 113.0 45.0 L Z fill
|
||||||
setmatrix
|
newpath 115.0 5.0 M 116.0 5.0 L 116.0 45.0 L 115.0 45.0 L Z fill
|
||||||
|
newpath 117.0 5.0 M 121.0 5.0 L 121.0 45.0 L 117.0 45.0 L Z fill
|
||||||
showpage
|
newpath 122.0 5.0 M 123.0 5.0 L 123.0 45.0 L 122.0 45.0 L Z fill
|
||||||
|
/HelveticaLat /Helvetica latinize /HelveticaLat 8.0 selectfont
|
||||||
|
gsave 1 -1 scale 41.0 -53.0 M (123456789Od) show grestore
|
||||||
|
/LucidaGrandeLat /LucidaGrande latinize /LucidaGrandeLat 12.0 selectfont
|
||||||
|
0.0 0.0 0.0 rgb
|
||||||
|
grestore
|
||||||
|
%%EOF
|
97
barcode/src/test/resources/org/xbib/graphics/barcode/output/code93-colors.svg
Executable file → Normal file
|
@ -1,53 +1,46 @@
|
||||||
<?xml version="1.0" standalone="no"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
<svg xmlns:xlink="http://www.w3.org/1999/xlink" height="21.16666419722251mm" version="1.1" viewBox="0.0 0.0 128.0 60.0" width="45.15555028740802mm" x="0mm" y="0mm" xmlns="http://www.w3.org/2000/svg">
|
||||||
<svg width="128" height="60" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
<rect height="1200" style="fill:rgb(0,255,0);stroke:none;" width="1920" x="0" y="0"/>
|
||||||
<desc>123456789</desc>
|
<path d="M5.0,5.0 L6.0,5.0 L6.0,45.0 L5.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<g id="barcode" fill="#FF0000">
|
<path d="M7.0,5.0 L8.0,5.0 L8.0,45.0 L7.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="0" y="0" width="128" height="60" fill="#00FF00" />
|
<path d="M9.0,5.0 L13.0,5.0 L13.0,45.0 L9.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="5.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M14.0,5.0 L15.0,5.0 L15.0,45.0 L14.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="7.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M16.0,5.0 L17.0,5.0 L17.0,45.0 L16.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="9.00" y="5.00" width="4.00" height="40.00" />
|
<path d="M19.0,5.0 L20.0,5.0 L20.0,45.0 L19.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="14.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M23.0,5.0 L24.0,5.0 L24.0,45.0 L23.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="16.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M25.0,5.0 L26.0,5.0 L26.0,45.0 L25.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="19.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M29.0,5.0 L30.0,5.0 L30.0,45.0 L29.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="23.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M32.0,5.0 L33.0,5.0 L33.0,45.0 L32.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="25.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M34.0,5.0 L35.0,5.0 L35.0,45.0 L34.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="29.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M39.0,5.0 L40.0,5.0 L40.0,45.0 L39.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="32.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M41.0,5.0 L42.0,5.0 L42.0,45.0 L41.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="34.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M44.0,5.0 L45.0,5.0 L45.0,45.0 L44.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="39.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M46.0,5.0 L47.0,5.0 L47.0,45.0 L46.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="41.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M50.0,5.0 L51.0,5.0 L51.0,45.0 L50.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="44.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M53.0,5.0 L54.0,5.0 L54.0,45.0 L53.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="46.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M56.0,5.0 L57.0,5.0 L57.0,45.0 L56.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="50.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M59.0,5.0 L60.0,5.0 L60.0,45.0 L59.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="53.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M62.0,5.0 L63.0,5.0 L63.0,45.0 L62.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="56.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M66.0,5.0 L67.0,5.0 L67.0,45.0 L66.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="59.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M68.0,5.0 L69.0,5.0 L69.0,45.0 L68.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="62.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M70.0,5.0 L71.0,5.0 L71.0,45.0 L70.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="66.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M72.0,5.0 L73.0,5.0 L73.0,45.0 L72.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="68.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M77.0,5.0 L78.0,5.0 L78.0,45.0 L77.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="70.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M81.0,5.0 L82.0,5.0 L82.0,45.0 L81.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="72.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M84.0,5.0 L85.0,5.0 L85.0,45.0 L84.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="77.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M86.0,5.0 L87.0,5.0 L87.0,45.0 L86.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="81.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M91.0,5.0 L92.0,5.0 L92.0,45.0 L91.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="84.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M93.0,5.0 L94.0,5.0 L94.0,45.0 L93.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="86.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M95.0,5.0 L96.0,5.0 L96.0,45.0 L95.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="91.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M98.0,5.0 L99.0,5.0 L99.0,45.0 L98.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="93.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M100.0,5.0 L102.0,5.0 L102.0,45.0 L100.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="95.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M104.0,5.0 L105.0,5.0 L105.0,45.0 L104.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="98.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M107.0,5.0 L109.0,5.0 L109.0,45.0 L107.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="100.00" y="5.00" width="2.00" height="40.00" />
|
<path d="M111.0,5.0 L112.0,5.0 L112.0,45.0 L111.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="104.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M113.0,5.0 L114.0,5.0 L114.0,45.0 L113.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="107.00" y="5.00" width="2.00" height="40.00" />
|
<path d="M115.0,5.0 L116.0,5.0 L116.0,45.0 L115.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="111.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M117.0,5.0 L121.0,5.0 L121.0,45.0 L117.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="113.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M122.0,5.0 L123.0,5.0 L123.0,45.0 L122.0,45.0 Z" style="fill:rgb(255,0,0);stroke:none;"/>
|
||||||
<rect x="115.00" y="5.00" width="1.00" height="40.00" />
|
<text style="fill:rgb(255,0,0);stroke:none;font-family:"Helvetica";font-size:8px;" x="41" y="53">123456789Od</text>
|
||||||
<rect x="117.00" y="5.00" width="4.00" height="40.00" />
|
|
||||||
<rect x="122.00" y="5.00" width="1.00" height="40.00" />
|
|
||||||
<text x="64.00" y="53.00" text-anchor="middle"
|
|
||||||
font-family="Helvetica" font-size="8.00" fill="#FF0000">
|
|
||||||
123456789Od
|
|
||||||
</text>
|
|
||||||
</g>
|
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 4.4 KiB |
143
barcode/src/test/resources/org/xbib/graphics/barcode/output/code93-custom-font.eps
Executable file → Normal file
|
@ -1,71 +1,76 @@
|
||||||
%!PS-Adobe-3.0 EPSF-3.0
|
%!PS-Adobe-3.0 EPSF-3.0
|
||||||
%%Creator: OkapiBarcode
|
%%BoundingBox: 0 0 363 233
|
||||||
%%Title: 123456789
|
%%HiResBoundingBox: 0.0 0.0 362.8346456692914 232.44094488188978
|
||||||
%%Pages: 0
|
%%LanguageLevel: 3
|
||||||
%%BoundingBox: 0 0 128 82
|
%%Pages: 1
|
||||||
%%EndComments
|
%%EndComments
|
||||||
/TL { setlinewidth moveto lineto stroke } bind def
|
%%Page: 1 1
|
||||||
/TC { moveto 0 360 arc 360 0 arcn fill } bind def
|
/M /moveto load def
|
||||||
/TH { 0 setlinewidth moveto lineto lineto lineto lineto lineto closepath fill } bind def
|
/L /lineto load def
|
||||||
/TB { 2 copy } bind def
|
/C /curveto load def
|
||||||
/TR { newpath 4 1 roll exch moveto 1 index 0 rlineto 0 exch rlineto neg 0 rlineto closepath fill } bind def
|
/Z /closepath load def
|
||||||
/TE { pop pop } bind def
|
/RL /rlineto load def
|
||||||
newpath
|
/rgb /setrgbcolor load def
|
||||||
0.00 0.00 0.00 setrgbcolor
|
/rect { /height exch def /width exch def /y exch def /x exch def x y M width 0 RL 0 height RL width neg 0 RL } bind def
|
||||||
1.00 1.00 1.00 setrgbcolor
|
/ellipse { /endangle exch def /startangle exch def /ry exch def /rx exch def /y exch def /x exch def /savematrix matrix currentmatrix def x y translate rx ry scale 0 0 1 startangle endangle arcn savematrix setmatrix } bind def
|
||||||
82.00 0.00 TB 0.00 128.00 TR
|
/imgdict { /datastream exch def /hasdata exch def /decodeScale exch def /bits exch def /bands exch def /imgheight exch def /imgwidth exch def << /ImageType 1 /Width imgwidth /Height imgheight /BitsPerComponent bits /Decode [bands {0 decodeScale} repeat]
|
||||||
TE
|
/ImageMatrix [imgwidth 0 0 imgheight 0 0] hasdata { /DataSource datastream } if >> } bind def
|
||||||
0.00 0.00 0.00 setrgbcolor
|
/latinize { /fontName exch def /fontNameNew exch def fontName findfont 0 dict copy begin /Encoding ISOLatin1Encoding def fontNameNew /FontName def currentdict end dup /FID undef fontNameNew exch definefont pop } bind def
|
||||||
40.00 37.00 TB 5.00 1.00 TR
|
/LucidaGrandeLat /LucidaGrande latinize /LucidaGrandeLat 12.0 selectfont
|
||||||
TB 7.00 1.00 TR
|
gsave
|
||||||
TB 9.00 4.00 TR
|
clipsave
|
||||||
TB 14.00 1.00 TR
|
/DeviceRGB setcolorspace
|
||||||
TB 16.00 1.00 TR
|
0 232.44094488188978 translate
|
||||||
TB 19.00 1.00 TR
|
2.834645669291339 -2.834645669291339 scale
|
||||||
TB 23.00 1.00 TR
|
/basematrix matrix currentmatrix def
|
||||||
TB 25.00 1.00 TR
|
gsave
|
||||||
TB 29.00 1.00 TR
|
0.0 0.0 0.0 rgb
|
||||||
TB 32.00 1.00 TR
|
1.0 setlinewidth 0 setlinejoin 0 setlinecap [] 0.0 setdash
|
||||||
TB 34.00 1.00 TR
|
1.0 1.0 1.0 rgb
|
||||||
TB 39.00 1.00 TR
|
newpath 0.0 0.0 1920.0 1200.0 rect Z fill
|
||||||
TB 41.00 1.00 TR
|
0.0 0.0 0.0 rgb
|
||||||
TB 44.00 1.00 TR
|
newpath 5.0 5.0 M 6.0 5.0 L 6.0 45.0 L 5.0 45.0 L Z fill
|
||||||
TB 46.00 1.00 TR
|
newpath 7.0 5.0 M 8.0 5.0 L 8.0 45.0 L 7.0 45.0 L Z fill
|
||||||
TB 50.00 1.00 TR
|
newpath 9.0 5.0 M 13.0 5.0 L 13.0 45.0 L 9.0 45.0 L Z fill
|
||||||
TB 53.00 1.00 TR
|
newpath 14.0 5.0 M 15.0 5.0 L 15.0 45.0 L 14.0 45.0 L Z fill
|
||||||
TB 56.00 1.00 TR
|
newpath 16.0 5.0 M 17.0 5.0 L 17.0 45.0 L 16.0 45.0 L Z fill
|
||||||
TB 59.00 1.00 TR
|
newpath 19.0 5.0 M 20.0 5.0 L 20.0 45.0 L 19.0 45.0 L Z fill
|
||||||
TB 62.00 1.00 TR
|
newpath 23.0 5.0 M 24.0 5.0 L 24.0 45.0 L 23.0 45.0 L Z fill
|
||||||
TB 66.00 1.00 TR
|
newpath 25.0 5.0 M 26.0 5.0 L 26.0 45.0 L 25.0 45.0 L Z fill
|
||||||
TB 68.00 1.00 TR
|
newpath 29.0 5.0 M 30.0 5.0 L 30.0 45.0 L 29.0 45.0 L Z fill
|
||||||
TB 70.00 1.00 TR
|
newpath 32.0 5.0 M 33.0 5.0 L 33.0 45.0 L 32.0 45.0 L Z fill
|
||||||
TB 72.00 1.00 TR
|
newpath 34.0 5.0 M 35.0 5.0 L 35.0 45.0 L 34.0 45.0 L Z fill
|
||||||
TB 77.00 1.00 TR
|
newpath 39.0 5.0 M 40.0 5.0 L 40.0 45.0 L 39.0 45.0 L Z fill
|
||||||
TB 81.00 1.00 TR
|
newpath 41.0 5.0 M 42.0 5.0 L 42.0 45.0 L 41.0 45.0 L Z fill
|
||||||
TB 84.00 1.00 TR
|
newpath 44.0 5.0 M 45.0 5.0 L 45.0 45.0 L 44.0 45.0 L Z fill
|
||||||
TB 86.00 1.00 TR
|
newpath 46.0 5.0 M 47.0 5.0 L 47.0 45.0 L 46.0 45.0 L Z fill
|
||||||
TB 91.00 1.00 TR
|
newpath 50.0 5.0 M 51.0 5.0 L 51.0 45.0 L 50.0 45.0 L Z fill
|
||||||
TB 93.00 1.00 TR
|
newpath 53.0 5.0 M 54.0 5.0 L 54.0 45.0 L 53.0 45.0 L Z fill
|
||||||
TB 95.00 1.00 TR
|
newpath 56.0 5.0 M 57.0 5.0 L 57.0 45.0 L 56.0 45.0 L Z fill
|
||||||
TB 98.00 1.00 TR
|
newpath 59.0 5.0 M 60.0 5.0 L 60.0 45.0 L 59.0 45.0 L Z fill
|
||||||
TB 100.00 2.00 TR
|
newpath 62.0 5.0 M 63.0 5.0 L 63.0 45.0 L 62.0 45.0 L Z fill
|
||||||
TB 104.00 1.00 TR
|
newpath 66.0 5.0 M 67.0 5.0 L 67.0 45.0 L 66.0 45.0 L Z fill
|
||||||
TB 107.00 2.00 TR
|
newpath 68.0 5.0 M 69.0 5.0 L 69.0 45.0 L 68.0 45.0 L Z fill
|
||||||
TB 111.00 1.00 TR
|
newpath 70.0 5.0 M 71.0 5.0 L 71.0 45.0 L 70.0 45.0 L Z fill
|
||||||
TB 113.00 1.00 TR
|
newpath 72.0 5.0 M 73.0 5.0 L 73.0 45.0 L 72.0 45.0 L Z fill
|
||||||
TB 115.00 1.00 TR
|
newpath 77.0 5.0 M 78.0 5.0 L 78.0 45.0 L 77.0 45.0 L Z fill
|
||||||
TB 117.00 4.00 TR
|
newpath 81.0 5.0 M 82.0 5.0 L 82.0 45.0 L 81.0 45.0 L Z fill
|
||||||
TB 122.00 1.00 TR
|
newpath 84.0 5.0 M 85.0 5.0 L 85.0 45.0 L 84.0 45.0 L Z fill
|
||||||
TE
|
newpath 86.0 5.0 M 87.0 5.0 L 87.0 45.0 L 86.0 45.0 L Z fill
|
||||||
0.00 0.00 0.00 setrgbcolor
|
newpath 91.0 5.0 M 92.0 5.0 L 92.0 45.0 L 91.0 45.0 L Z fill
|
||||||
matrix currentmatrix
|
newpath 93.0 5.0 M 94.0 5.0 L 94.0 45.0 L 93.0 45.0 L Z fill
|
||||||
/Arial findfont
|
newpath 95.0 5.0 M 96.0 5.0 L 96.0 45.0 L 95.0 45.0 L Z fill
|
||||||
26.00 scalefont setfont
|
newpath 98.0 5.0 M 99.0 5.0 L 99.0 45.0 L 98.0 45.0 L Z fill
|
||||||
0 0 moveto 64.00 11.00 translate 0.00 rotate 0 0 moveto
|
newpath 100.0 5.0 M 102.0 5.0 L 102.0 45.0 L 100.0 45.0 L Z fill
|
||||||
(123456789Od) stringwidth
|
newpath 104.0 5.0 M 105.0 5.0 L 105.0 45.0 L 104.0 45.0 L Z fill
|
||||||
pop
|
newpath 107.0 5.0 M 109.0 5.0 L 109.0 45.0 L 107.0 45.0 L Z fill
|
||||||
-2 div 0 rmoveto
|
newpath 111.0 5.0 M 112.0 5.0 L 112.0 45.0 L 111.0 45.0 L Z fill
|
||||||
(123456789Od) show
|
newpath 113.0 5.0 M 114.0 5.0 L 114.0 45.0 L 113.0 45.0 L Z fill
|
||||||
setmatrix
|
newpath 115.0 5.0 M 116.0 5.0 L 116.0 45.0 L 115.0 45.0 L Z fill
|
||||||
|
newpath 117.0 5.0 M 121.0 5.0 L 121.0 45.0 L 117.0 45.0 L Z fill
|
||||||
showpage
|
newpath 122.0 5.0 M 123.0 5.0 L 123.0 45.0 L 122.0 45.0 L Z fill
|
||||||
|
/ArialMTLat /ArialMT latinize /ArialMTLat 26.0 selectfont
|
||||||
|
gsave 1 -1 scale -16.0 -71.0 M (123456789Od) show grestore
|
||||||
|
/LucidaGrandeLat /LucidaGrande latinize /LucidaGrandeLat 12.0 selectfont
|
||||||
|
grestore
|
||||||
|
%%EOF
|
97
barcode/src/test/resources/org/xbib/graphics/barcode/output/code93-custom-font.svg
Executable file → Normal file
|
@ -1,53 +1,46 @@
|
||||||
<?xml version="1.0" standalone="no"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
<svg xmlns:xlink="http://www.w3.org/1999/xlink" height="28.92777440287076mm" version="1.1" viewBox="0.0 0.0 128.0 82.0" width="45.15555028740802mm" x="0mm" y="0mm" xmlns="http://www.w3.org/2000/svg">
|
||||||
<svg width="128" height="82" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
<rect height="1200" style="fill:rgb(255,255,255);stroke:none;" width="1920" x="0" y="0"/>
|
||||||
<desc>123456789</desc>
|
<path d="M5.0,5.0 L6.0,5.0 L6.0,45.0 L5.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<g id="barcode" fill="#000000">
|
<path d="M7.0,5.0 L8.0,5.0 L8.0,45.0 L7.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="0" y="0" width="128" height="82" fill="#FFFFFF" />
|
<path d="M9.0,5.0 L13.0,5.0 L13.0,45.0 L9.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="5.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M14.0,5.0 L15.0,5.0 L15.0,45.0 L14.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="7.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M16.0,5.0 L17.0,5.0 L17.0,45.0 L16.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="9.00" y="5.00" width="4.00" height="40.00" />
|
<path d="M19.0,5.0 L20.0,5.0 L20.0,45.0 L19.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="14.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M23.0,5.0 L24.0,5.0 L24.0,45.0 L23.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="16.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M25.0,5.0 L26.0,5.0 L26.0,45.0 L25.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="19.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M29.0,5.0 L30.0,5.0 L30.0,45.0 L29.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="23.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M32.0,5.0 L33.0,5.0 L33.0,45.0 L32.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="25.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M34.0,5.0 L35.0,5.0 L35.0,45.0 L34.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="29.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M39.0,5.0 L40.0,5.0 L40.0,45.0 L39.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="32.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M41.0,5.0 L42.0,5.0 L42.0,45.0 L41.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="34.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M44.0,5.0 L45.0,5.0 L45.0,45.0 L44.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="39.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M46.0,5.0 L47.0,5.0 L47.0,45.0 L46.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="41.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M50.0,5.0 L51.0,5.0 L51.0,45.0 L50.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="44.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M53.0,5.0 L54.0,5.0 L54.0,45.0 L53.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="46.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M56.0,5.0 L57.0,5.0 L57.0,45.0 L56.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="50.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M59.0,5.0 L60.0,5.0 L60.0,45.0 L59.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="53.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M62.0,5.0 L63.0,5.0 L63.0,45.0 L62.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="56.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M66.0,5.0 L67.0,5.0 L67.0,45.0 L66.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="59.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M68.0,5.0 L69.0,5.0 L69.0,45.0 L68.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="62.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M70.0,5.0 L71.0,5.0 L71.0,45.0 L70.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="66.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M72.0,5.0 L73.0,5.0 L73.0,45.0 L72.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="68.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M77.0,5.0 L78.0,5.0 L78.0,45.0 L77.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="70.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M81.0,5.0 L82.0,5.0 L82.0,45.0 L81.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="72.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M84.0,5.0 L85.0,5.0 L85.0,45.0 L84.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="77.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M86.0,5.0 L87.0,5.0 L87.0,45.0 L86.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="81.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M91.0,5.0 L92.0,5.0 L92.0,45.0 L91.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="84.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M93.0,5.0 L94.0,5.0 L94.0,45.0 L93.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="86.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M95.0,5.0 L96.0,5.0 L96.0,45.0 L95.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="91.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M98.0,5.0 L99.0,5.0 L99.0,45.0 L98.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="93.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M100.0,5.0 L102.0,5.0 L102.0,45.0 L100.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="95.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M104.0,5.0 L105.0,5.0 L105.0,45.0 L104.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="98.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M107.0,5.0 L109.0,5.0 L109.0,45.0 L107.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="100.00" y="5.00" width="2.00" height="40.00" />
|
<path d="M111.0,5.0 L112.0,5.0 L112.0,45.0 L111.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="104.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M113.0,5.0 L114.0,5.0 L114.0,45.0 L113.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="107.00" y="5.00" width="2.00" height="40.00" />
|
<path d="M115.0,5.0 L116.0,5.0 L116.0,45.0 L115.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="111.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M117.0,5.0 L121.0,5.0 L121.0,45.0 L117.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="113.00" y="5.00" width="1.00" height="40.00" />
|
<path d="M122.0,5.0 L123.0,5.0 L123.0,45.0 L122.0,45.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="115.00" y="5.00" width="1.00" height="40.00" />
|
<text style="fill:rgb(0,0,0);stroke:none;font-family:"Arial";font-size:26px;" x="-16" y="71">123456789Od</text>
|
||||||
<rect x="117.00" y="5.00" width="4.00" height="40.00" />
|
|
||||||
<rect x="122.00" y="5.00" width="1.00" height="40.00" />
|
|
||||||
<text x="64.00" y="71.00" text-anchor="middle"
|
|
||||||
font-family="Arial" font-size="26.00" fill="#000000">
|
|
||||||
123456789Od
|
|
||||||
</text>
|
|
||||||
</g>
|
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 4.3 KiB |
143
barcode/src/test/resources/org/xbib/graphics/barcode/output/code93-magnification-2.eps
Executable file → Normal file
|
@ -1,71 +1,76 @@
|
||||||
%!PS-Adobe-3.0 EPSF-3.0
|
%!PS-Adobe-3.0 EPSF-3.0
|
||||||
%%Creator: OkapiBarcode
|
%%BoundingBox: 0 0 726 341
|
||||||
%%Title: 123456789
|
%%HiResBoundingBox: 0.0 0.0 725.6692913385828 340.15748031496065
|
||||||
%%Pages: 0
|
%%LanguageLevel: 3
|
||||||
%%BoundingBox: 0 0 256 120
|
%%Pages: 1
|
||||||
%%EndComments
|
%%EndComments
|
||||||
/TL { setlinewidth moveto lineto stroke } bind def
|
%%Page: 1 1
|
||||||
/TC { moveto 0 360 arc 360 0 arcn fill } bind def
|
/M /moveto load def
|
||||||
/TH { 0 setlinewidth moveto lineto lineto lineto lineto lineto closepath fill } bind def
|
/L /lineto load def
|
||||||
/TB { 2 copy } bind def
|
/C /curveto load def
|
||||||
/TR { newpath 4 1 roll exch moveto 1 index 0 rlineto 0 exch rlineto neg 0 rlineto closepath fill } bind def
|
/Z /closepath load def
|
||||||
/TE { pop pop } bind def
|
/RL /rlineto load def
|
||||||
newpath
|
/rgb /setrgbcolor load def
|
||||||
0.00 0.00 0.00 setrgbcolor
|
/rect { /height exch def /width exch def /y exch def /x exch def x y M width 0 RL 0 height RL width neg 0 RL } bind def
|
||||||
1.00 1.00 1.00 setrgbcolor
|
/ellipse { /endangle exch def /startangle exch def /ry exch def /rx exch def /y exch def /x exch def /savematrix matrix currentmatrix def x y translate rx ry scale 0 0 1 startangle endangle arcn savematrix setmatrix } bind def
|
||||||
120.00 0.00 TB 0.00 256.00 TR
|
/imgdict { /datastream exch def /hasdata exch def /decodeScale exch def /bits exch def /bands exch def /imgheight exch def /imgwidth exch def << /ImageType 1 /Width imgwidth /Height imgheight /BitsPerComponent bits /Decode [bands {0 decodeScale} repeat]
|
||||||
TE
|
/ImageMatrix [imgwidth 0 0 imgheight 0 0] hasdata { /DataSource datastream } if >> } bind def
|
||||||
0.00 0.00 0.00 setrgbcolor
|
/latinize { /fontName exch def /fontNameNew exch def fontName findfont 0 dict copy begin /Encoding ISOLatin1Encoding def fontNameNew /FontName def currentdict end dup /FID undef fontNameNew exch definefont pop } bind def
|
||||||
80.00 30.00 TB 10.00 2.00 TR
|
/LucidaGrandeLat /LucidaGrande latinize /LucidaGrandeLat 12.0 selectfont
|
||||||
TB 14.00 2.00 TR
|
gsave
|
||||||
TB 18.00 8.00 TR
|
clipsave
|
||||||
TB 28.00 2.00 TR
|
/DeviceRGB setcolorspace
|
||||||
TB 32.00 2.00 TR
|
0 340.15748031496065 translate
|
||||||
TB 38.00 2.00 TR
|
2.834645669291339 -2.834645669291339 scale
|
||||||
TB 46.00 2.00 TR
|
/basematrix matrix currentmatrix def
|
||||||
TB 50.00 2.00 TR
|
gsave
|
||||||
TB 58.00 2.00 TR
|
0.0 0.0 0.0 rgb
|
||||||
TB 64.00 2.00 TR
|
1.0 setlinewidth 0 setlinejoin 0 setlinecap [] 0.0 setdash
|
||||||
TB 68.00 2.00 TR
|
1.0 1.0 1.0 rgb
|
||||||
TB 78.00 2.00 TR
|
newpath 0.0 0.0 1920.0 1200.0 rect Z fill
|
||||||
TB 82.00 2.00 TR
|
0.0 0.0 0.0 rgb
|
||||||
TB 88.00 2.00 TR
|
newpath 10.0 10.0 M 12.0 10.0 L 12.0 90.0 L 10.0 90.0 L Z fill
|
||||||
TB 92.00 2.00 TR
|
newpath 14.0 10.0 M 16.0 10.0 L 16.0 90.0 L 14.0 90.0 L Z fill
|
||||||
TB 100.00 2.00 TR
|
newpath 18.0 10.0 M 26.0 10.0 L 26.0 90.0 L 18.0 90.0 L Z fill
|
||||||
TB 106.00 2.00 TR
|
newpath 28.0 10.0 M 30.0 10.0 L 30.0 90.0 L 28.0 90.0 L Z fill
|
||||||
TB 112.00 2.00 TR
|
newpath 32.0 10.0 M 34.0 10.0 L 34.0 90.0 L 32.0 90.0 L Z fill
|
||||||
TB 118.00 2.00 TR
|
newpath 38.0 10.0 M 40.0 10.0 L 40.0 90.0 L 38.0 90.0 L Z fill
|
||||||
TB 124.00 2.00 TR
|
newpath 46.0 10.0 M 48.0 10.0 L 48.0 90.0 L 46.0 90.0 L Z fill
|
||||||
TB 132.00 2.00 TR
|
newpath 50.0 10.0 M 52.0 10.0 L 52.0 90.0 L 50.0 90.0 L Z fill
|
||||||
TB 136.00 2.00 TR
|
newpath 58.0 10.0 M 60.0 10.0 L 60.0 90.0 L 58.0 90.0 L Z fill
|
||||||
TB 140.00 2.00 TR
|
newpath 64.0 10.0 M 66.0 10.0 L 66.0 90.0 L 64.0 90.0 L Z fill
|
||||||
TB 144.00 2.00 TR
|
newpath 68.0 10.0 M 70.0 10.0 L 70.0 90.0 L 68.0 90.0 L Z fill
|
||||||
TB 154.00 2.00 TR
|
newpath 78.0 10.0 M 80.0 10.0 L 80.0 90.0 L 78.0 90.0 L Z fill
|
||||||
TB 162.00 2.00 TR
|
newpath 82.0 10.0 M 84.0 10.0 L 84.0 90.0 L 82.0 90.0 L Z fill
|
||||||
TB 168.00 2.00 TR
|
newpath 88.0 10.0 M 90.0 10.0 L 90.0 90.0 L 88.0 90.0 L Z fill
|
||||||
TB 172.00 2.00 TR
|
newpath 92.0 10.0 M 94.0 10.0 L 94.0 90.0 L 92.0 90.0 L Z fill
|
||||||
TB 182.00 2.00 TR
|
newpath 100.0 10.0 M 102.0 10.0 L 102.0 90.0 L 100.0 90.0 L Z fill
|
||||||
TB 186.00 2.00 TR
|
newpath 106.0 10.0 M 108.0 10.0 L 108.0 90.0 L 106.0 90.0 L Z fill
|
||||||
TB 190.00 2.00 TR
|
newpath 112.0 10.0 M 114.0 10.0 L 114.0 90.0 L 112.0 90.0 L Z fill
|
||||||
TB 196.00 2.00 TR
|
newpath 118.0 10.0 M 120.0 10.0 L 120.0 90.0 L 118.0 90.0 L Z fill
|
||||||
TB 200.00 4.00 TR
|
newpath 124.0 10.0 M 126.0 10.0 L 126.0 90.0 L 124.0 90.0 L Z fill
|
||||||
TB 208.00 2.00 TR
|
newpath 132.0 10.0 M 134.0 10.0 L 134.0 90.0 L 132.0 90.0 L Z fill
|
||||||
TB 214.00 4.00 TR
|
newpath 136.0 10.0 M 138.0 10.0 L 138.0 90.0 L 136.0 90.0 L Z fill
|
||||||
TB 222.00 2.00 TR
|
newpath 140.0 10.0 M 142.0 10.0 L 142.0 90.0 L 140.0 90.0 L Z fill
|
||||||
TB 226.00 2.00 TR
|
newpath 144.0 10.0 M 146.0 10.0 L 146.0 90.0 L 144.0 90.0 L Z fill
|
||||||
TB 230.00 2.00 TR
|
newpath 154.0 10.0 M 156.0 10.0 L 156.0 90.0 L 154.0 90.0 L Z fill
|
||||||
TB 234.00 8.00 TR
|
newpath 162.0 10.0 M 164.0 10.0 L 164.0 90.0 L 162.0 90.0 L Z fill
|
||||||
TB 244.00 2.00 TR
|
newpath 168.0 10.0 M 170.0 10.0 L 170.0 90.0 L 168.0 90.0 L Z fill
|
||||||
TE
|
newpath 172.0 10.0 M 174.0 10.0 L 174.0 90.0 L 172.0 90.0 L Z fill
|
||||||
0.00 0.00 0.00 setrgbcolor
|
newpath 182.0 10.0 M 184.0 10.0 L 184.0 90.0 L 182.0 90.0 L Z fill
|
||||||
matrix currentmatrix
|
newpath 186.0 10.0 M 188.0 10.0 L 188.0 90.0 L 186.0 90.0 L Z fill
|
||||||
/Helvetica findfont
|
newpath 190.0 10.0 M 192.0 10.0 L 192.0 90.0 L 190.0 90.0 L Z fill
|
||||||
16.00 scalefont setfont
|
newpath 196.0 10.0 M 198.0 10.0 L 198.0 90.0 L 196.0 90.0 L Z fill
|
||||||
0 0 moveto 128.00 14.00 translate 0.00 rotate 0 0 moveto
|
newpath 200.0 10.0 M 204.0 10.0 L 204.0 90.0 L 200.0 90.0 L Z fill
|
||||||
(123456789Od) stringwidth
|
newpath 208.0 10.0 M 210.0 10.0 L 210.0 90.0 L 208.0 90.0 L Z fill
|
||||||
pop
|
newpath 214.0 10.0 M 218.0 10.0 L 218.0 90.0 L 214.0 90.0 L Z fill
|
||||||
-2 div 0 rmoveto
|
newpath 222.0 10.0 M 224.0 10.0 L 224.0 90.0 L 222.0 90.0 L Z fill
|
||||||
(123456789Od) show
|
newpath 226.0 10.0 M 228.0 10.0 L 228.0 90.0 L 226.0 90.0 L Z fill
|
||||||
setmatrix
|
newpath 230.0 10.0 M 232.0 10.0 L 232.0 90.0 L 230.0 90.0 L Z fill
|
||||||
|
newpath 234.0 10.0 M 242.0 10.0 L 242.0 90.0 L 234.0 90.0 L Z fill
|
||||||
showpage
|
newpath 244.0 10.0 M 246.0 10.0 L 246.0 90.0 L 244.0 90.0 L Z fill
|
||||||
|
/HelveticaLat /Helvetica latinize /HelveticaLat 16.0 selectfont
|
||||||
|
gsave 1 -1 scale 77.0 -106.0 M (123456789Od) show grestore
|
||||||
|
/LucidaGrandeLat /LucidaGrande latinize /LucidaGrandeLat 12.0 selectfont
|
||||||
|
grestore
|
||||||
|
%%EOF
|
97
barcode/src/test/resources/org/xbib/graphics/barcode/output/code93-magnification-2.svg
Executable file → Normal file
|
@ -1,53 +1,46 @@
|
||||||
<?xml version="1.0" standalone="no"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
<svg xmlns:xlink="http://www.w3.org/1999/xlink" height="42.33332839444502mm" version="1.1" viewBox="0.0 0.0 256.0 120.0" width="90.31110057481604mm" x="0mm" y="0mm" xmlns="http://www.w3.org/2000/svg">
|
||||||
<svg width="256" height="120" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
<rect height="1200" style="fill:rgb(255,255,255);stroke:none;" width="1920" x="0" y="0"/>
|
||||||
<desc>123456789</desc>
|
<path d="M10.0,10.0 L12.0,10.0 L12.0,90.0 L10.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<g id="barcode" fill="#000000">
|
<path d="M14.0,10.0 L16.0,10.0 L16.0,90.0 L14.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="0" y="0" width="256" height="120" fill="#FFFFFF" />
|
<path d="M18.0,10.0 L26.0,10.0 L26.0,90.0 L18.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="10.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M28.0,10.0 L30.0,10.0 L30.0,90.0 L28.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="14.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M32.0,10.0 L34.0,10.0 L34.0,90.0 L32.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="18.00" y="10.00" width="8.00" height="80.00" />
|
<path d="M38.0,10.0 L40.0,10.0 L40.0,90.0 L38.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="28.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M46.0,10.0 L48.0,10.0 L48.0,90.0 L46.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="32.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M50.0,10.0 L52.0,10.0 L52.0,90.0 L50.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="38.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M58.0,10.0 L60.0,10.0 L60.0,90.0 L58.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="46.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M64.0,10.0 L66.0,10.0 L66.0,90.0 L64.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="50.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M68.0,10.0 L70.0,10.0 L70.0,90.0 L68.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="58.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M78.0,10.0 L80.0,10.0 L80.0,90.0 L78.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="64.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M82.0,10.0 L84.0,10.0 L84.0,90.0 L82.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="68.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M88.0,10.0 L90.0,10.0 L90.0,90.0 L88.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="78.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M92.0,10.0 L94.0,10.0 L94.0,90.0 L92.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="82.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M100.0,10.0 L102.0,10.0 L102.0,90.0 L100.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="88.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M106.0,10.0 L108.0,10.0 L108.0,90.0 L106.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="92.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M112.0,10.0 L114.0,10.0 L114.0,90.0 L112.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="100.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M118.0,10.0 L120.0,10.0 L120.0,90.0 L118.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="106.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M124.0,10.0 L126.0,10.0 L126.0,90.0 L124.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="112.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M132.0,10.0 L134.0,10.0 L134.0,90.0 L132.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="118.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M136.0,10.0 L138.0,10.0 L138.0,90.0 L136.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="124.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M140.0,10.0 L142.0,10.0 L142.0,90.0 L140.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="132.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M144.0,10.0 L146.0,10.0 L146.0,90.0 L144.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="136.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M154.0,10.0 L156.0,10.0 L156.0,90.0 L154.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="140.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M162.0,10.0 L164.0,10.0 L164.0,90.0 L162.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="144.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M168.0,10.0 L170.0,10.0 L170.0,90.0 L168.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="154.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M172.0,10.0 L174.0,10.0 L174.0,90.0 L172.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="162.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M182.0,10.0 L184.0,10.0 L184.0,90.0 L182.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="168.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M186.0,10.0 L188.0,10.0 L188.0,90.0 L186.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="172.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M190.0,10.0 L192.0,10.0 L192.0,90.0 L190.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="182.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M196.0,10.0 L198.0,10.0 L198.0,90.0 L196.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="186.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M200.0,10.0 L204.0,10.0 L204.0,90.0 L200.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="190.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M208.0,10.0 L210.0,10.0 L210.0,90.0 L208.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="196.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M214.0,10.0 L218.0,10.0 L218.0,90.0 L214.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="200.00" y="10.00" width="4.00" height="80.00" />
|
<path d="M222.0,10.0 L224.0,10.0 L224.0,90.0 L222.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="208.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M226.0,10.0 L228.0,10.0 L228.0,90.0 L226.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="214.00" y="10.00" width="4.00" height="80.00" />
|
<path d="M230.0,10.0 L232.0,10.0 L232.0,90.0 L230.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="222.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M234.0,10.0 L242.0,10.0 L242.0,90.0 L234.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="226.00" y="10.00" width="2.00" height="80.00" />
|
<path d="M244.0,10.0 L246.0,10.0 L246.0,90.0 L244.0,90.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="230.00" y="10.00" width="2.00" height="80.00" />
|
<text style="fill:rgb(0,0,0);stroke:none;font-family:"Helvetica";font-size:16px;" x="77" y="106">123456789Od</text>
|
||||||
<rect x="234.00" y="10.00" width="8.00" height="80.00" />
|
|
||||||
<rect x="244.00" y="10.00" width="2.00" height="80.00" />
|
|
||||||
<text x="128.00" y="106.00" text-anchor="middle"
|
|
||||||
font-family="Helvetica" font-size="16.00" fill="#000000">
|
|
||||||
123456789Od
|
|
||||||
</text>
|
|
||||||
</g>
|
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 4.5 KiB |
143
barcode/src/test/resources/org/xbib/graphics/barcode/output/code93-margin-size-20.eps
Executable file → Normal file
|
@ -1,71 +1,76 @@
|
||||||
%!PS-Adobe-3.0 EPSF-3.0
|
%!PS-Adobe-3.0 EPSF-3.0
|
||||||
%%Creator: OkapiBarcode
|
%%BoundingBox: 0 0 448 256
|
||||||
%%Title: 123456789
|
%%HiResBoundingBox: 0.0 0.0 447.8740157480315 255.1181102362205
|
||||||
%%Pages: 0
|
%%LanguageLevel: 3
|
||||||
%%BoundingBox: 0 0 158 90
|
%%Pages: 1
|
||||||
%%EndComments
|
%%EndComments
|
||||||
/TL { setlinewidth moveto lineto stroke } bind def
|
%%Page: 1 1
|
||||||
/TC { moveto 0 360 arc 360 0 arcn fill } bind def
|
/M /moveto load def
|
||||||
/TH { 0 setlinewidth moveto lineto lineto lineto lineto lineto closepath fill } bind def
|
/L /lineto load def
|
||||||
/TB { 2 copy } bind def
|
/C /curveto load def
|
||||||
/TR { newpath 4 1 roll exch moveto 1 index 0 rlineto 0 exch rlineto neg 0 rlineto closepath fill } bind def
|
/Z /closepath load def
|
||||||
/TE { pop pop } bind def
|
/RL /rlineto load def
|
||||||
newpath
|
/rgb /setrgbcolor load def
|
||||||
0.00 0.00 0.00 setrgbcolor
|
/rect { /height exch def /width exch def /y exch def /x exch def x y M width 0 RL 0 height RL width neg 0 RL } bind def
|
||||||
1.00 1.00 1.00 setrgbcolor
|
/ellipse { /endangle exch def /startangle exch def /ry exch def /rx exch def /y exch def /x exch def /savematrix matrix currentmatrix def x y translate rx ry scale 0 0 1 startangle endangle arcn savematrix setmatrix } bind def
|
||||||
90.00 0.00 TB 0.00 158.00 TR
|
/imgdict { /datastream exch def /hasdata exch def /decodeScale exch def /bits exch def /bands exch def /imgheight exch def /imgwidth exch def << /ImageType 1 /Width imgwidth /Height imgheight /BitsPerComponent bits /Decode [bands {0 decodeScale} repeat]
|
||||||
TE
|
/ImageMatrix [imgwidth 0 0 imgheight 0 0] hasdata { /DataSource datastream } if >> } bind def
|
||||||
0.00 0.00 0.00 setrgbcolor
|
/latinize { /fontName exch def /fontNameNew exch def fontName findfont 0 dict copy begin /Encoding ISOLatin1Encoding def fontNameNew /FontName def currentdict end dup /FID undef fontNameNew exch definefont pop } bind def
|
||||||
40.00 30.00 TB 20.00 1.00 TR
|
/LucidaGrandeLat /LucidaGrande latinize /LucidaGrandeLat 12.0 selectfont
|
||||||
TB 22.00 1.00 TR
|
gsave
|
||||||
TB 24.00 4.00 TR
|
clipsave
|
||||||
TB 29.00 1.00 TR
|
/DeviceRGB setcolorspace
|
||||||
TB 31.00 1.00 TR
|
0 255.1181102362205 translate
|
||||||
TB 34.00 1.00 TR
|
2.834645669291339 -2.834645669291339 scale
|
||||||
TB 38.00 1.00 TR
|
/basematrix matrix currentmatrix def
|
||||||
TB 40.00 1.00 TR
|
gsave
|
||||||
TB 44.00 1.00 TR
|
0.0 0.0 0.0 rgb
|
||||||
TB 47.00 1.00 TR
|
1.0 setlinewidth 0 setlinejoin 0 setlinecap [] 0.0 setdash
|
||||||
TB 49.00 1.00 TR
|
1.0 1.0 1.0 rgb
|
||||||
TB 54.00 1.00 TR
|
newpath 0.0 0.0 1920.0 1200.0 rect Z fill
|
||||||
TB 56.00 1.00 TR
|
0.0 0.0 0.0 rgb
|
||||||
TB 59.00 1.00 TR
|
newpath 20.0 20.0 M 21.0 20.0 L 21.0 60.0 L 20.0 60.0 L Z fill
|
||||||
TB 61.00 1.00 TR
|
newpath 22.0 20.0 M 23.0 20.0 L 23.0 60.0 L 22.0 60.0 L Z fill
|
||||||
TB 65.00 1.00 TR
|
newpath 24.0 20.0 M 28.0 20.0 L 28.0 60.0 L 24.0 60.0 L Z fill
|
||||||
TB 68.00 1.00 TR
|
newpath 29.0 20.0 M 30.0 20.0 L 30.0 60.0 L 29.0 60.0 L Z fill
|
||||||
TB 71.00 1.00 TR
|
newpath 31.0 20.0 M 32.0 20.0 L 32.0 60.0 L 31.0 60.0 L Z fill
|
||||||
TB 74.00 1.00 TR
|
newpath 34.0 20.0 M 35.0 20.0 L 35.0 60.0 L 34.0 60.0 L Z fill
|
||||||
TB 77.00 1.00 TR
|
newpath 38.0 20.0 M 39.0 20.0 L 39.0 60.0 L 38.0 60.0 L Z fill
|
||||||
TB 81.00 1.00 TR
|
newpath 40.0 20.0 M 41.0 20.0 L 41.0 60.0 L 40.0 60.0 L Z fill
|
||||||
TB 83.00 1.00 TR
|
newpath 44.0 20.0 M 45.0 20.0 L 45.0 60.0 L 44.0 60.0 L Z fill
|
||||||
TB 85.00 1.00 TR
|
newpath 47.0 20.0 M 48.0 20.0 L 48.0 60.0 L 47.0 60.0 L Z fill
|
||||||
TB 87.00 1.00 TR
|
newpath 49.0 20.0 M 50.0 20.0 L 50.0 60.0 L 49.0 60.0 L Z fill
|
||||||
TB 92.00 1.00 TR
|
newpath 54.0 20.0 M 55.0 20.0 L 55.0 60.0 L 54.0 60.0 L Z fill
|
||||||
TB 96.00 1.00 TR
|
newpath 56.0 20.0 M 57.0 20.0 L 57.0 60.0 L 56.0 60.0 L Z fill
|
||||||
TB 99.00 1.00 TR
|
newpath 59.0 20.0 M 60.0 20.0 L 60.0 60.0 L 59.0 60.0 L Z fill
|
||||||
TB 101.00 1.00 TR
|
newpath 61.0 20.0 M 62.0 20.0 L 62.0 60.0 L 61.0 60.0 L Z fill
|
||||||
TB 106.00 1.00 TR
|
newpath 65.0 20.0 M 66.0 20.0 L 66.0 60.0 L 65.0 60.0 L Z fill
|
||||||
TB 108.00 1.00 TR
|
newpath 68.0 20.0 M 69.0 20.0 L 69.0 60.0 L 68.0 60.0 L Z fill
|
||||||
TB 110.00 1.00 TR
|
newpath 71.0 20.0 M 72.0 20.0 L 72.0 60.0 L 71.0 60.0 L Z fill
|
||||||
TB 113.00 1.00 TR
|
newpath 74.0 20.0 M 75.0 20.0 L 75.0 60.0 L 74.0 60.0 L Z fill
|
||||||
TB 115.00 2.00 TR
|
newpath 77.0 20.0 M 78.0 20.0 L 78.0 60.0 L 77.0 60.0 L Z fill
|
||||||
TB 119.00 1.00 TR
|
newpath 81.0 20.0 M 82.0 20.0 L 82.0 60.0 L 81.0 60.0 L Z fill
|
||||||
TB 122.00 2.00 TR
|
newpath 83.0 20.0 M 84.0 20.0 L 84.0 60.0 L 83.0 60.0 L Z fill
|
||||||
TB 126.00 1.00 TR
|
newpath 85.0 20.0 M 86.0 20.0 L 86.0 60.0 L 85.0 60.0 L Z fill
|
||||||
TB 128.00 1.00 TR
|
newpath 87.0 20.0 M 88.0 20.0 L 88.0 60.0 L 87.0 60.0 L Z fill
|
||||||
TB 130.00 1.00 TR
|
newpath 92.0 20.0 M 93.0 20.0 L 93.0 60.0 L 92.0 60.0 L Z fill
|
||||||
TB 132.00 4.00 TR
|
newpath 96.0 20.0 M 97.0 20.0 L 97.0 60.0 L 96.0 60.0 L Z fill
|
||||||
TB 137.00 1.00 TR
|
newpath 99.0 20.0 M 100.0 20.0 L 100.0 60.0 L 99.0 60.0 L Z fill
|
||||||
TE
|
newpath 101.0 20.0 M 102.0 20.0 L 102.0 60.0 L 101.0 60.0 L Z fill
|
||||||
0.00 0.00 0.00 setrgbcolor
|
newpath 106.0 20.0 M 107.0 20.0 L 107.0 60.0 L 106.0 60.0 L Z fill
|
||||||
matrix currentmatrix
|
newpath 108.0 20.0 M 109.0 20.0 L 109.0 60.0 L 108.0 60.0 L Z fill
|
||||||
/Helvetica findfont
|
newpath 110.0 20.0 M 111.0 20.0 L 111.0 60.0 L 110.0 60.0 L Z fill
|
||||||
8.00 scalefont setfont
|
newpath 113.0 20.0 M 114.0 20.0 L 114.0 60.0 L 113.0 60.0 L Z fill
|
||||||
0 0 moveto 79.00 22.00 translate 0.00 rotate 0 0 moveto
|
newpath 115.0 20.0 M 117.0 20.0 L 117.0 60.0 L 115.0 60.0 L Z fill
|
||||||
(123456789Od) stringwidth
|
newpath 119.0 20.0 M 120.0 20.0 L 120.0 60.0 L 119.0 60.0 L Z fill
|
||||||
pop
|
newpath 122.0 20.0 M 124.0 20.0 L 124.0 60.0 L 122.0 60.0 L Z fill
|
||||||
-2 div 0 rmoveto
|
newpath 126.0 20.0 M 127.0 20.0 L 127.0 60.0 L 126.0 60.0 L Z fill
|
||||||
(123456789Od) show
|
newpath 128.0 20.0 M 129.0 20.0 L 129.0 60.0 L 128.0 60.0 L Z fill
|
||||||
setmatrix
|
newpath 130.0 20.0 M 131.0 20.0 L 131.0 60.0 L 130.0 60.0 L Z fill
|
||||||
|
newpath 132.0 20.0 M 136.0 20.0 L 136.0 60.0 L 132.0 60.0 L Z fill
|
||||||
showpage
|
newpath 137.0 20.0 M 138.0 20.0 L 138.0 60.0 L 137.0 60.0 L Z fill
|
||||||
|
/HelveticaLat /Helvetica latinize /HelveticaLat 8.0 selectfont
|
||||||
|
gsave 1 -1 scale 56.0 -68.0 M (123456789Od) show grestore
|
||||||
|
/LucidaGrandeLat /LucidaGrande latinize /LucidaGrandeLat 12.0 selectfont
|
||||||
|
grestore
|
||||||
|
%%EOF
|
97
barcode/src/test/resources/org/xbib/graphics/barcode/output/code93-margin-size-20.svg
Executable file → Normal file
|
@ -1,53 +1,46 @@
|
||||||
<?xml version="1.0" standalone="no"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
<svg xmlns:xlink="http://www.w3.org/1999/xlink" height="31.749996295833764mm" version="1.1" viewBox="0.0 0.0 158.0 90.0" width="55.73888238601927mm" x="0mm" y="0mm" xmlns="http://www.w3.org/2000/svg">
|
||||||
<svg width="158" height="90" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
<rect height="1200" style="fill:rgb(255,255,255);stroke:none;" width="1920" x="0" y="0"/>
|
||||||
<desc>123456789</desc>
|
<path d="M20.0,20.0 L21.0,20.0 L21.0,60.0 L20.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<g id="barcode" fill="#000000">
|
<path d="M22.0,20.0 L23.0,20.0 L23.0,60.0 L22.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="0" y="0" width="158" height="90" fill="#FFFFFF" />
|
<path d="M24.0,20.0 L28.0,20.0 L28.0,60.0 L24.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="20.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M29.0,20.0 L30.0,20.0 L30.0,60.0 L29.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="22.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M31.0,20.0 L32.0,20.0 L32.0,60.0 L31.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="24.00" y="20.00" width="4.00" height="40.00" />
|
<path d="M34.0,20.0 L35.0,20.0 L35.0,60.0 L34.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="29.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M38.0,20.0 L39.0,20.0 L39.0,60.0 L38.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="31.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M40.0,20.0 L41.0,20.0 L41.0,60.0 L40.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="34.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M44.0,20.0 L45.0,20.0 L45.0,60.0 L44.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="38.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M47.0,20.0 L48.0,20.0 L48.0,60.0 L47.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="40.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M49.0,20.0 L50.0,20.0 L50.0,60.0 L49.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="44.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M54.0,20.0 L55.0,20.0 L55.0,60.0 L54.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="47.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M56.0,20.0 L57.0,20.0 L57.0,60.0 L56.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="49.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M59.0,20.0 L60.0,20.0 L60.0,60.0 L59.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="54.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M61.0,20.0 L62.0,20.0 L62.0,60.0 L61.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="56.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M65.0,20.0 L66.0,20.0 L66.0,60.0 L65.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="59.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M68.0,20.0 L69.0,20.0 L69.0,60.0 L68.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="61.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M71.0,20.0 L72.0,20.0 L72.0,60.0 L71.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="65.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M74.0,20.0 L75.0,20.0 L75.0,60.0 L74.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="68.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M77.0,20.0 L78.0,20.0 L78.0,60.0 L77.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="71.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M81.0,20.0 L82.0,20.0 L82.0,60.0 L81.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="74.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M83.0,20.0 L84.0,20.0 L84.0,60.0 L83.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="77.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M85.0,20.0 L86.0,20.0 L86.0,60.0 L85.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="81.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M87.0,20.0 L88.0,20.0 L88.0,60.0 L87.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="83.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M92.0,20.0 L93.0,20.0 L93.0,60.0 L92.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="85.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M96.0,20.0 L97.0,20.0 L97.0,60.0 L96.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="87.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M99.0,20.0 L100.0,20.0 L100.0,60.0 L99.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="92.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M101.0,20.0 L102.0,20.0 L102.0,60.0 L101.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="96.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M106.0,20.0 L107.0,20.0 L107.0,60.0 L106.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="99.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M108.0,20.0 L109.0,20.0 L109.0,60.0 L108.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="101.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M110.0,20.0 L111.0,20.0 L111.0,60.0 L110.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="106.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M113.0,20.0 L114.0,20.0 L114.0,60.0 L113.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="108.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M115.0,20.0 L117.0,20.0 L117.0,60.0 L115.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="110.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M119.0,20.0 L120.0,20.0 L120.0,60.0 L119.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="113.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M122.0,20.0 L124.0,20.0 L124.0,60.0 L122.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="115.00" y="20.00" width="2.00" height="40.00" />
|
<path d="M126.0,20.0 L127.0,20.0 L127.0,60.0 L126.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="119.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M128.0,20.0 L129.0,20.0 L129.0,60.0 L128.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="122.00" y="20.00" width="2.00" height="40.00" />
|
<path d="M130.0,20.0 L131.0,20.0 L131.0,60.0 L130.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="126.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M132.0,20.0 L136.0,20.0 L136.0,60.0 L132.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="128.00" y="20.00" width="1.00" height="40.00" />
|
<path d="M137.0,20.0 L138.0,20.0 L138.0,60.0 L137.0,60.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="130.00" y="20.00" width="1.00" height="40.00" />
|
<text style="fill:rgb(0,0,0);stroke:none;font-family:"Helvetica";font-size:8px;" x="56" y="68">123456789Od</text>
|
||||||
<rect x="132.00" y="20.00" width="4.00" height="40.00" />
|
|
||||||
<rect x="137.00" y="20.00" width="1.00" height="40.00" />
|
|
||||||
<text x="79.00" y="68.00" text-anchor="middle"
|
|
||||||
font-family="Helvetica" font-size="8.00" fill="#000000">
|
|
||||||
123456789Od
|
|
||||||
</text>
|
|
||||||
</g>
|
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 4.4 KiB |
805
barcode/src/test/resources/org/xbib/graphics/barcode/output/maxicode-basic.eps
Executable file → Normal file
|
@ -1,393 +1,416 @@
|
||||||
%!PS-Adobe-3.0 EPSF-3.0
|
%!PS-Adobe-3.0 EPSF-3.0
|
||||||
%%Creator: OkapiBarcode
|
%%BoundingBox: 0 0 1191 1163
|
||||||
%%Title: 123456789
|
%%HiResBoundingBox: 0.0 0.0 1190.5511811023623 1162.204724409449
|
||||||
%%Pages: 0
|
%%LanguageLevel: 3
|
||||||
%%BoundingBox: 0 0 420 410
|
%%Pages: 1
|
||||||
%%EndComments
|
%%EndComments
|
||||||
/TL { setlinewidth moveto lineto stroke } bind def
|
%%Page: 1 1
|
||||||
/TC { moveto 0 360 arc 360 0 arcn fill } bind def
|
/M /moveto load def
|
||||||
/TH { 0 setlinewidth moveto lineto lineto lineto lineto lineto closepath fill } bind def
|
/L /lineto load def
|
||||||
/TB { 2 copy } bind def
|
/C /curveto load def
|
||||||
/TR { newpath 4 1 roll exch moveto 1 index 0 rlineto 0 exch rlineto neg 0 rlineto closepath fill } bind def
|
/Z /closepath load def
|
||||||
/TE { pop pop } bind def
|
/RL /rlineto load def
|
||||||
newpath
|
/rgb /setrgbcolor load def
|
||||||
0.00 0.00 0.00 setrgbcolor
|
/rect { /height exch def /width exch def /y exch def /x exch def x y M width 0 RL 0 height RL width neg 0 RL } bind def
|
||||||
1.00 1.00 1.00 setrgbcolor
|
/ellipse { /endangle exch def /startangle exch def /ry exch def /rx exch def /y exch def /x exch def /savematrix matrix currentmatrix def x y translate rx ry scale 0 0 1 startangle endangle arcn savematrix setmatrix } bind def
|
||||||
410.00 0.00 TB 0.00 420.00 TR
|
/imgdict { /datastream exch def /hasdata exch def /decodeScale exch def /bits exch def /bands exch def /imgheight exch def /imgwidth exch def << /ImageType 1 /Width imgwidth /Height imgheight /BitsPerComponent bits /Decode [bands {0 decodeScale} repeat]
|
||||||
TE
|
/ImageMatrix [imgwidth 0 0 imgheight 0 0] hasdata { /DataSource datastream } if >> } bind def
|
||||||
0.00 0.00 0.00 setrgbcolor
|
/latinize { /fontName exch def /fontNameNew exch def fontName findfont 0 dict copy begin /Encoding ISOLatin1Encoding def fontNameNew /FontName def currentdict end dup /FID undef fontNameNew exch definefont pop } bind def
|
||||||
0.00 0.00 0.00 setrgbcolor
|
/LucidaGrandeLat /LucidaGrande latinize /LucidaGrandeLat 12.0 selectfont
|
||||||
60.76 349.40 10.85 60.76 349.40 8.97 69.73 349.40 TC
|
gsave
|
||||||
60.76 349.40 7.10 60.76 349.40 5.22 65.98 349.40 TC
|
clipsave
|
||||||
60.76 349.40 3.31 60.76 349.40 1.43 62.19 349.40 TC
|
/DeviceRGB setcolorspace
|
||||||
28.69 382.32 29.77 382.95 29.77 384.20 28.69 384.82 27.62 384.20 27.62 382.95 TH
|
0 1162.204724409449 translate
|
||||||
33.61 382.32 34.69 382.95 34.69 384.20 33.61 384.82 32.54 384.20 32.54 382.95 TH
|
2.834645669291339 -2.834645669291339 scale
|
||||||
38.53 382.32 39.61 382.95 39.61 384.20 38.53 384.82 37.46 384.20 37.46 382.95 TH
|
/basematrix matrix currentmatrix def
|
||||||
43.45 382.32 44.53 382.95 44.53 384.20 43.45 384.82 42.38 384.20 42.38 382.95 TH
|
gsave
|
||||||
48.37 382.32 49.45 382.95 49.45 384.20 48.37 384.82 47.30 384.20 47.30 382.95 TH
|
0.0 0.0 0.0 rgb
|
||||||
53.29 382.32 54.36 382.95 54.36 384.20 53.29 384.82 52.22 384.20 52.22 382.95 TH
|
1.0 setlinewidth 0 setlinejoin 0 setlinecap [] 0.0 setdash
|
||||||
58.21 382.32 59.29 382.95 59.29 384.20 58.21 384.82 57.14 384.20 57.14 382.95 TH
|
1.0 1.0 1.0 rgb
|
||||||
63.13 382.32 64.21 382.95 64.21 384.20 63.13 384.82 62.05 384.20 62.05 382.95 TH
|
newpath 0.0 0.0 1920.0 1200.0 rect Z fill
|
||||||
68.05 382.32 69.13 382.95 69.13 384.20 68.05 384.82 66.98 384.20 66.98 382.95 TH
|
0.0 0.0 0.0 rgb
|
||||||
72.97 382.32 74.05 382.95 74.05 384.20 72.97 384.82 71.90 384.20 71.90 382.95 TH
|
/HelveticaLat /Helvetica latinize /HelveticaLat 40.0 selectfont
|
||||||
77.89 382.32 78.97 382.95 78.97 384.20 77.89 384.82 76.82 384.20 76.82 382.95 TH
|
/LucidaGrandeLat /LucidaGrande latinize /LucidaGrandeLat 12.0 selectfont
|
||||||
82.81 382.32 83.88 382.95 83.88 384.20 82.81 384.82 81.73 384.20 81.73 382.95 TH
|
newpath 43.45 38.4 M 48.825 35.275 L 48.825 29.025 L 43.45 25.9 L 38.075 29.025 L 38.075 35.275 L Z fill
|
||||||
87.73 382.32 88.81 382.95 88.81 384.20 87.73 384.82 86.66 384.20 86.66 382.95 TH
|
newpath 68.05 38.4 M 73.425 35.275 L 73.425 29.025 L 68.05 25.9 L 62.675 29.025 L 62.675 35.275 L Z fill
|
||||||
92.65 382.32 93.73 382.95 93.73 384.20 92.65 384.82 91.58 384.20 91.58 382.95 TH
|
newpath 92.65 38.4 M 98.025 35.275 L 98.025 29.025 L 92.65 25.9 L 87.275 29.025 L 87.275 35.275 L Z fill
|
||||||
95.11 382.32 96.19 382.95 96.19 384.20 95.11 384.82 94.04 384.20 94.04 382.95 TH
|
newpath 117.25 38.4 M 122.625 35.275 L 122.625 29.025 L 117.25 25.9 L 111.875 29.025 L 111.875 35.275 L Z fill
|
||||||
97.57 382.32 98.65 382.95 98.65 384.20 97.57 384.82 96.50 384.20 96.50 382.95 TH
|
newpath 141.85000000000002 38.4 M 147.225 35.275 L 147.225 29.025 L 141.85000000000002 25.9 L 136.47500000000002 29.025 L 136.47500000000002 35.275 L Z fill
|
||||||
26.23 378.05 27.31 378.68 27.31 379.93 26.23 380.55 25.16 379.93 25.16 378.68 TH
|
newpath 166.45 38.4 M 171.825 35.275 L 171.825 29.025 L 166.45 25.9 L 161.075 29.025 L 161.075 35.275 L Z fill
|
||||||
31.15 378.05 32.23 378.68 32.23 379.93 31.15 380.55 30.08 379.93 30.08 378.68 TH
|
newpath 191.05 38.4 M 196.425 35.275 L 196.425 29.025 L 191.05 25.9 L 185.67499999999998 29.025 L 185.67499999999998 35.275 L Z fill
|
||||||
36.07 378.05 37.14 378.68 37.14 379.93 36.07 380.55 35.00 379.93 35.00 378.68 TH
|
newpath 215.64999999999998 38.4 M 221.02499999999998 35.275 L 221.02499999999998 29.025 L 215.64999999999998 25.9 L 210.27499999999998 29.025 L 210.27499999999998 35.275 L Z fill
|
||||||
40.99 378.05 42.07 378.68 42.07 379.93 40.99 380.55 39.92 379.93 39.92 378.68 TH
|
newpath 240.25 38.4 M 245.625 35.275 L 245.625 29.025 L 240.25 25.9 L 234.87499999999997 29.025 L 234.87499999999997 35.275 L Z fill
|
||||||
45.91 378.05 46.99 378.68 46.99 379.93 45.91 380.55 44.84 379.93 44.84 378.68 TH
|
newpath 264.85 38.4 M 270.225 35.275 L 270.225 29.025 L 264.85 25.9 L 259.47499999999997 29.025 L 259.47499999999997 35.275 L Z fill
|
||||||
50.83 378.05 51.91 378.68 51.91 379.93 50.83 380.55 49.76 379.93 49.76 378.68 TH
|
newpath 289.45 38.4 M 294.825 35.275 L 294.825 29.025 L 289.45 25.9 L 284.07499999999993 29.025 L 284.07499999999993 35.275 L Z fill
|
||||||
55.75 378.05 56.83 378.68 56.83 379.93 55.75 380.55 54.68 379.93 54.68 378.68 TH
|
newpath 314.04999999999995 38.4 M 319.425 35.275 L 319.425 29.025 L 314.04999999999995 25.9 L 308.67499999999995 29.025 L 308.67499999999995 35.275 L Z fill
|
||||||
60.67 378.05 61.75 378.68 61.75 379.93 60.67 380.55 59.59 379.93 59.59 378.68 TH
|
newpath 338.65 38.4 M 344.025 35.275 L 344.025 29.025 L 338.65 25.9 L 333.275 29.025 L 333.275 35.275 L Z fill
|
||||||
65.59 378.05 66.66 378.68 66.66 379.93 65.59 380.55 64.51 379.93 64.51 378.68 TH
|
newpath 363.25 38.4 M 368.62500000000006 35.275 L 368.62500000000006 29.025 L 363.25 25.9 L 357.875 29.025 L 357.875 35.275 L Z fill
|
||||||
70.51 378.05 71.59 378.68 71.59 379.93 70.51 380.55 69.44 379.93 69.44 378.68 TH
|
newpath 375.55 38.4 M 380.925 35.275 L 380.925 29.025 L 375.55 25.9 L 370.17499999999995 29.025 L 370.17499999999995 35.275 L Z fill
|
||||||
75.43 378.05 76.51 378.68 76.51 379.93 75.43 380.55 74.35 379.93 74.35 378.68 TH
|
newpath 387.85 38.4 M 393.225 35.275 L 393.225 29.025 L 387.85 25.9 L 382.475 29.025 L 382.475 35.275 L Z fill
|
||||||
80.35 378.05 81.43 378.68 81.43 379.93 80.35 380.55 79.27 379.93 79.27 378.68 TH
|
newpath 31.15 59.75 M 36.525 56.625 L 36.525 50.375 L 31.15 47.25 L 25.775 50.375 L 25.775 56.625 L Z fill
|
||||||
85.27 378.05 86.35 378.68 86.35 379.93 85.27 380.55 84.20 379.93 84.20 378.68 TH
|
newpath 55.75 59.75 M 61.125 56.625 L 61.125 50.375 L 55.75 47.25 L 50.375 50.375 L 50.375 56.625 L Z fill
|
||||||
90.19 378.05 91.27 378.68 91.27 379.93 90.19 380.55 89.12 379.93 89.12 378.68 TH
|
newpath 80.35 59.75 M 85.725 56.625 L 85.725 50.375 L 80.35 47.25 L 74.97500000000001 50.375 L 74.97500000000001 56.625 L Z fill
|
||||||
95.11 378.05 96.19 378.68 96.19 379.93 95.11 380.55 94.04 379.93 94.04 378.68 TH
|
newpath 104.95 59.75 M 110.325 56.625 L 110.325 50.375 L 104.95 47.25 L 99.575 50.375 L 99.575 56.625 L Z fill
|
||||||
29.92 375.92 31.00 376.54 31.00 377.79 29.92 378.42 28.85 377.79 28.85 376.54 TH
|
newpath 129.55 59.75 M 134.925 56.625 L 134.925 50.375 L 129.55 47.25 L 124.17500000000001 50.375 L 124.17500000000001 56.625 L Z fill
|
||||||
34.84 375.92 35.92 376.54 35.92 377.79 34.84 378.42 33.77 377.79 33.77 376.54 TH
|
newpath 154.15 59.75 M 159.525 56.625 L 159.525 50.375 L 154.15 47.25 L 148.775 50.375 L 148.775 56.625 L Z fill
|
||||||
39.76 375.92 40.84 376.54 40.84 377.79 39.76 378.42 38.69 377.79 38.69 376.54 TH
|
newpath 178.75 59.75 M 184.125 56.625 L 184.125 50.375 L 178.75 47.25 L 173.375 50.375 L 173.375 56.625 L Z fill
|
||||||
44.68 375.92 45.75 376.54 45.75 377.79 44.68 378.42 43.61 377.79 43.61 376.54 TH
|
newpath 203.34999999999997 59.75 M 208.725 56.625 L 208.725 50.375 L 203.34999999999997 47.25 L 197.97499999999997 50.375 L 197.97499999999997 56.625 L Z fill
|
||||||
49.60 375.92 50.68 376.54 50.68 377.79 49.60 378.42 48.53 377.79 48.53 376.54 TH
|
newpath 227.95 59.75 M 233.325 56.625 L 233.325 50.375 L 227.95 47.25 L 222.57499999999996 50.375 L 222.57499999999996 56.625 L Z fill
|
||||||
54.52 375.92 55.60 376.54 55.60 377.79 54.52 378.42 53.45 377.79 53.45 376.54 TH
|
newpath 252.54999999999998 59.75 M 257.925 56.625 L 257.925 50.375 L 252.54999999999998 47.25 L 247.17499999999998 50.375 L 247.17499999999998 56.625 L Z fill
|
||||||
59.44 375.92 60.52 376.54 60.52 377.79 59.44 378.42 58.36 377.79 58.36 376.54 TH
|
newpath 277.15 59.75 M 282.52500000000003 56.625 L 282.52500000000003 50.375 L 277.15 47.25 L 271.775 50.375 L 271.775 56.625 L Z fill
|
||||||
64.36 375.92 65.44 376.54 65.44 377.79 64.36 378.42 63.28 377.79 63.28 376.54 TH
|
newpath 301.75 59.75 M 307.125 56.625 L 307.125 50.375 L 301.75 47.25 L 296.37499999999994 50.375 L 296.37499999999994 56.625 L Z fill
|
||||||
69.28 375.92 70.35 376.54 70.35 377.79 69.28 378.42 68.20 377.79 68.20 376.54 TH
|
newpath 326.34999999999997 59.75 M 331.725 56.625 L 331.725 50.375 L 326.34999999999997 47.25 L 320.97499999999997 50.375 L 320.97499999999997 56.625 L Z fill
|
||||||
74.20 375.92 75.28 376.54 75.28 377.79 74.20 378.42 73.13 377.79 73.13 376.54 TH
|
newpath 350.95 59.75 M 356.325 56.625 L 356.325 50.375 L 350.95 47.25 L 345.575 50.375 L 345.575 56.625 L Z fill
|
||||||
79.12 375.92 80.20 376.54 80.20 377.79 79.12 378.42 78.04 377.79 78.04 376.54 TH
|
newpath 375.55 59.75 M 380.925 56.625 L 380.925 50.375 L 375.55 47.25 L 370.17499999999995 50.375 L 370.17499999999995 56.625 L Z fill
|
||||||
84.04 375.92 85.12 376.54 85.12 377.79 84.04 378.42 82.96 377.79 82.96 376.54 TH
|
newpath 49.6 70.425 M 54.975 67.3 L 54.975 61.05 L 49.6 57.925 L 44.224999999999994 61.05 L 44.224999999999994 67.3 L Z fill
|
||||||
88.96 375.92 90.04 376.54 90.04 377.79 88.96 378.42 87.88 377.79 87.88 376.54 TH
|
newpath 74.2 70.425 M 79.57499999999999 67.3 L 79.57499999999999 61.05 L 74.2 57.925 L 68.825 61.05 L 68.825 67.3 L Z fill
|
||||||
93.88 375.92 94.96 376.54 94.96 377.79 93.88 378.42 92.81 377.79 92.81 376.54 TH
|
newpath 98.80000000000001 70.425 M 104.17500000000001 67.3 L 104.17500000000001 61.05 L 98.80000000000001 57.925 L 93.42500000000001 61.05 L 93.42500000000001 67.3 L Z fill
|
||||||
96.34 375.92 97.42 376.54 97.42 377.79 96.34 378.42 95.27 377.79 95.27 376.54 TH
|
newpath 123.4 70.425 M 128.77499999999998 67.3 L 128.77499999999998 61.05 L 123.4 57.925 L 118.025 61.05 L 118.025 67.3 L Z fill
|
||||||
97.57 373.78 98.65 374.41 98.65 375.66 97.57 376.28 96.50 375.66 96.50 374.41 TH
|
newpath 148.0 70.425 M 153.375 67.3 L 153.375 61.05 L 148.0 57.925 L 142.625 61.05 L 142.625 67.3 L Z fill
|
||||||
27.46 371.65 28.54 372.27 28.54 373.52 27.46 374.15 26.39 373.52 26.39 372.27 TH
|
newpath 172.6 70.425 M 177.975 67.3 L 177.975 61.05 L 172.6 57.925 L 167.225 61.05 L 167.225 67.3 L Z fill
|
||||||
32.38 371.65 33.46 372.27 33.46 373.52 32.38 374.15 31.31 373.52 31.31 372.27 TH
|
newpath 197.2 70.425 M 202.575 67.3 L 202.575 61.05 L 197.2 57.925 L 191.825 61.05 L 191.825 67.3 L Z fill
|
||||||
37.30 371.65 38.38 372.27 38.38 373.52 37.30 374.15 36.23 373.52 36.23 372.27 TH
|
newpath 221.79999999999995 70.425 M 227.17499999999998 67.3 L 227.17499999999998 61.05 L 221.79999999999995 57.925 L 216.42499999999995 61.05 L 216.42499999999995 67.3 L Z fill
|
||||||
42.22 371.65 43.30 372.27 43.30 373.52 42.22 374.15 41.14 373.52 41.14 372.27 TH
|
newpath 246.39999999999998 70.425 M 251.77499999999998 67.3 L 251.77499999999998 61.05 L 246.39999999999998 57.925 L 241.02499999999995 61.05 L 241.02499999999995 67.3 L Z fill
|
||||||
47.14 371.65 48.22 372.27 48.22 373.52 47.14 374.15 46.07 373.52 46.07 372.27 TH
|
newpath 271.0 70.425 M 276.375 67.3 L 276.375 61.05 L 271.0 57.925 L 265.625 61.05 L 265.625 67.3 L Z fill
|
||||||
52.06 371.65 53.14 372.27 53.14 373.52 52.06 374.15 50.99 373.52 50.99 372.27 TH
|
newpath 295.59999999999997 70.425 M 300.97499999999997 67.3 L 300.97499999999997 61.05 L 295.59999999999997 57.925 L 290.2249999999999 61.05 L 290.2249999999999 67.3 L Z fill
|
||||||
56.98 371.65 58.06 372.27 58.06 373.52 56.98 374.15 55.91 373.52 55.91 372.27 TH
|
newpath 320.19999999999993 70.425 M 325.575 67.3 L 325.575 61.05 L 320.19999999999993 57.925 L 314.82499999999993 61.05 L 314.82499999999993 67.3 L Z fill
|
||||||
61.90 371.65 62.97 372.27 62.97 373.52 61.90 374.15 60.82 373.52 60.82 372.27 TH
|
newpath 344.79999999999995 70.425 M 350.17499999999995 67.3 L 350.17499999999995 61.05 L 344.79999999999995 57.925 L 339.42499999999995 61.05 L 339.42499999999995 67.3 L Z fill
|
||||||
66.82 371.65 67.90 372.27 67.90 373.52 66.82 374.15 65.74 373.52 65.74 372.27 TH
|
newpath 369.40000000000003 70.425 M 374.7750000000001 67.3 L 374.7750000000001 61.05 L 369.40000000000003 57.925 L 364.02500000000003 61.05 L 364.02500000000003 67.3 L Z fill
|
||||||
71.74 371.65 72.82 372.27 72.82 373.52 71.74 374.15 70.66 373.52 70.66 372.27 TH
|
newpath 381.70000000000005 70.425 M 387.07500000000005 67.3 L 387.07500000000005 61.05 L 381.70000000000005 57.925 L 376.325 61.05 L 376.325 67.3 L Z fill
|
||||||
76.66 371.65 77.74 372.27 77.74 373.52 76.66 374.15 75.59 373.52 75.59 372.27 TH
|
newpath 387.85 81.1 M 393.225 77.975 L 393.225 71.725 L 387.85 68.6 L 382.475 71.725 L 382.475 77.975 L Z fill
|
||||||
81.58 371.65 82.66 372.27 82.66 373.52 81.58 374.15 80.51 373.52 80.51 372.27 TH
|
newpath 37.3 91.77499999999999 M 42.675 88.64999999999999 L 42.675 82.39999999999999 L 37.3 79.27499999999999 L 31.925 82.39999999999999 L 31.925 88.64999999999999 L Z fill
|
||||||
86.50 371.65 87.57 372.27 87.57 373.52 86.50 374.15 85.42 373.52 85.42 372.27 TH
|
newpath 61.900000000000006 91.77499999999999 M 67.275 88.64999999999999 L 67.275 82.39999999999999 L 61.900000000000006 79.27499999999999 L 56.525000000000006 82.39999999999999 L 56.525000000000006 88.64999999999999 L Z fill
|
||||||
91.42 371.65 92.50 372.27 92.50 373.52 91.42 374.15 90.35 373.52 90.35 372.27 TH
|
newpath 86.5 91.77499999999999 M 91.875 88.64999999999999 L 91.875 82.39999999999999 L 86.5 79.27499999999999 L 81.125 82.39999999999999 L 81.125 88.64999999999999 L Z fill
|
||||||
28.69 369.51 29.77 370.14 29.77 371.39 28.69 372.01 27.62 371.39 27.62 370.14 TH
|
newpath 111.1 91.77499999999999 M 116.475 88.64999999999999 L 116.475 82.39999999999999 L 111.1 79.27499999999999 L 105.725 82.39999999999999 L 105.725 88.64999999999999 L Z fill
|
||||||
33.61 369.51 34.69 370.14 34.69 371.39 33.61 372.01 32.54 371.39 32.54 370.14 TH
|
newpath 135.7 91.77499999999999 M 141.075 88.64999999999999 L 141.075 82.39999999999999 L 135.7 79.27499999999999 L 130.325 82.39999999999999 L 130.325 88.64999999999999 L Z fill
|
||||||
38.53 369.51 39.61 370.14 39.61 371.39 38.53 372.01 37.46 371.39 37.46 370.14 TH
|
newpath 160.3 91.77499999999999 M 165.675 88.64999999999999 L 165.675 82.39999999999999 L 160.3 79.27499999999999 L 154.925 82.39999999999999 L 154.925 88.64999999999999 L Z fill
|
||||||
43.45 369.51 44.53 370.14 44.53 371.39 43.45 372.01 42.38 371.39 42.38 370.14 TH
|
newpath 184.9 91.77499999999999 M 190.275 88.64999999999999 L 190.275 82.39999999999999 L 184.9 79.27499999999999 L 179.525 82.39999999999999 L 179.525 88.64999999999999 L Z fill
|
||||||
48.37 369.51 49.45 370.14 49.45 371.39 48.37 372.01 47.30 371.39 47.30 370.14 TH
|
newpath 209.49999999999994 91.77499999999999 M 214.87499999999997 88.64999999999999 L 214.87499999999997 82.39999999999999 L 209.49999999999994 79.27499999999999 L 204.12499999999994 82.39999999999999 L 204.12499999999994 88.64999999999999 L Z fill
|
||||||
53.29 369.51 54.36 370.14 54.36 371.39 53.29 372.01 52.22 371.39 52.22 370.14 TH
|
newpath 234.09999999999997 91.77499999999999 M 239.47499999999997 88.64999999999999 L 239.47499999999997 82.39999999999999 L 234.09999999999997 79.27499999999999 L 228.72499999999997 82.39999999999999 L 228.72499999999997 88.64999999999999 L Z fill
|
||||||
58.21 369.51 59.29 370.14 59.29 371.39 58.21 372.01 57.14 371.39 57.14 370.14 TH
|
newpath 258.7 91.77499999999999 M 264.075 88.64999999999999 L 264.075 82.39999999999999 L 258.7 79.27499999999999 L 253.32499999999996 82.39999999999999 L 253.32499999999996 88.64999999999999 L Z fill
|
||||||
63.13 369.51 64.21 370.14 64.21 371.39 63.13 372.01 62.05 371.39 62.05 370.14 TH
|
newpath 283.29999999999995 91.77499999999999 M 288.675 88.64999999999999 L 288.675 82.39999999999999 L 283.29999999999995 79.27499999999999 L 277.92499999999995 82.39999999999999 L 277.92499999999995 88.64999999999999 L Z fill
|
||||||
68.05 369.51 69.13 370.14 69.13 371.39 68.05 372.01 66.98 371.39 66.98 370.14 TH
|
newpath 307.9 91.77499999999999 M 313.275 88.64999999999999 L 313.275 82.39999999999999 L 307.9 79.27499999999999 L 302.5249999999999 82.39999999999999 L 302.5249999999999 88.64999999999999 L Z fill
|
||||||
72.97 369.51 74.05 370.14 74.05 371.39 72.97 372.01 71.90 371.39 71.90 370.14 TH
|
newpath 332.49999999999994 91.77499999999999 M 337.875 88.64999999999999 L 337.875 82.39999999999999 L 332.49999999999994 79.27499999999999 L 327.12499999999994 82.39999999999999 L 327.12499999999994 88.64999999999999 L Z fill
|
||||||
77.89 369.51 78.97 370.14 78.97 371.39 77.89 372.01 76.82 371.39 76.82 370.14 TH
|
newpath 357.1 91.77499999999999 M 362.475 88.64999999999999 L 362.475 82.39999999999999 L 357.1 79.27499999999999 L 351.725 82.39999999999999 L 351.725 88.64999999999999 L Z fill
|
||||||
82.81 369.51 83.88 370.14 83.88 371.39 82.81 372.01 81.73 371.39 81.73 370.14 TH
|
newpath 43.45 102.44999999999999 M 48.825 99.32499999999999 L 48.825 93.07499999999999 L 43.45 89.94999999999999 L 38.075 93.07499999999999 L 38.075 99.32499999999999 L Z fill
|
||||||
87.73 369.51 88.81 370.14 88.81 371.39 87.73 372.01 86.66 371.39 86.66 370.14 TH
|
newpath 68.05 102.44999999999999 M 73.425 99.32499999999999 L 73.425 93.07499999999999 L 68.05 89.94999999999999 L 62.675 93.07499999999999 L 62.675 99.32499999999999 L Z fill
|
||||||
92.65 369.51 93.73 370.14 93.73 371.39 92.65 372.01 91.58 371.39 91.58 370.14 TH
|
newpath 92.65 102.44999999999999 M 98.025 99.32499999999999 L 98.025 93.07499999999999 L 92.65 89.94999999999999 L 87.275 93.07499999999999 L 87.275 99.32499999999999 L Z fill
|
||||||
95.11 369.51 96.19 370.14 96.19 371.39 95.11 372.01 94.04 371.39 94.04 370.14 TH
|
newpath 117.25 102.44999999999999 M 122.625 99.32499999999999 L 122.625 93.07499999999999 L 117.25 89.94999999999999 L 111.875 93.07499999999999 L 111.875 99.32499999999999 L Z fill
|
||||||
96.34 367.38 97.42 368.00 97.42 369.25 96.34 369.88 95.27 369.25 95.27 368.00 TH
|
newpath 141.85000000000002 102.44999999999999 M 147.225 99.32499999999999 L 147.225 93.07499999999999 L 141.85000000000002 89.94999999999999 L 136.47500000000002 93.07499999999999 L 136.47500000000002 99.32499999999999 L Z fill
|
||||||
26.23 365.24 27.31 365.87 27.31 367.12 26.23 367.74 25.16 367.12 25.16 365.87 TH
|
newpath 166.45 102.44999999999999 M 171.825 99.32499999999999 L 171.825 93.07499999999999 L 166.45 89.94999999999999 L 161.075 93.07499999999999 L 161.075 99.32499999999999 L Z fill
|
||||||
31.15 365.24 32.23 365.87 32.23 367.12 31.15 367.74 30.08 367.12 30.08 365.87 TH
|
newpath 191.05 102.44999999999999 M 196.425 99.32499999999999 L 196.425 93.07499999999999 L 191.05 89.94999999999999 L 185.67499999999998 93.07499999999999 L 185.67499999999998 99.32499999999999 L Z fill
|
||||||
36.07 365.24 37.14 365.87 37.14 367.12 36.07 367.74 35.00 367.12 35.00 365.87 TH
|
newpath 215.64999999999998 102.44999999999999 M 221.02499999999998 99.32499999999999 L 221.02499999999998 93.07499999999999 L 215.64999999999998 89.94999999999999 L 210.27499999999998 93.07499999999999 L 210.27499999999998 99.32499999999999 L Z fill
|
||||||
40.99 365.24 42.07 365.87 42.07 367.12 40.99 367.74 39.92 367.12 39.92 365.87 TH
|
newpath 240.25 102.44999999999999 M 245.625 99.32499999999999 L 245.625 93.07499999999999 L 240.25 89.94999999999999 L 234.87499999999997 93.07499999999999 L 234.87499999999997 99.32499999999999 L Z fill
|
||||||
45.91 365.24 46.99 365.87 46.99 367.12 45.91 367.74 44.84 367.12 44.84 365.87 TH
|
newpath 264.85 102.44999999999999 M 270.225 99.32499999999999 L 270.225 93.07499999999999 L 264.85 89.94999999999999 L 259.47499999999997 93.07499999999999 L 259.47499999999997 99.32499999999999 L Z fill
|
||||||
50.83 365.24 51.91 365.87 51.91 367.12 50.83 367.74 49.76 367.12 49.76 365.87 TH
|
newpath 289.45 102.44999999999999 M 294.825 99.32499999999999 L 294.825 93.07499999999999 L 289.45 89.94999999999999 L 284.07499999999993 93.07499999999999 L 284.07499999999993 99.32499999999999 L Z fill
|
||||||
55.75 365.24 56.83 365.87 56.83 367.12 55.75 367.74 54.68 367.12 54.68 365.87 TH
|
newpath 314.04999999999995 102.44999999999999 M 319.425 99.32499999999999 L 319.425 93.07499999999999 L 314.04999999999995 89.94999999999999 L 308.67499999999995 93.07499999999999 L 308.67499999999995 99.32499999999999 L Z fill
|
||||||
60.67 365.24 61.75 365.87 61.75 367.12 60.67 367.74 59.59 367.12 59.59 365.87 TH
|
newpath 338.65 102.44999999999999 M 344.025 99.32499999999999 L 344.025 93.07499999999999 L 338.65 89.94999999999999 L 333.275 93.07499999999999 L 333.275 99.32499999999999 L Z fill
|
||||||
65.59 365.24 66.66 365.87 66.66 367.12 65.59 367.74 64.51 367.12 64.51 365.87 TH
|
newpath 363.25 102.44999999999999 M 368.62500000000006 99.32499999999999 L 368.62500000000006 93.07499999999999 L 363.25 89.94999999999999 L 357.875 93.07499999999999 L 357.875 99.32499999999999 L Z fill
|
||||||
70.51 365.24 71.59 365.87 71.59 367.12 70.51 367.74 69.44 367.12 69.44 365.87 TH
|
newpath 375.55 102.44999999999999 M 380.925 99.32499999999999 L 380.925 93.07499999999999 L 375.55 89.94999999999999 L 370.17499999999995 93.07499999999999 L 370.17499999999995 99.32499999999999 L Z fill
|
||||||
75.43 365.24 76.51 365.87 76.51 367.12 75.43 367.74 74.35 367.12 74.35 365.87 TH
|
newpath 381.70000000000005 113.125 M 387.07500000000005 110.0 L 387.07500000000005 103.75 L 381.70000000000005 100.625 L 376.325 103.75 L 376.325 110.0 L Z fill
|
||||||
80.35 365.24 81.43 365.87 81.43 367.12 80.35 367.74 79.27 367.12 79.27 365.87 TH
|
newpath 31.15 123.79999999999998 M 36.525 120.67499999999998 L 36.525 114.42499999999998 L 31.15 111.29999999999998 L 25.775 114.42499999999998 L 25.775 120.67499999999998 L Z fill
|
||||||
85.27 365.24 86.35 365.87 86.35 367.12 85.27 367.74 84.20 367.12 84.20 365.87 TH
|
newpath 55.75 123.79999999999998 M 61.125 120.67499999999998 L 61.125 114.42499999999998 L 55.75 111.29999999999998 L 50.375 114.42499999999998 L 50.375 120.67499999999998 L Z fill
|
||||||
90.19 365.24 91.27 365.87 91.27 367.12 90.19 367.74 89.12 367.12 89.12 365.87 TH
|
newpath 80.35 123.79999999999998 M 85.725 120.67499999999998 L 85.725 114.42499999999998 L 80.35 111.29999999999998 L 74.97500000000001 114.42499999999998 L 74.97500000000001 120.67499999999998 L Z fill
|
||||||
97.57 365.24 98.65 365.87 98.65 367.12 97.57 367.74 96.50 367.12 96.50 365.87 TH
|
newpath 104.95 123.79999999999998 M 110.325 120.67499999999998 L 110.325 114.42499999999998 L 104.95 111.29999999999998 L 99.575 114.42499999999998 L 99.575 120.67499999999998 L Z fill
|
||||||
29.92 363.11 31.00 363.73 31.00 364.98 29.92 365.61 28.85 364.98 28.85 363.73 TH
|
newpath 129.55 123.79999999999998 M 134.925 120.67499999999998 L 134.925 114.42499999999998 L 129.55 111.29999999999998 L 124.17500000000001 114.42499999999998 L 124.17500000000001 120.67499999999998 L Z fill
|
||||||
34.84 363.11 35.92 363.73 35.92 364.98 34.84 365.61 33.77 364.98 33.77 363.73 TH
|
newpath 154.15 123.79999999999998 M 159.525 120.67499999999998 L 159.525 114.42499999999998 L 154.15 111.29999999999998 L 148.775 114.42499999999998 L 148.775 120.67499999999998 L Z fill
|
||||||
39.76 363.11 40.84 363.73 40.84 364.98 39.76 365.61 38.69 364.98 38.69 363.73 TH
|
newpath 178.75 123.79999999999998 M 184.125 120.67499999999998 L 184.125 114.42499999999998 L 178.75 111.29999999999998 L 173.375 114.42499999999998 L 173.375 120.67499999999998 L Z fill
|
||||||
44.68 363.11 45.75 363.73 45.75 364.98 44.68 365.61 43.61 364.98 43.61 363.73 TH
|
newpath 203.34999999999997 123.79999999999998 M 208.725 120.67499999999998 L 208.725 114.42499999999998 L 203.34999999999997 111.29999999999998 L 197.97499999999997 114.42499999999998 L 197.97499999999997 120.67499999999998 L Z fill
|
||||||
47.14 363.11 48.22 363.73 48.22 364.98 47.14 365.61 46.07 364.98 46.07 363.73 TH
|
newpath 227.95 123.79999999999998 M 233.325 120.67499999999998 L 233.325 114.42499999999998 L 227.95 111.29999999999998 L 222.57499999999996 114.42499999999998 L 222.57499999999996 120.67499999999998 L Z fill
|
||||||
49.60 363.11 50.68 363.73 50.68 364.98 49.60 365.61 48.53 364.98 48.53 363.73 TH
|
newpath 252.54999999999998 123.79999999999998 M 257.925 120.67499999999998 L 257.925 114.42499999999998 L 252.54999999999998 111.29999999999998 L 247.17499999999998 114.42499999999998 L 247.17499999999998 120.67499999999998 L Z fill
|
||||||
52.06 363.11 53.14 363.73 53.14 364.98 52.06 365.61 50.99 364.98 50.99 363.73 TH
|
newpath 277.15 123.79999999999998 M 282.52500000000003 120.67499999999998 L 282.52500000000003 114.42499999999998 L 277.15 111.29999999999998 L 271.775 114.42499999999998 L 271.775 120.67499999999998 L Z fill
|
||||||
54.52 363.11 55.60 363.73 55.60 364.98 54.52 365.61 53.45 364.98 53.45 363.73 TH
|
newpath 301.75 123.79999999999998 M 307.125 120.67499999999998 L 307.125 114.42499999999998 L 301.75 111.29999999999998 L 296.37499999999994 114.42499999999998 L 296.37499999999994 120.67499999999998 L Z fill
|
||||||
61.90 363.11 62.97 363.73 62.97 364.98 61.90 365.61 60.82 364.98 60.82 363.73 TH
|
newpath 326.34999999999997 123.79999999999998 M 331.725 120.67499999999998 L 331.725 114.42499999999998 L 326.34999999999997 111.29999999999998 L 320.97499999999997 114.42499999999998 L 320.97499999999997 120.67499999999998 L Z fill
|
||||||
76.66 363.11 77.74 363.73 77.74 364.98 76.66 365.61 75.59 364.98 75.59 363.73 TH
|
newpath 350.95 123.79999999999998 M 356.325 120.67499999999998 L 356.325 114.42499999999998 L 350.95 111.29999999999998 L 345.575 114.42499999999998 L 345.575 120.67499999999998 L Z fill
|
||||||
79.12 363.11 80.20 363.73 80.20 364.98 79.12 365.61 78.04 364.98 78.04 363.73 TH
|
newpath 387.85 123.79999999999998 M 393.225 120.67499999999998 L 393.225 114.42499999999998 L 387.85 111.29999999999998 L 382.475 114.42499999999998 L 382.475 120.67499999999998 L Z fill
|
||||||
84.04 363.11 85.12 363.73 85.12 364.98 84.04 365.61 82.96 364.98 82.96 363.73 TH
|
newpath 49.6 134.47499999999997 M 54.975 131.34999999999997 L 54.975 125.09999999999998 L 49.6 121.97499999999998 L 44.224999999999994 125.09999999999998 L 44.224999999999994 131.34999999999997 L Z fill
|
||||||
88.96 363.11 90.04 363.73 90.04 364.98 88.96 365.61 87.88 364.98 87.88 363.73 TH
|
newpath 74.2 134.47499999999997 M 79.57499999999999 131.34999999999997 L 79.57499999999999 125.09999999999998 L 74.2 121.97499999999998 L 68.825 125.09999999999998 L 68.825 131.34999999999997 L Z fill
|
||||||
93.88 363.11 94.96 363.73 94.96 364.98 93.88 365.61 92.81 364.98 92.81 363.73 TH
|
newpath 98.80000000000001 134.47499999999997 M 104.17500000000001 131.34999999999997 L 104.17500000000001 125.09999999999998 L 98.80000000000001 121.97499999999998 L 93.42500000000001 125.09999999999998 L 93.42500000000001 131.34999999999997 L Z fill
|
||||||
53.29 360.97 54.36 361.60 54.36 362.85 53.29 363.47 52.22 362.85 52.22 361.60 TH
|
newpath 123.4 134.47499999999997 M 128.77499999999998 131.34999999999997 L 128.77499999999998 125.09999999999998 L 123.4 121.97499999999998 L 118.025 125.09999999999998 L 118.025 131.34999999999997 L Z fill
|
||||||
55.75 360.97 56.83 361.60 56.83 362.85 55.75 363.47 54.68 362.85 54.68 361.60 TH
|
newpath 135.7 134.47499999999997 M 141.075 131.34999999999997 L 141.075 125.09999999999998 L 135.7 121.97499999999998 L 130.325 125.09999999999998 L 130.325 131.34999999999997 L Z fill
|
||||||
60.67 360.97 61.75 361.60 61.75 362.85 60.67 363.47 59.59 362.85 59.59 361.60 TH
|
newpath 148.0 134.47499999999997 M 153.375 131.34999999999997 L 153.375 125.09999999999998 L 148.0 121.97499999999998 L 142.625 125.09999999999998 L 142.625 131.34999999999997 L Z fill
|
||||||
65.59 360.97 66.66 361.60 66.66 362.85 65.59 363.47 64.51 362.85 64.51 361.60 TH
|
newpath 160.3 134.47499999999997 M 165.675 131.34999999999997 L 165.675 125.09999999999998 L 160.3 121.97499999999998 L 154.925 125.09999999999998 L 154.925 131.34999999999997 L Z fill
|
||||||
75.43 360.97 76.51 361.60 76.51 362.85 75.43 363.47 74.35 362.85 74.35 361.60 TH
|
newpath 172.6 134.47499999999997 M 177.975 131.34999999999997 L 177.975 125.09999999999998 L 172.6 121.97499999999998 L 167.225 125.09999999999998 L 167.225 131.34999999999997 L Z fill
|
||||||
77.89 360.97 78.97 361.60 78.97 362.85 77.89 363.47 76.82 362.85 76.82 361.60 TH
|
newpath 209.49999999999994 134.47499999999997 M 214.87499999999997 131.34999999999997 L 214.87499999999997 125.09999999999998 L 209.49999999999994 121.97499999999998 L 204.12499999999994 125.09999999999998 L 204.12499999999994 131.34999999999997 L Z fill
|
||||||
27.46 358.84 28.54 359.46 28.54 360.71 27.46 361.34 26.39 360.71 26.39 359.46 TH
|
newpath 283.29999999999995 134.47499999999997 M 288.675 131.34999999999997 L 288.675 125.09999999999998 L 283.29999999999995 121.97499999999998 L 277.92499999999995 125.09999999999998 L 277.92499999999995 131.34999999999997 L Z fill
|
||||||
32.38 358.84 33.46 359.46 33.46 360.71 32.38 361.34 31.31 360.71 31.31 359.46 TH
|
newpath 295.59999999999997 134.47499999999997 M 300.97499999999997 131.34999999999997 L 300.97499999999997 125.09999999999998 L 295.59999999999997 121.97499999999998 L 290.2249999999999 125.09999999999998 L 290.2249999999999 131.34999999999997 L Z fill
|
||||||
37.30 358.84 38.38 359.46 38.38 360.71 37.30 361.34 36.23 360.71 36.23 359.46 TH
|
newpath 320.19999999999993 134.47499999999997 M 325.575 131.34999999999997 L 325.575 125.09999999999998 L 320.19999999999993 121.97499999999998 L 314.82499999999993 125.09999999999998 L 314.82499999999993 131.34999999999997 L Z fill
|
||||||
42.22 358.84 43.30 359.46 43.30 360.71 42.22 361.34 41.14 360.71 41.14 359.46 TH
|
newpath 344.79999999999995 134.47499999999997 M 350.17499999999995 131.34999999999997 L 350.17499999999995 125.09999999999998 L 344.79999999999995 121.97499999999998 L 339.42499999999995 125.09999999999998 L 339.42499999999995 131.34999999999997 L Z fill
|
||||||
52.06 358.84 53.14 359.46 53.14 360.71 52.06 361.34 50.99 360.71 50.99 359.46 TH
|
newpath 369.40000000000003 134.47499999999997 M 374.7750000000001 131.34999999999997 L 374.7750000000001 125.09999999999998 L 369.40000000000003 121.97499999999998 L 364.02500000000003 125.09999999999998 L 364.02500000000003 131.34999999999997 L Z fill
|
||||||
71.74 358.84 72.82 359.46 72.82 360.71 71.74 361.34 70.66 360.71 70.66 359.46 TH
|
newpath 166.45 145.14999999999998 M 171.825 142.02499999999998 L 171.825 135.77499999999998 L 166.45 132.64999999999998 L 161.075 135.77499999999998 L 161.075 142.02499999999998 L Z fill
|
||||||
76.66 358.84 77.74 359.46 77.74 360.71 76.66 361.34 75.59 360.71 75.59 359.46 TH
|
newpath 178.75 145.14999999999998 M 184.125 142.02499999999998 L 184.125 135.77499999999998 L 178.75 132.64999999999998 L 173.375 135.77499999999998 L 173.375 142.02499999999998 L Z fill
|
||||||
81.58 358.84 82.66 359.46 82.66 360.71 81.58 361.34 80.51 360.71 80.51 359.46 TH
|
newpath 203.34999999999997 145.14999999999998 M 208.725 142.02499999999998 L 208.725 135.77499999999998 L 203.34999999999997 132.64999999999998 L 197.97499999999997 135.77499999999998 L 197.97499999999997 142.02499999999998 L Z fill
|
||||||
86.50 358.84 87.57 359.46 87.57 360.71 86.50 361.34 85.42 360.71 85.42 359.46 TH
|
newpath 227.95 145.14999999999998 M 233.325 142.02499999999998 L 233.325 135.77499999999998 L 227.95 132.64999999999998 L 222.57499999999996 135.77499999999998 L 222.57499999999996 142.02499999999998 L Z fill
|
||||||
91.42 358.84 92.50 359.46 92.50 360.71 91.42 361.34 90.35 360.71 90.35 359.46 TH
|
newpath 277.15 145.14999999999998 M 282.52500000000003 142.02499999999998 L 282.52500000000003 135.77499999999998 L 277.15 132.64999999999998 L 271.775 135.77499999999998 L 271.775 142.02499999999998 L Z fill
|
||||||
96.34 358.84 97.42 359.46 97.42 360.71 96.34 361.34 95.27 360.71 95.27 359.46 TH
|
newpath 289.45 145.14999999999998 M 294.825 142.02499999999998 L 294.825 135.77499999999998 L 289.45 132.64999999999998 L 284.07499999999993 135.77499999999998 L 284.07499999999993 142.02499999999998 L Z fill
|
||||||
28.69 356.70 29.77 357.33 29.77 358.58 28.69 359.20 27.62 358.58 27.62 357.33 TH
|
newpath 37.3 155.825 M 42.675 152.7 L 42.675 146.45 L 37.3 143.325 L 31.925 146.45 L 31.925 152.7 L Z fill
|
||||||
33.61 356.70 34.69 357.33 34.69 358.58 33.61 359.20 32.54 358.58 32.54 357.33 TH
|
newpath 61.900000000000006 155.825 M 67.275 152.7 L 67.275 146.45 L 61.900000000000006 143.325 L 56.525000000000006 146.45 L 56.525000000000006 152.7 L Z fill
|
||||||
38.53 356.70 39.61 357.33 39.61 358.58 38.53 359.20 37.46 358.58 37.46 357.33 TH
|
newpath 86.5 155.825 M 91.875 152.7 L 91.875 146.45 L 86.5 143.325 L 81.125 146.45 L 81.125 152.7 L Z fill
|
||||||
43.45 356.70 44.53 357.33 44.53 358.58 43.45 359.20 42.38 358.58 42.38 357.33 TH
|
newpath 111.1 155.825 M 116.475 152.7 L 116.475 146.45 L 111.1 143.325 L 105.725 146.45 L 105.725 152.7 L Z fill
|
||||||
48.37 356.70 49.45 357.33 49.45 358.58 48.37 359.20 47.30 358.58 47.30 357.33 TH
|
newpath 160.3 155.825 M 165.675 152.7 L 165.675 146.45 L 160.3 143.325 L 154.925 146.45 L 154.925 152.7 L Z fill
|
||||||
50.83 356.70 51.91 357.33 51.91 358.58 50.83 359.20 49.76 358.58 49.76 357.33 TH
|
newpath 258.7 155.825 M 264.075 152.7 L 264.075 146.45 L 258.7 143.325 L 253.32499999999996 146.45 L 253.32499999999996 152.7 L Z fill
|
||||||
72.97 356.70 74.05 357.33 74.05 358.58 72.97 359.20 71.90 358.58 71.90 357.33 TH
|
newpath 283.29999999999995 155.825 M 288.675 152.7 L 288.675 146.45 L 283.29999999999995 143.325 L 277.92499999999995 146.45 L 277.92499999999995 152.7 L Z fill
|
||||||
75.43 356.70 76.51 357.33 76.51 358.58 75.43 359.20 74.35 358.58 74.35 357.33 TH
|
newpath 307.9 155.825 M 313.275 152.7 L 313.275 146.45 L 307.9 143.325 L 302.5249999999999 146.45 L 302.5249999999999 152.7 L Z fill
|
||||||
82.81 356.70 83.88 357.33 83.88 358.58 82.81 359.20 81.73 358.58 81.73 357.33 TH
|
newpath 332.49999999999994 155.825 M 337.875 152.7 L 337.875 146.45 L 332.49999999999994 143.325 L 327.12499999999994 146.45 L 327.12499999999994 152.7 L Z fill
|
||||||
87.73 356.70 88.81 357.33 88.81 358.58 87.73 359.20 86.66 358.58 86.66 357.33 TH
|
newpath 357.1 155.825 M 362.475 152.7 L 362.475 146.45 L 357.1 143.325 L 351.725 146.45 L 351.725 152.7 L Z fill
|
||||||
92.65 356.70 93.73 357.33 93.73 358.58 92.65 359.20 91.58 358.58 91.58 357.33 TH
|
newpath 381.70000000000005 155.825 M 387.07500000000005 152.7 L 387.07500000000005 146.45 L 381.70000000000005 143.325 L 376.325 146.45 L 376.325 152.7 L Z fill
|
||||||
95.11 356.70 96.19 357.33 96.19 358.58 95.11 359.20 94.04 358.58 94.04 357.33 TH
|
newpath 43.45 166.5 M 48.825 163.375 L 48.825 157.125 L 43.45 154.0 L 38.075 157.125 L 38.075 163.375 L Z fill
|
||||||
42.22 354.57 43.30 355.19 43.30 356.44 42.22 357.07 41.14 356.44 41.14 355.19 TH
|
newpath 68.05 166.5 M 73.425 163.375 L 73.425 157.125 L 68.05 154.0 L 62.675 157.125 L 62.675 163.375 L Z fill
|
||||||
71.74 354.57 72.82 355.19 72.82 356.44 71.74 357.07 70.66 356.44 70.66 355.19 TH
|
newpath 92.65 166.5 M 98.025 163.375 L 98.025 157.125 L 92.65 154.0 L 87.275 157.125 L 87.275 163.375 L Z fill
|
||||||
74.20 354.57 75.28 355.19 75.28 356.44 74.20 357.07 73.13 356.44 73.13 355.19 TH
|
newpath 117.25 166.5 M 122.625 163.375 L 122.625 157.125 L 117.25 154.0 L 111.875 157.125 L 111.875 163.375 L Z fill
|
||||||
76.66 354.57 77.74 355.19 77.74 356.44 76.66 357.07 75.59 356.44 75.59 355.19 TH
|
newpath 141.85000000000002 166.5 M 147.225 163.375 L 147.225 157.125 L 141.85000000000002 154.0 L 136.47500000000002 157.125 L 136.47500000000002 163.375 L Z fill
|
||||||
79.12 354.57 80.20 355.19 80.20 356.44 79.12 357.07 78.04 356.44 78.04 355.19 TH
|
newpath 154.15 166.5 M 159.525 163.375 L 159.525 157.125 L 154.15 154.0 L 148.775 157.125 L 148.775 163.375 L Z fill
|
||||||
26.23 352.43 27.31 353.06 27.31 354.31 26.23 354.93 25.16 354.31 25.16 353.06 TH
|
newpath 264.85 166.5 M 270.225 163.375 L 270.225 157.125 L 264.85 154.0 L 259.47499999999997 157.125 L 259.47499999999997 163.375 L Z fill
|
||||||
31.15 352.43 32.23 353.06 32.23 354.31 31.15 354.93 30.08 354.31 30.08 353.06 TH
|
newpath 277.15 166.5 M 282.52500000000003 163.375 L 282.52500000000003 157.125 L 277.15 154.0 L 271.775 157.125 L 271.775 163.375 L Z fill
|
||||||
36.07 352.43 37.14 353.06 37.14 354.31 36.07 354.93 35.00 354.31 35.00 353.06 TH
|
newpath 314.04999999999995 166.5 M 319.425 163.375 L 319.425 157.125 L 314.04999999999995 154.0 L 308.67499999999995 157.125 L 308.67499999999995 163.375 L Z fill
|
||||||
40.99 352.43 42.07 353.06 42.07 354.31 40.99 354.93 39.92 354.31 39.92 353.06 TH
|
newpath 338.65 166.5 M 344.025 163.375 L 344.025 157.125 L 338.65 154.0 L 333.275 157.125 L 333.275 163.375 L Z fill
|
||||||
45.91 352.43 46.99 353.06 46.99 354.31 45.91 354.93 44.84 354.31 44.84 353.06 TH
|
newpath 363.25 166.5 M 368.62500000000006 163.375 L 368.62500000000006 157.125 L 363.25 154.0 L 357.875 157.125 L 357.875 163.375 L Z fill
|
||||||
75.43 352.43 76.51 353.06 76.51 354.31 75.43 354.93 74.35 354.31 74.35 353.06 TH
|
newpath 375.55 166.5 M 380.925 163.375 L 380.925 157.125 L 375.55 154.0 L 370.17499999999995 157.125 L 370.17499999999995 163.375 L Z fill
|
||||||
80.35 352.43 81.43 353.06 81.43 354.31 80.35 354.93 79.27 354.31 79.27 353.06 TH
|
newpath 111.1 177.17499999999998 M 116.475 174.04999999999998 L 116.475 167.79999999999998 L 111.1 164.67499999999998 L 105.725 167.79999999999998 L 105.725 174.04999999999998 L Z fill
|
||||||
85.27 352.43 86.35 353.06 86.35 354.31 85.27 354.93 84.20 354.31 84.20 353.06 TH
|
newpath 258.7 177.17499999999998 M 264.075 174.04999999999998 L 264.075 167.79999999999998 L 258.7 164.67499999999998 L 253.32499999999996 167.79999999999998 L 253.32499999999996 174.04999999999998 L Z fill
|
||||||
90.19 352.43 91.27 353.06 91.27 354.31 90.19 354.93 89.12 354.31 89.12 353.06 TH
|
newpath 271.0 177.17499999999998 M 276.375 174.04999999999998 L 276.375 167.79999999999998 L 271.0 164.67499999999998 L 265.625 167.79999999999998 L 265.625 174.04999999999998 L Z fill
|
||||||
29.92 350.30 31.00 350.92 31.00 352.17 29.92 352.80 28.85 352.17 28.85 350.92 TH
|
newpath 283.29999999999995 177.17499999999998 M 288.675 174.04999999999998 L 288.675 167.79999999999998 L 283.29999999999995 164.67499999999998 L 277.92499999999995 167.79999999999998 L 277.92499999999995 174.04999999999998 L Z fill
|
||||||
34.84 350.30 35.92 350.92 35.92 352.17 34.84 352.80 33.77 352.17 33.77 350.92 TH
|
newpath 295.59999999999997 177.17499999999998 M 300.97499999999997 174.04999999999998 L 300.97499999999997 167.79999999999998 L 295.59999999999997 164.67499999999998 L 290.2249999999999 167.79999999999998 L 290.2249999999999 174.04999999999998 L Z fill
|
||||||
39.76 350.30 40.84 350.92 40.84 352.17 39.76 352.80 38.69 352.17 38.69 350.92 TH
|
newpath 31.15 187.84999999999997 M 36.525 184.725 L 36.525 178.475 L 31.15 175.35 L 25.775 178.475 L 25.775 184.725 L Z fill
|
||||||
42.22 350.30 43.30 350.92 43.30 352.17 42.22 352.80 41.14 352.17 41.14 350.92 TH
|
newpath 55.75 187.84999999999997 M 61.125 184.725 L 61.125 178.475 L 55.75 175.35 L 50.375 178.475 L 50.375 184.725 L Z fill
|
||||||
44.68 350.30 45.75 350.92 45.75 352.17 44.68 352.80 43.61 352.17 43.61 350.92 TH
|
newpath 80.35 187.84999999999997 M 85.725 184.725 L 85.725 178.475 L 80.35 175.35 L 74.97500000000001 178.475 L 74.97500000000001 184.725 L Z fill
|
||||||
47.14 350.30 48.22 350.92 48.22 352.17 47.14 352.80 46.07 352.17 46.07 350.92 TH
|
newpath 104.95 187.84999999999997 M 110.325 184.725 L 110.325 178.475 L 104.95 175.35 L 99.575 178.475 L 99.575 184.725 L Z fill
|
||||||
76.66 350.30 77.74 350.92 77.74 352.17 76.66 352.80 75.59 352.17 75.59 350.92 TH
|
newpath 129.55 187.84999999999997 M 134.925 184.725 L 134.925 178.475 L 129.55 175.35 L 124.17500000000001 178.475 L 124.17500000000001 184.725 L Z fill
|
||||||
84.04 350.30 85.12 350.92 85.12 352.17 84.04 352.80 82.96 352.17 82.96 350.92 TH
|
newpath 277.15 187.84999999999997 M 282.52500000000003 184.725 L 282.52500000000003 178.475 L 277.15 175.35 L 271.775 178.475 L 271.775 184.725 L Z fill
|
||||||
88.96 350.30 90.04 350.92 90.04 352.17 88.96 352.80 87.88 352.17 87.88 350.92 TH
|
newpath 301.75 187.84999999999997 M 307.125 184.725 L 307.125 178.475 L 301.75 175.35 L 296.37499999999994 178.475 L 296.37499999999994 184.725 L Z fill
|
||||||
93.88 350.30 94.96 350.92 94.96 352.17 93.88 352.80 92.81 352.17 92.81 350.92 TH
|
newpath 326.34999999999997 187.84999999999997 M 331.725 184.725 L 331.725 178.475 L 326.34999999999997 175.35 L 320.97499999999997 178.475 L 320.97499999999997 184.725 L Z fill
|
||||||
96.34 350.30 97.42 350.92 97.42 352.17 96.34 352.80 95.27 352.17 95.27 350.92 TH
|
newpath 350.95 187.84999999999997 M 356.325 184.725 L 356.325 178.475 L 350.95 175.35 L 345.575 178.475 L 345.575 184.725 L Z fill
|
||||||
45.91 348.16 46.99 348.79 46.99 350.04 45.91 350.66 44.84 350.04 44.84 348.79 TH
|
newpath 49.6 198.52499999999998 M 54.975 195.39999999999998 L 54.975 189.14999999999998 L 49.6 186.02499999999998 L 44.224999999999994 189.14999999999998 L 44.224999999999994 195.39999999999998 L Z fill
|
||||||
75.43 348.16 76.51 348.79 76.51 350.04 75.43 350.66 74.35 350.04 74.35 348.79 TH
|
newpath 74.2 198.52499999999998 M 79.57499999999999 195.39999999999998 L 79.57499999999999 189.14999999999998 L 74.2 186.02499999999998 L 68.825 189.14999999999998 L 68.825 195.39999999999998 L Z fill
|
||||||
95.11 348.16 96.19 348.79 96.19 350.04 95.11 350.66 94.04 350.04 94.04 348.79 TH
|
newpath 98.80000000000001 198.52499999999998 M 104.17500000000001 195.39999999999998 L 104.17500000000001 189.14999999999998 L 98.80000000000001 186.02499999999998 L 93.42500000000001 189.14999999999998 L 93.42500000000001 195.39999999999998 L Z fill
|
||||||
27.46 346.03 28.54 346.65 28.54 347.90 27.46 348.53 26.39 347.90 26.39 346.65 TH
|
newpath 111.1 198.52499999999998 M 116.475 195.39999999999998 L 116.475 189.14999999999998 L 111.1 186.02499999999998 L 105.725 189.14999999999998 L 105.725 195.39999999999998 L Z fill
|
||||||
32.38 346.03 33.46 346.65 33.46 347.90 32.38 348.53 31.31 347.90 31.31 346.65 TH
|
newpath 123.4 198.52499999999998 M 128.77499999999998 195.39999999999998 L 128.77499999999998 189.14999999999998 L 123.4 186.02499999999998 L 118.025 189.14999999999998 L 118.025 195.39999999999998 L Z fill
|
||||||
37.30 346.03 38.38 346.65 38.38 347.90 37.30 348.53 36.23 347.90 36.23 346.65 TH
|
newpath 135.7 198.52499999999998 M 141.075 195.39999999999998 L 141.075 189.14999999999998 L 135.7 186.02499999999998 L 130.325 189.14999999999998 L 130.325 195.39999999999998 L Z fill
|
||||||
47.14 346.03 48.22 346.65 48.22 347.90 47.14 348.53 46.07 347.90 46.07 346.65 TH
|
newpath 283.29999999999995 198.52499999999998 M 288.675 195.39999999999998 L 288.675 189.14999999999998 L 283.29999999999995 186.02499999999998 L 277.92499999999995 189.14999999999998 L 277.92499999999995 195.39999999999998 L Z fill
|
||||||
76.66 346.03 77.74 346.65 77.74 347.90 76.66 348.53 75.59 347.90 75.59 346.65 TH
|
newpath 320.19999999999993 198.52499999999998 M 325.575 195.39999999999998 L 325.575 189.14999999999998 L 320.19999999999993 186.02499999999998 L 314.82499999999993 189.14999999999998 L 314.82499999999993 195.39999999999998 L Z fill
|
||||||
79.12 346.03 80.20 346.65 80.20 347.90 79.12 348.53 78.04 347.90 78.04 346.65 TH
|
newpath 344.79999999999995 198.52499999999998 M 350.17499999999995 195.39999999999998 L 350.17499999999995 189.14999999999998 L 344.79999999999995 186.02499999999998 L 339.42499999999995 189.14999999999998 L 339.42499999999995 195.39999999999998 L Z fill
|
||||||
81.58 346.03 82.66 346.65 82.66 347.90 81.58 348.53 80.51 347.90 80.51 346.65 TH
|
newpath 369.40000000000003 198.52499999999998 M 374.7750000000001 195.39999999999998 L 374.7750000000001 189.14999999999998 L 369.40000000000003 186.02499999999998 L 364.02500000000003 189.14999999999998 L 364.02500000000003 195.39999999999998 L Z fill
|
||||||
86.50 346.03 87.57 346.65 87.57 347.90 86.50 348.53 85.42 347.90 85.42 346.65 TH
|
newpath 381.70000000000005 198.52499999999998 M 387.07500000000005 195.39999999999998 L 387.07500000000005 189.14999999999998 L 381.70000000000005 186.02499999999998 L 376.325 189.14999999999998 L 376.325 195.39999999999998 L Z fill
|
||||||
91.42 346.03 92.50 346.65 92.50 347.90 91.42 348.53 90.35 347.90 90.35 346.65 TH
|
newpath 129.55 209.2 M 134.925 206.075 L 134.925 199.825 L 129.55 196.7 L 124.17500000000001 199.825 L 124.17500000000001 206.075 L Z fill
|
||||||
28.69 343.89 29.77 344.52 29.77 345.77 28.69 346.39 27.62 345.77 27.62 344.52 TH
|
newpath 277.15 209.2 M 282.52500000000003 206.075 L 282.52500000000003 199.825 L 277.15 196.7 L 271.775 199.825 L 271.775 206.075 L Z fill
|
||||||
33.61 343.89 34.69 344.52 34.69 345.77 33.61 346.39 32.54 345.77 32.54 344.52 TH
|
newpath 375.55 209.2 M 380.925 206.075 L 380.925 199.825 L 375.55 196.7 L 370.17499999999995 199.825 L 370.17499999999995 206.075 L Z fill
|
||||||
38.53 343.89 39.61 344.52 39.61 345.77 38.53 346.39 37.46 345.77 37.46 344.52 TH
|
newpath 37.3 219.87499999999997 M 42.675 216.74999999999997 L 42.675 210.49999999999997 L 37.3 207.37499999999997 L 31.925 210.49999999999997 L 31.925 216.74999999999997 L Z fill
|
||||||
43.45 343.89 44.53 344.52 44.53 345.77 43.45 346.39 42.38 345.77 42.38 344.52 TH
|
newpath 61.900000000000006 219.87499999999997 M 67.275 216.74999999999997 L 67.275 210.49999999999997 L 61.900000000000006 207.37499999999997 L 56.525000000000006 210.49999999999997 L 56.525000000000006 216.74999999999997 L Z fill
|
||||||
48.37 343.89 49.45 344.52 49.45 345.77 48.37 346.39 47.30 345.77 47.30 344.52 TH
|
newpath 86.5 219.87499999999997 M 91.875 216.74999999999997 L 91.875 210.49999999999997 L 86.5 207.37499999999997 L 81.125 210.49999999999997 L 81.125 216.74999999999997 L Z fill
|
||||||
72.97 343.89 74.05 344.52 74.05 345.77 72.97 346.39 71.90 345.77 71.90 344.52 TH
|
newpath 135.7 219.87499999999997 M 141.075 216.74999999999997 L 141.075 210.49999999999997 L 135.7 207.37499999999997 L 130.325 210.49999999999997 L 130.325 216.74999999999997 L Z fill
|
||||||
75.43 343.89 76.51 344.52 76.51 345.77 75.43 346.39 74.35 345.77 74.35 344.52 TH
|
newpath 283.29999999999995 219.87499999999997 M 288.675 216.74999999999997 L 288.675 210.49999999999997 L 283.29999999999995 207.37499999999997 L 277.92499999999995 210.49999999999997 L 277.92499999999995 216.74999999999997 L Z fill
|
||||||
77.89 343.89 78.97 344.52 78.97 345.77 77.89 346.39 76.82 345.77 76.82 344.52 TH
|
newpath 295.59999999999997 219.87499999999997 M 300.97499999999997 216.74999999999997 L 300.97499999999997 210.49999999999997 L 295.59999999999997 207.37499999999997 L 290.2249999999999 210.49999999999997 L 290.2249999999999 216.74999999999997 L Z fill
|
||||||
82.81 343.89 83.88 344.52 83.88 345.77 82.81 346.39 81.73 345.77 81.73 344.52 TH
|
newpath 307.9 219.87499999999997 M 313.275 216.74999999999997 L 313.275 210.49999999999997 L 307.9 207.37499999999997 L 302.5249999999999 210.49999999999997 L 302.5249999999999 216.74999999999997 L Z fill
|
||||||
87.73 343.89 88.81 344.52 88.81 345.77 87.73 346.39 86.66 345.77 86.66 344.52 TH
|
newpath 332.49999999999994 219.87499999999997 M 337.875 216.74999999999997 L 337.875 210.49999999999997 L 332.49999999999994 207.37499999999997 L 327.12499999999994 210.49999999999997 L 327.12499999999994 216.74999999999997 L Z fill
|
||||||
92.65 343.89 93.73 344.52 93.73 345.77 92.65 346.39 91.58 345.77 91.58 344.52 TH
|
newpath 357.1 219.87499999999997 M 362.475 216.74999999999997 L 362.475 210.49999999999997 L 357.1 207.37499999999997 L 351.725 210.49999999999997 L 351.725 216.74999999999997 L Z fill
|
||||||
95.11 343.89 96.19 344.52 96.19 345.77 95.11 346.39 94.04 345.77 94.04 344.52 TH
|
newpath 43.45 230.54999999999995 M 48.825 227.42499999999995 L 48.825 221.17499999999995 L 43.45 218.04999999999995 L 38.075 221.17499999999995 L 38.075 227.42499999999995 L Z fill
|
||||||
97.57 343.89 98.65 344.52 98.65 345.77 97.57 346.39 96.50 345.77 96.50 344.52 TH
|
newpath 68.05 230.54999999999995 M 73.425 227.42499999999995 L 73.425 221.17499999999995 L 68.05 218.04999999999995 L 62.675 221.17499999999995 L 62.675 227.42499999999995 L Z fill
|
||||||
42.22 341.76 43.30 342.38 43.30 343.63 42.22 344.26 41.14 343.63 41.14 342.38 TH
|
newpath 92.65 230.54999999999995 M 98.025 227.42499999999995 L 98.025 221.17499999999995 L 92.65 218.04999999999995 L 87.275 221.17499999999995 L 87.275 227.42499999999995 L Z fill
|
||||||
47.14 341.76 48.22 342.38 48.22 343.63 47.14 344.26 46.07 343.63 46.07 342.38 TH
|
newpath 117.25 230.54999999999995 M 122.625 227.42499999999995 L 122.625 221.17499999999995 L 117.25 218.04999999999995 L 111.875 221.17499999999995 L 111.875 227.42499999999995 L Z fill
|
||||||
49.60 341.76 50.68 342.38 50.68 343.63 49.60 344.26 48.53 343.63 48.53 342.38 TH
|
newpath 141.85000000000002 230.54999999999995 M 147.225 227.42499999999995 L 147.225 221.17499999999995 L 141.85000000000002 218.04999999999995 L 136.47500000000002 221.17499999999995 L 136.47500000000002 227.42499999999995 L Z fill
|
||||||
74.20 341.76 75.28 342.38 75.28 343.63 74.20 344.26 73.13 343.63 73.13 342.38 TH
|
newpath 264.85 230.54999999999995 M 270.225 227.42499999999995 L 270.225 221.17499999999995 L 264.85 218.04999999999995 L 259.47499999999997 221.17499999999995 L 259.47499999999997 227.42499999999995 L Z fill
|
||||||
96.34 341.76 97.42 342.38 97.42 343.63 96.34 344.26 95.27 343.63 95.27 342.38 TH
|
newpath 277.15 230.54999999999995 M 282.52500000000003 227.42499999999995 L 282.52500000000003 221.17499999999995 L 277.15 218.04999999999995 L 271.775 221.17499999999995 L 271.775 227.42499999999995 L Z fill
|
||||||
26.23 339.62 27.31 340.25 27.31 341.50 26.23 342.12 25.16 341.50 25.16 340.25 TH
|
newpath 289.45 230.54999999999995 M 294.825 227.42499999999995 L 294.825 221.17499999999995 L 289.45 218.04999999999995 L 284.07499999999993 221.17499999999995 L 284.07499999999993 227.42499999999995 L Z fill
|
||||||
31.15 339.62 32.23 340.25 32.23 341.50 31.15 342.12 30.08 341.50 30.08 340.25 TH
|
newpath 314.04999999999995 230.54999999999995 M 319.425 227.42499999999995 L 319.425 221.17499999999995 L 314.04999999999995 218.04999999999995 L 308.67499999999995 221.17499999999995 L 308.67499999999995 227.42499999999995 L Z fill
|
||||||
36.07 339.62 37.14 340.25 37.14 341.50 36.07 342.12 35.00 341.50 35.00 340.25 TH
|
newpath 338.65 230.54999999999995 M 344.025 227.42499999999995 L 344.025 221.17499999999995 L 338.65 218.04999999999995 L 333.275 221.17499999999995 L 333.275 227.42499999999995 L Z fill
|
||||||
43.45 339.62 44.53 340.25 44.53 341.50 43.45 342.12 42.38 341.50 42.38 340.25 TH
|
newpath 363.25 230.54999999999995 M 368.62500000000006 227.42499999999995 L 368.62500000000006 221.17499999999995 L 363.25 218.04999999999995 L 357.875 221.17499999999995 L 357.875 227.42499999999995 L Z fill
|
||||||
48.37 339.62 49.45 340.25 49.45 341.50 48.37 342.12 47.30 341.50 47.30 340.25 TH
|
newpath 375.55 230.54999999999995 M 380.925 227.42499999999995 L 380.925 221.17499999999995 L 375.55 218.04999999999995 L 370.17499999999995 221.17499999999995 L 370.17499999999995 227.42499999999995 L Z fill
|
||||||
50.83 339.62 51.91 340.25 51.91 341.50 50.83 342.12 49.76 341.50 49.76 340.25 TH
|
newpath 387.85 230.54999999999995 M 393.225 227.42499999999995 L 393.225 221.17499999999995 L 387.85 218.04999999999995 L 382.475 221.17499999999995 L 382.475 227.42499999999995 L Z fill
|
||||||
75.43 339.62 76.51 340.25 76.51 341.50 75.43 342.12 74.35 341.50 74.35 340.25 TH
|
newpath 111.1 241.225 M 116.475 238.1 L 116.475 231.85 L 111.1 228.725 L 105.725 231.85 L 105.725 238.1 L Z fill
|
||||||
77.89 339.62 78.97 340.25 78.97 341.50 77.89 342.12 76.82 341.50 76.82 340.25 TH
|
newpath 135.7 241.225 M 141.075 238.1 L 141.075 231.85 L 135.7 228.725 L 130.325 231.85 L 130.325 238.1 L Z fill
|
||||||
80.35 339.62 81.43 340.25 81.43 341.50 80.35 342.12 79.27 341.50 79.27 340.25 TH
|
newpath 148.0 241.225 M 153.375 238.1 L 153.375 231.85 L 148.0 228.725 L 142.625 231.85 L 142.625 238.1 L Z fill
|
||||||
85.27 339.62 86.35 340.25 86.35 341.50 85.27 342.12 84.20 341.50 84.20 340.25 TH
|
newpath 271.0 241.225 M 276.375 238.1 L 276.375 231.85 L 271.0 228.725 L 265.625 231.85 L 265.625 238.1 L Z fill
|
||||||
90.19 339.62 91.27 340.25 91.27 341.50 90.19 342.12 89.12 341.50 89.12 340.25 TH
|
newpath 381.70000000000005 241.225 M 387.07500000000005 238.1 L 387.07500000000005 231.85 L 381.70000000000005 228.725 L 376.325 231.85 L 376.325 238.1 L Z fill
|
||||||
95.11 339.62 96.19 340.25 96.19 341.50 95.11 342.12 94.04 341.50 94.04 340.25 TH
|
newpath 31.15 251.89999999999998 M 36.525 248.77499999999998 L 36.525 242.52499999999998 L 31.15 239.39999999999998 L 25.775 242.52499999999998 L 25.775 248.77499999999998 L Z fill
|
||||||
97.57 339.62 98.65 340.25 98.65 341.50 97.57 342.12 96.50 341.50 96.50 340.25 TH
|
newpath 55.75 251.89999999999998 M 61.125 248.77499999999998 L 61.125 242.52499999999998 L 55.75 239.39999999999998 L 50.375 242.52499999999998 L 50.375 248.77499999999998 L Z fill
|
||||||
29.92 337.49 31.00 338.11 31.00 339.36 29.92 339.99 28.85 339.36 28.85 338.11 TH
|
newpath 80.35 251.89999999999998 M 85.725 248.77499999999998 L 85.725 242.52499999999998 L 80.35 239.39999999999998 L 74.97500000000001 242.52499999999998 L 74.97500000000001 248.77499999999998 L Z fill
|
||||||
34.84 337.49 35.92 338.11 35.92 339.36 34.84 339.99 33.77 339.36 33.77 338.11 TH
|
newpath 117.25 251.89999999999998 M 122.625 248.77499999999998 L 122.625 242.52499999999998 L 117.25 239.39999999999998 L 111.875 242.52499999999998 L 111.875 248.77499999999998 L Z fill
|
||||||
39.76 337.49 40.84 338.11 40.84 339.36 39.76 339.99 38.69 339.36 38.69 338.11 TH
|
newpath 141.85000000000002 251.89999999999998 M 147.225 248.77499999999998 L 147.225 242.52499999999998 L 141.85000000000002 239.39999999999998 L 136.47500000000002 242.52499999999998 L 136.47500000000002 248.77499999999998 L Z fill
|
||||||
44.68 337.49 45.75 338.11 45.75 339.36 44.68 339.99 43.61 339.36 43.61 338.11 TH
|
newpath 154.15 251.89999999999998 M 159.525 248.77499999999998 L 159.525 242.52499999999998 L 154.15 239.39999999999998 L 148.775 242.52499999999998 L 148.775 248.77499999999998 L Z fill
|
||||||
49.60 337.49 50.68 338.11 50.68 339.36 49.60 339.99 48.53 339.36 48.53 338.11 TH
|
newpath 277.15 251.89999999999998 M 282.52500000000003 248.77499999999998 L 282.52500000000003 242.52499999999998 L 277.15 239.39999999999998 L 271.775 242.52499999999998 L 271.775 248.77499999999998 L Z fill
|
||||||
69.28 337.49 70.35 338.11 70.35 339.36 69.28 339.99 68.20 339.36 68.20 338.11 TH
|
newpath 289.45 251.89999999999998 M 294.825 248.77499999999998 L 294.825 242.52499999999998 L 289.45 239.39999999999998 L 284.07499999999993 242.52499999999998 L 284.07499999999993 248.77499999999998 L Z fill
|
||||||
71.74 337.49 72.82 338.11 72.82 339.36 71.74 339.99 70.66 339.36 70.66 338.11 TH
|
newpath 301.75 251.89999999999998 M 307.125 248.77499999999998 L 307.125 242.52499999999998 L 301.75 239.39999999999998 L 296.37499999999994 242.52499999999998 L 296.37499999999994 248.77499999999998 L Z fill
|
||||||
74.20 337.49 75.28 338.11 75.28 339.36 74.20 339.99 73.13 339.36 73.13 338.11 TH
|
newpath 326.34999999999997 251.89999999999998 M 331.725 248.77499999999998 L 331.725 242.52499999999998 L 326.34999999999997 239.39999999999998 L 320.97499999999997 242.52499999999998 L 320.97499999999997 248.77499999999998 L Z fill
|
||||||
76.66 337.49 77.74 338.11 77.74 339.36 76.66 339.99 75.59 339.36 75.59 338.11 TH
|
newpath 350.95 251.89999999999998 M 356.325 248.77499999999998 L 356.325 242.52499999999998 L 350.95 239.39999999999998 L 345.575 242.52499999999998 L 345.575 248.77499999999998 L Z fill
|
||||||
79.12 337.49 80.20 338.11 80.20 339.36 79.12 339.99 78.04 339.36 78.04 338.11 TH
|
newpath 375.55 251.89999999999998 M 380.925 248.77499999999998 L 380.925 242.52499999999998 L 375.55 239.39999999999998 L 370.17499999999995 242.52499999999998 L 370.17499999999995 248.77499999999998 L Z fill
|
||||||
84.04 337.49 85.12 338.11 85.12 339.36 84.04 339.99 82.96 339.36 82.96 338.11 TH
|
newpath 387.85 251.89999999999998 M 393.225 248.77499999999998 L 393.225 242.52499999999998 L 387.85 239.39999999999998 L 382.475 242.52499999999998 L 382.475 248.77499999999998 L Z fill
|
||||||
88.96 337.49 90.04 338.11 90.04 339.36 88.96 339.99 87.88 339.36 87.88 338.11 TH
|
newpath 49.6 262.57499999999993 M 54.975 259.44999999999993 L 54.975 253.19999999999996 L 49.6 250.07499999999996 L 44.224999999999994 253.19999999999996 L 44.224999999999994 259.44999999999993 L Z fill
|
||||||
93.88 337.49 94.96 338.11 94.96 339.36 93.88 339.99 92.81 339.36 92.81 338.11 TH
|
newpath 74.2 262.57499999999993 M 79.57499999999999 259.44999999999993 L 79.57499999999999 253.19999999999996 L 74.2 250.07499999999996 L 68.825 253.19999999999996 L 68.825 259.44999999999993 L Z fill
|
||||||
45.91 335.35 46.99 335.98 46.99 337.23 45.91 337.85 44.84 337.23 44.84 335.98 TH
|
newpath 98.80000000000001 262.57499999999993 M 104.17500000000001 259.44999999999993 L 104.17500000000001 253.19999999999996 L 98.80000000000001 250.07499999999996 L 93.42500000000001 253.19999999999996 L 93.42500000000001 259.44999999999993 L Z fill
|
||||||
48.37 335.35 49.45 335.98 49.45 337.23 48.37 337.85 47.30 337.23 47.30 335.98 TH
|
newpath 123.4 262.57499999999993 M 128.77499999999998 259.44999999999993 L 128.77499999999998 253.19999999999996 L 123.4 250.07499999999996 L 118.025 253.19999999999996 L 118.025 259.44999999999993 L Z fill
|
||||||
50.83 335.35 51.91 335.98 51.91 337.23 50.83 337.85 49.76 337.23 49.76 335.98 TH
|
newpath 148.0 262.57499999999993 M 153.375 259.44999999999993 L 153.375 253.19999999999996 L 148.0 250.07499999999996 L 142.625 253.19999999999996 L 142.625 259.44999999999993 L Z fill
|
||||||
55.75 335.35 56.83 335.98 56.83 337.23 55.75 337.85 54.68 337.23 54.68 335.98 TH
|
newpath 246.39999999999998 262.57499999999993 M 251.77499999999998 259.44999999999993 L 251.77499999999998 253.19999999999996 L 246.39999999999998 250.07499999999996 L 241.02499999999995 253.19999999999996 L 241.02499999999995 259.44999999999993 L Z fill
|
||||||
65.59 335.35 66.66 335.98 66.66 337.23 65.59 337.85 64.51 337.23 64.51 335.98 TH
|
newpath 258.7 262.57499999999993 M 264.075 259.44999999999993 L 264.075 253.19999999999996 L 258.7 250.07499999999996 L 253.32499999999996 253.19999999999996 L 253.32499999999996 259.44999999999993 L Z fill
|
||||||
68.05 335.35 69.13 335.98 69.13 337.23 68.05 337.85 66.98 337.23 66.98 335.98 TH
|
newpath 271.0 262.57499999999993 M 276.375 259.44999999999993 L 276.375 253.19999999999996 L 271.0 250.07499999999996 L 265.625 253.19999999999996 L 265.625 259.44999999999993 L Z fill
|
||||||
70.51 335.35 71.59 335.98 71.59 337.23 70.51 337.85 69.44 337.23 69.44 335.98 TH
|
newpath 283.29999999999995 262.57499999999993 M 288.675 259.44999999999993 L 288.675 253.19999999999996 L 283.29999999999995 250.07499999999996 L 277.92499999999995 253.19999999999996 L 277.92499999999995 259.44999999999993 L Z fill
|
||||||
75.43 335.35 76.51 335.98 76.51 337.23 75.43 337.85 74.35 337.23 74.35 335.98 TH
|
newpath 295.59999999999997 262.57499999999993 M 300.97499999999997 259.44999999999993 L 300.97499999999997 253.19999999999996 L 295.59999999999997 250.07499999999996 L 290.2249999999999 253.19999999999996 L 290.2249999999999 259.44999999999993 L Z fill
|
||||||
95.11 335.35 96.19 335.98 96.19 337.23 95.11 337.85 94.04 337.23 94.04 335.98 TH
|
newpath 320.19999999999993 262.57499999999993 M 325.575 259.44999999999993 L 325.575 253.19999999999996 L 320.19999999999993 250.07499999999996 L 314.82499999999993 253.19999999999996 L 314.82499999999993 259.44999999999993 L Z fill
|
||||||
97.57 335.35 98.65 335.98 98.65 337.23 97.57 337.85 96.50 337.23 96.50 335.98 TH
|
newpath 344.79999999999995 262.57499999999993 M 350.17499999999995 259.44999999999993 L 350.17499999999995 253.19999999999996 L 344.79999999999995 250.07499999999996 L 339.42499999999995 253.19999999999996 L 339.42499999999995 259.44999999999993 L Z fill
|
||||||
27.46 333.22 28.54 333.84 28.54 335.09 27.46 335.72 26.39 335.09 26.39 333.84 TH
|
newpath 369.40000000000003 262.57499999999993 M 374.7750000000001 259.44999999999993 L 374.7750000000001 253.19999999999996 L 369.40000000000003 250.07499999999996 L 364.02500000000003 253.19999999999996 L 364.02500000000003 259.44999999999993 L Z fill
|
||||||
32.38 333.22 33.46 333.84 33.46 335.09 32.38 335.72 31.31 335.09 31.31 333.84 TH
|
newpath 129.55 273.25 M 134.925 270.125 L 134.925 263.875 L 129.55 260.75 L 124.17500000000001 263.875 L 124.17500000000001 270.125 L Z fill
|
||||||
37.30 333.22 38.38 333.84 38.38 335.09 37.30 335.72 36.23 335.09 36.23 333.84 TH
|
newpath 141.85000000000002 273.25 M 147.225 270.125 L 147.225 263.875 L 141.85000000000002 260.75 L 136.47500000000002 263.875 L 136.47500000000002 270.125 L Z fill
|
||||||
42.22 333.22 43.30 333.84 43.30 335.09 42.22 335.72 41.14 335.09 41.14 333.84 TH
|
newpath 154.15 273.25 M 159.525 270.125 L 159.525 263.875 L 154.15 260.75 L 148.775 263.875 L 148.775 270.125 L Z fill
|
||||||
47.14 333.22 48.22 333.84 48.22 335.09 47.14 335.72 46.07 335.09 46.07 333.84 TH
|
newpath 178.75 273.25 M 184.125 270.125 L 184.125 263.875 L 178.75 260.75 L 173.375 263.875 L 173.375 270.125 L Z fill
|
||||||
52.06 333.22 53.14 333.84 53.14 335.09 52.06 335.72 50.99 335.09 50.99 333.84 TH
|
newpath 227.95 273.25 M 233.325 270.125 L 233.325 263.875 L 227.95 260.75 L 222.57499999999996 263.875 L 222.57499999999996 270.125 L Z fill
|
||||||
54.52 333.22 55.60 333.84 55.60 335.09 54.52 335.72 53.45 335.09 53.45 333.84 TH
|
newpath 240.25 273.25 M 245.625 270.125 L 245.625 263.875 L 240.25 260.75 L 234.87499999999997 263.875 L 234.87499999999997 270.125 L Z fill
|
||||||
56.98 333.22 58.06 333.84 58.06 335.09 56.98 335.72 55.91 335.09 55.91 333.84 TH
|
newpath 252.54999999999998 273.25 M 257.925 270.125 L 257.925 263.875 L 252.54999999999998 260.75 L 247.17499999999998 263.875 L 247.17499999999998 270.125 L Z fill
|
||||||
59.44 333.22 60.52 333.84 60.52 335.09 59.44 335.72 58.36 335.09 58.36 333.84 TH
|
newpath 277.15 273.25 M 282.52500000000003 270.125 L 282.52500000000003 263.875 L 277.15 260.75 L 271.775 263.875 L 271.775 270.125 L Z fill
|
||||||
61.90 333.22 62.97 333.84 62.97 335.09 61.90 335.72 60.82 335.09 60.82 333.84 TH
|
newpath 375.55 273.25 M 380.925 270.125 L 380.925 263.875 L 375.55 260.75 L 370.17499999999995 263.875 L 370.17499999999995 270.125 L Z fill
|
||||||
64.36 333.22 65.44 333.84 65.44 335.09 64.36 335.72 63.28 335.09 63.28 333.84 TH
|
newpath 387.85 273.25 M 393.225 270.125 L 393.225 263.875 L 387.85 260.75 L 382.475 263.875 L 382.475 270.125 L Z fill
|
||||||
69.28 333.22 70.35 333.84 70.35 335.09 69.28 335.72 68.20 335.09 68.20 333.84 TH
|
newpath 37.3 283.92499999999995 M 42.675 280.79999999999995 L 42.675 274.54999999999995 L 37.3 271.42499999999995 L 31.925 274.54999999999995 L 31.925 280.79999999999995 L Z fill
|
||||||
71.74 333.22 72.82 333.84 72.82 335.09 71.74 335.72 70.66 335.09 70.66 333.84 TH
|
newpath 61.900000000000006 283.92499999999995 M 67.275 280.79999999999995 L 67.275 274.54999999999995 L 61.900000000000006 271.42499999999995 L 56.525000000000006 274.54999999999995 L 56.525000000000006 280.79999999999995 L Z fill
|
||||||
81.58 333.22 82.66 333.84 82.66 335.09 81.58 335.72 80.51 335.09 80.51 333.84 TH
|
newpath 86.5 283.92499999999995 M 91.875 280.79999999999995 L 91.875 274.54999999999995 L 86.5 271.42499999999995 L 81.125 274.54999999999995 L 81.125 280.79999999999995 L Z fill
|
||||||
86.50 333.22 87.57 333.84 87.57 335.09 86.50 335.72 85.42 335.09 85.42 333.84 TH
|
newpath 111.1 283.92499999999995 M 116.475 280.79999999999995 L 116.475 274.54999999999995 L 111.1 271.42499999999995 L 105.725 274.54999999999995 L 105.725 280.79999999999995 L Z fill
|
||||||
91.42 333.22 92.50 333.84 92.50 335.09 91.42 335.72 90.35 335.09 90.35 333.84 TH
|
newpath 135.7 283.92499999999995 M 141.075 280.79999999999995 L 141.075 274.54999999999995 L 135.7 271.42499999999995 L 130.325 274.54999999999995 L 130.325 280.79999999999995 L Z fill
|
||||||
96.34 333.22 97.42 333.84 97.42 335.09 96.34 335.72 95.27 335.09 95.27 333.84 TH
|
newpath 160.3 283.92499999999995 M 165.675 280.79999999999995 L 165.675 274.54999999999995 L 160.3 271.42499999999995 L 154.925 274.54999999999995 L 154.925 280.79999999999995 L Z fill
|
||||||
28.69 331.08 29.77 331.71 29.77 332.96 28.69 333.58 27.62 332.96 27.62 331.71 TH
|
newpath 172.6 283.92499999999995 M 177.975 280.79999999999995 L 177.975 274.54999999999995 L 172.6 271.42499999999995 L 167.225 274.54999999999995 L 167.225 280.79999999999995 L Z fill
|
||||||
33.61 331.08 34.69 331.71 34.69 332.96 33.61 333.58 32.54 332.96 32.54 331.71 TH
|
newpath 184.9 283.92499999999995 M 190.275 280.79999999999995 L 190.275 274.54999999999995 L 184.9 271.42499999999995 L 179.525 274.54999999999995 L 179.525 280.79999999999995 L Z fill
|
||||||
38.53 331.08 39.61 331.71 39.61 332.96 38.53 333.58 37.46 332.96 37.46 331.71 TH
|
newpath 197.2 283.92499999999995 M 202.575 280.79999999999995 L 202.575 274.54999999999995 L 197.2 271.42499999999995 L 191.825 274.54999999999995 L 191.825 280.79999999999995 L Z fill
|
||||||
43.45 331.08 44.53 331.71 44.53 332.96 43.45 333.58 42.38 332.96 42.38 331.71 TH
|
newpath 209.49999999999994 283.92499999999995 M 214.87499999999997 280.79999999999995 L 214.87499999999997 274.54999999999995 L 209.49999999999994 271.42499999999995 L 204.12499999999994 274.54999999999995 L 204.12499999999994 280.79999999999995 L Z fill
|
||||||
48.37 331.08 49.45 331.71 49.45 332.96 48.37 333.58 47.30 332.96 47.30 331.71 TH
|
newpath 221.79999999999995 283.92499999999995 M 227.17499999999998 280.79999999999995 L 227.17499999999998 274.54999999999995 L 221.79999999999995 271.42499999999995 L 216.42499999999995 274.54999999999995 L 216.42499999999995 280.79999999999995 L Z fill
|
||||||
53.29 331.08 54.36 331.71 54.36 332.96 53.29 333.58 52.22 332.96 52.22 331.71 TH
|
newpath 246.39999999999998 283.92499999999995 M 251.77499999999998 280.79999999999995 L 251.77499999999998 274.54999999999995 L 246.39999999999998 271.42499999999995 L 241.02499999999995 274.54999999999995 L 241.02499999999995 280.79999999999995 L Z fill
|
||||||
58.21 331.08 59.29 331.71 59.29 332.96 58.21 333.58 57.14 332.96 57.14 331.71 TH
|
newpath 258.7 283.92499999999995 M 264.075 280.79999999999995 L 264.075 274.54999999999995 L 258.7 271.42499999999995 L 253.32499999999996 274.54999999999995 L 253.32499999999996 280.79999999999995 L Z fill
|
||||||
63.13 331.08 64.21 331.71 64.21 332.96 63.13 333.58 62.05 332.96 62.05 331.71 TH
|
newpath 307.9 283.92499999999995 M 313.275 280.79999999999995 L 313.275 274.54999999999995 L 307.9 271.42499999999995 L 302.5249999999999 274.54999999999995 L 302.5249999999999 280.79999999999995 L Z fill
|
||||||
68.05 331.08 69.13 331.71 69.13 332.96 68.05 333.58 66.98 332.96 66.98 331.71 TH
|
newpath 332.49999999999994 283.92499999999995 M 337.875 280.79999999999995 L 337.875 274.54999999999995 L 332.49999999999994 271.42499999999995 L 327.12499999999994 274.54999999999995 L 327.12499999999994 280.79999999999995 L Z fill
|
||||||
72.97 331.08 74.05 331.71 74.05 332.96 72.97 333.58 71.90 332.96 71.90 331.71 TH
|
newpath 357.1 283.92499999999995 M 362.475 280.79999999999995 L 362.475 274.54999999999995 L 357.1 271.42499999999995 L 351.725 274.54999999999995 L 351.725 280.79999999999995 L Z fill
|
||||||
75.43 331.08 76.51 331.71 76.51 332.96 75.43 333.58 74.35 332.96 74.35 331.71 TH
|
newpath 381.70000000000005 283.92499999999995 M 387.07500000000005 280.79999999999995 L 387.07500000000005 274.54999999999995 L 381.70000000000005 271.42499999999995 L 376.325 274.54999999999995 L 376.325 280.79999999999995 L Z fill
|
||||||
77.89 331.08 78.97 331.71 78.97 332.96 77.89 333.58 76.82 332.96 76.82 331.71 TH
|
newpath 43.45 294.59999999999997 M 48.825 291.47499999999997 L 48.825 285.22499999999997 L 43.45 282.09999999999997 L 38.075 285.22499999999997 L 38.075 291.47499999999997 L Z fill
|
||||||
80.35 331.08 81.43 331.71 81.43 332.96 80.35 333.58 79.27 332.96 79.27 331.71 TH
|
newpath 68.05 294.59999999999997 M 73.425 291.47499999999997 L 73.425 285.22499999999997 L 68.05 282.09999999999997 L 62.675 285.22499999999997 L 62.675 291.47499999999997 L Z fill
|
||||||
82.81 331.08 83.88 331.71 83.88 332.96 82.81 333.58 81.73 332.96 81.73 331.71 TH
|
newpath 92.65 294.59999999999997 M 98.025 291.47499999999997 L 98.025 285.22499999999997 L 92.65 282.09999999999997 L 87.275 285.22499999999997 L 87.275 291.47499999999997 L Z fill
|
||||||
87.73 331.08 88.81 331.71 88.81 332.96 87.73 333.58 86.66 332.96 86.66 331.71 TH
|
newpath 117.25 294.59999999999997 M 122.625 291.47499999999997 L 122.625 285.22499999999997 L 117.25 282.09999999999997 L 111.875 285.22499999999997 L 111.875 291.47499999999997 L Z fill
|
||||||
92.65 331.08 93.73 331.71 93.73 332.96 92.65 333.58 91.58 332.96 91.58 331.71 TH
|
newpath 141.85000000000002 294.59999999999997 M 147.225 291.47499999999997 L 147.225 285.22499999999997 L 141.85000000000002 282.09999999999997 L 136.47500000000002 285.22499999999997 L 136.47500000000002 291.47499999999997 L Z fill
|
||||||
95.11 331.08 96.19 331.71 96.19 332.96 95.11 333.58 94.04 332.96 94.04 331.71 TH
|
newpath 166.45 294.59999999999997 M 171.825 291.47499999999997 L 171.825 285.22499999999997 L 166.45 282.09999999999997 L 161.075 285.22499999999997 L 161.075 291.47499999999997 L Z fill
|
||||||
97.57 331.08 98.65 331.71 98.65 332.96 97.57 333.58 96.50 332.96 96.50 331.71 TH
|
newpath 191.05 294.59999999999997 M 196.425 291.47499999999997 L 196.425 285.22499999999997 L 191.05 282.09999999999997 L 185.67499999999998 285.22499999999997 L 185.67499999999998 291.47499999999997 L Z fill
|
||||||
76.66 328.95 77.74 329.57 77.74 330.82 76.66 331.45 75.59 330.82 75.59 329.57 TH
|
newpath 215.64999999999998 294.59999999999997 M 221.02499999999998 291.47499999999997 L 221.02499999999998 285.22499999999997 L 215.64999999999998 282.09999999999997 L 210.27499999999998 285.22499999999997 L 210.27499999999998 291.47499999999997 L Z fill
|
||||||
79.12 328.95 80.20 329.57 80.20 330.82 79.12 331.45 78.04 330.82 78.04 329.57 TH
|
newpath 240.25 294.59999999999997 M 245.625 291.47499999999997 L 245.625 285.22499999999997 L 240.25 282.09999999999997 L 234.87499999999997 285.22499999999997 L 234.87499999999997 291.47499999999997 L Z fill
|
||||||
81.58 328.95 82.66 329.57 82.66 330.82 81.58 331.45 80.51 330.82 80.51 329.57 TH
|
newpath 264.85 294.59999999999997 M 270.225 291.47499999999997 L 270.225 285.22499999999997 L 264.85 282.09999999999997 L 259.47499999999997 285.22499999999997 L 259.47499999999997 291.47499999999997 L Z fill
|
||||||
84.04 328.95 85.12 329.57 85.12 330.82 84.04 331.45 82.96 330.82 82.96 329.57 TH
|
newpath 277.15 294.59999999999997 M 282.52500000000003 291.47499999999997 L 282.52500000000003 285.22499999999997 L 277.15 282.09999999999997 L 271.775 285.22499999999997 L 271.775 291.47499999999997 L Z fill
|
||||||
88.96 328.95 90.04 329.57 90.04 330.82 88.96 331.45 87.88 330.82 87.88 329.57 TH
|
newpath 289.45 294.59999999999997 M 294.825 291.47499999999997 L 294.825 285.22499999999997 L 289.45 282.09999999999997 L 284.07499999999993 285.22499999999997 L 284.07499999999993 291.47499999999997 L Z fill
|
||||||
93.88 328.95 94.96 329.57 94.96 330.82 93.88 331.45 92.81 330.82 92.81 329.57 TH
|
newpath 301.75 294.59999999999997 M 307.125 291.47499999999997 L 307.125 285.22499999999997 L 301.75 282.09999999999997 L 296.37499999999994 285.22499999999997 L 296.37499999999994 291.47499999999997 L Z fill
|
||||||
96.34 328.95 97.42 329.57 97.42 330.82 96.34 331.45 95.27 330.82 95.27 329.57 TH
|
newpath 314.04999999999995 294.59999999999997 M 319.425 291.47499999999997 L 319.425 285.22499999999997 L 314.04999999999995 282.09999999999997 L 308.67499999999995 285.22499999999997 L 308.67499999999995 291.47499999999997 L Z fill
|
||||||
26.23 326.81 27.31 327.44 27.31 328.69 26.23 329.31 25.16 328.69 25.16 327.44 TH
|
newpath 338.65 294.59999999999997 M 344.025 291.47499999999997 L 344.025 285.22499999999997 L 338.65 282.09999999999997 L 333.275 285.22499999999997 L 333.275 291.47499999999997 L Z fill
|
||||||
31.15 326.81 32.23 327.44 32.23 328.69 31.15 329.31 30.08 328.69 30.08 327.44 TH
|
newpath 363.25 294.59999999999997 M 368.62500000000006 291.47499999999997 L 368.62500000000006 285.22499999999997 L 363.25 282.09999999999997 L 357.875 285.22499999999997 L 357.875 291.47499999999997 L Z fill
|
||||||
36.07 326.81 37.14 327.44 37.14 328.69 36.07 329.31 35.00 328.69 35.00 327.44 TH
|
newpath 375.55 294.59999999999997 M 380.925 291.47499999999997 L 380.925 285.22499999999997 L 375.55 282.09999999999997 L 370.17499999999995 285.22499999999997 L 370.17499999999995 291.47499999999997 L Z fill
|
||||||
40.99 326.81 42.07 327.44 42.07 328.69 40.99 329.31 39.92 328.69 39.92 327.44 TH
|
newpath 387.85 294.59999999999997 M 393.225 291.47499999999997 L 393.225 285.22499999999997 L 387.85 282.09999999999997 L 382.475 285.22499999999997 L 382.475 291.47499999999997 L Z fill
|
||||||
45.91 326.81 46.99 327.44 46.99 328.69 45.91 329.31 44.84 328.69 44.84 327.44 TH
|
newpath 283.29999999999995 305.275 M 288.675 302.15 L 288.675 295.9 L 283.29999999999995 292.775 L 277.92499999999995 295.9 L 277.92499999999995 302.15 L Z fill
|
||||||
50.83 326.81 51.91 327.44 51.91 328.69 50.83 329.31 49.76 328.69 49.76 327.44 TH
|
newpath 295.59999999999997 305.275 M 300.97499999999997 302.15 L 300.97499999999997 295.9 L 295.59999999999997 292.775 L 290.2249999999999 295.9 L 290.2249999999999 302.15 L Z fill
|
||||||
55.75 326.81 56.83 327.44 56.83 328.69 55.75 329.31 54.68 328.69 54.68 327.44 TH
|
newpath 307.9 305.275 M 313.275 302.15 L 313.275 295.9 L 307.9 292.775 L 302.5249999999999 295.9 L 302.5249999999999 302.15 L Z fill
|
||||||
60.67 326.81 61.75 327.44 61.75 328.69 60.67 329.31 59.59 328.69 59.59 327.44 TH
|
newpath 320.19999999999993 305.275 M 325.575 302.15 L 325.575 295.9 L 320.19999999999993 292.775 L 314.82499999999993 295.9 L 314.82499999999993 302.15 L Z fill
|
||||||
65.59 326.81 66.66 327.44 66.66 328.69 65.59 329.31 64.51 328.69 64.51 327.44 TH
|
newpath 344.79999999999995 305.275 M 350.17499999999995 302.15 L 350.17499999999995 295.9 L 344.79999999999995 292.775 L 339.42499999999995 295.9 L 339.42499999999995 302.15 L Z fill
|
||||||
70.51 326.81 71.59 327.44 71.59 328.69 70.51 329.31 69.44 328.69 69.44 327.44 TH
|
newpath 369.40000000000003 305.275 M 374.7750000000001 302.15 L 374.7750000000001 295.9 L 369.40000000000003 292.775 L 364.02500000000003 295.9 L 364.02500000000003 302.15 L Z fill
|
||||||
95.11 326.81 96.19 327.44 96.19 328.69 95.11 329.31 94.04 328.69 94.04 327.44 TH
|
newpath 381.70000000000005 305.275 M 387.07500000000005 302.15 L 387.07500000000005 295.9 L 381.70000000000005 292.775 L 376.325 295.9 L 376.325 302.15 L Z fill
|
||||||
27.46 324.68 28.54 325.30 28.54 326.55 27.46 327.18 26.39 326.55 26.39 325.30 TH
|
newpath 31.15 315.94999999999993 M 36.525 312.82499999999993 L 36.525 306.57499999999993 L 31.15 303.44999999999993 L 25.775 306.57499999999993 L 25.775 312.82499999999993 L Z fill
|
||||||
29.92 324.68 31.00 325.30 31.00 326.55 29.92 327.18 28.85 326.55 28.85 325.30 TH
|
newpath 55.75 315.94999999999993 M 61.125 312.82499999999993 L 61.125 306.57499999999993 L 55.75 303.44999999999993 L 50.375 306.57499999999993 L 50.375 312.82499999999993 L Z fill
|
||||||
32.38 324.68 33.46 325.30 33.46 326.55 32.38 327.18 31.31 326.55 31.31 325.30 TH
|
newpath 80.35 315.94999999999993 M 85.725 312.82499999999993 L 85.725 306.57499999999993 L 80.35 303.44999999999993 L 74.97500000000001 306.57499999999993 L 74.97500000000001 312.82499999999993 L Z fill
|
||||||
34.84 324.68 35.92 325.30 35.92 326.55 34.84 327.18 33.77 326.55 33.77 325.30 TH
|
newpath 104.95 315.94999999999993 M 110.325 312.82499999999993 L 110.325 306.57499999999993 L 104.95 303.44999999999993 L 99.575 306.57499999999993 L 99.575 312.82499999999993 L Z fill
|
||||||
37.30 324.68 38.38 325.30 38.38 326.55 37.30 327.18 36.23 326.55 36.23 325.30 TH
|
newpath 129.55 315.94999999999993 M 134.925 312.82499999999993 L 134.925 306.57499999999993 L 129.55 303.44999999999993 L 124.17500000000001 306.57499999999993 L 124.17500000000001 312.82499999999993 L Z fill
|
||||||
39.76 324.68 40.84 325.30 40.84 326.55 39.76 327.18 38.69 326.55 38.69 325.30 TH
|
newpath 154.15 315.94999999999993 M 159.525 312.82499999999993 L 159.525 306.57499999999993 L 154.15 303.44999999999993 L 148.775 306.57499999999993 L 148.775 312.82499999999993 L Z fill
|
||||||
42.22 324.68 43.30 325.30 43.30 326.55 42.22 327.18 41.14 326.55 41.14 325.30 TH
|
newpath 178.75 315.94999999999993 M 184.125 312.82499999999993 L 184.125 306.57499999999993 L 178.75 303.44999999999993 L 173.375 306.57499999999993 L 173.375 312.82499999999993 L Z fill
|
||||||
44.68 324.68 45.75 325.30 45.75 326.55 44.68 327.18 43.61 326.55 43.61 325.30 TH
|
newpath 203.34999999999997 315.94999999999993 M 208.725 312.82499999999993 L 208.725 306.57499999999993 L 203.34999999999997 303.44999999999993 L 197.97499999999997 306.57499999999993 L 197.97499999999997 312.82499999999993 L Z fill
|
||||||
56.98 324.68 58.06 325.30 58.06 326.55 56.98 327.18 55.91 326.55 55.91 325.30 TH
|
newpath 227.95 315.94999999999993 M 233.325 312.82499999999993 L 233.325 306.57499999999993 L 227.95 303.44999999999993 L 222.57499999999996 306.57499999999993 L 222.57499999999996 312.82499999999993 L Z fill
|
||||||
59.44 324.68 60.52 325.30 60.52 326.55 59.44 327.18 58.36 326.55 58.36 325.30 TH
|
newpath 252.54999999999998 315.94999999999993 M 257.925 312.82499999999993 L 257.925 306.57499999999993 L 252.54999999999998 303.44999999999993 L 247.17499999999998 306.57499999999993 L 247.17499999999998 312.82499999999993 L Z fill
|
||||||
61.90 324.68 62.97 325.30 62.97 326.55 61.90 327.18 60.82 326.55 60.82 325.30 TH
|
newpath 375.55 315.94999999999993 M 380.925 312.82499999999993 L 380.925 306.57499999999993 L 375.55 303.44999999999993 L 370.17499999999995 306.57499999999993 L 370.17499999999995 312.82499999999993 L Z fill
|
||||||
64.36 324.68 65.44 325.30 65.44 326.55 64.36 327.18 63.28 326.55 63.28 325.30 TH
|
newpath 37.3 326.625 M 42.675 323.5 L 42.675 317.25 L 37.3 314.125 L 31.925 317.25 L 31.925 323.5 L Z fill
|
||||||
79.12 324.68 80.20 325.30 80.20 326.55 79.12 327.18 78.04 326.55 78.04 325.30 TH
|
newpath 49.6 326.625 M 54.975 323.5 L 54.975 317.25 L 49.6 314.125 L 44.224999999999994 317.25 L 44.224999999999994 323.5 L Z fill
|
||||||
84.04 324.68 85.12 325.30 85.12 326.55 84.04 327.18 82.96 326.55 82.96 325.30 TH
|
newpath 61.900000000000006 326.625 M 67.275 323.5 L 67.275 317.25 L 61.900000000000006 314.125 L 56.525000000000006 317.25 L 56.525000000000006 323.5 L Z fill
|
||||||
28.69 322.54 29.77 323.17 29.77 324.42 28.69 325.04 27.62 324.42 27.62 323.17 TH
|
newpath 74.2 326.625 M 79.57499999999999 323.5 L 79.57499999999999 317.25 L 74.2 314.125 L 68.825 317.25 L 68.825 323.5 L Z fill
|
||||||
33.61 322.54 34.69 323.17 34.69 324.42 33.61 325.04 32.54 324.42 32.54 323.17 TH
|
newpath 86.5 326.625 M 91.875 323.5 L 91.875 317.25 L 86.5 314.125 L 81.125 317.25 L 81.125 323.5 L Z fill
|
||||||
36.07 322.54 37.14 323.17 37.14 324.42 36.07 325.04 35.00 324.42 35.00 323.17 TH
|
newpath 98.80000000000001 326.625 M 104.17500000000001 323.5 L 104.17500000000001 317.25 L 98.80000000000001 314.125 L 93.42500000000001 317.25 L 93.42500000000001 323.5 L Z fill
|
||||||
40.99 322.54 42.07 323.17 42.07 324.42 40.99 325.04 39.92 324.42 39.92 323.17 TH
|
newpath 111.1 326.625 M 116.475 323.5 L 116.475 317.25 L 111.1 314.125 L 105.725 317.25 L 105.725 323.5 L Z fill
|
||||||
45.91 322.54 46.99 323.17 46.99 324.42 45.91 325.04 44.84 324.42 44.84 323.17 TH
|
newpath 123.4 326.625 M 128.77499999999998 323.5 L 128.77499999999998 317.25 L 123.4 314.125 L 118.025 317.25 L 118.025 323.5 L Z fill
|
||||||
48.37 322.54 49.45 323.17 49.45 324.42 48.37 325.04 47.30 324.42 47.30 323.17 TH
|
newpath 184.9 326.625 M 190.275 323.5 L 190.275 317.25 L 184.9 314.125 L 179.525 317.25 L 179.525 323.5 L Z fill
|
||||||
50.83 322.54 51.91 323.17 51.91 324.42 50.83 325.04 49.76 324.42 49.76 323.17 TH
|
newpath 197.2 326.625 M 202.575 323.5 L 202.575 317.25 L 197.2 314.125 L 191.825 317.25 L 191.825 323.5 L Z fill
|
||||||
53.29 322.54 54.36 323.17 54.36 324.42 53.29 325.04 52.22 324.42 52.22 323.17 TH
|
newpath 209.49999999999994 326.625 M 214.87499999999997 323.5 L 214.87499999999997 317.25 L 209.49999999999994 314.125 L 204.12499999999994 317.25 L 204.12499999999994 323.5 L Z fill
|
||||||
65.59 322.54 66.66 323.17 66.66 324.42 65.59 325.04 64.51 324.42 64.51 323.17 TH
|
newpath 221.79999999999995 326.625 M 227.17499999999998 323.5 L 227.17499999999998 317.25 L 221.79999999999995 314.125 L 216.42499999999995 317.25 L 216.42499999999995 323.5 L Z fill
|
||||||
68.05 322.54 69.13 323.17 69.13 324.42 68.05 325.04 66.98 324.42 66.98 323.17 TH
|
newpath 295.59999999999997 326.625 M 300.97499999999997 323.5 L 300.97499999999997 317.25 L 295.59999999999997 314.125 L 290.2249999999999 317.25 L 290.2249999999999 323.5 L Z fill
|
||||||
70.51 322.54 71.59 323.17 71.59 324.42 70.51 325.04 69.44 324.42 69.44 323.17 TH
|
newpath 320.19999999999993 326.625 M 325.575 323.5 L 325.575 317.25 L 320.19999999999993 314.125 L 314.82499999999993 317.25 L 314.82499999999993 323.5 L Z fill
|
||||||
72.97 322.54 74.05 323.17 74.05 324.42 72.97 325.04 71.90 324.42 71.90 323.17 TH
|
newpath 43.45 337.29999999999995 M 48.825 334.17499999999995 L 48.825 327.92499999999995 L 43.45 324.79999999999995 L 38.075 327.92499999999995 L 38.075 334.17499999999995 L Z fill
|
||||||
77.89 322.54 78.97 323.17 78.97 324.42 77.89 325.04 76.82 324.42 76.82 323.17 TH
|
newpath 68.05 337.29999999999995 M 73.425 334.17499999999995 L 73.425 327.92499999999995 L 68.05 324.79999999999995 L 62.675 327.92499999999995 L 62.675 334.17499999999995 L Z fill
|
||||||
82.81 322.54 83.88 323.17 83.88 324.42 82.81 325.04 81.73 324.42 81.73 323.17 TH
|
newpath 80.35 337.29999999999995 M 85.725 334.17499999999995 L 85.725 327.92499999999995 L 80.35 324.79999999999995 L 74.97500000000001 327.92499999999995 L 74.97500000000001 334.17499999999995 L Z fill
|
||||||
87.73 322.54 88.81 323.17 88.81 324.42 87.73 325.04 86.66 324.42 86.66 323.17 TH
|
newpath 104.95 337.29999999999995 M 110.325 334.17499999999995 L 110.325 327.92499999999995 L 104.95 324.79999999999995 L 99.575 327.92499999999995 L 99.575 334.17499999999995 L Z fill
|
||||||
92.65 322.54 93.73 323.17 93.73 324.42 92.65 325.04 91.58 324.42 91.58 323.17 TH
|
newpath 129.55 337.29999999999995 M 134.925 334.17499999999995 L 134.925 327.92499999999995 L 129.55 324.79999999999995 L 124.17500000000001 327.92499999999995 L 124.17500000000001 334.17499999999995 L Z fill
|
||||||
27.46 320.41 28.54 321.03 28.54 322.28 27.46 322.91 26.39 322.28 26.39 321.03 TH
|
newpath 141.85000000000002 337.29999999999995 M 147.225 334.17499999999995 L 147.225 327.92499999999995 L 141.85000000000002 324.79999999999995 L 136.47500000000002 327.92499999999995 L 136.47500000000002 334.17499999999995 L Z fill
|
||||||
32.38 320.41 33.46 321.03 33.46 322.28 32.38 322.91 31.31 322.28 31.31 321.03 TH
|
newpath 154.15 337.29999999999995 M 159.525 334.17499999999995 L 159.525 327.92499999999995 L 154.15 324.79999999999995 L 148.775 327.92499999999995 L 148.775 334.17499999999995 L Z fill
|
||||||
37.30 320.41 38.38 321.03 38.38 322.28 37.30 322.91 36.23 322.28 36.23 321.03 TH
|
newpath 166.45 337.29999999999995 M 171.825 334.17499999999995 L 171.825 327.92499999999995 L 166.45 324.79999999999995 L 161.075 327.92499999999995 L 161.075 334.17499999999995 L Z fill
|
||||||
42.22 320.41 43.30 321.03 43.30 322.28 42.22 322.91 41.14 322.28 41.14 321.03 TH
|
newpath 227.95 337.29999999999995 M 233.325 334.17499999999995 L 233.325 327.92499999999995 L 227.95 324.79999999999995 L 222.57499999999996 327.92499999999995 L 222.57499999999996 334.17499999999995 L Z fill
|
||||||
59.44 320.41 60.52 321.03 60.52 322.28 59.44 322.91 58.36 322.28 58.36 321.03 TH
|
newpath 240.25 337.29999999999995 M 245.625 334.17499999999995 L 245.625 327.92499999999995 L 240.25 324.79999999999995 L 234.87499999999997 327.92499999999995 L 234.87499999999997 334.17499999999995 L Z fill
|
||||||
64.36 320.41 65.44 321.03 65.44 322.28 64.36 322.91 63.28 322.28 63.28 321.03 TH
|
newpath 252.54999999999998 337.29999999999995 M 257.925 334.17499999999995 L 257.925 327.92499999999995 L 252.54999999999998 324.79999999999995 L 247.17499999999998 327.92499999999995 L 247.17499999999998 334.17499999999995 L Z fill
|
||||||
69.28 320.41 70.35 321.03 70.35 322.28 69.28 322.91 68.20 322.28 68.20 321.03 TH
|
newpath 264.85 337.29999999999995 M 270.225 334.17499999999995 L 270.225 327.92499999999995 L 264.85 324.79999999999995 L 259.47499999999997 327.92499999999995 L 259.47499999999997 334.17499999999995 L Z fill
|
||||||
74.20 320.41 75.28 321.03 75.28 322.28 74.20 322.91 73.13 322.28 73.13 321.03 TH
|
newpath 289.45 337.29999999999995 M 294.825 334.17499999999995 L 294.825 327.92499999999995 L 289.45 324.79999999999995 L 284.07499999999993 327.92499999999995 L 284.07499999999993 334.17499999999995 L Z fill
|
||||||
76.66 320.41 77.74 321.03 77.74 322.28 76.66 322.91 75.59 322.28 75.59 321.03 TH
|
newpath 314.04999999999995 337.29999999999995 M 319.425 334.17499999999995 L 319.425 327.92499999999995 L 314.04999999999995 324.79999999999995 L 308.67499999999995 327.92499999999995 L 308.67499999999995 334.17499999999995 L Z fill
|
||||||
79.12 320.41 80.20 321.03 80.20 322.28 79.12 322.91 78.04 322.28 78.04 321.03 TH
|
newpath 338.65 337.29999999999995 M 344.025 334.17499999999995 L 344.025 327.92499999999995 L 338.65 324.79999999999995 L 333.275 327.92499999999995 L 333.275 334.17499999999995 L Z fill
|
||||||
81.58 320.41 82.66 321.03 82.66 322.28 81.58 322.91 80.51 322.28 80.51 321.03 TH
|
newpath 363.25 337.29999999999995 M 368.62500000000006 334.17499999999995 L 368.62500000000006 327.92499999999995 L 363.25 324.79999999999995 L 357.875 327.92499999999995 L 357.875 334.17499999999995 L Z fill
|
||||||
84.04 320.41 85.12 321.03 85.12 322.28 84.04 322.91 82.96 322.28 82.96 321.03 TH
|
newpath 37.3 347.975 M 42.675 344.84999999999997 L 42.675 338.59999999999997 L 37.3 335.47499999999997 L 31.925 338.59999999999997 L 31.925 344.84999999999997 L Z fill
|
||||||
86.50 320.41 87.57 321.03 87.57 322.28 86.50 322.91 85.42 322.28 85.42 321.03 TH
|
newpath 61.900000000000006 347.975 M 67.275 344.84999999999997 L 67.275 338.59999999999997 L 61.900000000000006 335.47499999999997 L 56.525000000000006 338.59999999999997 L 56.525000000000006 344.84999999999997 L Z fill
|
||||||
91.42 320.41 92.50 321.03 92.50 322.28 91.42 322.91 90.35 322.28 90.35 321.03 TH
|
newpath 86.5 347.975 M 91.875 344.84999999999997 L 91.875 338.59999999999997 L 86.5 335.47499999999997 L 81.125 338.59999999999997 L 81.125 344.84999999999997 L Z fill
|
||||||
96.34 320.41 97.42 321.03 97.42 322.28 96.34 322.91 95.27 322.28 95.27 321.03 TH
|
newpath 111.1 347.975 M 116.475 344.84999999999997 L 116.475 338.59999999999997 L 111.1 335.47499999999997 L 105.725 338.59999999999997 L 105.725 344.84999999999997 L Z fill
|
||||||
26.23 318.27 27.31 318.90 27.31 320.15 26.23 320.77 25.16 320.15 25.16 318.90 TH
|
newpath 197.2 347.975 M 202.575 344.84999999999997 L 202.575 338.59999999999997 L 197.2 335.47499999999997 L 191.825 338.59999999999997 L 191.825 344.84999999999997 L Z fill
|
||||||
28.69 318.27 29.77 318.90 29.77 320.15 28.69 320.77 27.62 320.15 27.62 318.90 TH
|
newpath 221.79999999999995 347.975 M 227.17499999999998 344.84999999999997 L 227.17499999999998 338.59999999999997 L 221.79999999999995 335.47499999999997 L 216.42499999999995 338.59999999999997 L 216.42499999999995 344.84999999999997 L Z fill
|
||||||
31.15 318.27 32.23 318.90 32.23 320.15 31.15 320.77 30.08 320.15 30.08 318.90 TH
|
newpath 246.39999999999998 347.975 M 251.77499999999998 344.84999999999997 L 251.77499999999998 338.59999999999997 L 246.39999999999998 335.47499999999997 L 241.02499999999995 338.59999999999997 L 241.02499999999995 344.84999999999997 L Z fill
|
||||||
33.61 318.27 34.69 318.90 34.69 320.15 33.61 320.77 32.54 320.15 32.54 318.90 TH
|
newpath 271.0 347.975 M 276.375 344.84999999999997 L 276.375 338.59999999999997 L 271.0 335.47499999999997 L 265.625 338.59999999999997 L 265.625 344.84999999999997 L Z fill
|
||||||
38.53 318.27 39.61 318.90 39.61 320.15 38.53 320.77 37.46 320.15 37.46 318.90 TH
|
newpath 283.29999999999995 347.975 M 288.675 344.84999999999997 L 288.675 338.59999999999997 L 283.29999999999995 335.47499999999997 L 277.92499999999995 338.59999999999997 L 277.92499999999995 344.84999999999997 L Z fill
|
||||||
43.45 318.27 44.53 318.90 44.53 320.15 43.45 320.77 42.38 320.15 42.38 318.90 TH
|
newpath 295.59999999999997 347.975 M 300.97499999999997 344.84999999999997 L 300.97499999999997 338.59999999999997 L 295.59999999999997 335.47499999999997 L 290.2249999999999 338.59999999999997 L 290.2249999999999 344.84999999999997 L Z fill
|
||||||
45.91 318.27 46.99 318.90 46.99 320.15 45.91 320.77 44.84 320.15 44.84 318.90 TH
|
newpath 307.9 347.975 M 313.275 344.84999999999997 L 313.275 338.59999999999997 L 307.9 335.47499999999997 L 302.5249999999999 338.59999999999997 L 302.5249999999999 344.84999999999997 L Z fill
|
||||||
50.83 318.27 51.91 318.90 51.91 320.15 50.83 320.77 49.76 320.15 49.76 318.90 TH
|
newpath 320.19999999999993 347.975 M 325.575 344.84999999999997 L 325.575 338.59999999999997 L 320.19999999999993 335.47499999999997 L 314.82499999999993 338.59999999999997 L 314.82499999999993 344.84999999999997 L Z fill
|
||||||
65.59 318.27 66.66 318.90 66.66 320.15 65.59 320.77 64.51 320.15 64.51 318.90 TH
|
newpath 332.49999999999994 347.975 M 337.875 344.84999999999997 L 337.875 338.59999999999997 L 332.49999999999994 335.47499999999997 L 327.12499999999994 338.59999999999997 L 327.12499999999994 344.84999999999997 L Z fill
|
||||||
68.05 318.27 69.13 318.90 69.13 320.15 68.05 320.77 66.98 320.15 66.98 318.90 TH
|
newpath 357.1 347.975 M 362.475 344.84999999999997 L 362.475 338.59999999999997 L 357.1 335.47499999999997 L 351.725 338.59999999999997 L 351.725 344.84999999999997 L Z fill
|
||||||
70.51 318.27 71.59 318.90 71.59 320.15 70.51 320.77 69.44 320.15 69.44 318.90 TH
|
newpath 381.70000000000005 347.975 M 387.07500000000005 344.84999999999997 L 387.07500000000005 338.59999999999997 L 381.70000000000005 335.47499999999997 L 376.325 338.59999999999997 L 376.325 344.84999999999997 L Z fill
|
||||||
72.97 318.27 74.05 318.90 74.05 320.15 72.97 320.77 71.90 320.15 71.90 318.90 TH
|
newpath 31.15 358.65000000000003 M 36.525 355.52500000000003 L 36.525 349.27500000000003 L 31.15 346.15000000000003 L 25.775 349.27500000000003 L 25.775 355.52500000000003 L Z fill
|
||||||
77.89 318.27 78.97 318.90 78.97 320.15 77.89 320.77 76.82 320.15 76.82 318.90 TH
|
newpath 43.45 358.65000000000003 M 48.825 355.52500000000003 L 48.825 349.27500000000003 L 43.45 346.15000000000003 L 38.075 349.27500000000003 L 38.075 355.52500000000003 L Z fill
|
||||||
82.81 318.27 83.88 318.90 83.88 320.15 82.81 320.77 81.73 320.15 81.73 318.90 TH
|
newpath 55.75 358.65000000000003 M 61.125 355.52500000000003 L 61.125 349.27500000000003 L 55.75 346.15000000000003 L 50.375 349.27500000000003 L 50.375 355.52500000000003 L Z fill
|
||||||
85.27 318.27 86.35 318.90 86.35 320.15 85.27 320.77 84.20 320.15 84.20 318.90 TH
|
newpath 68.05 358.65000000000003 M 73.425 355.52500000000003 L 73.425 349.27500000000003 L 68.05 346.15000000000003 L 62.675 349.27500000000003 L 62.675 355.52500000000003 L Z fill
|
||||||
90.19 318.27 91.27 318.90 91.27 320.15 90.19 320.77 89.12 320.15 89.12 318.90 TH
|
newpath 92.65 358.65000000000003 M 98.025 355.52500000000003 L 98.025 349.27500000000003 L 92.65 346.15000000000003 L 87.275 349.27500000000003 L 87.275 355.52500000000003 L Z fill
|
||||||
95.11 318.27 96.19 318.90 96.19 320.15 95.11 320.77 94.04 320.15 94.04 318.90 TH
|
newpath 117.25 358.65000000000003 M 122.625 355.52500000000003 L 122.625 349.27500000000003 L 117.25 346.15000000000003 L 111.875 349.27500000000003 L 111.875 355.52500000000003 L Z fill
|
||||||
29.92 316.14 31.00 316.76 31.00 318.01 29.92 318.64 28.85 318.01 28.85 316.76 TH
|
newpath 129.55 358.65000000000003 M 134.925 355.52500000000003 L 134.925 349.27500000000003 L 129.55 346.15000000000003 L 124.17500000000001 349.27500000000003 L 124.17500000000001 355.52500000000003 L Z fill
|
||||||
34.84 316.14 35.92 316.76 35.92 318.01 34.84 318.64 33.77 318.01 33.77 316.76 TH
|
newpath 154.15 358.65000000000003 M 159.525 355.52500000000003 L 159.525 349.27500000000003 L 154.15 346.15000000000003 L 148.775 349.27500000000003 L 148.775 355.52500000000003 L Z fill
|
||||||
37.30 316.14 38.38 316.76 38.38 318.01 37.30 318.64 36.23 318.01 36.23 316.76 TH
|
newpath 227.95 358.65000000000003 M 233.325 355.52500000000003 L 233.325 349.27500000000003 L 227.95 346.15000000000003 L 222.57499999999996 349.27500000000003 L 222.57499999999996 355.52500000000003 L Z fill
|
||||||
42.22 316.14 43.30 316.76 43.30 318.01 42.22 318.64 41.14 318.01 41.14 316.76 TH
|
newpath 240.25 358.65000000000003 M 245.625 355.52500000000003 L 245.625 349.27500000000003 L 240.25 346.15000000000003 L 234.87499999999997 349.27500000000003 L 234.87499999999997 355.52500000000003 L Z fill
|
||||||
47.14 316.14 48.22 316.76 48.22 318.01 47.14 318.64 46.07 318.01 46.07 316.76 TH
|
newpath 252.54999999999998 358.65000000000003 M 257.925 355.52500000000003 L 257.925 349.27500000000003 L 252.54999999999998 346.15000000000003 L 247.17499999999998 349.27500000000003 L 247.17499999999998 355.52500000000003 L Z fill
|
||||||
49.60 316.14 50.68 316.76 50.68 318.01 49.60 318.64 48.53 318.01 48.53 316.76 TH
|
newpath 264.85 358.65000000000003 M 270.225 355.52500000000003 L 270.225 349.27500000000003 L 264.85 346.15000000000003 L 259.47499999999997 349.27500000000003 L 259.47499999999997 355.52500000000003 L Z fill
|
||||||
52.06 316.14 53.14 316.76 53.14 318.01 52.06 318.64 50.99 318.01 50.99 316.76 TH
|
newpath 289.45 358.65000000000003 M 294.825 355.52500000000003 L 294.825 349.27500000000003 L 289.45 346.15000000000003 L 284.07499999999993 349.27500000000003 L 284.07499999999993 355.52500000000003 L Z fill
|
||||||
54.52 316.14 55.60 316.76 55.60 318.01 54.52 318.64 53.45 318.01 53.45 316.76 TH
|
newpath 314.04999999999995 358.65000000000003 M 319.425 355.52500000000003 L 319.425 349.27500000000003 L 314.04999999999995 346.15000000000003 L 308.67499999999995 349.27500000000003 L 308.67499999999995 355.52500000000003 L Z fill
|
||||||
59.44 316.14 60.52 316.76 60.52 318.01 59.44 318.64 58.36 318.01 58.36 316.76 TH
|
newpath 326.34999999999997 358.65000000000003 M 331.725 355.52500000000003 L 331.725 349.27500000000003 L 326.34999999999997 346.15000000000003 L 320.97499999999997 349.27500000000003 L 320.97499999999997 355.52500000000003 L Z fill
|
||||||
64.36 316.14 65.44 316.76 65.44 318.01 64.36 318.64 63.28 318.01 63.28 316.76 TH
|
newpath 350.95 358.65000000000003 M 356.325 355.52500000000003 L 356.325 349.27500000000003 L 350.95 346.15000000000003 L 345.575 349.27500000000003 L 345.575 355.52500000000003 L Z fill
|
||||||
66.82 316.14 67.90 316.76 67.90 318.01 66.82 318.64 65.74 318.01 65.74 316.76 TH
|
newpath 375.55 358.65000000000003 M 380.925 355.52500000000003 L 380.925 349.27500000000003 L 375.55 346.15000000000003 L 370.17499999999995 349.27500000000003 L 370.17499999999995 355.52500000000003 L Z fill
|
||||||
71.74 316.14 72.82 316.76 72.82 318.01 71.74 318.64 70.66 318.01 70.66 316.76 TH
|
newpath 49.6 369.325 M 54.975 366.2 L 54.975 359.95 L 49.6 356.825 L 44.224999999999994 359.95 L 44.224999999999994 366.2 L Z fill
|
||||||
76.66 316.14 77.74 316.76 77.74 318.01 76.66 318.64 75.59 318.01 75.59 316.76 TH
|
newpath 74.2 369.325 M 79.57499999999999 366.2 L 79.57499999999999 359.95 L 74.2 356.825 L 68.825 359.95 L 68.825 366.2 L Z fill
|
||||||
81.58 316.14 82.66 316.76 82.66 318.01 81.58 318.64 80.51 318.01 80.51 316.76 TH
|
newpath 86.5 369.325 M 91.875 366.2 L 91.875 359.95 L 86.5 356.825 L 81.125 359.95 L 81.125 366.2 L Z fill
|
||||||
86.50 316.14 87.57 316.76 87.57 318.01 86.50 318.64 85.42 318.01 85.42 316.76 TH
|
newpath 111.1 369.325 M 116.475 366.2 L 116.475 359.95 L 111.1 356.825 L 105.725 359.95 L 105.725 366.2 L Z fill
|
||||||
88.96 316.14 90.04 316.76 90.04 318.01 88.96 318.64 87.88 318.01 87.88 316.76 TH
|
newpath 135.7 369.325 M 141.075 366.2 L 141.075 359.95 L 135.7 356.825 L 130.325 359.95 L 130.325 366.2 L Z fill
|
||||||
91.42 316.14 92.50 316.76 92.50 318.01 91.42 318.64 90.35 318.01 90.35 316.76 TH
|
newpath 148.0 369.325 M 153.375 366.2 L 153.375 359.95 L 148.0 356.825 L 142.625 359.95 L 142.625 366.2 L Z fill
|
||||||
93.88 316.14 94.96 316.76 94.96 318.01 93.88 318.64 92.81 318.01 92.81 316.76 TH
|
newpath 160.3 369.325 M 165.675 366.2 L 165.675 359.95 L 160.3 356.825 L 154.925 359.95 L 154.925 366.2 L Z fill
|
||||||
28.69 314.00 29.77 314.63 29.77 315.88 28.69 316.50 27.62 315.88 27.62 314.63 TH
|
newpath 172.6 369.325 M 177.975 366.2 L 177.975 359.95 L 172.6 356.825 L 167.225 359.95 L 167.225 366.2 L Z fill
|
||||||
33.61 314.00 34.69 314.63 34.69 315.88 33.61 316.50 32.54 315.88 32.54 314.63 TH
|
newpath 197.2 369.325 M 202.575 366.2 L 202.575 359.95 L 197.2 356.825 L 191.825 359.95 L 191.825 366.2 L Z fill
|
||||||
58.21 314.00 59.29 314.63 59.29 315.88 58.21 316.50 57.14 315.88 57.14 314.63 TH
|
newpath 221.79999999999995 369.325 M 227.17499999999998 366.2 L 227.17499999999998 359.95 L 221.79999999999995 356.825 L 216.42499999999995 359.95 L 216.42499999999995 366.2 L Z fill
|
||||||
63.13 314.00 64.21 314.63 64.21 315.88 63.13 316.50 62.05 315.88 62.05 314.63 TH
|
newpath 234.09999999999997 369.325 M 239.47499999999997 366.2 L 239.47499999999997 359.95 L 234.09999999999997 356.825 L 228.72499999999997 359.95 L 228.72499999999997 366.2 L Z fill
|
||||||
65.59 314.00 66.66 314.63 66.66 315.88 65.59 316.50 64.51 315.88 64.51 314.63 TH
|
newpath 258.7 369.325 M 264.075 366.2 L 264.075 359.95 L 258.7 356.825 L 253.32499999999996 359.95 L 253.32499999999996 366.2 L Z fill
|
||||||
70.51 314.00 71.59 314.63 71.59 315.88 70.51 316.50 69.44 315.88 69.44 314.63 TH
|
newpath 283.29999999999995 369.325 M 288.675 366.2 L 288.675 359.95 L 283.29999999999995 356.825 L 277.92499999999995 359.95 L 277.92499999999995 366.2 L Z fill
|
||||||
75.43 314.00 76.51 314.63 76.51 315.88 75.43 316.50 74.35 315.88 74.35 314.63 TH
|
newpath 307.9 369.325 M 313.275 366.2 L 313.275 359.95 L 307.9 356.825 L 302.5249999999999 359.95 L 302.5249999999999 366.2 L Z fill
|
||||||
80.35 314.00 81.43 314.63 81.43 315.88 80.35 316.50 79.27 315.88 79.27 314.63 TH
|
newpath 332.49999999999994 369.325 M 337.875 366.2 L 337.875 359.95 L 332.49999999999994 356.825 L 327.12499999999994 359.95 L 327.12499999999994 366.2 L Z fill
|
||||||
87.73 314.00 88.81 314.63 88.81 315.88 87.73 316.50 86.66 315.88 86.66 314.63 TH
|
newpath 344.79999999999995 369.325 M 350.17499999999995 366.2 L 350.17499999999995 359.95 L 344.79999999999995 356.825 L 339.42499999999995 359.95 L 339.42499999999995 366.2 L Z fill
|
||||||
92.65 314.00 93.73 314.63 93.73 315.88 92.65 316.50 91.58 315.88 91.58 314.63 TH
|
newpath 357.1 369.325 M 362.475 366.2 L 362.475 359.95 L 357.1 356.825 L 351.725 359.95 L 351.725 366.2 L Z fill
|
||||||
|
newpath 369.40000000000003 369.325 M 374.7750000000001 366.2 L 374.7750000000001 359.95 L 369.40000000000003 356.825 L 364.02500000000003 359.95 L 364.02500000000003 366.2 L Z fill
|
||||||
showpage
|
newpath 43.45 380.0 M 48.825 376.875 L 48.825 370.625 L 43.45 367.5 L 38.075 370.625 L 38.075 376.875 L Z fill
|
||||||
|
newpath 68.05 380.0 M 73.425 376.875 L 73.425 370.625 L 68.05 367.5 L 62.675 370.625 L 62.675 376.875 L Z fill
|
||||||
|
newpath 191.05 380.0 M 196.425 376.875 L 196.425 370.625 L 191.05 367.5 L 185.67499999999998 370.625 L 185.67499999999998 376.875 L Z fill
|
||||||
|
newpath 215.64999999999998 380.0 M 221.02499999999998 376.875 L 221.02499999999998 370.625 L 215.64999999999998 367.5 L 210.27499999999998 370.625 L 210.27499999999998 376.875 L Z fill
|
||||||
|
newpath 227.95 380.0 M 233.325 376.875 L 233.325 370.625 L 227.95 367.5 L 222.57499999999996 370.625 L 222.57499999999996 376.875 L Z fill
|
||||||
|
newpath 252.54999999999998 380.0 M 257.925 376.875 L 257.925 370.625 L 252.54999999999998 367.5 L 247.17499999999998 370.625 L 247.17499999999998 376.875 L Z fill
|
||||||
|
newpath 277.15 380.0 M 282.52500000000003 376.875 L 282.52500000000003 370.625 L 277.15 367.5 L 271.775 370.625 L 271.775 376.875 L Z fill
|
||||||
|
newpath 301.75 380.0 M 307.125 376.875 L 307.125 370.625 L 301.75 367.5 L 296.37499999999994 370.625 L 296.37499999999994 376.875 L Z fill
|
||||||
|
newpath 338.65 380.0 M 344.025 376.875 L 344.025 370.625 L 338.65 367.5 L 333.275 370.625 L 333.275 376.875 L Z fill
|
||||||
|
newpath 363.25 380.0 M 368.62500000000006 376.875 L 368.62500000000006 370.625 L 363.25 367.5 L 357.875 370.625 L 357.875 376.875 L Z fill
|
||||||
|
newpath 203.79999999999998 203.0 54.25000000000001 54.25000000000001 360.0 0.0 ellipse Z fill
|
||||||
|
1.0 1.0 1.0 rgb
|
||||||
|
newpath 203.79999999999998 203.0 44.849999999999994 44.849999999999994 360.0 0.0 ellipse Z fill
|
||||||
|
0.0 0.0 0.0 rgb
|
||||||
|
newpath 203.79999999999998 203.0 35.50000000000001 35.50000000000001 360.0 0.0 ellipse Z fill
|
||||||
|
1.0 1.0 1.0 rgb
|
||||||
|
newpath 203.79999999999998 203.0 26.099999999999994 26.099999999999994 360.0 0.0 ellipse Z fill
|
||||||
|
0.0 0.0 0.0 rgb
|
||||||
|
newpath 203.79999999999998 203.0 16.55000000000001 16.55000000000001 360.0 0.0 ellipse Z fill
|
||||||
|
1.0 1.0 1.0 rgb
|
||||||
|
newpath 203.79999999999998 203.00000000000003 7.149999999999999 7.149999999999999 360.0 0.0 ellipse Z fill
|
||||||
|
0.0 0.0 0.0 rgb
|
||||||
|
grestore
|
||||||
|
%%EOF
|
762
barcode/src/test/resources/org/xbib/graphics/barcode/output/maxicode-basic.svg
Executable file → Normal file
|
@ -1,384 +1,380 @@
|
||||||
<?xml version="1.0" standalone="no"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
<svg xmlns:xlink="http://www.w3.org/1999/xlink" height="28.92777440287076mm" version="1.1" viewBox="0.0 0.0 84.0 82.0" width="29.633329876111514mm" x="0mm" y="0mm" xmlns="http://www.w3.org/2000/svg">
|
||||||
<svg width="84" height="82" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
<rect height="1200" style="fill:rgb(255,255,255);stroke:none;" width="1920" x="0" y="0"/>
|
||||||
<desc>123456789</desc>
|
<path d="M8.69,7.68 L9.765,7.055 L9.765,5.805 L8.69,5.18 L7.615,5.805 L7.615,7.055 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<g id="barcode" fill="#000000">
|
<path d="M13.61,7.68 L14.684999999999999,7.055 L14.684999999999999,5.805 L13.61,5.18 L12.535,5.805 L12.535,7.055 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<rect x="0" y="0" width="84" height="82" fill="#FFFFFF" />
|
<path d="M18.53,7.68 L19.605,7.055 L19.605,5.805 L18.53,5.18 L17.455000000000002,5.805 L17.455000000000002,7.055 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<circle cx="40.76" cy="40.60" r="10.85" fill="#000000" />
|
<path d="M23.45,7.68 L24.525,7.055 L24.525,5.805 L23.45,5.18 L22.375,5.805 L22.375,7.055 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<circle cx="40.76" cy="40.60" r="8.97" fill="#FFFFFF" />
|
<path d="M28.37,7.68 L29.445,7.055 L29.445,5.805 L28.37,5.18 L27.295,5.805 L27.295,7.055 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<circle cx="40.76" cy="40.60" r="7.10" fill="#000000" />
|
<path d="M33.29,7.68 L34.364999999999995,7.055 L34.364999999999995,5.805 L33.29,5.18 L32.215,5.805 L32.215,7.055 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<circle cx="40.76" cy="40.60" r="5.22" fill="#FFFFFF" />
|
<path d="M38.21,7.68 L39.285000000000004,7.055 L39.285000000000004,5.805 L38.21,5.18 L37.135,5.805 L37.135,7.055 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<circle cx="40.76" cy="40.60" r="3.31" fill="#000000" />
|
<path d="M43.129999999999995,7.68 L44.205,7.055 L44.205,5.805 L43.129999999999995,5.18 L42.05499999999999,5.805 L42.05499999999999,7.055 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<circle cx="40.76" cy="40.60" r="1.43" fill="#FFFFFF" />
|
<path d="M48.05,7.68 L49.125,7.055 L49.125,5.805 L48.05,5.18 L46.974999999999994,5.805 L46.974999999999994,7.055 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 8.69 7.68 L 9.77 7.06 L 9.77 5.81 L 8.69 5.18 L 7.62 5.81 L 7.62 7.06 Z" />
|
<path d="M52.97,7.68 L54.045,7.055 L54.045,5.805 L52.97,5.18 L51.894999999999996,5.805 L51.894999999999996,7.055 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 13.61 7.68 L 14.68 7.06 L 14.68 5.81 L 13.61 5.18 L 12.54 5.81 L 12.54 7.06 Z" />
|
<path d="M57.88999999999999,7.68 L58.964999999999996,7.055 L58.964999999999996,5.805 L57.88999999999999,5.18 L56.81499999999999,5.805 L56.81499999999999,7.055 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 18.53 7.68 L 19.61 7.06 L 19.61 5.81 L 18.53 5.18 L 17.46 5.81 L 17.46 7.06 Z" />
|
<path d="M62.809999999999995,7.68 L63.885,7.055 L63.885,5.805 L62.809999999999995,5.18 L61.73499999999999,5.805 L61.73499999999999,7.055 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 23.45 7.68 L 24.53 7.06 L 24.53 5.81 L 23.45 5.18 L 22.38 5.81 L 22.38 7.06 Z" />
|
<path d="M67.72999999999999,7.68 L68.805,7.055 L68.805,5.805 L67.72999999999999,5.18 L66.655,5.805 L66.655,7.055 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 28.37 7.68 L 29.45 7.06 L 29.45 5.81 L 28.37 5.18 L 27.30 5.81 L 27.30 7.06 Z" />
|
<path d="M72.65,7.68 L73.72500000000001,7.055 L73.72500000000001,5.805 L72.65,5.18 L71.575,5.805 L71.575,7.055 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 33.29 7.68 L 34.36 7.06 L 34.36 5.81 L 33.29 5.18 L 32.22 5.81 L 32.22 7.06 Z" />
|
<path d="M75.11,7.68 L76.185,7.055 L76.185,5.805 L75.11,5.18 L74.035,5.805 L74.035,7.055 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 38.21 7.68 L 39.29 7.06 L 39.29 5.81 L 38.21 5.18 L 37.14 5.81 L 37.14 7.06 Z" />
|
<path d="M77.57000000000001,7.68 L78.64500000000001,7.055 L78.64500000000001,5.805 L77.57000000000001,5.18 L76.495,5.805 L76.495,7.055 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 43.13 7.68 L 44.21 7.06 L 44.21 5.81 L 43.13 5.18 L 42.05 5.81 L 42.05 7.06 Z" />
|
<path d="M6.23,11.95 L7.305,11.325 L7.305,10.075 L6.23,9.45 L5.155,10.075 L5.155,11.325 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 48.05 7.68 L 49.13 7.06 L 49.13 5.81 L 48.05 5.18 L 46.97 5.81 L 46.97 7.06 Z" />
|
<path d="M11.15,11.95 L12.225000000000001,11.325 L12.225000000000001,10.075 L11.15,9.45 L10.075,10.075 L10.075,11.325 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 52.97 7.68 L 54.05 7.06 L 54.05 5.81 L 52.97 5.18 L 51.89 5.81 L 51.89 7.06 Z" />
|
<path d="M16.07,11.95 L17.145,11.325 L17.145,10.075 L16.07,9.45 L14.995000000000001,10.075 L14.995000000000001,11.325 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 57.89 7.68 L 58.96 7.06 L 58.96 5.81 L 57.89 5.18 L 56.81 5.81 L 56.81 7.06 Z" />
|
<path d="M20.990000000000002,11.95 L22.065,11.325 L22.065,10.075 L20.990000000000002,9.45 L19.915,10.075 L19.915,11.325 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 62.81 7.68 L 63.89 7.06 L 63.89 5.81 L 62.81 5.18 L 61.73 5.81 L 61.73 7.06 Z" />
|
<path d="M25.91,11.95 L26.985,11.325 L26.985,10.075 L25.91,9.45 L24.835,10.075 L24.835,11.325 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 67.73 7.68 L 68.81 7.06 L 68.81 5.81 L 67.73 5.18 L 66.66 5.81 L 66.66 7.06 Z" />
|
<path d="M30.830000000000002,11.95 L31.905,11.325 L31.905,10.075 L30.830000000000002,9.45 L29.755000000000003,10.075 L29.755000000000003,11.325 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 72.65 7.68 L 73.73 7.06 L 73.73 5.81 L 72.65 5.18 L 71.58 5.81 L 71.58 7.06 Z" />
|
<path d="M35.75,11.95 L36.825,11.325 L36.825,10.075 L35.75,9.45 L34.675,10.075 L34.675,11.325 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 75.11 7.68 L 76.19 7.06 L 76.19 5.81 L 75.11 5.18 L 74.04 5.81 L 74.04 7.06 Z" />
|
<path d="M40.669999999999995,11.95 L41.745,11.325 L41.745,10.075 L40.669999999999995,9.45 L39.59499999999999,10.075 L39.59499999999999,11.325 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 77.57 7.68 L 78.65 7.06 L 78.65 5.81 L 77.57 5.18 L 76.50 5.81 L 76.50 7.06 Z" />
|
<path d="M45.589999999999996,11.95 L46.665,11.325 L46.665,10.075 L45.589999999999996,9.45 L44.51499999999999,10.075 L44.51499999999999,11.325 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 6.23 11.95 L 7.31 11.33 L 7.31 10.08 L 6.23 9.45 L 5.16 10.08 L 5.16 11.33 Z" />
|
<path d="M50.51,11.95 L51.585,11.325 L51.585,10.075 L50.51,9.45 L49.434999999999995,10.075 L49.434999999999995,11.325 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 11.15 11.95 L 12.23 11.33 L 12.23 10.08 L 11.15 9.45 L 10.08 10.08 L 10.08 11.33 Z" />
|
<path d="M55.43,11.95 L56.505,11.325 L56.505,10.075 L55.43,9.45 L54.355,10.075 L54.355,11.325 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 16.07 11.95 L 17.15 11.33 L 17.15 10.08 L 16.07 9.45 L 15.00 10.08 L 15.00 11.33 Z" />
|
<path d="M60.349999999999994,11.95 L61.425,11.325 L61.425,10.075 L60.349999999999994,9.45 L59.27499999999999,10.075 L59.27499999999999,11.325 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 20.99 11.95 L 22.07 11.33 L 22.07 10.08 L 20.99 9.45 L 19.92 10.08 L 19.92 11.33 Z" />
|
<path d="M65.27,11.95 L66.345,11.325 L66.345,10.075 L65.27,9.45 L64.195,10.075 L64.195,11.325 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 25.91 11.95 L 26.99 11.33 L 26.99 10.08 L 25.91 9.45 L 24.84 10.08 L 24.84 11.33 Z" />
|
<path d="M70.19,11.95 L71.265,11.325 L71.265,10.075 L70.19,9.45 L69.115,10.075 L69.115,11.325 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 30.83 11.95 L 31.91 11.33 L 31.91 10.08 L 30.83 9.45 L 29.76 10.08 L 29.76 11.33 Z" />
|
<path d="M75.11,11.95 L76.185,11.325 L76.185,10.075 L75.11,9.45 L74.035,10.075 L74.035,11.325 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 35.75 11.95 L 36.83 11.33 L 36.83 10.08 L 35.75 9.45 L 34.68 10.08 L 34.68 11.33 Z" />
|
<path d="M9.92,14.084999999999999 L10.995000000000001,13.459999999999999 L10.995000000000001,12.209999999999999 L9.92,11.584999999999999 L8.844999999999999,12.209999999999999 L8.844999999999999,13.459999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 40.67 11.95 L 41.75 11.33 L 41.75 10.08 L 40.67 9.45 L 39.59 10.08 L 39.59 11.33 Z" />
|
<path d="M14.84,14.084999999999999 L15.915,13.459999999999999 L15.915,12.209999999999999 L14.84,11.584999999999999 L13.765,12.209999999999999 L13.765,13.459999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 45.59 11.95 L 46.67 11.33 L 46.67 10.08 L 45.59 9.45 L 44.51 10.08 L 44.51 11.33 Z" />
|
<path d="M19.76,14.084999999999999 L20.835,13.459999999999999 L20.835,12.209999999999999 L19.76,11.584999999999999 L18.685000000000002,12.209999999999999 L18.685000000000002,13.459999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 50.51 11.95 L 51.59 11.33 L 51.59 10.08 L 50.51 9.45 L 49.43 10.08 L 49.43 11.33 Z" />
|
<path d="M24.68,14.084999999999999 L25.755,13.459999999999999 L25.755,12.209999999999999 L24.68,11.584999999999999 L23.605,12.209999999999999 L23.605,13.459999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 55.43 11.95 L 56.51 11.33 L 56.51 10.08 L 55.43 9.45 L 54.36 10.08 L 54.36 11.33 Z" />
|
<path d="M29.6,14.084999999999999 L30.675,13.459999999999999 L30.675,12.209999999999999 L29.6,11.584999999999999 L28.525000000000002,12.209999999999999 L28.525000000000002,13.459999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 60.35 11.95 L 61.43 11.33 L 61.43 10.08 L 60.35 9.45 L 59.27 10.08 L 59.27 11.33 Z" />
|
<path d="M34.519999999999996,14.084999999999999 L35.595,13.459999999999999 L35.595,12.209999999999999 L34.519999999999996,11.584999999999999 L33.445,12.209999999999999 L33.445,13.459999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 65.27 11.95 L 66.35 11.33 L 66.35 10.08 L 65.27 9.45 L 64.20 10.08 L 64.20 11.33 Z" />
|
<path d="M39.44,14.084999999999999 L40.515,13.459999999999999 L40.515,12.209999999999999 L39.44,11.584999999999999 L38.364999999999995,12.209999999999999 L38.364999999999995,13.459999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 70.19 11.95 L 71.27 11.33 L 71.27 10.08 L 70.19 9.45 L 69.12 10.08 L 69.12 11.33 Z" />
|
<path d="M44.35999999999999,14.084999999999999 L45.434999999999995,13.459999999999999 L45.434999999999995,12.209999999999999 L44.35999999999999,11.584999999999999 L43.28499999999999,12.209999999999999 L43.28499999999999,13.459999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 75.11 11.95 L 76.19 11.33 L 76.19 10.08 L 75.11 9.45 L 74.04 10.08 L 74.04 11.33 Z" />
|
<path d="M49.279999999999994,14.084999999999999 L50.355,13.459999999999999 L50.355,12.209999999999999 L49.279999999999994,11.584999999999999 L48.20499999999999,12.209999999999999 L48.20499999999999,13.459999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 9.92 14.08 L 11.00 13.46 L 11.00 12.21 L 9.92 11.58 L 8.84 12.21 L 8.84 13.46 Z" />
|
<path d="M54.199999999999996,14.084999999999999 L55.275,13.459999999999999 L55.275,12.209999999999999 L54.199999999999996,11.584999999999999 L53.12499999999999,12.209999999999999 L53.12499999999999,13.459999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 14.84 14.08 L 15.92 13.46 L 15.92 12.21 L 14.84 11.58 L 13.77 12.21 L 13.77 13.46 Z" />
|
<path d="M59.11999999999999,14.084999999999999 L60.19499999999999,13.459999999999999 L60.19499999999999,12.209999999999999 L59.11999999999999,11.584999999999999 L58.04499999999999,12.209999999999999 L58.04499999999999,13.459999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 19.76 14.08 L 20.84 13.46 L 20.84 12.21 L 19.76 11.58 L 18.69 12.21 L 18.69 13.46 Z" />
|
<path d="M64.03999999999999,14.084999999999999 L65.115,13.459999999999999 L65.115,12.209999999999999 L64.03999999999999,11.584999999999999 L62.96499999999999,12.209999999999999 L62.96499999999999,13.459999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 24.68 14.08 L 25.76 13.46 L 25.76 12.21 L 24.68 11.58 L 23.61 12.21 L 23.61 13.46 Z" />
|
<path d="M68.96,14.084999999999999 L70.035,13.459999999999999 L70.035,12.209999999999999 L68.96,11.584999999999999 L67.88499999999999,12.209999999999999 L67.88499999999999,13.459999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 29.60 14.08 L 30.68 13.46 L 30.68 12.21 L 29.60 11.58 L 28.53 12.21 L 28.53 13.46 Z" />
|
<path d="M73.88000000000001,14.084999999999999 L74.95500000000001,13.459999999999999 L74.95500000000001,12.209999999999999 L73.88000000000001,11.584999999999999 L72.805,12.209999999999999 L72.805,13.459999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 34.52 14.08 L 35.60 13.46 L 35.60 12.21 L 34.52 11.58 L 33.45 12.21 L 33.45 13.46 Z" />
|
<path d="M76.34,14.084999999999999 L77.415,13.459999999999999 L77.415,12.209999999999999 L76.34,11.584999999999999 L75.265,12.209999999999999 L75.265,13.459999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 39.44 14.08 L 40.52 13.46 L 40.52 12.21 L 39.44 11.58 L 38.36 12.21 L 38.36 13.46 Z" />
|
<path d="M77.57000000000001,16.22 L78.64500000000001,15.594999999999999 L78.64500000000001,14.344999999999999 L77.57000000000001,13.719999999999999 L76.495,14.344999999999999 L76.495,15.594999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 44.36 14.08 L 45.43 13.46 L 45.43 12.21 L 44.36 11.58 L 43.28 12.21 L 43.28 13.46 Z" />
|
<path d="M7.46,18.354999999999997 L8.535,17.729999999999997 L8.535,16.479999999999997 L7.46,15.854999999999999 L6.385,16.479999999999997 L6.385,17.729999999999997 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 49.28 14.08 L 50.36 13.46 L 50.36 12.21 L 49.28 11.58 L 48.20 12.21 L 48.20 13.46 Z" />
|
<path d="M12.38,18.354999999999997 L13.455,17.729999999999997 L13.455,16.479999999999997 L12.38,15.854999999999999 L11.305,16.479999999999997 L11.305,17.729999999999997 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 54.20 14.08 L 55.28 13.46 L 55.28 12.21 L 54.20 11.58 L 53.12 12.21 L 53.12 13.46 Z" />
|
<path d="M17.3,18.354999999999997 L18.375,17.729999999999997 L18.375,16.479999999999997 L17.3,15.854999999999999 L16.225,16.479999999999997 L16.225,17.729999999999997 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 59.12 14.08 L 60.19 13.46 L 60.19 12.21 L 59.12 11.58 L 58.04 12.21 L 58.04 13.46 Z" />
|
<path d="M22.22,18.354999999999997 L23.294999999999998,17.729999999999997 L23.294999999999998,16.479999999999997 L22.22,15.854999999999999 L21.145,16.479999999999997 L21.145,17.729999999999997 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 64.04 14.08 L 65.12 13.46 L 65.12 12.21 L 64.04 11.58 L 62.96 12.21 L 62.96 13.46 Z" />
|
<path d="M27.14,18.354999999999997 L28.215,17.729999999999997 L28.215,16.479999999999997 L27.14,15.854999999999999 L26.065,16.479999999999997 L26.065,17.729999999999997 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 68.96 14.08 L 70.04 13.46 L 70.04 12.21 L 68.96 11.58 L 67.88 12.21 L 67.88 13.46 Z" />
|
<path d="M32.06,18.354999999999997 L33.135000000000005,17.729999999999997 L33.135000000000005,16.479999999999997 L32.06,15.854999999999999 L30.985000000000003,16.479999999999997 L30.985000000000003,17.729999999999997 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 73.88 14.08 L 74.96 13.46 L 74.96 12.21 L 73.88 11.58 L 72.81 12.21 L 72.81 13.46 Z" />
|
<path d="M36.980000000000004,18.354999999999997 L38.055,17.729999999999997 L38.055,16.479999999999997 L36.980000000000004,15.854999999999999 L35.905,16.479999999999997 L35.905,17.729999999999997 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 76.34 14.08 L 77.42 13.46 L 77.42 12.21 L 76.34 11.58 L 75.27 12.21 L 75.27 13.46 Z" />
|
<path d="M41.89999999999999,18.354999999999997 L42.974999999999994,17.729999999999997 L42.974999999999994,16.479999999999997 L41.89999999999999,15.854999999999999 L40.82499999999999,16.479999999999997 L40.82499999999999,17.729999999999997 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 77.57 16.22 L 78.65 15.59 L 78.65 14.34 L 77.57 13.72 L 76.50 14.34 L 76.50 15.59 Z" />
|
<path d="M46.81999999999999,18.354999999999997 L47.894999999999996,17.729999999999997 L47.894999999999996,16.479999999999997 L46.81999999999999,15.854999999999999 L45.74499999999999,16.479999999999997 L45.74499999999999,17.729999999999997 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 7.46 18.35 L 8.54 17.73 L 8.54 16.48 L 7.46 15.85 L 6.39 16.48 L 6.39 17.73 Z" />
|
<path d="M51.739999999999995,18.354999999999997 L52.815,17.729999999999997 L52.815,16.479999999999997 L51.739999999999995,15.854999999999999 L50.66499999999999,16.479999999999997 L50.66499999999999,17.729999999999997 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 12.38 18.35 L 13.46 17.73 L 13.46 16.48 L 12.38 15.85 L 11.31 16.48 L 11.31 17.73 Z" />
|
<path d="M56.66,18.354999999999997 L57.735,17.729999999999997 L57.735,16.479999999999997 L56.66,15.854999999999999 L55.584999999999994,16.479999999999997 L55.584999999999994,17.729999999999997 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 17.30 18.35 L 18.38 17.73 L 18.38 16.48 L 17.30 15.85 L 16.23 16.48 L 16.23 17.73 Z" />
|
<path d="M61.57999999999999,18.354999999999997 L62.654999999999994,17.729999999999997 L62.654999999999994,16.479999999999997 L61.57999999999999,15.854999999999999 L60.50499999999999,16.479999999999997 L60.50499999999999,17.729999999999997 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 22.22 18.35 L 23.29 17.73 L 23.29 16.48 L 22.22 15.85 L 21.15 16.48 L 21.15 17.73 Z" />
|
<path d="M66.5,18.354999999999997 L67.57499999999999,17.729999999999997 L67.57499999999999,16.479999999999997 L66.5,15.854999999999999 L65.42499999999998,16.479999999999997 L65.42499999999998,17.729999999999997 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 27.14 18.35 L 28.22 17.73 L 28.22 16.48 L 27.14 15.85 L 26.07 16.48 L 26.07 17.73 Z" />
|
<path d="M71.42,18.354999999999997 L72.495,17.729999999999997 L72.495,16.479999999999997 L71.42,15.854999999999999 L70.345,16.479999999999997 L70.345,17.729999999999997 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 32.06 18.35 L 33.14 17.73 L 33.14 16.48 L 32.06 15.85 L 30.99 16.48 L 30.99 17.73 Z" />
|
<path d="M8.69,20.49 L9.765,19.865 L9.765,18.615 L8.69,17.99 L7.615,18.615 L7.615,19.865 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 36.98 18.35 L 38.06 17.73 L 38.06 16.48 L 36.98 15.85 L 35.91 16.48 L 35.91 17.73 Z" />
|
<path d="M13.61,20.49 L14.684999999999999,19.865 L14.684999999999999,18.615 L13.61,17.99 L12.535,18.615 L12.535,19.865 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 41.90 18.35 L 42.97 17.73 L 42.97 16.48 L 41.90 15.85 L 40.82 16.48 L 40.82 17.73 Z" />
|
<path d="M18.53,20.49 L19.605,19.865 L19.605,18.615 L18.53,17.99 L17.455000000000002,18.615 L17.455000000000002,19.865 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 46.82 18.35 L 47.89 17.73 L 47.89 16.48 L 46.82 15.85 L 45.74 16.48 L 45.74 17.73 Z" />
|
<path d="M23.45,20.49 L24.525,19.865 L24.525,18.615 L23.45,17.99 L22.375,18.615 L22.375,19.865 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 51.74 18.35 L 52.82 17.73 L 52.82 16.48 L 51.74 15.85 L 50.66 16.48 L 50.66 17.73 Z" />
|
<path d="M28.37,20.49 L29.445,19.865 L29.445,18.615 L28.37,17.99 L27.295,18.615 L27.295,19.865 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 56.66 18.35 L 57.74 17.73 L 57.74 16.48 L 56.66 15.85 L 55.58 16.48 L 55.58 17.73 Z" />
|
<path d="M33.29,20.49 L34.364999999999995,19.865 L34.364999999999995,18.615 L33.29,17.99 L32.215,18.615 L32.215,19.865 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 61.58 18.35 L 62.65 17.73 L 62.65 16.48 L 61.58 15.85 L 60.50 16.48 L 60.50 17.73 Z" />
|
<path d="M38.21,20.49 L39.285000000000004,19.865 L39.285000000000004,18.615 L38.21,17.99 L37.135,18.615 L37.135,19.865 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 66.50 18.35 L 67.57 17.73 L 67.57 16.48 L 66.50 15.85 L 65.42 16.48 L 65.42 17.73 Z" />
|
<path d="M43.129999999999995,20.49 L44.205,19.865 L44.205,18.615 L43.129999999999995,17.99 L42.05499999999999,18.615 L42.05499999999999,19.865 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 71.42 18.35 L 72.50 17.73 L 72.50 16.48 L 71.42 15.85 L 70.35 16.48 L 70.35 17.73 Z" />
|
<path d="M48.05,20.49 L49.125,19.865 L49.125,18.615 L48.05,17.99 L46.974999999999994,18.615 L46.974999999999994,19.865 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 8.69 20.49 L 9.77 19.87 L 9.77 18.62 L 8.69 17.99 L 7.62 18.62 L 7.62 19.87 Z" />
|
<path d="M52.97,20.49 L54.045,19.865 L54.045,18.615 L52.97,17.99 L51.894999999999996,18.615 L51.894999999999996,19.865 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 13.61 20.49 L 14.68 19.87 L 14.68 18.62 L 13.61 17.99 L 12.54 18.62 L 12.54 19.87 Z" />
|
<path d="M57.88999999999999,20.49 L58.964999999999996,19.865 L58.964999999999996,18.615 L57.88999999999999,17.99 L56.81499999999999,18.615 L56.81499999999999,19.865 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 18.53 20.49 L 19.61 19.87 L 19.61 18.62 L 18.53 17.99 L 17.46 18.62 L 17.46 19.87 Z" />
|
<path d="M62.809999999999995,20.49 L63.885,19.865 L63.885,18.615 L62.809999999999995,17.99 L61.73499999999999,18.615 L61.73499999999999,19.865 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 23.45 20.49 L 24.53 19.87 L 24.53 18.62 L 23.45 17.99 L 22.38 18.62 L 22.38 19.87 Z" />
|
<path d="M67.72999999999999,20.49 L68.805,19.865 L68.805,18.615 L67.72999999999999,17.99 L66.655,18.615 L66.655,19.865 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 28.37 20.49 L 29.45 19.87 L 29.45 18.62 L 28.37 17.99 L 27.30 18.62 L 27.30 19.87 Z" />
|
<path d="M72.65,20.49 L73.72500000000001,19.865 L73.72500000000001,18.615 L72.65,17.99 L71.575,18.615 L71.575,19.865 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 33.29 20.49 L 34.36 19.87 L 34.36 18.62 L 33.29 17.99 L 32.22 18.62 L 32.22 19.87 Z" />
|
<path d="M75.11,20.49 L76.185,19.865 L76.185,18.615 L75.11,17.99 L74.035,18.615 L74.035,19.865 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 38.21 20.49 L 39.29 19.87 L 39.29 18.62 L 38.21 17.99 L 37.14 18.62 L 37.14 19.87 Z" />
|
<path d="M76.34,22.625 L77.415,22.0 L77.415,20.75 L76.34,20.125 L75.265,20.75 L75.265,22.0 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 43.13 20.49 L 44.21 19.87 L 44.21 18.62 L 43.13 17.99 L 42.05 18.62 L 42.05 19.87 Z" />
|
<path d="M6.23,24.759999999999998 L7.305,24.134999999999998 L7.305,22.884999999999998 L6.23,22.259999999999998 L5.155,22.884999999999998 L5.155,24.134999999999998 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 48.05 20.49 L 49.13 19.87 L 49.13 18.62 L 48.05 17.99 L 46.97 18.62 L 46.97 19.87 Z" />
|
<path d="M11.15,24.759999999999998 L12.225000000000001,24.134999999999998 L12.225000000000001,22.884999999999998 L11.15,22.259999999999998 L10.075,22.884999999999998 L10.075,24.134999999999998 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 52.97 20.49 L 54.05 19.87 L 54.05 18.62 L 52.97 17.99 L 51.89 18.62 L 51.89 19.87 Z" />
|
<path d="M16.07,24.759999999999998 L17.145,24.134999999999998 L17.145,22.884999999999998 L16.07,22.259999999999998 L14.995000000000001,22.884999999999998 L14.995000000000001,24.134999999999998 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 57.89 20.49 L 58.96 19.87 L 58.96 18.62 L 57.89 17.99 L 56.81 18.62 L 56.81 19.87 Z" />
|
<path d="M20.990000000000002,24.759999999999998 L22.065,24.134999999999998 L22.065,22.884999999999998 L20.990000000000002,22.259999999999998 L19.915,22.884999999999998 L19.915,24.134999999999998 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 62.81 20.49 L 63.89 19.87 L 63.89 18.62 L 62.81 17.99 L 61.73 18.62 L 61.73 19.87 Z" />
|
<path d="M25.91,24.759999999999998 L26.985,24.134999999999998 L26.985,22.884999999999998 L25.91,22.259999999999998 L24.835,22.884999999999998 L24.835,24.134999999999998 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 67.73 20.49 L 68.81 19.87 L 68.81 18.62 L 67.73 17.99 L 66.66 18.62 L 66.66 19.87 Z" />
|
<path d="M30.830000000000002,24.759999999999998 L31.905,24.134999999999998 L31.905,22.884999999999998 L30.830000000000002,22.259999999999998 L29.755000000000003,22.884999999999998 L29.755000000000003,24.134999999999998 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 72.65 20.49 L 73.73 19.87 L 73.73 18.62 L 72.65 17.99 L 71.58 18.62 L 71.58 19.87 Z" />
|
<path d="M35.75,24.759999999999998 L36.825,24.134999999999998 L36.825,22.884999999999998 L35.75,22.259999999999998 L34.675,22.884999999999998 L34.675,24.134999999999998 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 75.11 20.49 L 76.19 19.87 L 76.19 18.62 L 75.11 17.99 L 74.04 18.62 L 74.04 19.87 Z" />
|
<path d="M40.669999999999995,24.759999999999998 L41.745,24.134999999999998 L41.745,22.884999999999998 L40.669999999999995,22.259999999999998 L39.59499999999999,22.884999999999998 L39.59499999999999,24.134999999999998 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 76.34 22.63 L 77.42 22.00 L 77.42 20.75 L 76.34 20.13 L 75.27 20.75 L 75.27 22.00 Z" />
|
<path d="M45.589999999999996,24.759999999999998 L46.665,24.134999999999998 L46.665,22.884999999999998 L45.589999999999996,22.259999999999998 L44.51499999999999,22.884999999999998 L44.51499999999999,24.134999999999998 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 6.23 24.76 L 7.31 24.13 L 7.31 22.88 L 6.23 22.26 L 5.16 22.88 L 5.16 24.13 Z" />
|
<path d="M50.51,24.759999999999998 L51.585,24.134999999999998 L51.585,22.884999999999998 L50.51,22.259999999999998 L49.434999999999995,22.884999999999998 L49.434999999999995,24.134999999999998 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 11.15 24.76 L 12.23 24.13 L 12.23 22.88 L 11.15 22.26 L 10.08 22.88 L 10.08 24.13 Z" />
|
<path d="M55.43,24.759999999999998 L56.505,24.134999999999998 L56.505,22.884999999999998 L55.43,22.259999999999998 L54.355,22.884999999999998 L54.355,24.134999999999998 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 16.07 24.76 L 17.15 24.13 L 17.15 22.88 L 16.07 22.26 L 15.00 22.88 L 15.00 24.13 Z" />
|
<path d="M60.349999999999994,24.759999999999998 L61.425,24.134999999999998 L61.425,22.884999999999998 L60.349999999999994,22.259999999999998 L59.27499999999999,22.884999999999998 L59.27499999999999,24.134999999999998 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 20.99 24.76 L 22.07 24.13 L 22.07 22.88 L 20.99 22.26 L 19.92 22.88 L 19.92 24.13 Z" />
|
<path d="M65.27,24.759999999999998 L66.345,24.134999999999998 L66.345,22.884999999999998 L65.27,22.259999999999998 L64.195,22.884999999999998 L64.195,24.134999999999998 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 25.91 24.76 L 26.99 24.13 L 26.99 22.88 L 25.91 22.26 L 24.84 22.88 L 24.84 24.13 Z" />
|
<path d="M70.19,24.759999999999998 L71.265,24.134999999999998 L71.265,22.884999999999998 L70.19,22.259999999999998 L69.115,22.884999999999998 L69.115,24.134999999999998 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 30.83 24.76 L 31.91 24.13 L 31.91 22.88 L 30.83 22.26 L 29.76 22.88 L 29.76 24.13 Z" />
|
<path d="M77.57000000000001,24.759999999999998 L78.64500000000001,24.134999999999998 L78.64500000000001,22.884999999999998 L77.57000000000001,22.259999999999998 L76.495,22.884999999999998 L76.495,24.134999999999998 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 35.75 24.76 L 36.83 24.13 L 36.83 22.88 L 35.75 22.26 L 34.68 22.88 L 34.68 24.13 Z" />
|
<path d="M9.92,26.894999999999996 L10.995000000000001,26.269999999999996 L10.995000000000001,25.019999999999996 L9.92,24.394999999999996 L8.844999999999999,25.019999999999996 L8.844999999999999,26.269999999999996 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 40.67 24.76 L 41.75 24.13 L 41.75 22.88 L 40.67 22.26 L 39.59 22.88 L 39.59 24.13 Z" />
|
<path d="M14.84,26.894999999999996 L15.915,26.269999999999996 L15.915,25.019999999999996 L14.84,24.394999999999996 L13.765,25.019999999999996 L13.765,26.269999999999996 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 45.59 24.76 L 46.67 24.13 L 46.67 22.88 L 45.59 22.26 L 44.51 22.88 L 44.51 24.13 Z" />
|
<path d="M19.76,26.894999999999996 L20.835,26.269999999999996 L20.835,25.019999999999996 L19.76,24.394999999999996 L18.685000000000002,25.019999999999996 L18.685000000000002,26.269999999999996 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 50.51 24.76 L 51.59 24.13 L 51.59 22.88 L 50.51 22.26 L 49.43 22.88 L 49.43 24.13 Z" />
|
<path d="M24.68,26.894999999999996 L25.755,26.269999999999996 L25.755,25.019999999999996 L24.68,24.394999999999996 L23.605,25.019999999999996 L23.605,26.269999999999996 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 55.43 24.76 L 56.51 24.13 L 56.51 22.88 L 55.43 22.26 L 54.36 22.88 L 54.36 24.13 Z" />
|
<path d="M27.14,26.894999999999996 L28.215,26.269999999999996 L28.215,25.019999999999996 L27.14,24.394999999999996 L26.065,25.019999999999996 L26.065,26.269999999999996 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 60.35 24.76 L 61.43 24.13 L 61.43 22.88 L 60.35 22.26 L 59.27 22.88 L 59.27 24.13 Z" />
|
<path d="M29.6,26.894999999999996 L30.675,26.269999999999996 L30.675,25.019999999999996 L29.6,24.394999999999996 L28.525000000000002,25.019999999999996 L28.525000000000002,26.269999999999996 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 65.27 24.76 L 66.35 24.13 L 66.35 22.88 L 65.27 22.26 L 64.20 22.88 L 64.20 24.13 Z" />
|
<path d="M32.06,26.894999999999996 L33.135000000000005,26.269999999999996 L33.135000000000005,25.019999999999996 L32.06,24.394999999999996 L30.985000000000003,25.019999999999996 L30.985000000000003,26.269999999999996 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 70.19 24.76 L 71.27 24.13 L 71.27 22.88 L 70.19 22.26 L 69.12 22.88 L 69.12 24.13 Z" />
|
<path d="M34.519999999999996,26.894999999999996 L35.595,26.269999999999996 L35.595,25.019999999999996 L34.519999999999996,24.394999999999996 L33.445,25.019999999999996 L33.445,26.269999999999996 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 77.57 24.76 L 78.65 24.13 L 78.65 22.88 L 77.57 22.26 L 76.50 22.88 L 76.50 24.13 Z" />
|
<path d="M41.89999999999999,26.894999999999996 L42.974999999999994,26.269999999999996 L42.974999999999994,25.019999999999996 L41.89999999999999,24.394999999999996 L40.82499999999999,25.019999999999996 L40.82499999999999,26.269999999999996 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 9.92 26.89 L 11.00 26.27 L 11.00 25.02 L 9.92 24.39 L 8.84 25.02 L 8.84 26.27 Z" />
|
<path d="M56.66,26.894999999999996 L57.735,26.269999999999996 L57.735,25.019999999999996 L56.66,24.394999999999996 L55.584999999999994,25.019999999999996 L55.584999999999994,26.269999999999996 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 14.84 26.89 L 15.92 26.27 L 15.92 25.02 L 14.84 24.39 L 13.77 25.02 L 13.77 26.27 Z" />
|
<path d="M59.11999999999999,26.894999999999996 L60.19499999999999,26.269999999999996 L60.19499999999999,25.019999999999996 L59.11999999999999,24.394999999999996 L58.04499999999999,25.019999999999996 L58.04499999999999,26.269999999999996 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 19.76 26.89 L 20.84 26.27 L 20.84 25.02 L 19.76 24.39 L 18.69 25.02 L 18.69 26.27 Z" />
|
<path d="M64.03999999999999,26.894999999999996 L65.115,26.269999999999996 L65.115,25.019999999999996 L64.03999999999999,24.394999999999996 L62.96499999999999,25.019999999999996 L62.96499999999999,26.269999999999996 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 24.68 26.89 L 25.76 26.27 L 25.76 25.02 L 24.68 24.39 L 23.61 25.02 L 23.61 26.27 Z" />
|
<path d="M68.96,26.894999999999996 L70.035,26.269999999999996 L70.035,25.019999999999996 L68.96,24.394999999999996 L67.88499999999999,25.019999999999996 L67.88499999999999,26.269999999999996 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 27.14 26.89 L 28.22 26.27 L 28.22 25.02 L 27.14 24.39 L 26.07 25.02 L 26.07 26.27 Z" />
|
<path d="M73.88000000000001,26.894999999999996 L74.95500000000001,26.269999999999996 L74.95500000000001,25.019999999999996 L73.88000000000001,24.394999999999996 L72.805,25.019999999999996 L72.805,26.269999999999996 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 29.60 26.89 L 30.68 26.27 L 30.68 25.02 L 29.60 24.39 L 28.53 25.02 L 28.53 26.27 Z" />
|
<path d="M33.29,29.029999999999998 L34.364999999999995,28.404999999999998 L34.364999999999995,27.154999999999998 L33.29,26.529999999999998 L32.215,27.154999999999998 L32.215,28.404999999999998 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 32.06 26.89 L 33.14 26.27 L 33.14 25.02 L 32.06 24.39 L 30.99 25.02 L 30.99 26.27 Z" />
|
<path d="M35.75,29.029999999999998 L36.825,28.404999999999998 L36.825,27.154999999999998 L35.75,26.529999999999998 L34.675,27.154999999999998 L34.675,28.404999999999998 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 34.52 26.89 L 35.60 26.27 L 35.60 25.02 L 34.52 24.39 L 33.45 25.02 L 33.45 26.27 Z" />
|
<path d="M40.669999999999995,29.029999999999998 L41.745,28.404999999999998 L41.745,27.154999999999998 L40.669999999999995,26.529999999999998 L39.59499999999999,27.154999999999998 L39.59499999999999,28.404999999999998 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 41.90 26.89 L 42.97 26.27 L 42.97 25.02 L 41.90 24.39 L 40.82 25.02 L 40.82 26.27 Z" />
|
<path d="M45.589999999999996,29.029999999999998 L46.665,28.404999999999998 L46.665,27.154999999999998 L45.589999999999996,26.529999999999998 L44.51499999999999,27.154999999999998 L44.51499999999999,28.404999999999998 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 56.66 26.89 L 57.74 26.27 L 57.74 25.02 L 56.66 24.39 L 55.58 25.02 L 55.58 26.27 Z" />
|
<path d="M55.43,29.029999999999998 L56.505,28.404999999999998 L56.505,27.154999999999998 L55.43,26.529999999999998 L54.355,27.154999999999998 L54.355,28.404999999999998 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 59.12 26.89 L 60.19 26.27 L 60.19 25.02 L 59.12 24.39 L 58.04 25.02 L 58.04 26.27 Z" />
|
<path d="M57.88999999999999,29.029999999999998 L58.964999999999996,28.404999999999998 L58.964999999999996,27.154999999999998 L57.88999999999999,26.529999999999998 L56.81499999999999,27.154999999999998 L56.81499999999999,28.404999999999998 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 64.04 26.89 L 65.12 26.27 L 65.12 25.02 L 64.04 24.39 L 62.96 25.02 L 62.96 26.27 Z" />
|
<path d="M7.46,31.165 L8.535,30.54 L8.535,29.29 L7.46,28.665 L6.385,29.29 L6.385,30.54 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 68.96 26.89 L 70.04 26.27 L 70.04 25.02 L 68.96 24.39 L 67.88 25.02 L 67.88 26.27 Z" />
|
<path d="M12.38,31.165 L13.455,30.54 L13.455,29.29 L12.38,28.665 L11.305,29.29 L11.305,30.54 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 73.88 26.89 L 74.96 26.27 L 74.96 25.02 L 73.88 24.39 L 72.81 25.02 L 72.81 26.27 Z" />
|
<path d="M17.3,31.165 L18.375,30.54 L18.375,29.29 L17.3,28.665 L16.225,29.29 L16.225,30.54 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 33.29 29.03 L 34.36 28.40 L 34.36 27.15 L 33.29 26.53 L 32.22 27.15 L 32.22 28.40 Z" />
|
<path d="M22.22,31.165 L23.294999999999998,30.54 L23.294999999999998,29.29 L22.22,28.665 L21.145,29.29 L21.145,30.54 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 35.75 29.03 L 36.83 28.40 L 36.83 27.15 L 35.75 26.53 L 34.68 27.15 L 34.68 28.40 Z" />
|
<path d="M32.06,31.165 L33.135000000000005,30.54 L33.135000000000005,29.29 L32.06,28.665 L30.985000000000003,29.29 L30.985000000000003,30.54 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 40.67 29.03 L 41.75 28.40 L 41.75 27.15 L 40.67 26.53 L 39.59 27.15 L 39.59 28.40 Z" />
|
<path d="M51.739999999999995,31.165 L52.815,30.54 L52.815,29.29 L51.739999999999995,28.665 L50.66499999999999,29.29 L50.66499999999999,30.54 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 45.59 29.03 L 46.67 28.40 L 46.67 27.15 L 45.59 26.53 L 44.51 27.15 L 44.51 28.40 Z" />
|
<path d="M56.66,31.165 L57.735,30.54 L57.735,29.29 L56.66,28.665 L55.584999999999994,29.29 L55.584999999999994,30.54 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 55.43 29.03 L 56.51 28.40 L 56.51 27.15 L 55.43 26.53 L 54.36 27.15 L 54.36 28.40 Z" />
|
<path d="M61.57999999999999,31.165 L62.654999999999994,30.54 L62.654999999999994,29.29 L61.57999999999999,28.665 L60.50499999999999,29.29 L60.50499999999999,30.54 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 57.89 29.03 L 58.96 28.40 L 58.96 27.15 L 57.89 26.53 L 56.81 27.15 L 56.81 28.40 Z" />
|
<path d="M66.5,31.165 L67.57499999999999,30.54 L67.57499999999999,29.29 L66.5,28.665 L65.42499999999998,29.29 L65.42499999999998,30.54 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 7.46 31.17 L 8.54 30.54 L 8.54 29.29 L 7.46 28.67 L 6.39 29.29 L 6.39 30.54 Z" />
|
<path d="M71.42,31.165 L72.495,30.54 L72.495,29.29 L71.42,28.665 L70.345,29.29 L70.345,30.54 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 12.38 31.17 L 13.46 30.54 L 13.46 29.29 L 12.38 28.67 L 11.31 29.29 L 11.31 30.54 Z" />
|
<path d="M76.34,31.165 L77.415,30.54 L77.415,29.29 L76.34,28.665 L75.265,29.29 L75.265,30.54 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 17.30 31.17 L 18.38 30.54 L 18.38 29.29 L 17.30 28.67 L 16.23 29.29 L 16.23 30.54 Z" />
|
<path d="M8.69,33.3 L9.765,32.675 L9.765,31.424999999999997 L8.69,30.799999999999997 L7.615,31.424999999999997 L7.615,32.675 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 22.22 31.17 L 23.29 30.54 L 23.29 29.29 L 22.22 28.67 L 21.15 29.29 L 21.15 30.54 Z" />
|
<path d="M13.61,33.3 L14.684999999999999,32.675 L14.684999999999999,31.424999999999997 L13.61,30.799999999999997 L12.535,31.424999999999997 L12.535,32.675 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 32.06 31.17 L 33.14 30.54 L 33.14 29.29 L 32.06 28.67 L 30.99 29.29 L 30.99 30.54 Z" />
|
<path d="M18.53,33.3 L19.605,32.675 L19.605,31.424999999999997 L18.53,30.799999999999997 L17.455000000000002,31.424999999999997 L17.455000000000002,32.675 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 51.74 31.17 L 52.82 30.54 L 52.82 29.29 L 51.74 28.67 L 50.66 29.29 L 50.66 30.54 Z" />
|
<path d="M23.45,33.3 L24.525,32.675 L24.525,31.424999999999997 L23.45,30.799999999999997 L22.375,31.424999999999997 L22.375,32.675 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 56.66 31.17 L 57.74 30.54 L 57.74 29.29 L 56.66 28.67 L 55.58 29.29 L 55.58 30.54 Z" />
|
<path d="M28.37,33.3 L29.445,32.675 L29.445,31.424999999999997 L28.37,30.799999999999997 L27.295,31.424999999999997 L27.295,32.675 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 61.58 31.17 L 62.65 30.54 L 62.65 29.29 L 61.58 28.67 L 60.50 29.29 L 60.50 30.54 Z" />
|
<path d="M30.830000000000002,33.3 L31.905,32.675 L31.905,31.424999999999997 L30.830000000000002,30.799999999999997 L29.755000000000003,31.424999999999997 L29.755000000000003,32.675 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 66.50 31.17 L 67.57 30.54 L 67.57 29.29 L 66.50 28.67 L 65.42 29.29 L 65.42 30.54 Z" />
|
<path d="M52.97,33.3 L54.045,32.675 L54.045,31.424999999999997 L52.97,30.799999999999997 L51.894999999999996,31.424999999999997 L51.894999999999996,32.675 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 71.42 31.17 L 72.50 30.54 L 72.50 29.29 L 71.42 28.67 L 70.35 29.29 L 70.35 30.54 Z" />
|
<path d="M55.43,33.3 L56.505,32.675 L56.505,31.424999999999997 L55.43,30.799999999999997 L54.355,31.424999999999997 L54.355,32.675 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 76.34 31.17 L 77.42 30.54 L 77.42 29.29 L 76.34 28.67 L 75.27 29.29 L 75.27 30.54 Z" />
|
<path d="M62.809999999999995,33.3 L63.885,32.675 L63.885,31.424999999999997 L62.809999999999995,30.799999999999997 L61.73499999999999,31.424999999999997 L61.73499999999999,32.675 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 8.69 33.30 L 9.77 32.68 L 9.77 31.42 L 8.69 30.80 L 7.62 31.42 L 7.62 32.68 Z" />
|
<path d="M67.72999999999999,33.3 L68.805,32.675 L68.805,31.424999999999997 L67.72999999999999,30.799999999999997 L66.655,31.424999999999997 L66.655,32.675 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 13.61 33.30 L 14.68 32.68 L 14.68 31.42 L 13.61 30.80 L 12.54 31.42 L 12.54 32.68 Z" />
|
<path d="M72.65,33.3 L73.72500000000001,32.675 L73.72500000000001,31.424999999999997 L72.65,30.799999999999997 L71.575,31.424999999999997 L71.575,32.675 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 18.53 33.30 L 19.61 32.68 L 19.61 31.42 L 18.53 30.80 L 17.46 31.42 L 17.46 32.68 Z" />
|
<path d="M75.11,33.3 L76.185,32.675 L76.185,31.424999999999997 L75.11,30.799999999999997 L74.035,31.424999999999997 L74.035,32.675 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 23.45 33.30 L 24.53 32.68 L 24.53 31.42 L 23.45 30.80 L 22.38 31.42 L 22.38 32.68 Z" />
|
<path d="M22.22,35.434999999999995 L23.294999999999998,34.809999999999995 L23.294999999999998,33.559999999999995 L22.22,32.934999999999995 L21.145,33.559999999999995 L21.145,34.809999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 28.37 33.30 L 29.45 32.68 L 29.45 31.42 L 28.37 30.80 L 27.30 31.42 L 27.30 32.68 Z" />
|
<path d="M51.739999999999995,35.434999999999995 L52.815,34.809999999999995 L52.815,33.559999999999995 L51.739999999999995,32.934999999999995 L50.66499999999999,33.559999999999995 L50.66499999999999,34.809999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 30.83 33.30 L 31.91 32.68 L 31.91 31.42 L 30.83 30.80 L 29.76 31.42 L 29.76 32.68 Z" />
|
<path d="M54.199999999999996,35.434999999999995 L55.275,34.809999999999995 L55.275,33.559999999999995 L54.199999999999996,32.934999999999995 L53.12499999999999,33.559999999999995 L53.12499999999999,34.809999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 52.97 33.30 L 54.05 32.68 L 54.05 31.42 L 52.97 30.80 L 51.89 31.42 L 51.89 32.68 Z" />
|
<path d="M56.66,35.434999999999995 L57.735,34.809999999999995 L57.735,33.559999999999995 L56.66,32.934999999999995 L55.584999999999994,33.559999999999995 L55.584999999999994,34.809999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 55.43 33.30 L 56.51 32.68 L 56.51 31.42 L 55.43 30.80 L 54.36 31.42 L 54.36 32.68 Z" />
|
<path d="M59.11999999999999,35.434999999999995 L60.19499999999999,34.809999999999995 L60.19499999999999,33.559999999999995 L59.11999999999999,32.934999999999995 L58.04499999999999,33.559999999999995 L58.04499999999999,34.809999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 62.81 33.30 L 63.89 32.68 L 63.89 31.42 L 62.81 30.80 L 61.73 31.42 L 61.73 32.68 Z" />
|
<path d="M6.23,37.56999999999999 L7.305,36.94499999999999 L7.305,35.69499999999999 L6.23,35.06999999999999 L5.155,35.69499999999999 L5.155,36.94499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 67.73 33.30 L 68.81 32.68 L 68.81 31.42 L 67.73 30.80 L 66.66 31.42 L 66.66 32.68 Z" />
|
<path d="M11.15,37.56999999999999 L12.225000000000001,36.94499999999999 L12.225000000000001,35.69499999999999 L11.15,35.06999999999999 L10.075,35.69499999999999 L10.075,36.94499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 72.65 33.30 L 73.73 32.68 L 73.73 31.42 L 72.65 30.80 L 71.58 31.42 L 71.58 32.68 Z" />
|
<path d="M16.07,37.56999999999999 L17.145,36.94499999999999 L17.145,35.69499999999999 L16.07,35.06999999999999 L14.995000000000001,35.69499999999999 L14.995000000000001,36.94499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 75.11 33.30 L 76.19 32.68 L 76.19 31.42 L 75.11 30.80 L 74.04 31.42 L 74.04 32.68 Z" />
|
<path d="M20.990000000000002,37.56999999999999 L22.065,36.94499999999999 L22.065,35.69499999999999 L20.990000000000002,35.06999999999999 L19.915,35.69499999999999 L19.915,36.94499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 22.22 35.43 L 23.29 34.81 L 23.29 33.56 L 22.22 32.93 L 21.15 33.56 L 21.15 34.81 Z" />
|
<path d="M25.91,37.56999999999999 L26.985,36.94499999999999 L26.985,35.69499999999999 L25.91,35.06999999999999 L24.835,35.69499999999999 L24.835,36.94499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 51.74 35.43 L 52.82 34.81 L 52.82 33.56 L 51.74 32.93 L 50.66 33.56 L 50.66 34.81 Z" />
|
<path d="M55.43,37.56999999999999 L56.505,36.94499999999999 L56.505,35.69499999999999 L55.43,35.06999999999999 L54.355,35.69499999999999 L54.355,36.94499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 54.20 35.43 L 55.28 34.81 L 55.28 33.56 L 54.20 32.93 L 53.12 33.56 L 53.12 34.81 Z" />
|
<path d="M60.349999999999994,37.56999999999999 L61.425,36.94499999999999 L61.425,35.69499999999999 L60.349999999999994,35.06999999999999 L59.27499999999999,35.69499999999999 L59.27499999999999,36.94499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 56.66 35.43 L 57.74 34.81 L 57.74 33.56 L 56.66 32.93 L 55.58 33.56 L 55.58 34.81 Z" />
|
<path d="M65.27,37.56999999999999 L66.345,36.94499999999999 L66.345,35.69499999999999 L65.27,35.06999999999999 L64.195,35.69499999999999 L64.195,36.94499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 59.12 35.43 L 60.19 34.81 L 60.19 33.56 L 59.12 32.93 L 58.04 33.56 L 58.04 34.81 Z" />
|
<path d="M70.19,37.56999999999999 L71.265,36.94499999999999 L71.265,35.69499999999999 L70.19,35.06999999999999 L69.115,35.69499999999999 L69.115,36.94499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 6.23 37.57 L 7.31 36.94 L 7.31 35.69 L 6.23 35.07 L 5.16 35.69 L 5.16 36.94 Z" />
|
<path d="M9.92,39.705 L10.995000000000001,39.08 L10.995000000000001,37.83 L9.92,37.205 L8.844999999999999,37.83 L8.844999999999999,39.08 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 11.15 37.57 L 12.23 36.94 L 12.23 35.69 L 11.15 35.07 L 10.08 35.69 L 10.08 36.94 Z" />
|
<path d="M14.84,39.705 L15.915,39.08 L15.915,37.83 L14.84,37.205 L13.765,37.83 L13.765,39.08 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 16.07 37.57 L 17.15 36.94 L 17.15 35.69 L 16.07 35.07 L 15.00 35.69 L 15.00 36.94 Z" />
|
<path d="M19.76,39.705 L20.835,39.08 L20.835,37.83 L19.76,37.205 L18.685000000000002,37.83 L18.685000000000002,39.08 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 20.99 37.57 L 22.07 36.94 L 22.07 35.69 L 20.99 35.07 L 19.92 35.69 L 19.92 36.94 Z" />
|
<path d="M22.22,39.705 L23.294999999999998,39.08 L23.294999999999998,37.83 L22.22,37.205 L21.145,37.83 L21.145,39.08 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 25.91 37.57 L 26.99 36.94 L 26.99 35.69 L 25.91 35.07 L 24.84 35.69 L 24.84 36.94 Z" />
|
<path d="M24.68,39.705 L25.755,39.08 L25.755,37.83 L24.68,37.205 L23.605,37.83 L23.605,39.08 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 55.43 37.57 L 56.51 36.94 L 56.51 35.69 L 55.43 35.07 L 54.36 35.69 L 54.36 36.94 Z" />
|
<path d="M27.14,39.705 L28.215,39.08 L28.215,37.83 L27.14,37.205 L26.065,37.83 L26.065,39.08 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 60.35 37.57 L 61.43 36.94 L 61.43 35.69 L 60.35 35.07 L 59.27 35.69 L 59.27 36.94 Z" />
|
<path d="M56.66,39.705 L57.735,39.08 L57.735,37.83 L56.66,37.205 L55.584999999999994,37.83 L55.584999999999994,39.08 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 65.27 37.57 L 66.35 36.94 L 66.35 35.69 L 65.27 35.07 L 64.20 35.69 L 64.20 36.94 Z" />
|
<path d="M64.03999999999999,39.705 L65.115,39.08 L65.115,37.83 L64.03999999999999,37.205 L62.96499999999999,37.83 L62.96499999999999,39.08 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 70.19 37.57 L 71.27 36.94 L 71.27 35.69 L 70.19 35.07 L 69.12 35.69 L 69.12 36.94 Z" />
|
<path d="M68.96,39.705 L70.035,39.08 L70.035,37.83 L68.96,37.205 L67.88499999999999,37.83 L67.88499999999999,39.08 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 9.92 39.71 L 11.00 39.08 L 11.00 37.83 L 9.92 37.21 L 8.84 37.83 L 8.84 39.08 Z" />
|
<path d="M73.88000000000001,39.705 L74.95500000000001,39.08 L74.95500000000001,37.83 L73.88000000000001,37.205 L72.805,37.83 L72.805,39.08 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 14.84 39.71 L 15.92 39.08 L 15.92 37.83 L 14.84 37.21 L 13.77 37.83 L 13.77 39.08 Z" />
|
<path d="M76.34,39.705 L77.415,39.08 L77.415,37.83 L76.34,37.205 L75.265,37.83 L75.265,39.08 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 19.76 39.71 L 20.84 39.08 L 20.84 37.83 L 19.76 37.21 L 18.69 37.83 L 18.69 39.08 Z" />
|
<path d="M25.91,41.839999999999996 L26.985,41.214999999999996 L26.985,39.964999999999996 L25.91,39.339999999999996 L24.835,39.964999999999996 L24.835,41.214999999999996 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 22.22 39.71 L 23.29 39.08 L 23.29 37.83 L 22.22 37.21 L 21.15 37.83 L 21.15 39.08 Z" />
|
<path d="M55.43,41.839999999999996 L56.505,41.214999999999996 L56.505,39.964999999999996 L55.43,39.339999999999996 L54.355,39.964999999999996 L54.355,41.214999999999996 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 24.68 39.71 L 25.76 39.08 L 25.76 37.83 L 24.68 37.21 L 23.61 37.83 L 23.61 39.08 Z" />
|
<path d="M75.11,41.839999999999996 L76.185,41.214999999999996 L76.185,39.964999999999996 L75.11,39.339999999999996 L74.035,39.964999999999996 L74.035,41.214999999999996 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 27.14 39.71 L 28.22 39.08 L 28.22 37.83 L 27.14 37.21 L 26.07 37.83 L 26.07 39.08 Z" />
|
<path d="M7.46,43.974999999999994 L8.535,43.349999999999994 L8.535,42.099999999999994 L7.46,41.474999999999994 L6.385,42.099999999999994 L6.385,43.349999999999994 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 56.66 39.71 L 57.74 39.08 L 57.74 37.83 L 56.66 37.21 L 55.58 37.83 L 55.58 39.08 Z" />
|
<path d="M12.38,43.974999999999994 L13.455,43.349999999999994 L13.455,42.099999999999994 L12.38,41.474999999999994 L11.305,42.099999999999994 L11.305,43.349999999999994 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 64.04 39.71 L 65.12 39.08 L 65.12 37.83 L 64.04 37.21 L 62.96 37.83 L 62.96 39.08 Z" />
|
<path d="M17.3,43.974999999999994 L18.375,43.349999999999994 L18.375,42.099999999999994 L17.3,41.474999999999994 L16.225,42.099999999999994 L16.225,43.349999999999994 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 68.96 39.71 L 70.04 39.08 L 70.04 37.83 L 68.96 37.21 L 67.88 37.83 L 67.88 39.08 Z" />
|
<path d="M27.14,43.974999999999994 L28.215,43.349999999999994 L28.215,42.099999999999994 L27.14,41.474999999999994 L26.065,42.099999999999994 L26.065,43.349999999999994 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 73.88 39.71 L 74.96 39.08 L 74.96 37.83 L 73.88 37.21 L 72.81 37.83 L 72.81 39.08 Z" />
|
<path d="M56.66,43.974999999999994 L57.735,43.349999999999994 L57.735,42.099999999999994 L56.66,41.474999999999994 L55.584999999999994,42.099999999999994 L55.584999999999994,43.349999999999994 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 76.34 39.71 L 77.42 39.08 L 77.42 37.83 L 76.34 37.21 L 75.27 37.83 L 75.27 39.08 Z" />
|
<path d="M59.11999999999999,43.974999999999994 L60.19499999999999,43.349999999999994 L60.19499999999999,42.099999999999994 L59.11999999999999,41.474999999999994 L58.04499999999999,42.099999999999994 L58.04499999999999,43.349999999999994 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 25.91 41.84 L 26.99 41.21 L 26.99 39.96 L 25.91 39.34 L 24.84 39.96 L 24.84 41.21 Z" />
|
<path d="M61.57999999999999,43.974999999999994 L62.654999999999994,43.349999999999994 L62.654999999999994,42.099999999999994 L61.57999999999999,41.474999999999994 L60.50499999999999,42.099999999999994 L60.50499999999999,43.349999999999994 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 55.43 41.84 L 56.51 41.21 L 56.51 39.96 L 55.43 39.34 L 54.36 39.96 L 54.36 41.21 Z" />
|
<path d="M66.5,43.974999999999994 L67.57499999999999,43.349999999999994 L67.57499999999999,42.099999999999994 L66.5,41.474999999999994 L65.42499999999998,42.099999999999994 L65.42499999999998,43.349999999999994 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 75.11 41.84 L 76.19 41.21 L 76.19 39.96 L 75.11 39.34 L 74.04 39.96 L 74.04 41.21 Z" />
|
<path d="M71.42,43.974999999999994 L72.495,43.349999999999994 L72.495,42.099999999999994 L71.42,41.474999999999994 L70.345,42.099999999999994 L70.345,43.349999999999994 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 7.46 43.97 L 8.54 43.35 L 8.54 42.10 L 7.46 41.47 L 6.39 42.10 L 6.39 43.35 Z" />
|
<path d="M8.69,46.10999999999999 L9.765,45.48499999999999 L9.765,44.23499999999999 L8.69,43.60999999999999 L7.615,44.23499999999999 L7.615,45.48499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 12.38 43.97 L 13.46 43.35 L 13.46 42.10 L 12.38 41.47 L 11.31 42.10 L 11.31 43.35 Z" />
|
<path d="M13.61,46.10999999999999 L14.684999999999999,45.48499999999999 L14.684999999999999,44.23499999999999 L13.61,43.60999999999999 L12.535,44.23499999999999 L12.535,45.48499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 17.30 43.97 L 18.38 43.35 L 18.38 42.10 L 17.30 41.47 L 16.23 42.10 L 16.23 43.35 Z" />
|
<path d="M18.53,46.10999999999999 L19.605,45.48499999999999 L19.605,44.23499999999999 L18.53,43.60999999999999 L17.455000000000002,44.23499999999999 L17.455000000000002,45.48499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 27.14 43.97 L 28.22 43.35 L 28.22 42.10 L 27.14 41.47 L 26.07 42.10 L 26.07 43.35 Z" />
|
<path d="M23.45,46.10999999999999 L24.525,45.48499999999999 L24.525,44.23499999999999 L23.45,43.60999999999999 L22.375,44.23499999999999 L22.375,45.48499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 56.66 43.97 L 57.74 43.35 L 57.74 42.10 L 56.66 41.47 L 55.58 42.10 L 55.58 43.35 Z" />
|
<path d="M28.37,46.10999999999999 L29.445,45.48499999999999 L29.445,44.23499999999999 L28.37,43.60999999999999 L27.295,44.23499999999999 L27.295,45.48499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 59.12 43.97 L 60.19 43.35 L 60.19 42.10 L 59.12 41.47 L 58.04 42.10 L 58.04 43.35 Z" />
|
<path d="M52.97,46.10999999999999 L54.045,45.48499999999999 L54.045,44.23499999999999 L52.97,43.60999999999999 L51.894999999999996,44.23499999999999 L51.894999999999996,45.48499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 61.58 43.97 L 62.65 43.35 L 62.65 42.10 L 61.58 41.47 L 60.50 42.10 L 60.50 43.35 Z" />
|
<path d="M55.43,46.10999999999999 L56.505,45.48499999999999 L56.505,44.23499999999999 L55.43,43.60999999999999 L54.355,44.23499999999999 L54.355,45.48499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 66.50 43.97 L 67.57 43.35 L 67.57 42.10 L 66.50 41.47 L 65.42 42.10 L 65.42 43.35 Z" />
|
<path d="M57.88999999999999,46.10999999999999 L58.964999999999996,45.48499999999999 L58.964999999999996,44.23499999999999 L57.88999999999999,43.60999999999999 L56.81499999999999,44.23499999999999 L56.81499999999999,45.48499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 71.42 43.97 L 72.50 43.35 L 72.50 42.10 L 71.42 41.47 L 70.35 42.10 L 70.35 43.35 Z" />
|
<path d="M62.809999999999995,46.10999999999999 L63.885,45.48499999999999 L63.885,44.23499999999999 L62.809999999999995,43.60999999999999 L61.73499999999999,44.23499999999999 L61.73499999999999,45.48499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 8.69 46.11 L 9.77 45.48 L 9.77 44.23 L 8.69 43.61 L 7.62 44.23 L 7.62 45.48 Z" />
|
<path d="M67.72999999999999,46.10999999999999 L68.805,45.48499999999999 L68.805,44.23499999999999 L67.72999999999999,43.60999999999999 L66.655,44.23499999999999 L66.655,45.48499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 13.61 46.11 L 14.68 45.48 L 14.68 44.23 L 13.61 43.61 L 12.54 44.23 L 12.54 45.48 Z" />
|
<path d="M72.65,46.10999999999999 L73.72500000000001,45.48499999999999 L73.72500000000001,44.23499999999999 L72.65,43.60999999999999 L71.575,44.23499999999999 L71.575,45.48499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 18.53 46.11 L 19.61 45.48 L 19.61 44.23 L 18.53 43.61 L 17.46 44.23 L 17.46 45.48 Z" />
|
<path d="M75.11,46.10999999999999 L76.185,45.48499999999999 L76.185,44.23499999999999 L75.11,43.60999999999999 L74.035,44.23499999999999 L74.035,45.48499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 23.45 46.11 L 24.53 45.48 L 24.53 44.23 L 23.45 43.61 L 22.38 44.23 L 22.38 45.48 Z" />
|
<path d="M77.57000000000001,46.10999999999999 L78.64500000000001,45.48499999999999 L78.64500000000001,44.23499999999999 L77.57000000000001,43.60999999999999 L76.495,44.23499999999999 L76.495,45.48499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 28.37 46.11 L 29.45 45.48 L 29.45 44.23 L 28.37 43.61 L 27.30 44.23 L 27.30 45.48 Z" />
|
<path d="M22.22,48.245 L23.294999999999998,47.62 L23.294999999999998,46.37 L22.22,45.745 L21.145,46.37 L21.145,47.62 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 52.97 46.11 L 54.05 45.48 L 54.05 44.23 L 52.97 43.61 L 51.89 44.23 L 51.89 45.48 Z" />
|
<path d="M27.14,48.245 L28.215,47.62 L28.215,46.37 L27.14,45.745 L26.065,46.37 L26.065,47.62 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 55.43 46.11 L 56.51 45.48 L 56.51 44.23 L 55.43 43.61 L 54.36 44.23 L 54.36 45.48 Z" />
|
<path d="M29.6,48.245 L30.675,47.62 L30.675,46.37 L29.6,45.745 L28.525000000000002,46.37 L28.525000000000002,47.62 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 57.89 46.11 L 58.96 45.48 L 58.96 44.23 L 57.89 43.61 L 56.81 44.23 L 56.81 45.48 Z" />
|
<path d="M54.199999999999996,48.245 L55.275,47.62 L55.275,46.37 L54.199999999999996,45.745 L53.12499999999999,46.37 L53.12499999999999,47.62 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 62.81 46.11 L 63.89 45.48 L 63.89 44.23 L 62.81 43.61 L 61.73 44.23 L 61.73 45.48 Z" />
|
<path d="M76.34,48.245 L77.415,47.62 L77.415,46.37 L76.34,45.745 L75.265,46.37 L75.265,47.62 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 67.73 46.11 L 68.81 45.48 L 68.81 44.23 L 67.73 43.61 L 66.66 44.23 L 66.66 45.48 Z" />
|
<path d="M6.23,50.379999999999995 L7.305,49.754999999999995 L7.305,48.504999999999995 L6.23,47.879999999999995 L5.155,48.504999999999995 L5.155,49.754999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 72.65 46.11 L 73.73 45.48 L 73.73 44.23 L 72.65 43.61 L 71.58 44.23 L 71.58 45.48 Z" />
|
<path d="M11.15,50.379999999999995 L12.225000000000001,49.754999999999995 L12.225000000000001,48.504999999999995 L11.15,47.879999999999995 L10.075,48.504999999999995 L10.075,49.754999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 75.11 46.11 L 76.19 45.48 L 76.19 44.23 L 75.11 43.61 L 74.04 44.23 L 74.04 45.48 Z" />
|
<path d="M16.07,50.379999999999995 L17.145,49.754999999999995 L17.145,48.504999999999995 L16.07,47.879999999999995 L14.995000000000001,48.504999999999995 L14.995000000000001,49.754999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 77.57 46.11 L 78.65 45.48 L 78.65 44.23 L 77.57 43.61 L 76.50 44.23 L 76.50 45.48 Z" />
|
<path d="M23.45,50.379999999999995 L24.525,49.754999999999995 L24.525,48.504999999999995 L23.45,47.879999999999995 L22.375,48.504999999999995 L22.375,49.754999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 22.22 48.25 L 23.29 47.62 L 23.29 46.37 L 22.22 45.75 L 21.15 46.37 L 21.15 47.62 Z" />
|
<path d="M28.37,50.379999999999995 L29.445,49.754999999999995 L29.445,48.504999999999995 L28.37,47.879999999999995 L27.295,48.504999999999995 L27.295,49.754999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 27.14 48.25 L 28.22 47.62 L 28.22 46.37 L 27.14 45.75 L 26.07 46.37 L 26.07 47.62 Z" />
|
<path d="M30.830000000000002,50.379999999999995 L31.905,49.754999999999995 L31.905,48.504999999999995 L30.830000000000002,47.879999999999995 L29.755000000000003,48.504999999999995 L29.755000000000003,49.754999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 29.60 48.25 L 30.68 47.62 L 30.68 46.37 L 29.60 45.75 L 28.53 46.37 L 28.53 47.62 Z" />
|
<path d="M55.43,50.379999999999995 L56.505,49.754999999999995 L56.505,48.504999999999995 L55.43,47.879999999999995 L54.355,48.504999999999995 L54.355,49.754999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 54.20 48.25 L 55.28 47.62 L 55.28 46.37 L 54.20 45.75 L 53.12 46.37 L 53.12 47.62 Z" />
|
<path d="M57.88999999999999,50.379999999999995 L58.964999999999996,49.754999999999995 L58.964999999999996,48.504999999999995 L57.88999999999999,47.879999999999995 L56.81499999999999,48.504999999999995 L56.81499999999999,49.754999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 76.34 48.25 L 77.42 47.62 L 77.42 46.37 L 76.34 45.75 L 75.27 46.37 L 75.27 47.62 Z" />
|
<path d="M60.349999999999994,50.379999999999995 L61.425,49.754999999999995 L61.425,48.504999999999995 L60.349999999999994,47.879999999999995 L59.27499999999999,48.504999999999995 L59.27499999999999,49.754999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 6.23 50.38 L 7.31 49.75 L 7.31 48.50 L 6.23 47.88 L 5.16 48.50 L 5.16 49.75 Z" />
|
<path d="M65.27,50.379999999999995 L66.345,49.754999999999995 L66.345,48.504999999999995 L65.27,47.879999999999995 L64.195,48.504999999999995 L64.195,49.754999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 11.15 50.38 L 12.23 49.75 L 12.23 48.50 L 11.15 47.88 L 10.08 48.50 L 10.08 49.75 Z" />
|
<path d="M70.19,50.379999999999995 L71.265,49.754999999999995 L71.265,48.504999999999995 L70.19,47.879999999999995 L69.115,48.504999999999995 L69.115,49.754999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 16.07 50.38 L 17.15 49.75 L 17.15 48.50 L 16.07 47.88 L 15.00 48.50 L 15.00 49.75 Z" />
|
<path d="M75.11,50.379999999999995 L76.185,49.754999999999995 L76.185,48.504999999999995 L75.11,47.879999999999995 L74.035,48.504999999999995 L74.035,49.754999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 23.45 50.38 L 24.53 49.75 L 24.53 48.50 L 23.45 47.88 L 22.38 48.50 L 22.38 49.75 Z" />
|
<path d="M77.57000000000001,50.379999999999995 L78.64500000000001,49.754999999999995 L78.64500000000001,48.504999999999995 L77.57000000000001,47.879999999999995 L76.495,48.504999999999995 L76.495,49.754999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 28.37 50.38 L 29.45 49.75 L 29.45 48.50 L 28.37 47.88 L 27.30 48.50 L 27.30 49.75 Z" />
|
<path d="M9.92,52.51499999999999 L10.995000000000001,51.88999999999999 L10.995000000000001,50.63999999999999 L9.92,50.01499999999999 L8.844999999999999,50.63999999999999 L8.844999999999999,51.88999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 30.83 50.38 L 31.91 49.75 L 31.91 48.50 L 30.83 47.88 L 29.76 48.50 L 29.76 49.75 Z" />
|
<path d="M14.84,52.51499999999999 L15.915,51.88999999999999 L15.915,50.63999999999999 L14.84,50.01499999999999 L13.765,50.63999999999999 L13.765,51.88999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 55.43 50.38 L 56.51 49.75 L 56.51 48.50 L 55.43 47.88 L 54.36 48.50 L 54.36 49.75 Z" />
|
<path d="M19.76,52.51499999999999 L20.835,51.88999999999999 L20.835,50.63999999999999 L19.76,50.01499999999999 L18.685000000000002,50.63999999999999 L18.685000000000002,51.88999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 57.89 50.38 L 58.96 49.75 L 58.96 48.50 L 57.89 47.88 L 56.81 48.50 L 56.81 49.75 Z" />
|
<path d="M24.68,52.51499999999999 L25.755,51.88999999999999 L25.755,50.63999999999999 L24.68,50.01499999999999 L23.605,50.63999999999999 L23.605,51.88999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 60.35 50.38 L 61.43 49.75 L 61.43 48.50 L 60.35 47.88 L 59.27 48.50 L 59.27 49.75 Z" />
|
<path d="M29.6,52.51499999999999 L30.675,51.88999999999999 L30.675,50.63999999999999 L29.6,50.01499999999999 L28.525000000000002,50.63999999999999 L28.525000000000002,51.88999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 65.27 50.38 L 66.35 49.75 L 66.35 48.50 L 65.27 47.88 L 64.20 48.50 L 64.20 49.75 Z" />
|
<path d="M49.279999999999994,52.51499999999999 L50.355,51.88999999999999 L50.355,50.63999999999999 L49.279999999999994,50.01499999999999 L48.20499999999999,50.63999999999999 L48.20499999999999,51.88999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 70.19 50.38 L 71.27 49.75 L 71.27 48.50 L 70.19 47.88 L 69.12 48.50 L 69.12 49.75 Z" />
|
<path d="M51.739999999999995,52.51499999999999 L52.815,51.88999999999999 L52.815,50.63999999999999 L51.739999999999995,50.01499999999999 L50.66499999999999,50.63999999999999 L50.66499999999999,51.88999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 75.11 50.38 L 76.19 49.75 L 76.19 48.50 L 75.11 47.88 L 74.04 48.50 L 74.04 49.75 Z" />
|
<path d="M54.199999999999996,52.51499999999999 L55.275,51.88999999999999 L55.275,50.63999999999999 L54.199999999999996,50.01499999999999 L53.12499999999999,50.63999999999999 L53.12499999999999,51.88999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 77.57 50.38 L 78.65 49.75 L 78.65 48.50 L 77.57 47.88 L 76.50 48.50 L 76.50 49.75 Z" />
|
<path d="M56.66,52.51499999999999 L57.735,51.88999999999999 L57.735,50.63999999999999 L56.66,50.01499999999999 L55.584999999999994,50.63999999999999 L55.584999999999994,51.88999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 9.92 52.51 L 11.00 51.89 L 11.00 50.64 L 9.92 50.01 L 8.84 50.64 L 8.84 51.89 Z" />
|
<path d="M59.11999999999999,52.51499999999999 L60.19499999999999,51.88999999999999 L60.19499999999999,50.63999999999999 L59.11999999999999,50.01499999999999 L58.04499999999999,50.63999999999999 L58.04499999999999,51.88999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 14.84 52.51 L 15.92 51.89 L 15.92 50.64 L 14.84 50.01 L 13.77 50.64 L 13.77 51.89 Z" />
|
<path d="M64.03999999999999,52.51499999999999 L65.115,51.88999999999999 L65.115,50.63999999999999 L64.03999999999999,50.01499999999999 L62.96499999999999,50.63999999999999 L62.96499999999999,51.88999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 19.76 52.51 L 20.84 51.89 L 20.84 50.64 L 19.76 50.01 L 18.69 50.64 L 18.69 51.89 Z" />
|
<path d="M68.96,52.51499999999999 L70.035,51.88999999999999 L70.035,50.63999999999999 L68.96,50.01499999999999 L67.88499999999999,50.63999999999999 L67.88499999999999,51.88999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 24.68 52.51 L 25.76 51.89 L 25.76 50.64 L 24.68 50.01 L 23.61 50.64 L 23.61 51.89 Z" />
|
<path d="M73.88000000000001,52.51499999999999 L74.95500000000001,51.88999999999999 L74.95500000000001,50.63999999999999 L73.88000000000001,50.01499999999999 L72.805,50.63999999999999 L72.805,51.88999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 29.60 52.51 L 30.68 51.89 L 30.68 50.64 L 29.60 50.01 L 28.53 50.64 L 28.53 51.89 Z" />
|
<path d="M25.91,54.65 L26.985,54.025 L26.985,52.775 L25.91,52.15 L24.835,52.775 L24.835,54.025 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 49.28 52.51 L 50.36 51.89 L 50.36 50.64 L 49.28 50.01 L 48.20 50.64 L 48.20 51.89 Z" />
|
<path d="M28.37,54.65 L29.445,54.025 L29.445,52.775 L28.37,52.15 L27.295,52.775 L27.295,54.025 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 51.74 52.51 L 52.82 51.89 L 52.82 50.64 L 51.74 50.01 L 50.66 50.64 L 50.66 51.89 Z" />
|
<path d="M30.830000000000002,54.65 L31.905,54.025 L31.905,52.775 L30.830000000000002,52.15 L29.755000000000003,52.775 L29.755000000000003,54.025 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 54.20 52.51 L 55.28 51.89 L 55.28 50.64 L 54.20 50.01 L 53.12 50.64 L 53.12 51.89 Z" />
|
<path d="M35.75,54.65 L36.825,54.025 L36.825,52.775 L35.75,52.15 L34.675,52.775 L34.675,54.025 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 56.66 52.51 L 57.74 51.89 L 57.74 50.64 L 56.66 50.01 L 55.58 50.64 L 55.58 51.89 Z" />
|
<path d="M45.589999999999996,54.65 L46.665,54.025 L46.665,52.775 L45.589999999999996,52.15 L44.51499999999999,52.775 L44.51499999999999,54.025 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 59.12 52.51 L 60.19 51.89 L 60.19 50.64 L 59.12 50.01 L 58.04 50.64 L 58.04 51.89 Z" />
|
<path d="M48.05,54.65 L49.125,54.025 L49.125,52.775 L48.05,52.15 L46.974999999999994,52.775 L46.974999999999994,54.025 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 64.04 52.51 L 65.12 51.89 L 65.12 50.64 L 64.04 50.01 L 62.96 50.64 L 62.96 51.89 Z" />
|
<path d="M50.51,54.65 L51.585,54.025 L51.585,52.775 L50.51,52.15 L49.434999999999995,52.775 L49.434999999999995,54.025 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 68.96 52.51 L 70.04 51.89 L 70.04 50.64 L 68.96 50.01 L 67.88 50.64 L 67.88 51.89 Z" />
|
<path d="M55.43,54.65 L56.505,54.025 L56.505,52.775 L55.43,52.15 L54.355,52.775 L54.355,54.025 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 73.88 52.51 L 74.96 51.89 L 74.96 50.64 L 73.88 50.01 L 72.81 50.64 L 72.81 51.89 Z" />
|
<path d="M75.11,54.65 L76.185,54.025 L76.185,52.775 L75.11,52.15 L74.035,52.775 L74.035,54.025 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 25.91 54.65 L 26.99 54.03 L 26.99 52.78 L 25.91 52.15 L 24.84 52.78 L 24.84 54.03 Z" />
|
<path d="M77.57000000000001,54.65 L78.64500000000001,54.025 L78.64500000000001,52.775 L77.57000000000001,52.15 L76.495,52.775 L76.495,54.025 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 28.37 54.65 L 29.45 54.03 L 29.45 52.78 L 28.37 52.15 L 27.30 52.78 L 27.30 54.03 Z" />
|
<path d="M7.46,56.785 L8.535,56.16 L8.535,54.91 L7.46,54.285 L6.385,54.91 L6.385,56.16 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 30.83 54.65 L 31.91 54.03 L 31.91 52.78 L 30.83 52.15 L 29.76 52.78 L 29.76 54.03 Z" />
|
<path d="M12.38,56.785 L13.455,56.16 L13.455,54.91 L12.38,54.285 L11.305,54.91 L11.305,56.16 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 35.75 54.65 L 36.83 54.03 L 36.83 52.78 L 35.75 52.15 L 34.68 52.78 L 34.68 54.03 Z" />
|
<path d="M17.3,56.785 L18.375,56.16 L18.375,54.91 L17.3,54.285 L16.225,54.91 L16.225,56.16 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 45.59 54.65 L 46.67 54.03 L 46.67 52.78 L 45.59 52.15 L 44.51 52.78 L 44.51 54.03 Z" />
|
<path d="M22.22,56.785 L23.294999999999998,56.16 L23.294999999999998,54.91 L22.22,54.285 L21.145,54.91 L21.145,56.16 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 48.05 54.65 L 49.13 54.03 L 49.13 52.78 L 48.05 52.15 L 46.97 52.78 L 46.97 54.03 Z" />
|
<path d="M27.14,56.785 L28.215,56.16 L28.215,54.91 L27.14,54.285 L26.065,54.91 L26.065,56.16 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 50.51 54.65 L 51.59 54.03 L 51.59 52.78 L 50.51 52.15 L 49.43 52.78 L 49.43 54.03 Z" />
|
<path d="M32.06,56.785 L33.135000000000005,56.16 L33.135000000000005,54.91 L32.06,54.285 L30.985000000000003,54.91 L30.985000000000003,56.16 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 55.43 54.65 L 56.51 54.03 L 56.51 52.78 L 55.43 52.15 L 54.36 52.78 L 54.36 54.03 Z" />
|
<path d="M34.519999999999996,56.785 L35.595,56.16 L35.595,54.91 L34.519999999999996,54.285 L33.445,54.91 L33.445,56.16 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 75.11 54.65 L 76.19 54.03 L 76.19 52.78 L 75.11 52.15 L 74.04 52.78 L 74.04 54.03 Z" />
|
<path d="M36.980000000000004,56.785 L38.055,56.16 L38.055,54.91 L36.980000000000004,54.285 L35.905,54.91 L35.905,56.16 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 77.57 54.65 L 78.65 54.03 L 78.65 52.78 L 77.57 52.15 L 76.50 52.78 L 76.50 54.03 Z" />
|
<path d="M39.44,56.785 L40.515,56.16 L40.515,54.91 L39.44,54.285 L38.364999999999995,54.91 L38.364999999999995,56.16 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 7.46 56.79 L 8.54 56.16 L 8.54 54.91 L 7.46 54.29 L 6.39 54.91 L 6.39 56.16 Z" />
|
<path d="M41.89999999999999,56.785 L42.974999999999994,56.16 L42.974999999999994,54.91 L41.89999999999999,54.285 L40.82499999999999,54.91 L40.82499999999999,56.16 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 12.38 56.79 L 13.46 56.16 L 13.46 54.91 L 12.38 54.29 L 11.31 54.91 L 11.31 56.16 Z" />
|
<path d="M44.35999999999999,56.785 L45.434999999999995,56.16 L45.434999999999995,54.91 L44.35999999999999,54.285 L43.28499999999999,54.91 L43.28499999999999,56.16 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 17.30 56.79 L 18.38 56.16 L 18.38 54.91 L 17.30 54.29 L 16.23 54.91 L 16.23 56.16 Z" />
|
<path d="M49.279999999999994,56.785 L50.355,56.16 L50.355,54.91 L49.279999999999994,54.285 L48.20499999999999,54.91 L48.20499999999999,56.16 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 22.22 56.79 L 23.29 56.16 L 23.29 54.91 L 22.22 54.29 L 21.15 54.91 L 21.15 56.16 Z" />
|
<path d="M51.739999999999995,56.785 L52.815,56.16 L52.815,54.91 L51.739999999999995,54.285 L50.66499999999999,54.91 L50.66499999999999,56.16 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 27.14 56.79 L 28.22 56.16 L 28.22 54.91 L 27.14 54.29 L 26.07 54.91 L 26.07 56.16 Z" />
|
<path d="M61.57999999999999,56.785 L62.654999999999994,56.16 L62.654999999999994,54.91 L61.57999999999999,54.285 L60.50499999999999,54.91 L60.50499999999999,56.16 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 32.06 56.79 L 33.14 56.16 L 33.14 54.91 L 32.06 54.29 L 30.99 54.91 L 30.99 56.16 Z" />
|
<path d="M66.5,56.785 L67.57499999999999,56.16 L67.57499999999999,54.91 L66.5,54.285 L65.42499999999998,54.91 L65.42499999999998,56.16 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 34.52 56.79 L 35.60 56.16 L 35.60 54.91 L 34.52 54.29 L 33.45 54.91 L 33.45 56.16 Z" />
|
<path d="M71.42,56.785 L72.495,56.16 L72.495,54.91 L71.42,54.285 L70.345,54.91 L70.345,56.16 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 36.98 56.79 L 38.06 56.16 L 38.06 54.91 L 36.98 54.29 L 35.91 54.91 L 35.91 56.16 Z" />
|
<path d="M76.34,56.785 L77.415,56.16 L77.415,54.91 L76.34,54.285 L75.265,54.91 L75.265,56.16 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 39.44 56.79 L 40.52 56.16 L 40.52 54.91 L 39.44 54.29 L 38.36 54.91 L 38.36 56.16 Z" />
|
<path d="M8.69,58.919999999999995 L9.765,58.294999999999995 L9.765,57.044999999999995 L8.69,56.419999999999995 L7.615,57.044999999999995 L7.615,58.294999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 41.90 56.79 L 42.97 56.16 L 42.97 54.91 L 41.90 54.29 L 40.82 54.91 L 40.82 56.16 Z" />
|
<path d="M13.61,58.919999999999995 L14.684999999999999,58.294999999999995 L14.684999999999999,57.044999999999995 L13.61,56.419999999999995 L12.535,57.044999999999995 L12.535,58.294999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 44.36 56.79 L 45.43 56.16 L 45.43 54.91 L 44.36 54.29 L 43.28 54.91 L 43.28 56.16 Z" />
|
<path d="M18.53,58.919999999999995 L19.605,58.294999999999995 L19.605,57.044999999999995 L18.53,56.419999999999995 L17.455000000000002,57.044999999999995 L17.455000000000002,58.294999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 49.28 56.79 L 50.36 56.16 L 50.36 54.91 L 49.28 54.29 L 48.20 54.91 L 48.20 56.16 Z" />
|
<path d="M23.45,58.919999999999995 L24.525,58.294999999999995 L24.525,57.044999999999995 L23.45,56.419999999999995 L22.375,57.044999999999995 L22.375,58.294999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 51.74 56.79 L 52.82 56.16 L 52.82 54.91 L 51.74 54.29 L 50.66 54.91 L 50.66 56.16 Z" />
|
<path d="M28.37,58.919999999999995 L29.445,58.294999999999995 L29.445,57.044999999999995 L28.37,56.419999999999995 L27.295,57.044999999999995 L27.295,58.294999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 61.58 56.79 L 62.65 56.16 L 62.65 54.91 L 61.58 54.29 L 60.50 54.91 L 60.50 56.16 Z" />
|
<path d="M33.29,58.919999999999995 L34.364999999999995,58.294999999999995 L34.364999999999995,57.044999999999995 L33.29,56.419999999999995 L32.215,57.044999999999995 L32.215,58.294999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 66.50 56.79 L 67.57 56.16 L 67.57 54.91 L 66.50 54.29 L 65.42 54.91 L 65.42 56.16 Z" />
|
<path d="M38.21,58.919999999999995 L39.285000000000004,58.294999999999995 L39.285000000000004,57.044999999999995 L38.21,56.419999999999995 L37.135,57.044999999999995 L37.135,58.294999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 71.42 56.79 L 72.50 56.16 L 72.50 54.91 L 71.42 54.29 L 70.35 54.91 L 70.35 56.16 Z" />
|
<path d="M43.129999999999995,58.919999999999995 L44.205,58.294999999999995 L44.205,57.044999999999995 L43.129999999999995,56.419999999999995 L42.05499999999999,57.044999999999995 L42.05499999999999,58.294999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 76.34 56.79 L 77.42 56.16 L 77.42 54.91 L 76.34 54.29 L 75.27 54.91 L 75.27 56.16 Z" />
|
<path d="M48.05,58.919999999999995 L49.125,58.294999999999995 L49.125,57.044999999999995 L48.05,56.419999999999995 L46.974999999999994,57.044999999999995 L46.974999999999994,58.294999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 8.69 58.92 L 9.77 58.29 L 9.77 57.04 L 8.69 56.42 L 7.62 57.04 L 7.62 58.29 Z" />
|
<path d="M52.97,58.919999999999995 L54.045,58.294999999999995 L54.045,57.044999999999995 L52.97,56.419999999999995 L51.894999999999996,57.044999999999995 L51.894999999999996,58.294999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 13.61 58.92 L 14.68 58.29 L 14.68 57.04 L 13.61 56.42 L 12.54 57.04 L 12.54 58.29 Z" />
|
<path d="M55.43,58.919999999999995 L56.505,58.294999999999995 L56.505,57.044999999999995 L55.43,56.419999999999995 L54.355,57.044999999999995 L54.355,58.294999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 18.53 58.92 L 19.61 58.29 L 19.61 57.04 L 18.53 56.42 L 17.46 57.04 L 17.46 58.29 Z" />
|
<path d="M57.88999999999999,58.919999999999995 L58.964999999999996,58.294999999999995 L58.964999999999996,57.044999999999995 L57.88999999999999,56.419999999999995 L56.81499999999999,57.044999999999995 L56.81499999999999,58.294999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 23.45 58.92 L 24.53 58.29 L 24.53 57.04 L 23.45 56.42 L 22.38 57.04 L 22.38 58.29 Z" />
|
<path d="M60.349999999999994,58.919999999999995 L61.425,58.294999999999995 L61.425,57.044999999999995 L60.349999999999994,56.419999999999995 L59.27499999999999,57.044999999999995 L59.27499999999999,58.294999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 28.37 58.92 L 29.45 58.29 L 29.45 57.04 L 28.37 56.42 L 27.30 57.04 L 27.30 58.29 Z" />
|
<path d="M62.809999999999995,58.919999999999995 L63.885,58.294999999999995 L63.885,57.044999999999995 L62.809999999999995,56.419999999999995 L61.73499999999999,57.044999999999995 L61.73499999999999,58.294999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 33.29 58.92 L 34.36 58.29 L 34.36 57.04 L 33.29 56.42 L 32.22 57.04 L 32.22 58.29 Z" />
|
<path d="M67.72999999999999,58.919999999999995 L68.805,58.294999999999995 L68.805,57.044999999999995 L67.72999999999999,56.419999999999995 L66.655,57.044999999999995 L66.655,58.294999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 38.21 58.92 L 39.29 58.29 L 39.29 57.04 L 38.21 56.42 L 37.14 57.04 L 37.14 58.29 Z" />
|
<path d="M72.65,58.919999999999995 L73.72500000000001,58.294999999999995 L73.72500000000001,57.044999999999995 L72.65,56.419999999999995 L71.575,57.044999999999995 L71.575,58.294999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 43.13 58.92 L 44.21 58.29 L 44.21 57.04 L 43.13 56.42 L 42.05 57.04 L 42.05 58.29 Z" />
|
<path d="M75.11,58.919999999999995 L76.185,58.294999999999995 L76.185,57.044999999999995 L75.11,56.419999999999995 L74.035,57.044999999999995 L74.035,58.294999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 48.05 58.92 L 49.13 58.29 L 49.13 57.04 L 48.05 56.42 L 46.97 57.04 L 46.97 58.29 Z" />
|
<path d="M77.57000000000001,58.919999999999995 L78.64500000000001,58.294999999999995 L78.64500000000001,57.044999999999995 L77.57000000000001,56.419999999999995 L76.495,57.044999999999995 L76.495,58.294999999999995 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 52.97 58.92 L 54.05 58.29 L 54.05 57.04 L 52.97 56.42 L 51.89 57.04 L 51.89 58.29 Z" />
|
<path d="M56.66,61.05499999999999 L57.735,60.42999999999999 L57.735,59.17999999999999 L56.66,58.55499999999999 L55.584999999999994,59.17999999999999 L55.584999999999994,60.42999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 55.43 58.92 L 56.51 58.29 L 56.51 57.04 L 55.43 56.42 L 54.36 57.04 L 54.36 58.29 Z" />
|
<path d="M59.11999999999999,61.05499999999999 L60.19499999999999,60.42999999999999 L60.19499999999999,59.17999999999999 L59.11999999999999,58.55499999999999 L58.04499999999999,59.17999999999999 L58.04499999999999,60.42999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 57.89 58.92 L 58.96 58.29 L 58.96 57.04 L 57.89 56.42 L 56.81 57.04 L 56.81 58.29 Z" />
|
<path d="M61.57999999999999,61.05499999999999 L62.654999999999994,60.42999999999999 L62.654999999999994,59.17999999999999 L61.57999999999999,58.55499999999999 L60.50499999999999,59.17999999999999 L60.50499999999999,60.42999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 60.35 58.92 L 61.43 58.29 L 61.43 57.04 L 60.35 56.42 L 59.27 57.04 L 59.27 58.29 Z" />
|
<path d="M64.03999999999999,61.05499999999999 L65.115,60.42999999999999 L65.115,59.17999999999999 L64.03999999999999,58.55499999999999 L62.96499999999999,59.17999999999999 L62.96499999999999,60.42999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 62.81 58.92 L 63.89 58.29 L 63.89 57.04 L 62.81 56.42 L 61.73 57.04 L 61.73 58.29 Z" />
|
<path d="M68.96,61.05499999999999 L70.035,60.42999999999999 L70.035,59.17999999999999 L68.96,58.55499999999999 L67.88499999999999,59.17999999999999 L67.88499999999999,60.42999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 67.73 58.92 L 68.81 58.29 L 68.81 57.04 L 67.73 56.42 L 66.66 57.04 L 66.66 58.29 Z" />
|
<path d="M73.88000000000001,61.05499999999999 L74.95500000000001,60.42999999999999 L74.95500000000001,59.17999999999999 L73.88000000000001,58.55499999999999 L72.805,59.17999999999999 L72.805,60.42999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 72.65 58.92 L 73.73 58.29 L 73.73 57.04 L 72.65 56.42 L 71.58 57.04 L 71.58 58.29 Z" />
|
<path d="M76.34,61.05499999999999 L77.415,60.42999999999999 L77.415,59.17999999999999 L76.34,58.55499999999999 L75.265,59.17999999999999 L75.265,60.42999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 75.11 58.92 L 76.19 58.29 L 76.19 57.04 L 75.11 56.42 L 74.04 57.04 L 74.04 58.29 Z" />
|
<path d="M6.23,63.18999999999999 L7.305,62.56499999999999 L7.305,61.31499999999999 L6.23,60.68999999999999 L5.155,61.31499999999999 L5.155,62.56499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 77.57 58.92 L 78.65 58.29 L 78.65 57.04 L 77.57 56.42 L 76.50 57.04 L 76.50 58.29 Z" />
|
<path d="M11.15,63.18999999999999 L12.225000000000001,62.56499999999999 L12.225000000000001,61.31499999999999 L11.15,60.68999999999999 L10.075,61.31499999999999 L10.075,62.56499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 56.66 61.05 L 57.74 60.43 L 57.74 59.18 L 56.66 58.55 L 55.58 59.18 L 55.58 60.43 Z" />
|
<path d="M16.07,63.18999999999999 L17.145,62.56499999999999 L17.145,61.31499999999999 L16.07,60.68999999999999 L14.995000000000001,61.31499999999999 L14.995000000000001,62.56499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 59.12 61.05 L 60.19 60.43 L 60.19 59.18 L 59.12 58.55 L 58.04 59.18 L 58.04 60.43 Z" />
|
<path d="M20.990000000000002,63.18999999999999 L22.065,62.56499999999999 L22.065,61.31499999999999 L20.990000000000002,60.68999999999999 L19.915,61.31499999999999 L19.915,62.56499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 61.58 61.05 L 62.65 60.43 L 62.65 59.18 L 61.58 58.55 L 60.50 59.18 L 60.50 60.43 Z" />
|
<path d="M25.91,63.18999999999999 L26.985,62.56499999999999 L26.985,61.31499999999999 L25.91,60.68999999999999 L24.835,61.31499999999999 L24.835,62.56499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 64.04 61.05 L 65.12 60.43 L 65.12 59.18 L 64.04 58.55 L 62.96 59.18 L 62.96 60.43 Z" />
|
<path d="M30.830000000000002,63.18999999999999 L31.905,62.56499999999999 L31.905,61.31499999999999 L30.830000000000002,60.68999999999999 L29.755000000000003,61.31499999999999 L29.755000000000003,62.56499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 68.96 61.05 L 70.04 60.43 L 70.04 59.18 L 68.96 58.55 L 67.88 59.18 L 67.88 60.43 Z" />
|
<path d="M35.75,63.18999999999999 L36.825,62.56499999999999 L36.825,61.31499999999999 L35.75,60.68999999999999 L34.675,61.31499999999999 L34.675,62.56499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 73.88 61.05 L 74.96 60.43 L 74.96 59.18 L 73.88 58.55 L 72.81 59.18 L 72.81 60.43 Z" />
|
<path d="M40.669999999999995,63.18999999999999 L41.745,62.56499999999999 L41.745,61.31499999999999 L40.669999999999995,60.68999999999999 L39.59499999999999,61.31499999999999 L39.59499999999999,62.56499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 76.34 61.05 L 77.42 60.43 L 77.42 59.18 L 76.34 58.55 L 75.27 59.18 L 75.27 60.43 Z" />
|
<path d="M45.589999999999996,63.18999999999999 L46.665,62.56499999999999 L46.665,61.31499999999999 L45.589999999999996,60.68999999999999 L44.51499999999999,61.31499999999999 L44.51499999999999,62.56499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 6.23 63.19 L 7.31 62.56 L 7.31 61.31 L 6.23 60.69 L 5.16 61.31 L 5.16 62.56 Z" />
|
<path d="M50.51,63.18999999999999 L51.585,62.56499999999999 L51.585,61.31499999999999 L50.51,60.68999999999999 L49.434999999999995,61.31499999999999 L49.434999999999995,62.56499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 11.15 63.19 L 12.23 62.56 L 12.23 61.31 L 11.15 60.69 L 10.08 61.31 L 10.08 62.56 Z" />
|
<path d="M75.11,63.18999999999999 L76.185,62.56499999999999 L76.185,61.31499999999999 L75.11,60.68999999999999 L74.035,61.31499999999999 L74.035,62.56499999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 16.07 63.19 L 17.15 62.56 L 17.15 61.31 L 16.07 60.69 L 15.00 61.31 L 15.00 62.56 Z" />
|
<path d="M7.46,65.32499999999999 L8.535,64.69999999999999 L8.535,63.449999999999996 L7.46,62.824999999999996 L6.385,63.449999999999996 L6.385,64.69999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 20.99 63.19 L 22.07 62.56 L 22.07 61.31 L 20.99 60.69 L 19.92 61.31 L 19.92 62.56 Z" />
|
<path d="M9.92,65.32499999999999 L10.995000000000001,64.69999999999999 L10.995000000000001,63.449999999999996 L9.92,62.824999999999996 L8.844999999999999,63.449999999999996 L8.844999999999999,64.69999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 25.91 63.19 L 26.99 62.56 L 26.99 61.31 L 25.91 60.69 L 24.84 61.31 L 24.84 62.56 Z" />
|
<path d="M12.38,65.32499999999999 L13.455,64.69999999999999 L13.455,63.449999999999996 L12.38,62.824999999999996 L11.305,63.449999999999996 L11.305,64.69999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 30.83 63.19 L 31.91 62.56 L 31.91 61.31 L 30.83 60.69 L 29.76 61.31 L 29.76 62.56 Z" />
|
<path d="M14.84,65.32499999999999 L15.915,64.69999999999999 L15.915,63.449999999999996 L14.84,62.824999999999996 L13.765,63.449999999999996 L13.765,64.69999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 35.75 63.19 L 36.83 62.56 L 36.83 61.31 L 35.75 60.69 L 34.68 61.31 L 34.68 62.56 Z" />
|
<path d="M17.3,65.32499999999999 L18.375,64.69999999999999 L18.375,63.449999999999996 L17.3,62.824999999999996 L16.225,63.449999999999996 L16.225,64.69999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 40.67 63.19 L 41.75 62.56 L 41.75 61.31 L 40.67 60.69 L 39.59 61.31 L 39.59 62.56 Z" />
|
<path d="M19.76,65.32499999999999 L20.835,64.69999999999999 L20.835,63.449999999999996 L19.76,62.824999999999996 L18.685000000000002,63.449999999999996 L18.685000000000002,64.69999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 45.59 63.19 L 46.67 62.56 L 46.67 61.31 L 45.59 60.69 L 44.51 61.31 L 44.51 62.56 Z" />
|
<path d="M22.22,65.32499999999999 L23.294999999999998,64.69999999999999 L23.294999999999998,63.449999999999996 L22.22,62.824999999999996 L21.145,63.449999999999996 L21.145,64.69999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 50.51 63.19 L 51.59 62.56 L 51.59 61.31 L 50.51 60.69 L 49.43 61.31 L 49.43 62.56 Z" />
|
<path d="M24.68,65.32499999999999 L25.755,64.69999999999999 L25.755,63.449999999999996 L24.68,62.824999999999996 L23.605,63.449999999999996 L23.605,64.69999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 75.11 63.19 L 76.19 62.56 L 76.19 61.31 L 75.11 60.69 L 74.04 61.31 L 74.04 62.56 Z" />
|
<path d="M36.980000000000004,65.32499999999999 L38.055,64.69999999999999 L38.055,63.449999999999996 L36.980000000000004,62.824999999999996 L35.905,63.449999999999996 L35.905,64.69999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 7.46 65.32 L 8.54 64.70 L 8.54 63.45 L 7.46 62.82 L 6.39 63.45 L 6.39 64.70 Z" />
|
<path d="M39.44,65.32499999999999 L40.515,64.69999999999999 L40.515,63.449999999999996 L39.44,62.824999999999996 L38.364999999999995,63.449999999999996 L38.364999999999995,64.69999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 9.92 65.32 L 11.00 64.70 L 11.00 63.45 L 9.92 62.82 L 8.84 63.45 L 8.84 64.70 Z" />
|
<path d="M41.89999999999999,65.32499999999999 L42.974999999999994,64.69999999999999 L42.974999999999994,63.449999999999996 L41.89999999999999,62.824999999999996 L40.82499999999999,63.449999999999996 L40.82499999999999,64.69999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 12.38 65.32 L 13.46 64.70 L 13.46 63.45 L 12.38 62.82 L 11.31 63.45 L 11.31 64.70 Z" />
|
<path d="M44.35999999999999,65.32499999999999 L45.434999999999995,64.69999999999999 L45.434999999999995,63.449999999999996 L44.35999999999999,62.824999999999996 L43.28499999999999,63.449999999999996 L43.28499999999999,64.69999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 14.84 65.32 L 15.92 64.70 L 15.92 63.45 L 14.84 62.82 L 13.77 63.45 L 13.77 64.70 Z" />
|
<path d="M59.11999999999999,65.32499999999999 L60.19499999999999,64.69999999999999 L60.19499999999999,63.449999999999996 L59.11999999999999,62.824999999999996 L58.04499999999999,63.449999999999996 L58.04499999999999,64.69999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 17.30 65.32 L 18.38 64.70 L 18.38 63.45 L 17.30 62.82 L 16.23 63.45 L 16.23 64.70 Z" />
|
<path d="M64.03999999999999,65.32499999999999 L65.115,64.69999999999999 L65.115,63.449999999999996 L64.03999999999999,62.824999999999996 L62.96499999999999,63.449999999999996 L62.96499999999999,64.69999999999999 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 19.76 65.32 L 20.84 64.70 L 20.84 63.45 L 19.76 62.82 L 18.69 63.45 L 18.69 64.70 Z" />
|
<path d="M8.69,67.46 L9.765,66.835 L9.765,65.585 L8.69,64.96 L7.615,65.585 L7.615,66.835 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 22.22 65.32 L 23.29 64.70 L 23.29 63.45 L 22.22 62.82 L 21.15 63.45 L 21.15 64.70 Z" />
|
<path d="M13.61,67.46 L14.684999999999999,66.835 L14.684999999999999,65.585 L13.61,64.96 L12.535,65.585 L12.535,66.835 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 24.68 65.32 L 25.76 64.70 L 25.76 63.45 L 24.68 62.82 L 23.61 63.45 L 23.61 64.70 Z" />
|
<path d="M16.07,67.46 L17.145,66.835 L17.145,65.585 L16.07,64.96 L14.995000000000001,65.585 L14.995000000000001,66.835 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 36.98 65.32 L 38.06 64.70 L 38.06 63.45 L 36.98 62.82 L 35.91 63.45 L 35.91 64.70 Z" />
|
<path d="M20.990000000000002,67.46 L22.065,66.835 L22.065,65.585 L20.990000000000002,64.96 L19.915,65.585 L19.915,66.835 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 39.44 65.32 L 40.52 64.70 L 40.52 63.45 L 39.44 62.82 L 38.36 63.45 L 38.36 64.70 Z" />
|
<path d="M25.91,67.46 L26.985,66.835 L26.985,65.585 L25.91,64.96 L24.835,65.585 L24.835,66.835 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 41.90 65.32 L 42.97 64.70 L 42.97 63.45 L 41.90 62.82 L 40.82 63.45 L 40.82 64.70 Z" />
|
<path d="M28.37,67.46 L29.445,66.835 L29.445,65.585 L28.37,64.96 L27.295,65.585 L27.295,66.835 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 44.36 65.32 L 45.43 64.70 L 45.43 63.45 L 44.36 62.82 L 43.28 63.45 L 43.28 64.70 Z" />
|
<path d="M30.830000000000002,67.46 L31.905,66.835 L31.905,65.585 L30.830000000000002,64.96 L29.755000000000003,65.585 L29.755000000000003,66.835 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 59.12 65.32 L 60.19 64.70 L 60.19 63.45 L 59.12 62.82 L 58.04 63.45 L 58.04 64.70 Z" />
|
<path d="M33.29,67.46 L34.364999999999995,66.835 L34.364999999999995,65.585 L33.29,64.96 L32.215,65.585 L32.215,66.835 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 64.04 65.32 L 65.12 64.70 L 65.12 63.45 L 64.04 62.82 L 62.96 63.45 L 62.96 64.70 Z" />
|
<path d="M45.589999999999996,67.46 L46.665,66.835 L46.665,65.585 L45.589999999999996,64.96 L44.51499999999999,65.585 L44.51499999999999,66.835 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 8.69 67.46 L 9.77 66.84 L 9.77 65.59 L 8.69 64.96 L 7.62 65.59 L 7.62 66.84 Z" />
|
<path d="M48.05,67.46 L49.125,66.835 L49.125,65.585 L48.05,64.96 L46.974999999999994,65.585 L46.974999999999994,66.835 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 13.61 67.46 L 14.68 66.84 L 14.68 65.59 L 13.61 64.96 L 12.54 65.59 L 12.54 66.84 Z" />
|
<path d="M50.51,67.46 L51.585,66.835 L51.585,65.585 L50.51,64.96 L49.434999999999995,65.585 L49.434999999999995,66.835 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 16.07 67.46 L 17.15 66.84 L 17.15 65.59 L 16.07 64.96 L 15.00 65.59 L 15.00 66.84 Z" />
|
<path d="M52.97,67.46 L54.045,66.835 L54.045,65.585 L52.97,64.96 L51.894999999999996,65.585 L51.894999999999996,66.835 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 20.99 67.46 L 22.07 66.84 L 22.07 65.59 L 20.99 64.96 L 19.92 65.59 L 19.92 66.84 Z" />
|
<path d="M57.88999999999999,67.46 L58.964999999999996,66.835 L58.964999999999996,65.585 L57.88999999999999,64.96 L56.81499999999999,65.585 L56.81499999999999,66.835 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 25.91 67.46 L 26.99 66.84 L 26.99 65.59 L 25.91 64.96 L 24.84 65.59 L 24.84 66.84 Z" />
|
<path d="M62.809999999999995,67.46 L63.885,66.835 L63.885,65.585 L62.809999999999995,64.96 L61.73499999999999,65.585 L61.73499999999999,66.835 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 28.37 67.46 L 29.45 66.84 L 29.45 65.59 L 28.37 64.96 L 27.30 65.59 L 27.30 66.84 Z" />
|
<path d="M67.72999999999999,67.46 L68.805,66.835 L68.805,65.585 L67.72999999999999,64.96 L66.655,65.585 L66.655,66.835 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 30.83 67.46 L 31.91 66.84 L 31.91 65.59 L 30.83 64.96 L 29.76 65.59 L 29.76 66.84 Z" />
|
<path d="M72.65,67.46 L73.72500000000001,66.835 L73.72500000000001,65.585 L72.65,64.96 L71.575,65.585 L71.575,66.835 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 33.29 67.46 L 34.36 66.84 L 34.36 65.59 L 33.29 64.96 L 32.22 65.59 L 32.22 66.84 Z" />
|
<path d="M7.46,69.595 L8.535,68.97 L8.535,67.72 L7.46,67.095 L6.385,67.72 L6.385,68.97 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 45.59 67.46 L 46.67 66.84 L 46.67 65.59 L 45.59 64.96 L 44.51 65.59 L 44.51 66.84 Z" />
|
<path d="M12.38,69.595 L13.455,68.97 L13.455,67.72 L12.38,67.095 L11.305,67.72 L11.305,68.97 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 48.05 67.46 L 49.13 66.84 L 49.13 65.59 L 48.05 64.96 L 46.97 65.59 L 46.97 66.84 Z" />
|
<path d="M17.3,69.595 L18.375,68.97 L18.375,67.72 L17.3,67.095 L16.225,67.72 L16.225,68.97 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 50.51 67.46 L 51.59 66.84 L 51.59 65.59 L 50.51 64.96 L 49.43 65.59 L 49.43 66.84 Z" />
|
<path d="M22.22,69.595 L23.294999999999998,68.97 L23.294999999999998,67.72 L22.22,67.095 L21.145,67.72 L21.145,68.97 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 52.97 67.46 L 54.05 66.84 L 54.05 65.59 L 52.97 64.96 L 51.89 65.59 L 51.89 66.84 Z" />
|
<path d="M39.44,69.595 L40.515,68.97 L40.515,67.72 L39.44,67.095 L38.364999999999995,67.72 L38.364999999999995,68.97 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 57.89 67.46 L 58.96 66.84 L 58.96 65.59 L 57.89 64.96 L 56.81 65.59 L 56.81 66.84 Z" />
|
<path d="M44.35999999999999,69.595 L45.434999999999995,68.97 L45.434999999999995,67.72 L44.35999999999999,67.095 L43.28499999999999,67.72 L43.28499999999999,68.97 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 62.81 67.46 L 63.89 66.84 L 63.89 65.59 L 62.81 64.96 L 61.73 65.59 L 61.73 66.84 Z" />
|
<path d="M49.279999999999994,69.595 L50.355,68.97 L50.355,67.72 L49.279999999999994,67.095 L48.20499999999999,67.72 L48.20499999999999,68.97 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 67.73 67.46 L 68.81 66.84 L 68.81 65.59 L 67.73 64.96 L 66.66 65.59 L 66.66 66.84 Z" />
|
<path d="M54.199999999999996,69.595 L55.275,68.97 L55.275,67.72 L54.199999999999996,67.095 L53.12499999999999,67.72 L53.12499999999999,68.97 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 72.65 67.46 L 73.73 66.84 L 73.73 65.59 L 72.65 64.96 L 71.58 65.59 L 71.58 66.84 Z" />
|
<path d="M56.66,69.595 L57.735,68.97 L57.735,67.72 L56.66,67.095 L55.584999999999994,67.72 L55.584999999999994,68.97 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 7.46 69.60 L 8.54 68.97 L 8.54 67.72 L 7.46 67.10 L 6.39 67.72 L 6.39 68.97 Z" />
|
<path d="M59.11999999999999,69.595 L60.19499999999999,68.97 L60.19499999999999,67.72 L59.11999999999999,67.095 L58.04499999999999,67.72 L58.04499999999999,68.97 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 12.38 69.60 L 13.46 68.97 L 13.46 67.72 L 12.38 67.10 L 11.31 67.72 L 11.31 68.97 Z" />
|
<path d="M61.57999999999999,69.595 L62.654999999999994,68.97 L62.654999999999994,67.72 L61.57999999999999,67.095 L60.50499999999999,67.72 L60.50499999999999,68.97 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 17.30 69.60 L 18.38 68.97 L 18.38 67.72 L 17.30 67.10 L 16.23 67.72 L 16.23 68.97 Z" />
|
<path d="M64.03999999999999,69.595 L65.115,68.97 L65.115,67.72 L64.03999999999999,67.095 L62.96499999999999,67.72 L62.96499999999999,68.97 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 22.22 69.60 L 23.29 68.97 L 23.29 67.72 L 22.22 67.10 L 21.15 67.72 L 21.15 68.97 Z" />
|
<path d="M66.5,69.595 L67.57499999999999,68.97 L67.57499999999999,67.72 L66.5,67.095 L65.42499999999998,67.72 L65.42499999999998,68.97 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 39.44 69.60 L 40.52 68.97 L 40.52 67.72 L 39.44 67.10 L 38.36 67.72 L 38.36 68.97 Z" />
|
<path d="M71.42,69.595 L72.495,68.97 L72.495,67.72 L71.42,67.095 L70.345,67.72 L70.345,68.97 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 44.36 69.60 L 45.43 68.97 L 45.43 67.72 L 44.36 67.10 L 43.28 67.72 L 43.28 68.97 Z" />
|
<path d="M76.34,69.595 L77.415,68.97 L77.415,67.72 L76.34,67.095 L75.265,67.72 L75.265,68.97 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 49.28 69.60 L 50.36 68.97 L 50.36 67.72 L 49.28 67.10 L 48.20 67.72 L 48.20 68.97 Z" />
|
<path d="M6.23,71.73 L7.305,71.105 L7.305,69.855 L6.23,69.23 L5.155,69.855 L5.155,71.105 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 54.20 69.60 L 55.28 68.97 L 55.28 67.72 L 54.20 67.10 L 53.12 67.72 L 53.12 68.97 Z" />
|
<path d="M8.69,71.73 L9.765,71.105 L9.765,69.855 L8.69,69.23 L7.615,69.855 L7.615,71.105 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 56.66 69.60 L 57.74 68.97 L 57.74 67.72 L 56.66 67.10 L 55.58 67.72 L 55.58 68.97 Z" />
|
<path d="M11.15,71.73 L12.225000000000001,71.105 L12.225000000000001,69.855 L11.15,69.23 L10.075,69.855 L10.075,71.105 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 59.12 69.60 L 60.19 68.97 L 60.19 67.72 L 59.12 67.10 L 58.04 67.72 L 58.04 68.97 Z" />
|
<path d="M13.61,71.73 L14.684999999999999,71.105 L14.684999999999999,69.855 L13.61,69.23 L12.535,69.855 L12.535,71.105 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 61.58 69.60 L 62.65 68.97 L 62.65 67.72 L 61.58 67.10 L 60.50 67.72 L 60.50 68.97 Z" />
|
<path d="M18.53,71.73 L19.605,71.105 L19.605,69.855 L18.53,69.23 L17.455000000000002,69.855 L17.455000000000002,71.105 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 64.04 69.60 L 65.12 68.97 L 65.12 67.72 L 64.04 67.10 L 62.96 67.72 L 62.96 68.97 Z" />
|
<path d="M23.45,71.73 L24.525,71.105 L24.525,69.855 L23.45,69.23 L22.375,69.855 L22.375,71.105 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 66.50 69.60 L 67.57 68.97 L 67.57 67.72 L 66.50 67.10 L 65.42 67.72 L 65.42 68.97 Z" />
|
<path d="M25.91,71.73 L26.985,71.105 L26.985,69.855 L25.91,69.23 L24.835,69.855 L24.835,71.105 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 71.42 69.60 L 72.50 68.97 L 72.50 67.72 L 71.42 67.10 L 70.35 67.72 L 70.35 68.97 Z" />
|
<path d="M30.830000000000002,71.73 L31.905,71.105 L31.905,69.855 L30.830000000000002,69.23 L29.755000000000003,69.855 L29.755000000000003,71.105 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 76.34 69.60 L 77.42 68.97 L 77.42 67.72 L 76.34 67.10 L 75.27 67.72 L 75.27 68.97 Z" />
|
<path d="M45.589999999999996,71.73 L46.665,71.105 L46.665,69.855 L45.589999999999996,69.23 L44.51499999999999,69.855 L44.51499999999999,71.105 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 6.23 71.73 L 7.31 71.11 L 7.31 69.86 L 6.23 69.23 L 5.16 69.86 L 5.16 71.11 Z" />
|
<path d="M48.05,71.73 L49.125,71.105 L49.125,69.855 L48.05,69.23 L46.974999999999994,69.855 L46.974999999999994,71.105 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 8.69 71.73 L 9.77 71.11 L 9.77 69.86 L 8.69 69.23 L 7.62 69.86 L 7.62 71.11 Z" />
|
<path d="M50.51,71.73 L51.585,71.105 L51.585,69.855 L50.51,69.23 L49.434999999999995,69.855 L49.434999999999995,71.105 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 11.15 71.73 L 12.23 71.11 L 12.23 69.86 L 11.15 69.23 L 10.08 69.86 L 10.08 71.11 Z" />
|
<path d="M52.97,71.73 L54.045,71.105 L54.045,69.855 L52.97,69.23 L51.894999999999996,69.855 L51.894999999999996,71.105 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 13.61 71.73 L 14.68 71.11 L 14.68 69.86 L 13.61 69.23 L 12.54 69.86 L 12.54 71.11 Z" />
|
<path d="M57.88999999999999,71.73 L58.964999999999996,71.105 L58.964999999999996,69.855 L57.88999999999999,69.23 L56.81499999999999,69.855 L56.81499999999999,71.105 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 18.53 71.73 L 19.61 71.11 L 19.61 69.86 L 18.53 69.23 L 17.46 69.86 L 17.46 71.11 Z" />
|
<path d="M62.809999999999995,71.73 L63.885,71.105 L63.885,69.855 L62.809999999999995,69.23 L61.73499999999999,69.855 L61.73499999999999,71.105 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 23.45 71.73 L 24.53 71.11 L 24.53 69.86 L 23.45 69.23 L 22.38 69.86 L 22.38 71.11 Z" />
|
<path d="M65.27,71.73 L66.345,71.105 L66.345,69.855 L65.27,69.23 L64.195,69.855 L64.195,71.105 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 25.91 71.73 L 26.99 71.11 L 26.99 69.86 L 25.91 69.23 L 24.84 69.86 L 24.84 71.11 Z" />
|
<path d="M70.19,71.73 L71.265,71.105 L71.265,69.855 L70.19,69.23 L69.115,69.855 L69.115,71.105 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 30.83 71.73 L 31.91 71.11 L 31.91 69.86 L 30.83 69.23 L 29.76 69.86 L 29.76 71.11 Z" />
|
<path d="M75.11,71.73 L76.185,71.105 L76.185,69.855 L75.11,69.23 L74.035,69.855 L74.035,71.105 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 45.59 71.73 L 46.67 71.11 L 46.67 69.86 L 45.59 69.23 L 44.51 69.86 L 44.51 71.11 Z" />
|
<path d="M9.92,73.865 L10.995000000000001,73.24 L10.995000000000001,71.99 L9.92,71.365 L8.844999999999999,71.99 L8.844999999999999,73.24 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 48.05 71.73 L 49.13 71.11 L 49.13 69.86 L 48.05 69.23 L 46.97 69.86 L 46.97 71.11 Z" />
|
<path d="M14.84,73.865 L15.915,73.24 L15.915,71.99 L14.84,71.365 L13.765,71.99 L13.765,73.24 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 50.51 71.73 L 51.59 71.11 L 51.59 69.86 L 50.51 69.23 L 49.43 69.86 L 49.43 71.11 Z" />
|
<path d="M17.3,73.865 L18.375,73.24 L18.375,71.99 L17.3,71.365 L16.225,71.99 L16.225,73.24 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 52.97 71.73 L 54.05 71.11 L 54.05 69.86 L 52.97 69.23 L 51.89 69.86 L 51.89 71.11 Z" />
|
<path d="M22.22,73.865 L23.294999999999998,73.24 L23.294999999999998,71.99 L22.22,71.365 L21.145,71.99 L21.145,73.24 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 57.89 71.73 L 58.96 71.11 L 58.96 69.86 L 57.89 69.23 L 56.81 69.86 L 56.81 71.11 Z" />
|
<path d="M27.14,73.865 L28.215,73.24 L28.215,71.99 L27.14,71.365 L26.065,71.99 L26.065,73.24 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 62.81 71.73 L 63.89 71.11 L 63.89 69.86 L 62.81 69.23 L 61.73 69.86 L 61.73 71.11 Z" />
|
<path d="M29.6,73.865 L30.675,73.24 L30.675,71.99 L29.6,71.365 L28.525000000000002,71.99 L28.525000000000002,73.24 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 65.27 71.73 L 66.35 71.11 L 66.35 69.86 L 65.27 69.23 L 64.20 69.86 L 64.20 71.11 Z" />
|
<path d="M32.06,73.865 L33.135000000000005,73.24 L33.135000000000005,71.99 L32.06,71.365 L30.985000000000003,71.99 L30.985000000000003,73.24 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 70.19 71.73 L 71.27 71.11 L 71.27 69.86 L 70.19 69.23 L 69.12 69.86 L 69.12 71.11 Z" />
|
<path d="M34.519999999999996,73.865 L35.595,73.24 L35.595,71.99 L34.519999999999996,71.365 L33.445,71.99 L33.445,73.24 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 75.11 71.73 L 76.19 71.11 L 76.19 69.86 L 75.11 69.23 L 74.04 69.86 L 74.04 71.11 Z" />
|
<path d="M39.44,73.865 L40.515,73.24 L40.515,71.99 L39.44,71.365 L38.364999999999995,71.99 L38.364999999999995,73.24 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 9.92 73.87 L 11.00 73.24 L 11.00 71.99 L 9.92 71.37 L 8.84 71.99 L 8.84 73.24 Z" />
|
<path d="M44.35999999999999,73.865 L45.434999999999995,73.24 L45.434999999999995,71.99 L44.35999999999999,71.365 L43.28499999999999,71.99 L43.28499999999999,73.24 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 14.84 73.87 L 15.92 73.24 L 15.92 71.99 L 14.84 71.37 L 13.77 71.99 L 13.77 73.24 Z" />
|
<path d="M46.81999999999999,73.865 L47.894999999999996,73.24 L47.894999999999996,71.99 L46.81999999999999,71.365 L45.74499999999999,71.99 L45.74499999999999,73.24 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 17.30 73.87 L 18.38 73.24 L 18.38 71.99 L 17.30 71.37 L 16.23 71.99 L 16.23 73.24 Z" />
|
<path d="M51.739999999999995,73.865 L52.815,73.24 L52.815,71.99 L51.739999999999995,71.365 L50.66499999999999,71.99 L50.66499999999999,73.24 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 22.22 73.87 L 23.29 73.24 L 23.29 71.99 L 22.22 71.37 L 21.15 71.99 L 21.15 73.24 Z" />
|
<path d="M56.66,73.865 L57.735,73.24 L57.735,71.99 L56.66,71.365 L55.584999999999994,71.99 L55.584999999999994,73.24 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 27.14 73.87 L 28.22 73.24 L 28.22 71.99 L 27.14 71.37 L 26.07 71.99 L 26.07 73.24 Z" />
|
<path d="M61.57999999999999,73.865 L62.654999999999994,73.24 L62.654999999999994,71.99 L61.57999999999999,71.365 L60.50499999999999,71.99 L60.50499999999999,73.24 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 29.60 73.87 L 30.68 73.24 L 30.68 71.99 L 29.60 71.37 L 28.53 71.99 L 28.53 73.24 Z" />
|
<path d="M66.5,73.865 L67.57499999999999,73.24 L67.57499999999999,71.99 L66.5,71.365 L65.42499999999998,71.99 L65.42499999999998,73.24 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 32.06 73.87 L 33.14 73.24 L 33.14 71.99 L 32.06 71.37 L 30.99 71.99 L 30.99 73.24 Z" />
|
<path d="M68.96,73.865 L70.035,73.24 L70.035,71.99 L68.96,71.365 L67.88499999999999,71.99 L67.88499999999999,73.24 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 34.52 73.87 L 35.60 73.24 L 35.60 71.99 L 34.52 71.37 L 33.45 71.99 L 33.45 73.24 Z" />
|
<path d="M71.42,73.865 L72.495,73.24 L72.495,71.99 L71.42,71.365 L70.345,71.99 L70.345,73.24 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 39.44 73.87 L 40.52 73.24 L 40.52 71.99 L 39.44 71.37 L 38.36 71.99 L 38.36 73.24 Z" />
|
<path d="M73.88000000000001,73.865 L74.95500000000001,73.24 L74.95500000000001,71.99 L73.88000000000001,71.365 L72.805,71.99 L72.805,73.24 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 44.36 73.87 L 45.43 73.24 L 45.43 71.99 L 44.36 71.37 L 43.28 71.99 L 43.28 73.24 Z" />
|
<path d="M8.69,76.0 L9.765,75.375 L9.765,74.125 L8.69,73.5 L7.615,74.125 L7.615,75.375 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 46.82 73.87 L 47.89 73.24 L 47.89 71.99 L 46.82 71.37 L 45.74 71.99 L 45.74 73.24 Z" />
|
<path d="M13.61,76.0 L14.684999999999999,75.375 L14.684999999999999,74.125 L13.61,73.5 L12.535,74.125 L12.535,75.375 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 51.74 73.87 L 52.82 73.24 L 52.82 71.99 L 51.74 71.37 L 50.66 71.99 L 50.66 73.24 Z" />
|
<path d="M38.21,76.0 L39.285000000000004,75.375 L39.285000000000004,74.125 L38.21,73.5 L37.135,74.125 L37.135,75.375 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 56.66 73.87 L 57.74 73.24 L 57.74 71.99 L 56.66 71.37 L 55.58 71.99 L 55.58 73.24 Z" />
|
<path d="M43.129999999999995,76.0 L44.205,75.375 L44.205,74.125 L43.129999999999995,73.5 L42.05499999999999,74.125 L42.05499999999999,75.375 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 61.58 73.87 L 62.65 73.24 L 62.65 71.99 L 61.58 71.37 L 60.50 71.99 L 60.50 73.24 Z" />
|
<path d="M45.589999999999996,76.0 L46.665,75.375 L46.665,74.125 L45.589999999999996,73.5 L44.51499999999999,74.125 L44.51499999999999,75.375 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 66.50 73.87 L 67.57 73.24 L 67.57 71.99 L 66.50 71.37 L 65.42 71.99 L 65.42 73.24 Z" />
|
<path d="M50.51,76.0 L51.585,75.375 L51.585,74.125 L50.51,73.5 L49.434999999999995,74.125 L49.434999999999995,75.375 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 68.96 73.87 L 70.04 73.24 L 70.04 71.99 L 68.96 71.37 L 67.88 71.99 L 67.88 73.24 Z" />
|
<path d="M55.43,76.0 L56.505,75.375 L56.505,74.125 L55.43,73.5 L54.355,74.125 L54.355,75.375 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 71.42 73.87 L 72.50 73.24 L 72.50 71.99 L 71.42 71.37 L 70.35 71.99 L 70.35 73.24 Z" />
|
<path d="M60.349999999999994,76.0 L61.425,75.375 L61.425,74.125 L60.349999999999994,73.5 L59.27499999999999,74.125 L59.27499999999999,75.375 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 73.88 73.87 L 74.96 73.24 L 74.96 71.99 L 73.88 71.37 L 72.81 71.99 L 72.81 73.24 Z" />
|
<path d="M67.72999999999999,76.0 L68.805,75.375 L68.805,74.125 L67.72999999999999,73.5 L66.655,74.125 L66.655,75.375 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 8.69 76.00 L 9.77 75.38 L 9.77 74.13 L 8.69 73.50 L 7.62 74.13 L 7.62 75.38 Z" />
|
<path d="M72.65,76.0 L73.72500000000001,75.375 L73.72500000000001,74.125 L72.65,73.5 L71.575,74.125 L71.575,75.375 Z" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 13.61 76.00 L 14.68 75.38 L 14.68 74.13 L 13.61 73.50 L 12.54 74.13 L 12.54 75.38 Z" />
|
<ellipse cx="40.76" cy="40.6" rx="10.850000000000001" ry="10.850000000000001" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 38.21 76.00 L 39.29 75.38 L 39.29 74.13 L 38.21 73.50 L 37.14 74.13 L 37.14 75.38 Z" />
|
<ellipse cx="40.76" cy="40.6" rx="8.969999999999999" ry="8.969999999999999" style="fill:rgb(255,255,255);stroke:none;"/>
|
||||||
<path d="M 43.13 76.00 L 44.21 75.38 L 44.21 74.13 L 43.13 73.50 L 42.05 74.13 L 42.05 75.38 Z" />
|
<ellipse cx="40.76" cy="40.6" rx="7.100000000000001" ry="7.100000000000001" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 45.59 76.00 L 46.67 75.38 L 46.67 74.13 L 45.59 73.50 L 44.51 74.13 L 44.51 75.38 Z" />
|
<ellipse cx="40.76" cy="40.6" rx="5.219999999999999" ry="5.219999999999999" style="fill:rgb(255,255,255);stroke:none;"/>
|
||||||
<path d="M 50.51 76.00 L 51.59 75.38 L 51.59 74.13 L 50.51 73.50 L 49.43 74.13 L 49.43 75.38 Z" />
|
<ellipse cx="40.76" cy="40.6" rx="3.3100000000000023" ry="3.3100000000000023" style="fill:rgb(0,0,0);stroke:none;"/>
|
||||||
<path d="M 55.43 76.00 L 56.51 75.38 L 56.51 74.13 L 55.43 73.50 L 54.36 74.13 L 54.36 75.38 Z" />
|
<ellipse cx="40.76" cy="40.6" rx="1.4299999999999997" ry="1.4299999999999997" style="fill:rgb(255,255,255);stroke:none;"/>
|
||||||
<path d="M 60.35 76.00 L 61.43 75.38 L 61.43 74.13 L 60.35 73.50 L 59.27 74.13 L 59.27 75.38 Z" />
|
|
||||||
<path d="M 67.73 76.00 L 68.81 75.38 L 68.81 74.13 L 67.73 73.50 L 66.66 74.13 L 66.66 75.38 Z" />
|
|
||||||
<path d="M 72.65 76.00 L 73.73 75.38 L 73.73 74.13 L 72.65 73.50 L 71.58 74.13 L 71.58 75.38 Z" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 73 KiB |
|
@ -1 +1 @@
|
||||||
ECC level must be between 0 and 8.
|
ECC level must be between 0 and 8
|
|
@ -1 +1 @@
|
||||||
ECC level must be between 0 and 8.
|
ECC level must be between 0 and 8
|
||||||
|
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3 KiB |
|
@ -1,3 +1,6 @@
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':io-vector')
|
implementation project(':io-vector')
|
||||||
|
implementation project(':io-vector-eps')
|
||||||
|
implementation project(':io-vector-pdf')
|
||||||
|
implementation project(':io-vector-svg')
|
||||||
}
|
}
|
|
@ -14,5 +14,8 @@ module org.xbib.graphics.chart {
|
||||||
exports org.xbib.graphics.chart.theme;
|
exports org.xbib.graphics.chart.theme;
|
||||||
exports org.xbib.graphics.chart.xy;
|
exports org.xbib.graphics.chart.xy;
|
||||||
requires org.xbib.graphics.io.vector;
|
requires org.xbib.graphics.io.vector;
|
||||||
|
requires org.xbib.graphics.io.vector.eps;
|
||||||
|
requires org.xbib.graphics.io.vector.pdf;
|
||||||
|
requires org.xbib.graphics.io.vector.svg;
|
||||||
requires transitive java.desktop;
|
requires transitive java.desktop;
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,6 +12,8 @@ dependencies {
|
||||||
test {
|
test {
|
||||||
useJUnitPlatform()
|
useJUnitPlatform()
|
||||||
failFast = false
|
failFast = false
|
||||||
|
systemProperty 'java.awt.headless', 'true'
|
||||||
|
//-Dawt.toolkit=sun.awt.HToolkit
|
||||||
testLogging {
|
testLogging {
|
||||||
events 'STARTED', 'PASSED', 'FAILED', 'SKIPPED'
|
events 'STARTED', 'PASSED', 'FAILED', 'SKIPPED'
|
||||||
showStandardStreams = true
|
showStandardStreams = true
|
||||||
|
|
|
@ -1,116 +0,0 @@
|
||||||
package org.xbib.graphics.graphics2d.pdfbox;
|
|
||||||
|
|
||||||
import org.apache.pdfbox.pdmodel.font.PDFont;
|
|
||||||
import org.apache.pdfbox.pdmodel.font.PDType1Font;
|
|
||||||
|
|
||||||
import java.awt.Font;
|
|
||||||
import java.awt.FontFormatException;
|
|
||||||
import java.io.IOException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Like {@link DefaultFontTextDrawer}, but tries to use default fonts
|
|
||||||
* whenever possible. Default fonts are not embedded. You can register
|
|
||||||
* additional font files. If no font mapping is found, Helvetica is used.
|
|
||||||
* This will fallback to vectorized text if any kind of RTL text is rendered
|
|
||||||
* and/or any other not supported feature is used.
|
|
||||||
*/
|
|
||||||
public class DefaultFontTextDrawerDefaultFonts extends DefaultFontTextDrawer {
|
|
||||||
@Override
|
|
||||||
protected PDFont mapFont(Font font, IFontTextDrawerEnv env) throws IOException, FontFormatException {
|
|
||||||
PDFont pdFont = mapDefaultFonts(font);
|
|
||||||
if (pdFont != null)
|
|
||||||
return pdFont;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Do we have a manual registered mapping with a font file?
|
|
||||||
*/
|
|
||||||
pdFont = super.mapFont(font, env);
|
|
||||||
if (pdFont != null)
|
|
||||||
return pdFont;
|
|
||||||
return chooseMatchingHelvetica(font);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Find a PDFont for the given font object, which does not need to be embedded.
|
|
||||||
*
|
|
||||||
* @param font font for which to find a suitable default font
|
|
||||||
* @return null if no default font is found or a default font which does not
|
|
||||||
* need to be embedded.
|
|
||||||
*/
|
|
||||||
public static PDFont mapDefaultFonts(Font font) {
|
|
||||||
/*
|
|
||||||
* Map default font names to the matching families.
|
|
||||||
*/
|
|
||||||
if (fontNameEqualsAnyOf(font, Font.SANS_SERIF, Font.DIALOG, Font.DIALOG_INPUT, "Arial", "Helvetica"))
|
|
||||||
return chooseMatchingHelvetica(font);
|
|
||||||
if (fontNameEqualsAnyOf(font, Font.MONOSPACED, "courier", "courier new"))
|
|
||||||
return chooseMatchingCourier(font);
|
|
||||||
if (fontNameEqualsAnyOf(font, Font.SERIF, "Times", "Times New Roman", "Times Roman"))
|
|
||||||
return chooseMatchingTimes(font);
|
|
||||||
if (fontNameEqualsAnyOf(font, "Symbol"))
|
|
||||||
return PDType1Font.SYMBOL;
|
|
||||||
if (fontNameEqualsAnyOf(font, "ZapfDingbats", "Dingbats"))
|
|
||||||
return PDType1Font.ZAPF_DINGBATS;
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static boolean fontNameEqualsAnyOf(Font font, String... names) {
|
|
||||||
String name = font.getName();
|
|
||||||
for (String fontName : names) {
|
|
||||||
if (fontName.equalsIgnoreCase(name))
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get a PDType1Font.TIMES-variant, which matches the given font
|
|
||||||
*
|
|
||||||
* @param font Font to get the styles from
|
|
||||||
* @return a PDFont Times variant which matches the style in the given Font
|
|
||||||
* object.
|
|
||||||
*/
|
|
||||||
public static PDFont chooseMatchingTimes(Font font) {
|
|
||||||
if ((font.getStyle() & (Font.ITALIC | Font.BOLD)) == (Font.ITALIC | Font.BOLD))
|
|
||||||
return PDType1Font.TIMES_BOLD_ITALIC;
|
|
||||||
if ((font.getStyle() & Font.ITALIC) == Font.ITALIC)
|
|
||||||
return PDType1Font.TIMES_ITALIC;
|
|
||||||
if ((font.getStyle() & Font.BOLD) == Font.BOLD)
|
|
||||||
return PDType1Font.TIMES_BOLD;
|
|
||||||
return PDType1Font.TIMES_ROMAN;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get a PDType1Font.COURIER-variant, which matches the given font
|
|
||||||
*
|
|
||||||
* @param font Font to get the styles from
|
|
||||||
* @return a PDFont Courier variant which matches the style in the given Font
|
|
||||||
* object.
|
|
||||||
*/
|
|
||||||
public static PDFont chooseMatchingCourier(Font font) {
|
|
||||||
if ((font.getStyle() & (Font.ITALIC | Font.BOLD)) == (Font.ITALIC | Font.BOLD))
|
|
||||||
return PDType1Font.COURIER_BOLD_OBLIQUE;
|
|
||||||
if ((font.getStyle() & Font.ITALIC) == Font.ITALIC)
|
|
||||||
return PDType1Font.COURIER_OBLIQUE;
|
|
||||||
if ((font.getStyle() & Font.BOLD) == Font.BOLD)
|
|
||||||
return PDType1Font.COURIER_BOLD;
|
|
||||||
return PDType1Font.COURIER;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get a PDType1Font.HELVETICA-variant, which matches the given font
|
|
||||||
*
|
|
||||||
* @param font Font to get the styles from
|
|
||||||
* @return a PDFont Helvetica variant which matches the style in the given Font
|
|
||||||
* object.
|
|
||||||
*/
|
|
||||||
public static PDFont chooseMatchingHelvetica(Font font) {
|
|
||||||
if ((font.getStyle() & (Font.ITALIC | Font.BOLD)) == (Font.ITALIC | Font.BOLD))
|
|
||||||
return PDType1Font.HELVETICA_BOLD_OBLIQUE;
|
|
||||||
if ((font.getStyle() & Font.ITALIC) == Font.ITALIC)
|
|
||||||
return PDType1Font.HELVETICA_OBLIQUE;
|
|
||||||
if ((font.getStyle() & Font.BOLD) == Font.BOLD)
|
|
||||||
return PDType1Font.HELVETICA_BOLD;
|
|
||||||
return PDType1Font.HELVETICA;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,28 +0,0 @@
|
||||||
package org.xbib.graphics.graphics2d.pdfbox;
|
|
||||||
|
|
||||||
import org.junit.jupiter.api.Test;
|
|
||||||
|
|
||||||
import java.awt.Color;
|
|
||||||
import java.awt.Font;
|
|
||||||
import java.awt.FontFormatException;
|
|
||||||
import java.awt.Graphics2D;
|
|
||||||
import java.io.IOException;
|
|
||||||
|
|
||||||
public class FontTest extends PdfBoxGraphics2DTestBase {
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testAntonioFont() throws IOException, FontFormatException {
|
|
||||||
final Font antonioRegular = Font
|
|
||||||
.createFont(Font.TRUETYPE_FONT,
|
|
||||||
PdfBoxGraphics2dTest.class.getResourceAsStream("antonio/Antonio-Regular.ttf"))
|
|
||||||
.deriveFont(15f);
|
|
||||||
exportGraphic("fonts", "antonio", new GraphicsExporter() {
|
|
||||||
@Override
|
|
||||||
public void draw(Graphics2D gfx) throws IOException, FontFormatException {
|
|
||||||
gfx.setColor(Color.BLACK);
|
|
||||||
gfx.setFont(antonioRegular);
|
|
||||||
gfx.drawString("Für älter österlich, Umlauts are not always fun.", 10, 50);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,70 +0,0 @@
|
||||||
package org.xbib.graphics.graphics2d.pdfbox;
|
|
||||||
|
|
||||||
import org.apache.pdfbox.pdmodel.font.PDType1Font;
|
|
||||||
import org.junit.jupiter.api.Test;
|
|
||||||
|
|
||||||
import java.awt.Font;
|
|
||||||
|
|
||||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
|
||||||
import static org.junit.jupiter.api.Assertions.assertNull;
|
|
||||||
|
|
||||||
public class PdfBoxGraphics2DFontTextDrawerDefaultFontsTest {
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testFontStyleMatching() {
|
|
||||||
Font anyFont = Font.decode("Dialog");
|
|
||||||
Font anyFontBold = anyFont.deriveFont(Font.BOLD);
|
|
||||||
Font anyFontItalic = anyFont.deriveFont(Font.ITALIC);
|
|
||||||
Font anyFontBoldItalic = anyFont.deriveFont(Font.BOLD | Font.ITALIC);
|
|
||||||
|
|
||||||
assertEquals(PDType1Font.COURIER, DefaultFontTextDrawerDefaultFonts.chooseMatchingCourier(anyFont));
|
|
||||||
assertEquals(PDType1Font.COURIER_BOLD,
|
|
||||||
DefaultFontTextDrawerDefaultFonts.chooseMatchingCourier(anyFontBold));
|
|
||||||
assertEquals(PDType1Font.COURIER_OBLIQUE,
|
|
||||||
DefaultFontTextDrawerDefaultFonts.chooseMatchingCourier(anyFontItalic));
|
|
||||||
assertEquals(PDType1Font.COURIER_BOLD_OBLIQUE,
|
|
||||||
DefaultFontTextDrawerDefaultFonts.chooseMatchingCourier(anyFontBoldItalic));
|
|
||||||
|
|
||||||
assertEquals(PDType1Font.HELVETICA,
|
|
||||||
DefaultFontTextDrawerDefaultFonts.chooseMatchingHelvetica(anyFont));
|
|
||||||
assertEquals(PDType1Font.HELVETICA_BOLD,
|
|
||||||
DefaultFontTextDrawerDefaultFonts.chooseMatchingHelvetica(anyFontBold));
|
|
||||||
assertEquals(PDType1Font.HELVETICA_OBLIQUE,
|
|
||||||
DefaultFontTextDrawerDefaultFonts.chooseMatchingHelvetica(anyFontItalic));
|
|
||||||
assertEquals(PDType1Font.HELVETICA_BOLD_OBLIQUE,
|
|
||||||
DefaultFontTextDrawerDefaultFonts.chooseMatchingHelvetica(anyFontBoldItalic));
|
|
||||||
|
|
||||||
assertEquals(PDType1Font.TIMES_ROMAN, DefaultFontTextDrawerDefaultFonts.chooseMatchingTimes(anyFont));
|
|
||||||
assertEquals(PDType1Font.TIMES_BOLD,
|
|
||||||
DefaultFontTextDrawerDefaultFonts.chooseMatchingTimes(anyFontBold));
|
|
||||||
assertEquals(PDType1Font.TIMES_ITALIC,
|
|
||||||
DefaultFontTextDrawerDefaultFonts.chooseMatchingTimes(anyFontItalic));
|
|
||||||
assertEquals(PDType1Font.TIMES_BOLD_ITALIC,
|
|
||||||
DefaultFontTextDrawerDefaultFonts.chooseMatchingTimes(anyFontBoldItalic));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testDefaultFontMapping() {
|
|
||||||
assertEquals(PDType1Font.HELVETICA,
|
|
||||||
DefaultFontTextDrawerDefaultFonts.mapDefaultFonts(Font.decode(Font.DIALOG)));
|
|
||||||
assertEquals(PDType1Font.HELVETICA,
|
|
||||||
DefaultFontTextDrawerDefaultFonts.mapDefaultFonts(Font.decode(Font.DIALOG_INPUT)));
|
|
||||||
assertEquals(PDType1Font.HELVETICA,
|
|
||||||
DefaultFontTextDrawerDefaultFonts.mapDefaultFonts(Font.decode("Arial")));
|
|
||||||
|
|
||||||
assertEquals(PDType1Font.COURIER,
|
|
||||||
DefaultFontTextDrawerDefaultFonts.mapDefaultFonts(Font.decode(Font.MONOSPACED)));
|
|
||||||
|
|
||||||
assertEquals(PDType1Font.TIMES_ROMAN,
|
|
||||||
DefaultFontTextDrawerDefaultFonts.mapDefaultFonts(Font.decode(Font.SERIF)));
|
|
||||||
|
|
||||||
assertEquals(PDType1Font.ZAPF_DINGBATS,
|
|
||||||
DefaultFontTextDrawerDefaultFonts.mapDefaultFonts(Font.decode("Dingbats")));
|
|
||||||
|
|
||||||
assertEquals(PDType1Font.SYMBOL,
|
|
||||||
DefaultFontTextDrawerDefaultFonts.mapDefaultFonts(Font.decode("Symbol")));
|
|
||||||
|
|
||||||
assertNull(DefaultFontTextDrawerDefaultFonts.mapDefaultFonts(Font.decode("Georgia")));
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,6 +1,7 @@
|
||||||
module org.xbib.graphics.graphics2d.pdfbox {
|
module org.xbib.graphics.graphics2d.pdfbox {
|
||||||
exports org.xbib.graphics.graphics2d.pdfbox;
|
exports org.xbib.graphics.io.pdfbox;
|
||||||
requires transitive org.apache.pdfbox;
|
requires transitive org.apache.pdfbox;
|
||||||
|
requires org.apache.fontbox;
|
||||||
requires transitive java.desktop;
|
requires transitive java.desktop;
|
||||||
requires java.logging;
|
requires java.logging;
|
||||||
}
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
package org.xbib.graphics.graphics2d.pdfbox;
|
package org.xbib.graphics.io.pdfbox;
|
||||||
|
|
||||||
import org.apache.pdfbox.pdmodel.graphics.color.PDColor;
|
import org.apache.pdfbox.pdmodel.graphics.color.PDColor;
|
||||||
import org.apache.pdfbox.pdmodel.graphics.color.PDColorSpace;
|
import org.apache.pdfbox.pdmodel.graphics.color.PDColorSpace;
|
|
@ -1,4 +1,4 @@
|
||||||
package org.xbib.graphics.graphics2d.pdfbox;
|
package org.xbib.graphics.io.pdfbox;
|
||||||
|
|
||||||
import org.apache.pdfbox.pdmodel.PDPageContentStream;
|
import org.apache.pdfbox.pdmodel.PDPageContentStream;
|
||||||
import org.apache.pdfbox.pdmodel.graphics.color.PDColor;
|
import org.apache.pdfbox.pdmodel.graphics.color.PDColor;
|
|
@ -1,4 +1,4 @@
|
||||||
package org.xbib.graphics.graphics2d.pdfbox;
|
package org.xbib.graphics.io.pdfbox;
|
||||||
|
|
||||||
import org.apache.pdfbox.pdmodel.PDPageContentStream;
|
import org.apache.pdfbox.pdmodel.PDPageContentStream;
|
||||||
import org.apache.pdfbox.pdmodel.graphics.color.PDColor;
|
import org.apache.pdfbox.pdmodel.graphics.color.PDColor;
|
||||||
|
@ -21,7 +21,6 @@ public class DefaultColorMapper implements ColorMapper {
|
||||||
float k = DefaultPaintApplier.getPropertyValue(color, "getK");
|
float k = DefaultPaintApplier.getPropertyValue(color, "getK");
|
||||||
return new PDColor(new float[]{c, m, y, k}, PDDeviceCMYK.INSTANCE);
|
return new PDColor(new float[]{c, m, y, k}, PDDeviceCMYK.INSTANCE);
|
||||||
}
|
}
|
||||||
// Our own CMYK Color class
|
|
||||||
if (color instanceof CMYKColor) {
|
if (color instanceof CMYKColor) {
|
||||||
return ((CMYKColor) color).toPDColor();
|
return ((CMYKColor) color).toPDColor();
|
||||||
}
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
package org.xbib.graphics.graphics2d.pdfbox;
|
package org.xbib.graphics.io.pdfbox;
|
||||||
|
|
||||||
import java.awt.Shape;
|
import java.awt.Shape;
|
||||||
|
|
||||||
|
@ -14,20 +14,20 @@ public class DefaultDrawControl implements DrawControl {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Shape transformShapeBeforeFill(Shape shape, IDrawControlEnv env) {
|
public Shape transformShapeBeforeFill(Shape shape, DrawControlEnv env) {
|
||||||
return shape;
|
return shape;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Shape transformShapeBeforeDraw(Shape shape, IDrawControlEnv env) {
|
public Shape transformShapeBeforeDraw(Shape shape, DrawControlEnv env) {
|
||||||
return shape;
|
return shape;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void afterShapeFill(Shape shape, IDrawControlEnv env) {
|
public void afterShapeFill(Shape shape, DrawControlEnv env) {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void afterShapeDraw(Shape shape, IDrawControlEnv env) {
|
public void afterShapeDraw(Shape shape, DrawControlEnv env) {
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -0,0 +1,174 @@
|
||||||
|
package org.xbib.graphics.io.pdfbox;
|
||||||
|
|
||||||
|
import org.apache.pdfbox.pdmodel.font.PDFont;
|
||||||
|
import java.awt.Font;
|
||||||
|
import java.awt.FontMetrics;
|
||||||
|
import java.awt.Graphics;
|
||||||
|
import java.awt.font.FontRenderContext;
|
||||||
|
import java.awt.font.LineMetrics;
|
||||||
|
import java.awt.geom.Rectangle2D;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.text.CharacterIterator;
|
||||||
|
|
||||||
|
@SuppressWarnings("serial")
|
||||||
|
public class DefaultFontMetrics extends FontMetrics {
|
||||||
|
|
||||||
|
private final FontMetrics defaultMetrics;
|
||||||
|
|
||||||
|
private final PDFont pdFont;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a new {@code FontMetrics} object for finding out
|
||||||
|
* height and width information about the specified {@code Font}
|
||||||
|
* and specific character glyphs in that {@code Font}.
|
||||||
|
*
|
||||||
|
* @param font the {@code Font}
|
||||||
|
* @see Font
|
||||||
|
*/
|
||||||
|
protected DefaultFontMetrics(Font font, FontMetrics defaultMetrics, PDFont pdFont) {
|
||||||
|
super(font);
|
||||||
|
this.defaultMetrics = defaultMetrics;
|
||||||
|
this.pdFont = pdFont;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getDescent() {
|
||||||
|
return defaultMetrics.getDescent();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getHeight() {
|
||||||
|
return defaultMetrics.getHeight();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getMaxAscent() {
|
||||||
|
return defaultMetrics.getMaxAscent();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getMaxDescent() {
|
||||||
|
return defaultMetrics.getMaxDescent();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean hasUniformLineMetrics() {
|
||||||
|
return defaultMetrics.hasUniformLineMetrics();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public LineMetrics getLineMetrics(String str, Graphics context) {
|
||||||
|
return defaultMetrics.getLineMetrics(str, context);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public LineMetrics getLineMetrics(String str, int beginIndex, int limit,
|
||||||
|
Graphics context) {
|
||||||
|
return defaultMetrics.getLineMetrics(str, beginIndex, limit, context);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public LineMetrics getLineMetrics(char[] chars, int beginIndex, int limit,
|
||||||
|
Graphics context) {
|
||||||
|
return defaultMetrics.getLineMetrics(chars, beginIndex, limit, context);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public LineMetrics getLineMetrics(CharacterIterator ci, int beginIndex, int limit,
|
||||||
|
Graphics context) {
|
||||||
|
return defaultMetrics.getLineMetrics(ci, beginIndex, limit, context);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Rectangle2D getStringBounds(String str, Graphics context) {
|
||||||
|
return defaultMetrics.getStringBounds(str, context);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Rectangle2D getStringBounds(String str, int beginIndex, int limit,
|
||||||
|
Graphics context) {
|
||||||
|
return defaultMetrics.getStringBounds(str, beginIndex, limit, context);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Rectangle2D getStringBounds(char[] chars, int beginIndex, int limit,
|
||||||
|
Graphics context) {
|
||||||
|
return defaultMetrics.getStringBounds(chars, beginIndex, limit, context);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Rectangle2D getStringBounds(CharacterIterator ci, int beginIndex, int limit,
|
||||||
|
Graphics context) {
|
||||||
|
return defaultMetrics.getStringBounds(ci, beginIndex, limit, context);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Rectangle2D getMaxCharBounds(Graphics context) {
|
||||||
|
return defaultMetrics.getMaxCharBounds(context);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getAscent() {
|
||||||
|
return defaultMetrics.getAscent();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getMaxAdvance() {
|
||||||
|
return defaultMetrics.getMaxAdvance();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getLeading() {
|
||||||
|
return defaultMetrics.getLeading();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public FontRenderContext getFontRenderContext() {
|
||||||
|
return defaultMetrics.getFontRenderContext();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int charWidth(char ch) {
|
||||||
|
char[] chars = {ch};
|
||||||
|
return charsWidth(chars, 0, chars.length);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int charWidth(int codePoint) {
|
||||||
|
char[] data = Character.toChars(codePoint);
|
||||||
|
return charsWidth(data, 0, data.length);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int charsWidth(char[] data, int off, int len) {
|
||||||
|
return stringWidth(new String(data, off, len));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int stringWidth(String str) {
|
||||||
|
try {
|
||||||
|
return (int) (pdFont.getStringWidth(str) / 1000 * font.getSize());
|
||||||
|
} catch (IOException e) {
|
||||||
|
throw new RuntimeException(e);
|
||||||
|
} catch (IllegalArgumentException e) {
|
||||||
|
/*
|
||||||
|
* We let unknown chars be handled with
|
||||||
|
*/
|
||||||
|
return defaultMetrics.stringWidth(str);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int[] getWidths() {
|
||||||
|
try {
|
||||||
|
int[] first256Widths = new int[256];
|
||||||
|
for (int i = 0; i < first256Widths.length; i++) {
|
||||||
|
first256Widths[i] = (int) (pdFont.getWidth(i) / 1000 * font.getSize());
|
||||||
|
}
|
||||||
|
return first256Widths;
|
||||||
|
} catch (IOException e) {
|
||||||
|
throw new RuntimeException(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -1,7 +1,6 @@
|
||||||
package org.xbib.graphics.graphics2d.pdfbox;
|
package org.xbib.graphics.io.pdfbox;
|
||||||
|
|
||||||
import org.apache.fontbox.ttf.TrueTypeCollection;
|
import org.apache.fontbox.ttf.TrueTypeCollection;
|
||||||
import org.apache.fontbox.ttf.TrueTypeFont;
|
|
||||||
import org.apache.pdfbox.io.IOUtils;
|
import org.apache.pdfbox.io.IOUtils;
|
||||||
import org.apache.pdfbox.pdmodel.PDPageContentStream;
|
import org.apache.pdfbox.pdmodel.PDPageContentStream;
|
||||||
import org.apache.pdfbox.pdmodel.font.PDFont;
|
import org.apache.pdfbox.pdmodel.font.PDFont;
|
||||||
|
@ -12,19 +11,14 @@ import org.apache.pdfbox.util.Matrix;
|
||||||
import java.awt.Font;
|
import java.awt.Font;
|
||||||
import java.awt.FontFormatException;
|
import java.awt.FontFormatException;
|
||||||
import java.awt.FontMetrics;
|
import java.awt.FontMetrics;
|
||||||
import java.awt.Graphics;
|
|
||||||
import java.awt.Paint;
|
import java.awt.Paint;
|
||||||
import java.awt.font.FontRenderContext;
|
|
||||||
import java.awt.font.LineMetrics;
|
|
||||||
import java.awt.font.TextAttribute;
|
import java.awt.font.TextAttribute;
|
||||||
import java.awt.geom.Rectangle2D;
|
|
||||||
import java.io.Closeable;
|
import java.io.Closeable;
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileOutputStream;
|
import java.io.FileOutputStream;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.text.AttributedCharacterIterator;
|
import java.text.AttributedCharacterIterator;
|
||||||
import java.text.CharacterIterator;
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
@ -36,7 +30,6 @@ import java.util.logging.Logger;
|
||||||
/**
|
/**
|
||||||
* Default implementation to draw fonts. You can reuse instances of this class
|
* Default implementation to draw fonts. You can reuse instances of this class
|
||||||
* within a PDDocument for more then one {@link PdfBoxGraphics2D}.
|
* within a PDDocument for more then one {@link PdfBoxGraphics2D}.
|
||||||
* <p>
|
|
||||||
* Just ensure that you call close after you closed the PDDocument to free any
|
* Just ensure that you call close after you closed the PDDocument to free any
|
||||||
* temporary files.
|
* temporary files.
|
||||||
*/
|
*/
|
||||||
|
@ -47,7 +40,9 @@ public class DefaultFontTextDrawer implements FontTextDrawer, Closeable {
|
||||||
@Override
|
@Override
|
||||||
public void close() {
|
public void close() {
|
||||||
for (File tempFile : tempFiles) {
|
for (File tempFile : tempFiles) {
|
||||||
tempFile.delete();
|
if (!tempFile.delete()) {
|
||||||
|
logger.log(Level.WARNING, "could not delete " + tempFile);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
tempFiles.clear();
|
tempFiles.clear();
|
||||||
fontFiles.clear();
|
fontFiles.clear();
|
||||||
|
@ -59,9 +54,11 @@ public class DefaultFontTextDrawer implements FontTextDrawer, Closeable {
|
||||||
File file;
|
File file;
|
||||||
}
|
}
|
||||||
|
|
||||||
private final List<FontEntry> fontFiles = new ArrayList<FontEntry>();
|
private final List<FontEntry> fontFiles = new ArrayList<>();
|
||||||
private final List<File> tempFiles = new ArrayList<File>();
|
|
||||||
private final Map<String, PDFont> fontMap = new HashMap<String, PDFont>();
|
private final List<File> tempFiles = new ArrayList<>();
|
||||||
|
|
||||||
|
private final Map<String, PDFont> fontMap = new HashMap<>();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Register a font. If possible, try to use a font file, i.e.
|
* Register a font. If possible, try to use a font file, i.e.
|
||||||
|
@ -121,7 +118,6 @@ public class DefaultFontTextDrawer implements FontTextDrawer, Closeable {
|
||||||
* @throws IOException when something goes wrong with reading the font or writing the
|
* @throws IOException when something goes wrong with reading the font or writing the
|
||||||
* font to the content stream of the PDF:
|
* font to the content stream of the PDF:
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("WeakerAccess")
|
|
||||||
public void registerFont(InputStream fontStream) throws IOException {
|
public void registerFont(InputStream fontStream) throws IOException {
|
||||||
registerFont(null, fontStream);
|
registerFont(null, fontStream);
|
||||||
}
|
}
|
||||||
|
@ -151,7 +147,7 @@ public class DefaultFontTextDrawer implements FontTextDrawer, Closeable {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean canDrawText(AttributedCharacterIterator iterator, IFontTextDrawerEnv env)
|
public boolean canDrawText(AttributedCharacterIterator iterator, FontTextDrawerEnv env)
|
||||||
throws IOException, FontFormatException {
|
throws IOException, FontFormatException {
|
||||||
/*
|
/*
|
||||||
* When no font is registered we can not display the text using a font...
|
* When no font is registered we can not display the text using a font...
|
||||||
|
@ -232,7 +228,7 @@ public class DefaultFontTextDrawer implements FontTextDrawer, Closeable {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void drawText(AttributedCharacterIterator iterator, IFontTextDrawerEnv env)
|
public void drawText(AttributedCharacterIterator iterator, FontTextDrawerEnv env)
|
||||||
throws IOException, FontFormatException {
|
throws IOException, FontFormatException {
|
||||||
PDPageContentStream contentStream = env.getContentStream();
|
PDPageContentStream contentStream = env.getContentStream();
|
||||||
|
|
||||||
|
@ -313,7 +309,7 @@ public class DefaultFontTextDrawer implements FontTextDrawer, Closeable {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public FontMetrics getFontMetrics(final Font f, IFontTextDrawerEnv env)
|
public FontMetrics getFontMetrics(final Font f, FontTextDrawerEnv env)
|
||||||
throws IOException, FontFormatException {
|
throws IOException, FontFormatException {
|
||||||
final FontMetrics defaultMetrics = env.getCalculationGraphics().getFontMetrics(f);
|
final FontMetrics defaultMetrics = env.getCalculationGraphics().getFontMetrics(f);
|
||||||
final PDFont pdFont = mapFont(f, env);
|
final PDFont pdFont = mapFont(f, env);
|
||||||
|
@ -323,140 +319,15 @@ public class DefaultFontTextDrawer implements FontTextDrawer, Closeable {
|
||||||
*
|
*
|
||||||
* But it is correct and fine as long as we use vector shapes.
|
* But it is correct and fine as long as we use vector shapes.
|
||||||
*/
|
*/
|
||||||
if (pdFont == null)
|
if (pdFont == null) {
|
||||||
return defaultMetrics;
|
return defaultMetrics;
|
||||||
return new FontMetrics(f) {
|
|
||||||
public int getDescent() {
|
|
||||||
return defaultMetrics.getDescent();
|
|
||||||
}
|
}
|
||||||
|
return new DefaultFontMetrics(f, defaultMetrics, pdFont);
|
||||||
public int getHeight() {
|
|
||||||
return defaultMetrics.getHeight();
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getMaxAscent() {
|
|
||||||
return defaultMetrics.getMaxAscent();
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getMaxDescent() {
|
|
||||||
return defaultMetrics.getMaxDescent();
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean hasUniformLineMetrics() {
|
|
||||||
return defaultMetrics.hasUniformLineMetrics();
|
|
||||||
}
|
|
||||||
|
|
||||||
public LineMetrics getLineMetrics(String str, Graphics context) {
|
|
||||||
return defaultMetrics.getLineMetrics(str, context);
|
|
||||||
}
|
|
||||||
|
|
||||||
public LineMetrics getLineMetrics(String str, int beginIndex, int limit,
|
|
||||||
Graphics context) {
|
|
||||||
return defaultMetrics.getLineMetrics(str, beginIndex, limit, context);
|
|
||||||
}
|
|
||||||
|
|
||||||
public LineMetrics getLineMetrics(char[] chars, int beginIndex, int limit,
|
|
||||||
Graphics context) {
|
|
||||||
return defaultMetrics.getLineMetrics(chars, beginIndex, limit, context);
|
|
||||||
}
|
|
||||||
|
|
||||||
public LineMetrics getLineMetrics(CharacterIterator ci, int beginIndex, int limit,
|
|
||||||
Graphics context) {
|
|
||||||
return defaultMetrics.getLineMetrics(ci, beginIndex, limit, context);
|
|
||||||
}
|
|
||||||
|
|
||||||
public Rectangle2D getStringBounds(String str, Graphics context) {
|
|
||||||
return defaultMetrics.getStringBounds(str, context);
|
|
||||||
}
|
|
||||||
|
|
||||||
public Rectangle2D getStringBounds(String str, int beginIndex, int limit,
|
|
||||||
Graphics context) {
|
|
||||||
return defaultMetrics.getStringBounds(str, beginIndex, limit, context);
|
|
||||||
}
|
|
||||||
|
|
||||||
public Rectangle2D getStringBounds(char[] chars, int beginIndex, int limit,
|
|
||||||
Graphics context) {
|
|
||||||
return defaultMetrics.getStringBounds(chars, beginIndex, limit, context);
|
|
||||||
}
|
|
||||||
|
|
||||||
public Rectangle2D getStringBounds(CharacterIterator ci, int beginIndex, int limit,
|
|
||||||
Graphics context) {
|
|
||||||
return defaultMetrics.getStringBounds(ci, beginIndex, limit, context);
|
|
||||||
}
|
|
||||||
|
|
||||||
public Rectangle2D getMaxCharBounds(Graphics context) {
|
|
||||||
return defaultMetrics.getMaxCharBounds(context);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int getAscent() {
|
|
||||||
return defaultMetrics.getAscent();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int getMaxAdvance() {
|
|
||||||
return defaultMetrics.getMaxAdvance();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int getLeading() {
|
|
||||||
return defaultMetrics.getLeading();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public FontRenderContext getFontRenderContext() {
|
|
||||||
return defaultMetrics.getFontRenderContext();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int charWidth(char ch) {
|
|
||||||
char[] chars = {ch};
|
|
||||||
return charsWidth(chars, 0, chars.length);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int charWidth(int codePoint) {
|
|
||||||
char[] data = Character.toChars(codePoint);
|
|
||||||
return charsWidth(data, 0, data.length);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int charsWidth(char[] data, int off, int len) {
|
|
||||||
return stringWidth(new String(data, off, len));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int stringWidth(String str) {
|
|
||||||
try {
|
|
||||||
return (int) (pdFont.getStringWidth(str) / 1000 * f.getSize());
|
|
||||||
} catch (IOException e) {
|
|
||||||
throw new RuntimeException(e);
|
|
||||||
} catch (IllegalArgumentException e) {
|
|
||||||
/*
|
|
||||||
* We let unknown chars be handled with
|
|
||||||
*/
|
|
||||||
return defaultMetrics.stringWidth(str);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int[] getWidths() {
|
|
||||||
try {
|
|
||||||
int[] first256Widths = new int[256];
|
|
||||||
for (int i = 0; i < first256Widths.length; i++)
|
|
||||||
first256Widths[i] = (int) (pdFont.getWidth(i) / 1000 * f.getSize());
|
|
||||||
return first256Widths;
|
|
||||||
} catch (IOException e) {
|
|
||||||
throw new RuntimeException(e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private PDFont fallbackFontUnknownEncodings;
|
private PDFont fallbackFontUnknownEncodings;
|
||||||
|
|
||||||
private PDFont findFallbackFont(IFontTextDrawerEnv env) throws IOException {
|
private PDFont findFallbackFont(FontTextDrawerEnv env) throws IOException {
|
||||||
/*
|
/*
|
||||||
* We search for the right font in the folders... We try to use
|
* We search for the right font in the folders... We try to use
|
||||||
* LucidaSansRegular and if not found Arial, because this fonts often exists. We
|
* LucidaSansRegular and if not found Arial, because this fonts often exists. We
|
||||||
|
@ -494,7 +365,7 @@ public class DefaultFontTextDrawer implements FontTextDrawer, Closeable {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
private PDType0Font tryToLoadFont(IFontTextDrawerEnv env, File foundFontFile) throws IOException {
|
private PDType0Font tryToLoadFont(FontTextDrawerEnv env, File foundFontFile) {
|
||||||
try {
|
try {
|
||||||
return PDType0Font.load(env.getDocument(), foundFontFile);
|
return PDType0Font.load(env.getDocument(), foundFontFile);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
|
@ -503,38 +374,22 @@ public class DefaultFontTextDrawer implements FontTextDrawer, Closeable {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void showTextOnStream(IFontTextDrawerEnv env, PDPageContentStream contentStream,
|
private void showTextOnStream(FontTextDrawerEnv env,
|
||||||
Font attributeFont, PDFont font, boolean isStrikeThrough, boolean isUnderline,
|
PDPageContentStream contentStream,
|
||||||
boolean isLigatures, String text) throws IOException {
|
Font attributeFont,
|
||||||
if (isStrikeThrough || isUnderline) {
|
PDFont font,
|
||||||
// noinspection unused
|
boolean isStrikeThrough,
|
||||||
float stringWidth = font.getStringWidth(text);
|
boolean isUnderline,
|
||||||
// noinspection unused
|
boolean isLigatures,
|
||||||
LineMetrics lineMetrics = attributeFont
|
String text) throws IOException {
|
||||||
.getLineMetrics(text, env.getFontRenderContext());
|
|
||||||
/*
|
|
||||||
* TODO: We can not draw that yet, we must do that later. While in textmode its
|
|
||||||
* not possible to draw lines...
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
// noinspection StatementWithEmptyBody
|
|
||||||
if (isLigatures) {
|
|
||||||
/*
|
|
||||||
* No idea how to map this ...
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
contentStream.showText(text);
|
contentStream.showText(text);
|
||||||
}
|
}
|
||||||
|
|
||||||
private PDFont applyFont(Font font, IFontTextDrawerEnv env)
|
private PDFont applyFont(Font font, FontTextDrawerEnv env)
|
||||||
throws IOException, FontFormatException {
|
throws IOException, FontFormatException {
|
||||||
PDFont fontToUse = mapFont(font, env);
|
PDFont fontToUse = mapFont(font, env);
|
||||||
if (fontToUse == null) {
|
if (fontToUse == null) {
|
||||||
/*
|
fontToUse = DefaultFontTextDrawerFonts.chooseMatchingHelvetica(font);
|
||||||
* If we have no font but are forced to apply a font, we just use the default
|
|
||||||
* builtin PDF font...
|
|
||||||
*/
|
|
||||||
fontToUse = DefaultFontTextDrawerDefaultFonts.chooseMatchingHelvetica(font);
|
|
||||||
}
|
}
|
||||||
env.getContentStream().setFont(fontToUse, font.getSize2D());
|
env.getContentStream().setFont(fontToUse, font.getSize2D());
|
||||||
return fontToUse;
|
return fontToUse;
|
||||||
|
@ -550,7 +405,7 @@ public class DefaultFontTextDrawer implements FontTextDrawer, Closeable {
|
||||||
* @throws FontFormatException when the font file can not be loaded
|
* @throws FontFormatException when the font file can not be loaded
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("WeakerAccess")
|
@SuppressWarnings("WeakerAccess")
|
||||||
protected PDFont mapFont(final Font font, final IFontTextDrawerEnv env)
|
protected PDFont mapFont(final Font font, final FontTextDrawerEnv env)
|
||||||
throws IOException, FontFormatException {
|
throws IOException, FontFormatException {
|
||||||
/*
|
/*
|
||||||
* If we have any font registering's, we must perform them now
|
* If we have any font registering's, we must perform them now
|
||||||
|
@ -562,24 +417,17 @@ public class DefaultFontTextDrawer implements FontTextDrawer, Closeable {
|
||||||
}
|
}
|
||||||
if (fontEntry.file.getName().toLowerCase(Locale.US).endsWith(".ttc")) {
|
if (fontEntry.file.getName().toLowerCase(Locale.US).endsWith(".ttc")) {
|
||||||
TrueTypeCollection collection = new TrueTypeCollection(fontEntry.file);
|
TrueTypeCollection collection = new TrueTypeCollection(fontEntry.file);
|
||||||
collection.processAllFonts(new TrueTypeCollection.TrueTypeFontProcessor() {
|
collection.processAllFonts(ttf -> {
|
||||||
@Override
|
|
||||||
public void process(TrueTypeFont ttf) throws IOException {
|
|
||||||
PDFont pdFont = PDType0Font.load(env.getDocument(), ttf, true);
|
PDFont pdFont = PDType0Font.load(env.getDocument(), ttf, true);
|
||||||
fontMap.put(fontEntry.overrideName, pdFont);
|
fontMap.put(fontEntry.overrideName, pdFont);
|
||||||
fontMap.put(pdFont.getName(), pdFont);
|
fontMap.put(pdFont.getName(), pdFont);
|
||||||
}
|
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
/*
|
|
||||||
* We load the font using the file.
|
|
||||||
*/
|
|
||||||
PDFont pdFont = PDType0Font.load(env.getDocument(), fontEntry.file);
|
PDFont pdFont = PDType0Font.load(env.getDocument(), fontEntry.file);
|
||||||
fontMap.put(fontEntry.overrideName, pdFont);
|
fontMap.put(fontEntry.overrideName, pdFont);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fontFiles.clear();
|
fontFiles.clear();
|
||||||
|
|
||||||
return fontMap.get(font.getFontName());
|
return fontMap.get(font.getFontName());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -598,4 +446,100 @@ public class DefaultFontTextDrawer implements FontTextDrawer, Closeable {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Find a PDFont for the given font object, which does not need to be embedded.
|
||||||
|
*
|
||||||
|
* @param font font for which to find a suitable default font
|
||||||
|
* @return null if no default font is found or a default font which does not
|
||||||
|
* need to be embedded.
|
||||||
|
*/
|
||||||
|
protected static PDFont mapDefaultFonts(Font font) {
|
||||||
|
if (fontNameEqualsAnyOf(font, Font.SANS_SERIF, Font.DIALOG, Font.DIALOG_INPUT, "Arial", "Helvetica")) {
|
||||||
|
return chooseMatchingHelvetica(font);
|
||||||
|
}
|
||||||
|
if (fontNameEqualsAnyOf(font, Font.MONOSPACED, "courier", "courier new")) {
|
||||||
|
return chooseMatchingCourier(font);
|
||||||
|
}
|
||||||
|
if (fontNameEqualsAnyOf(font, Font.SERIF, "Times", "Times New Roman", "Times Roman")) {
|
||||||
|
return chooseMatchingTimes(font);
|
||||||
|
}
|
||||||
|
if (fontNameEqualsAnyOf(font, "Symbol")) {
|
||||||
|
return PDType1Font.SYMBOL;
|
||||||
|
}
|
||||||
|
if (fontNameEqualsAnyOf(font, "ZapfDingbats", "Dingbats")) {
|
||||||
|
return PDType1Font.ZAPF_DINGBATS;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get a PDType1Font.HELVETICA-variant, which matches the given font
|
||||||
|
*
|
||||||
|
* @param font Font to get the styles from
|
||||||
|
* @return a PDFont Helvetica variant which matches the style in the given Font
|
||||||
|
* object.
|
||||||
|
*/
|
||||||
|
protected static PDFont chooseMatchingHelvetica(Font font) {
|
||||||
|
if ((font.getStyle() & (Font.ITALIC | Font.BOLD)) == (Font.ITALIC | Font.BOLD)) {
|
||||||
|
return PDType1Font.HELVETICA_BOLD_OBLIQUE;
|
||||||
|
}
|
||||||
|
if ((font.getStyle() & Font.ITALIC) == Font.ITALIC) {
|
||||||
|
return PDType1Font.HELVETICA_OBLIQUE;
|
||||||
|
}
|
||||||
|
if ((font.getStyle() & Font.BOLD) == Font.BOLD) {
|
||||||
|
return PDType1Font.HELVETICA_BOLD;
|
||||||
|
}
|
||||||
|
return PDType1Font.HELVETICA;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get a PDType1Font.COURIER-variant, which matches the given font
|
||||||
|
*
|
||||||
|
* @param font Font to get the styles from
|
||||||
|
* @return a PDFont Courier variant which matches the style in the given Font
|
||||||
|
* object.
|
||||||
|
*/
|
||||||
|
protected static PDFont chooseMatchingCourier(Font font) {
|
||||||
|
if ((font.getStyle() & (Font.ITALIC | Font.BOLD)) == (Font.ITALIC | Font.BOLD)) {
|
||||||
|
return PDType1Font.COURIER_BOLD_OBLIQUE;
|
||||||
|
}
|
||||||
|
if ((font.getStyle() & Font.ITALIC) == Font.ITALIC) {
|
||||||
|
return PDType1Font.COURIER_OBLIQUE;
|
||||||
|
}
|
||||||
|
if ((font.getStyle() & Font.BOLD) == Font.BOLD) {
|
||||||
|
return PDType1Font.COURIER_BOLD;
|
||||||
|
}
|
||||||
|
return PDType1Font.COURIER;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get a PDType1Font.TIMES-variant, which matches the given font
|
||||||
|
*
|
||||||
|
* @param font Font to get the styles from
|
||||||
|
* @return a PDFont Times variant which matches the style in the given Font
|
||||||
|
* object.
|
||||||
|
*/
|
||||||
|
protected static PDFont chooseMatchingTimes(Font font) {
|
||||||
|
if ((font.getStyle() & (Font.ITALIC | Font.BOLD)) == (Font.ITALIC | Font.BOLD)) {
|
||||||
|
return PDType1Font.TIMES_BOLD_ITALIC;
|
||||||
|
}
|
||||||
|
if ((font.getStyle() & Font.ITALIC) == Font.ITALIC) {
|
||||||
|
return PDType1Font.TIMES_ITALIC;
|
||||||
|
}
|
||||||
|
if ((font.getStyle() & Font.BOLD) == Font.BOLD) {
|
||||||
|
return PDType1Font.TIMES_BOLD;
|
||||||
|
}
|
||||||
|
return PDType1Font.TIMES_ROMAN;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static boolean fontNameEqualsAnyOf(Font font, String... names) {
|
||||||
|
String name = font.getName();
|
||||||
|
for (String fontName : names) {
|
||||||
|
if (fontName.equalsIgnoreCase(name)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -0,0 +1,31 @@
|
||||||
|
package org.xbib.graphics.io.pdfbox;
|
||||||
|
|
||||||
|
import org.apache.pdfbox.pdmodel.font.PDFont;
|
||||||
|
|
||||||
|
import java.awt.Font;
|
||||||
|
import java.awt.FontFormatException;
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Like {@link DefaultFontTextDrawer}, but tries to use default fonts
|
||||||
|
* whenever possible. Default fonts are not embedded. You can register
|
||||||
|
* additional font files. If no font mapping is found, Helvetica is used.
|
||||||
|
* This will fallback to vectorized text if any kind of RTL text is rendered
|
||||||
|
* and/or any other not supported feature is used.
|
||||||
|
*/
|
||||||
|
public class DefaultFontTextDrawerFonts extends DefaultFontTextDrawer {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected PDFont mapFont(Font font, FontTextDrawerEnv env) throws IOException, FontFormatException {
|
||||||
|
PDFont pdFont = mapDefaultFonts(font);
|
||||||
|
if (pdFont != null) {
|
||||||
|
return pdFont;
|
||||||
|
}
|
||||||
|
pdFont = super.mapFont(font, env);
|
||||||
|
if (pdFont != null) {
|
||||||
|
return pdFont;
|
||||||
|
}
|
||||||
|
return chooseMatchingHelvetica(font);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -1,13 +1,14 @@
|
||||||
package org.xbib.graphics.graphics2d.pdfbox;
|
package org.xbib.graphics.io.pdfbox;
|
||||||
|
|
||||||
import java.text.AttributedCharacterIterator;
|
import java.text.AttributedCharacterIterator;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Always draw using text, even if we know that we can not map the text correct
|
* Always draw using text, even if we know that we can not map the text correctly.
|
||||||
*/
|
*/
|
||||||
public class DefaultFontTextForcedDrawer extends DefaultFontTextDrawerDefaultFonts {
|
public class DefaultFontTextDrawerForce extends DefaultFontTextDrawerFonts {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean canDrawText(AttributedCharacterIterator iterator, IFontTextDrawerEnv env) {
|
public boolean canDrawText(AttributedCharacterIterator iterator, FontTextDrawerEnv env) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
package org.xbib.graphics.graphics2d.pdfbox;
|
package org.xbib.graphics.io.pdfbox;
|
||||||
|
|
||||||
import org.apache.pdfbox.cos.COSArray;
|
import org.apache.pdfbox.cos.COSArray;
|
||||||
import org.apache.pdfbox.cos.COSBase;
|
import org.apache.pdfbox.cos.COSBase;
|
||||||
|
@ -51,50 +51,19 @@ import java.util.logging.Level;
|
||||||
import java.util.logging.Logger;
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Default paint mapper.
|
* Default paint applier.
|
||||||
*/
|
*/
|
||||||
public class DefaultPaintApplier implements PaintApplier {
|
public class DefaultPaintApplier implements PaintApplier {
|
||||||
|
|
||||||
private static final Logger logger = Logger.getLogger(DefaultPaintApplier.class.getName());
|
private static final Logger logger = Logger.getLogger(DefaultPaintApplier.class.getName());
|
||||||
|
|
||||||
@SuppressWarnings("WeakerAccess")
|
|
||||||
protected static class PaintApplierState {
|
|
||||||
protected PDDocument document;
|
|
||||||
protected PDPageContentStream contentStream;
|
|
||||||
@SuppressWarnings("WeakerAccess")
|
|
||||||
protected ColorMapper colorMapper;
|
|
||||||
@SuppressWarnings("WeakerAccess")
|
|
||||||
protected ImageEncoder imageEncoder;
|
|
||||||
@SuppressWarnings("WeakerAccess")
|
|
||||||
protected PDResources resources;
|
|
||||||
@SuppressWarnings("WeakerAccess")
|
|
||||||
protected PDExtendedGraphicsState pdExtendedGraphicsState;
|
|
||||||
@SuppressWarnings("WeakerAccess")
|
|
||||||
protected Composite composite;
|
|
||||||
private COSDictionary dictExtendedState;
|
|
||||||
private IPaintEnv env;
|
|
||||||
public AffineTransform tf;
|
|
||||||
/**
|
|
||||||
* This transform is only set, when we apply a nested
|
|
||||||
* paint (e.g. a TilingPattern's paint)
|
|
||||||
*/
|
|
||||||
protected AffineTransform nestedTransform;
|
|
||||||
|
|
||||||
private void ensureExtendedState() {
|
|
||||||
if (pdExtendedGraphicsState == null) {
|
|
||||||
this.dictExtendedState = new COSDictionary();
|
|
||||||
this.dictExtendedState.setItem(COSName.TYPE, COSName.EXT_G_STATE);
|
|
||||||
pdExtendedGraphicsState = new PDExtendedGraphicsState(this.dictExtendedState);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private final ExtGStateCache extGStateCache = new ExtGStateCache();
|
private final ExtGStateCache extGStateCache = new ExtGStateCache();
|
||||||
|
|
||||||
private final PDShadingCache shadingCache = new PDShadingCache();
|
private final PDShadingCache shadingCache = new PDShadingCache();
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public PDShading applyPaint(Paint paint, PDPageContentStream contentStream, AffineTransform tf,
|
public PDShading applyPaint(Paint paint, PDPageContentStream contentStream, AffineTransform tf,
|
||||||
IPaintEnv env) throws IOException {
|
PaintApplierEnv env) throws IOException {
|
||||||
PaintApplierState state = new PaintApplierState();
|
PaintApplierState state = new PaintApplierState();
|
||||||
state.document = env.getDocument();
|
state.document = env.getDocument();
|
||||||
state.resources = env.getResources();
|
state.resources = env.getResources();
|
||||||
|
@ -107,9 +76,9 @@ public class DefaultPaintApplier implements PaintApplier {
|
||||||
state.tf = tf;
|
state.tf = tf;
|
||||||
state.nestedTransform = null;
|
state.nestedTransform = null;
|
||||||
PDShading shading = applyPaint(paint, state);
|
PDShading shading = applyPaint(paint, state);
|
||||||
if (state.pdExtendedGraphicsState != null)
|
if (state.pdExtendedGraphicsState != null) {
|
||||||
contentStream.setGraphicsStateParameters(
|
contentStream.setGraphicsStateParameters(extGStateCache.makeUnqiue(state.pdExtendedGraphicsState));
|
||||||
extGStateCache.makeUnqiue(state.pdExtendedGraphicsState));
|
}
|
||||||
return shading;
|
return shading;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -119,29 +88,27 @@ public class DefaultPaintApplier implements PaintApplier {
|
||||||
ColorMapper colorMapper = state.colorMapper;
|
ColorMapper colorMapper = state.colorMapper;
|
||||||
contentStream.setStrokingColor(colorMapper.mapColor(contentStream, color));
|
contentStream.setStrokingColor(colorMapper.mapColor(contentStream, color));
|
||||||
contentStream.setNonStrokingColor(colorMapper.mapColor(contentStream, color));
|
contentStream.setNonStrokingColor(colorMapper.mapColor(contentStream, color));
|
||||||
|
|
||||||
int alpha = color.getAlpha();
|
int alpha = color.getAlpha();
|
||||||
if (alpha < 255) {
|
if (alpha < 255) {
|
||||||
state.ensureExtendedState();
|
state.ensureExtendedState();
|
||||||
Float strokingAlphaConstant = state.pdExtendedGraphicsState.getStrokingAlphaConstant();
|
Float strokingAlphaConstant = state.pdExtendedGraphicsState.getStrokingAlphaConstant();
|
||||||
if (strokingAlphaConstant == null)
|
if (strokingAlphaConstant == null) {
|
||||||
strokingAlphaConstant = 1f;
|
strokingAlphaConstant = 1f;
|
||||||
state.pdExtendedGraphicsState
|
}
|
||||||
.setStrokingAlphaConstant(strokingAlphaConstant * (alpha / 255f));
|
state.pdExtendedGraphicsState.setStrokingAlphaConstant(strokingAlphaConstant * (alpha / 255f));
|
||||||
Float nonStrokingAlphaConstant = state.pdExtendedGraphicsState
|
Float nonStrokingAlphaConstant = state.pdExtendedGraphicsState.getNonStrokingAlphaConstant();
|
||||||
.getNonStrokingAlphaConstant();
|
if (nonStrokingAlphaConstant == null) {
|
||||||
if (nonStrokingAlphaConstant == null)
|
|
||||||
nonStrokingAlphaConstant = 1f;
|
nonStrokingAlphaConstant = 1f;
|
||||||
state.pdExtendedGraphicsState
|
}
|
||||||
.setNonStrokingAlphaConstant(nonStrokingAlphaConstant * (alpha / 255f));
|
state.pdExtendedGraphicsState.setNonStrokingAlphaConstant(nonStrokingAlphaConstant * (alpha / 255f));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private PDShading applyPaint(Paint paint, PaintApplierState state) throws IOException {
|
private PDShading applyPaint(Paint paint, PaintApplierState state) throws IOException {
|
||||||
applyComposite(state);
|
applyComposite(state);
|
||||||
if (paint == null)
|
if (paint == null) {
|
||||||
return null;
|
return null;
|
||||||
|
}
|
||||||
String simpleName = paint.getClass().getSimpleName();
|
String simpleName = paint.getClass().getSimpleName();
|
||||||
if (paint instanceof Color) {
|
if (paint instanceof Color) {
|
||||||
applyAsStrokingColor((Color) paint, state);
|
applyAsStrokingColor((Color) paint, state);
|
||||||
|
@ -152,29 +119,24 @@ public class DefaultPaintApplier implements PaintApplier {
|
||||||
} else if (simpleName.equals("PatternPaint")) {
|
} else if (simpleName.equals("PatternPaint")) {
|
||||||
applyPatternPaint(paint, state);
|
applyPatternPaint(paint, state);
|
||||||
} else if (simpleName.equals("TilingPaint")) {
|
} else if (simpleName.equals("TilingPaint")) {
|
||||||
//applyPdfBoxTilingPaint(paint, state);
|
logger.log(Level.WARNING, "no tiling paint available");
|
||||||
} else if (paint instanceof GradientPaint) {
|
} else if (paint instanceof GradientPaint) {
|
||||||
return shadingCache.makeUnqiue(buildGradientShading((GradientPaint) paint, state));
|
return shadingCache.makeUnqiue(buildGradientShading((GradientPaint) paint, state));
|
||||||
} else if (paint instanceof TexturePaint) {
|
} else if (paint instanceof TexturePaint) {
|
||||||
applyTexturePaint((TexturePaint) paint, state);
|
applyTexturePaint((TexturePaint) paint, state);
|
||||||
} else if (paint instanceof ShadingPaint) {
|
} else if (paint instanceof ShadingPaint) {
|
||||||
// PDFBox paint, we can import the shading directly
|
return shadingCache.makeUnqiue(importPDFBoxShadingPaint((ShadingPaint<?>) paint, state));
|
||||||
return shadingCache
|
|
||||||
.makeUnqiue(importPDFBoxShadingPaint((ShadingPaint<?>) paint, state));
|
|
||||||
} else {
|
} else {
|
||||||
logger.log(Level.WARNING, "Don't know paint " + paint.getClass().getName());
|
logger.log(Level.WARNING, "Don't know paint " + paint.getClass().getName());
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
private PDShading importPDFBoxShadingPaint(ShadingPaint<?> paint, PaintApplierState state)
|
private PDShading importPDFBoxShadingPaint(ShadingPaint<?> paint, PaintApplierState state)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
PDFCloneUtility pdfCloneUtility = new PDFCloneUtility(state.document);
|
PDFCloneUtility pdfCloneUtility = new PDFCloneUtility(state.document);
|
||||||
|
|
||||||
Matrix matrix = paint.getMatrix();
|
Matrix matrix = paint.getMatrix();
|
||||||
PDShading shading = paint.getShading();
|
PDShading shading = paint.getShading();
|
||||||
|
|
||||||
state.contentStream.transform(matrix);
|
state.contentStream.transform(matrix);
|
||||||
return PDShading.create((COSDictionary) pdfCloneUtility
|
return PDShading.create((COSDictionary) pdfCloneUtility
|
||||||
.cloneForNewDocument(shading.getCOSObject()));
|
.cloneForNewDocument(shading.getCOSObject()));
|
||||||
|
@ -197,18 +159,17 @@ public class DefaultPaintApplier implements PaintApplier {
|
||||||
paintPatternTransform = new AffineTransform(paintPatternTransform);
|
paintPatternTransform = new AffineTransform(paintPatternTransform);
|
||||||
paintPatternTransform.preConcatenate(state.tf);
|
paintPatternTransform.preConcatenate(state.tf);
|
||||||
patternTransform.concatenate(paintPatternTransform);
|
patternTransform.concatenate(paintPatternTransform);
|
||||||
} else
|
} else {
|
||||||
patternTransform.concatenate(state.tf);
|
patternTransform.concatenate(state.tf);
|
||||||
|
}
|
||||||
patternTransform.scale(1f, -1f);
|
patternTransform.scale(1f, -1f);
|
||||||
pattern.setMatrix(patternTransform);
|
pattern.setMatrix(patternTransform);
|
||||||
|
|
||||||
PDAppearanceStream appearance = new PDAppearanceStream(state.document);
|
PDAppearanceStream appearance = new PDAppearanceStream(state.document);
|
||||||
appearance.setResources(pattern.getResources());
|
appearance.setResources(pattern.getResources());
|
||||||
appearance.setBBox(pattern.getBBox());
|
appearance.setBBox(pattern.getBBox());
|
||||||
|
|
||||||
Object graphicsNode = getPropertyValue(paint, "getGraphicsNode");
|
Object graphicsNode = getPropertyValue(paint, "getGraphicsNode");
|
||||||
PdfBoxGraphics2D pdfBoxGraphics2D = new PdfBoxGraphics2D(state.document, pattern.getBBox(),
|
PdfBoxGraphics2D pdfBoxGraphics2D =
|
||||||
state.env.getGraphics2D());
|
new PdfBoxGraphics2D(state.document, pattern.getBBox(), state.env.getGraphics2D());
|
||||||
try {
|
try {
|
||||||
Method paintMethod = graphicsNode.getClass().getMethod("paint", Graphics2D.class);
|
Method paintMethod = graphicsNode.getClass().getMethod("paint", Graphics2D.class);
|
||||||
paintMethod.invoke(graphicsNode, pdfBoxGraphics2D);
|
paintMethod.invoke(graphicsNode, pdfBoxGraphics2D);
|
||||||
|
@ -218,37 +179,24 @@ public class DefaultPaintApplier implements PaintApplier {
|
||||||
}
|
}
|
||||||
pdfBoxGraphics2D.dispose();
|
pdfBoxGraphics2D.dispose();
|
||||||
PDFormXObject xFormObject = pdfBoxGraphics2D.getXFormObject();
|
PDFormXObject xFormObject = pdfBoxGraphics2D.getXFormObject();
|
||||||
|
|
||||||
PDPageContentStream imageContentStream = new PDPageContentStream(state.document, appearance,
|
PDPageContentStream imageContentStream = new PDPageContentStream(state.document, appearance,
|
||||||
((COSStream) pattern.getCOSObject()).createOutputStream());
|
((COSStream) pattern.getCOSObject()).createOutputStream());
|
||||||
imageContentStream.drawForm(xFormObject);
|
imageContentStream.drawForm(xFormObject);
|
||||||
imageContentStream.close();
|
imageContentStream.close();
|
||||||
|
|
||||||
PDColorSpace patternCS1 = new PDPattern(null);
|
PDColorSpace patternCS1 = new PDPattern(null);
|
||||||
COSName tilingPatternName = state.resources.add(pattern);
|
COSName tilingPatternName = state.resources.add(pattern);
|
||||||
PDColor patternColor = new PDColor(tilingPatternName, patternCS1);
|
PDColor patternColor = new PDColor(tilingPatternName, patternCS1);
|
||||||
|
|
||||||
state.contentStream.setNonStrokingColor(patternColor);
|
state.contentStream.setNonStrokingColor(patternColor);
|
||||||
state.contentStream.setStrokingColor(patternColor);
|
state.contentStream.setStrokingColor(patternColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*private void applyPdfBoxTilingPaint(Paint paint, PaintApplierState state) {
|
|
||||||
Paint tilingPaint = PrivateFieldAccessor.getPrivateField(paint, "paint");
|
|
||||||
Matrix patternMatrix = PrivateFieldAccessor.getPrivateField(paint, "patternMatrix");
|
|
||||||
state.nestedTransform = patternMatrix.createAffineTransform();
|
|
||||||
applyPaint(tilingPaint, state);
|
|
||||||
}*/
|
|
||||||
|
|
||||||
private void applyComposite(PaintApplierState state) {
|
private void applyComposite(PaintApplierState state) {
|
||||||
if (state.composite == null)
|
if (state.composite == null) {
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
// Possibly set the alpha constant
|
|
||||||
float alpha = 1;
|
float alpha = 1;
|
||||||
COSName blendMode = COSName.COMPATIBLE;
|
COSName blendMode = COSName.COMPATIBLE;
|
||||||
int rule = AlphaComposite.SRC;
|
int rule = AlphaComposite.SRC;
|
||||||
|
|
||||||
if (state.composite instanceof AlphaComposite) {
|
if (state.composite instanceof AlphaComposite) {
|
||||||
AlphaComposite composite = (AlphaComposite) state.composite;
|
AlphaComposite composite = (AlphaComposite) state.composite;
|
||||||
alpha = composite.getAlpha();
|
alpha = composite.getAlpha();
|
||||||
|
@ -259,45 +207,31 @@ public class DefaultPaintApplier implements PaintApplier {
|
||||||
} else {
|
} else {
|
||||||
logger.log(Level.WARNING, "Unknown composite " + state.composite.getClass().getSimpleName());
|
logger.log(Level.WARNING, "Unknown composite " + state.composite.getClass().getSimpleName());
|
||||||
}
|
}
|
||||||
|
|
||||||
state.ensureExtendedState();
|
state.ensureExtendedState();
|
||||||
if (alpha < 1) {
|
if (alpha < 1) {
|
||||||
assert state.pdExtendedGraphicsState != null;
|
|
||||||
state.pdExtendedGraphicsState.setStrokingAlphaConstant(alpha);
|
state.pdExtendedGraphicsState.setStrokingAlphaConstant(alpha);
|
||||||
state.pdExtendedGraphicsState.setNonStrokingAlphaConstant(alpha);
|
state.pdExtendedGraphicsState.setNonStrokingAlphaConstant(alpha);
|
||||||
}
|
}
|
||||||
/*
|
|
||||||
* Try to map the alpha rule into blend modes
|
|
||||||
*/
|
|
||||||
switch (rule) {
|
switch (rule) {
|
||||||
case AlphaComposite.CLEAR:
|
case AlphaComposite.CLEAR:
|
||||||
|
case AlphaComposite.DST_ATOP:
|
||||||
|
case AlphaComposite.DST:
|
||||||
|
case AlphaComposite.DST_IN:
|
||||||
|
case AlphaComposite.DST_OUT:
|
||||||
|
case AlphaComposite.SRC_IN:
|
||||||
|
case AlphaComposite.SRC_OUT:
|
||||||
|
case AlphaComposite.DST_OVER:
|
||||||
break;
|
break;
|
||||||
case AlphaComposite.SRC:
|
case AlphaComposite.SRC:
|
||||||
blendMode = COSName.NORMAL;
|
blendMode = COSName.NORMAL;
|
||||||
break;
|
break;
|
||||||
case AlphaComposite.SRC_OVER:
|
case AlphaComposite.SRC_OVER:
|
||||||
|
case AlphaComposite.SRC_ATOP:
|
||||||
blendMode = COSName.COMPATIBLE;
|
blendMode = COSName.COMPATIBLE;
|
||||||
break;
|
break;
|
||||||
case AlphaComposite.XOR:
|
case AlphaComposite.XOR:
|
||||||
blendMode = COSName.EXCLUSION;
|
blendMode = COSName.EXCLUSION;
|
||||||
break;
|
break;
|
||||||
case AlphaComposite.DST:
|
|
||||||
break;
|
|
||||||
case AlphaComposite.DST_ATOP:
|
|
||||||
break;
|
|
||||||
case AlphaComposite.SRC_ATOP:
|
|
||||||
blendMode = COSName.COMPATIBLE;
|
|
||||||
break;
|
|
||||||
case AlphaComposite.DST_IN:
|
|
||||||
break;
|
|
||||||
case AlphaComposite.DST_OUT:
|
|
||||||
break;
|
|
||||||
case AlphaComposite.SRC_IN:
|
|
||||||
break;
|
|
||||||
case AlphaComposite.SRC_OUT:
|
|
||||||
break;
|
|
||||||
case AlphaComposite.DST_OVER:
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
state.dictExtendedState.setItem(COSName.BM, blendMode);
|
state.dictExtendedState.setItem(COSName.BM, blendMode);
|
||||||
}
|
}
|
||||||
|
@ -663,44 +597,28 @@ public class DefaultPaintApplier implements PaintApplier {
|
||||||
COSArray domain = new COSArray();
|
COSArray domain = new COSArray();
|
||||||
domain.add(new COSFloat(0));
|
domain.add(new COSFloat(0));
|
||||||
domain.add(new COSFloat(1));
|
domain.add(new COSFloat(1));
|
||||||
|
|
||||||
COSArray encode = new COSArray();
|
COSArray encode = new COSArray();
|
||||||
|
|
||||||
COSArray range = new COSArray();
|
COSArray range = new COSArray();
|
||||||
range.add(new COSFloat(0));
|
range.add(new COSFloat(0));
|
||||||
range.add(new COSFloat(1));
|
range.add(new COSFloat(1));
|
||||||
|
List<Color> colorList = new ArrayList<>(Arrays.asList(colors));
|
||||||
List<Color> colorList = new ArrayList<Color>(Arrays.asList(colors));
|
|
||||||
COSArray bounds = new COSArray();
|
COSArray bounds = new COSArray();
|
||||||
if (Math.abs(fractions[0]) > EPSILON) {
|
if (Math.abs(fractions[0]) > EPSILON) {
|
||||||
/*
|
|
||||||
* We need to insert a "keyframe" for fraction 0. See also java.awt.LinearGradientPaint for future information
|
|
||||||
*/
|
|
||||||
colorList.add(0, colors[0]);
|
colorList.add(0, colors[0]);
|
||||||
bounds.add(new COSFloat(fractions[0]));
|
bounds.add(new COSFloat(fractions[0]));
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* We always add the inner fractions
|
|
||||||
*/
|
|
||||||
for (int i = 1; i < fractions.length - 1; i++) {
|
for (int i = 1; i < fractions.length - 1; i++) {
|
||||||
float fraction = fractions[i];
|
float fraction = fractions[i];
|
||||||
bounds.add(new COSFloat(fraction));
|
bounds.add(new COSFloat(fraction));
|
||||||
}
|
}
|
||||||
if (Math.abs(fractions[fractions.length - 1] - 1f) > EPSILON) {
|
if (Math.abs(fractions[fractions.length - 1] - 1f) > EPSILON) {
|
||||||
/*
|
|
||||||
* We also need to insert a "keyframe" at the end for fraction 1
|
|
||||||
*/
|
|
||||||
colorList.add(colors[colors.length - 1]);
|
colorList.add(colors[colors.length - 1]);
|
||||||
bounds.add(new COSFloat(fractions[fractions.length - 1]));
|
bounds.add(new COSFloat(fractions[fractions.length - 1]));
|
||||||
}
|
}
|
||||||
|
|
||||||
COSArray type2Functions = buildType2Functions(colorList, domain, encode, state);
|
COSArray type2Functions = buildType2Functions(colorList, domain, encode, state);
|
||||||
|
|
||||||
function.setItem(COSName.FUNCTIONS, type2Functions);
|
function.setItem(COSName.FUNCTIONS, type2Functions);
|
||||||
function.setItem(COSName.BOUNDS, bounds);
|
function.setItem(COSName.BOUNDS, bounds);
|
||||||
function.setItem(COSName.ENCODE, encode);
|
function.setItem(COSName.ENCODE, encode);
|
||||||
|
|
||||||
PDFunctionType3 type3 = new PDFunctionType3(function);
|
PDFunctionType3 type3 = new PDFunctionType3(function);
|
||||||
type3.setDomainValues(domain);
|
type3.setDomainValues(domain);
|
||||||
return type3;
|
return type3;
|
||||||
|
@ -718,7 +636,6 @@ public class DefaultPaintApplier implements PaintApplier {
|
||||||
private COSArray buildType2Functions(List<Color> colors, COSArray domain, COSArray encode,
|
private COSArray buildType2Functions(List<Color> colors, COSArray domain, COSArray encode,
|
||||||
PaintApplierState state) {
|
PaintApplierState state) {
|
||||||
Color prevColor = colors.get(0);
|
Color prevColor = colors.get(0);
|
||||||
|
|
||||||
COSArray functions = new COSArray();
|
COSArray functions = new COSArray();
|
||||||
for (int i = 1; i < colors.size(); i++) {
|
for (int i = 1; i < colors.size(); i++) {
|
||||||
Color color = colors.get(i);
|
Color color = colors.get(i);
|
||||||
|
@ -726,11 +643,12 @@ public class DefaultPaintApplier implements PaintApplier {
|
||||||
PDColor pdColor = state.colorMapper.mapColor(state.contentStream, color);
|
PDColor pdColor = state.colorMapper.mapColor(state.contentStream, color);
|
||||||
COSArray c0 = new COSArray();
|
COSArray c0 = new COSArray();
|
||||||
COSArray c1 = new COSArray();
|
COSArray c1 = new COSArray();
|
||||||
for (float component : prevPdColor.getComponents())
|
for (float component : prevPdColor.getComponents()) {
|
||||||
c0.add(new COSFloat(component));
|
c0.add(new COSFloat(component));
|
||||||
for (float component : pdColor.getComponents())
|
}
|
||||||
|
for (float component : pdColor.getComponents()) {
|
||||||
c1.add(new COSFloat(component));
|
c1.add(new COSFloat(component));
|
||||||
|
}
|
||||||
COSDictionary type2Function = new COSDictionary();
|
COSDictionary type2Function = new COSDictionary();
|
||||||
type2Function.setInt(COSName.FUNCTION_TYPE, 2);
|
type2Function.setInt(COSName.FUNCTION_TYPE, 2);
|
||||||
type2Function.setItem(COSName.C0, c0);
|
type2Function.setItem(COSName.C0, c0);
|
||||||
|
@ -738,7 +656,6 @@ public class DefaultPaintApplier implements PaintApplier {
|
||||||
type2Function.setInt(COSName.N, 1);
|
type2Function.setInt(COSName.N, 1);
|
||||||
type2Function.setItem(COSName.DOMAIN, domain);
|
type2Function.setItem(COSName.DOMAIN, domain);
|
||||||
functions.add(type2Function);
|
functions.add(type2Function);
|
||||||
|
|
||||||
encode.add(new COSFloat(0));
|
encode.add(new COSFloat(0));
|
||||||
encode.add(new COSFloat(1));
|
encode.add(new COSFloat(1));
|
||||||
prevColor = color;
|
prevColor = color;
|
||||||
|
@ -769,7 +686,29 @@ public class DefaultPaintApplier implements PaintApplier {
|
||||||
}
|
}
|
||||||
c = c.getSuperclass();
|
c = c.getSuperclass();
|
||||||
}
|
}
|
||||||
throw new NullPointerException("Method " + propertyGetter + " not found on object " + obj.getClass().getName());
|
throw new NullPointerException("Method " + propertyGetter + " not found on object " + obj);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected static class PaintApplierState {
|
||||||
|
protected PDDocument document;
|
||||||
|
protected PDPageContentStream contentStream;
|
||||||
|
protected ColorMapper colorMapper;
|
||||||
|
protected ImageEncoder imageEncoder;
|
||||||
|
protected PDResources resources;
|
||||||
|
protected PDExtendedGraphicsState pdExtendedGraphicsState;
|
||||||
|
protected Composite composite;
|
||||||
|
private COSDictionary dictExtendedState;
|
||||||
|
private PaintApplierEnv env;
|
||||||
|
public AffineTransform tf;
|
||||||
|
protected AffineTransform nestedTransform;
|
||||||
|
|
||||||
|
private void ensureExtendedState() {
|
||||||
|
if (pdExtendedGraphicsState == null) {
|
||||||
|
this.dictExtendedState = new COSDictionary();
|
||||||
|
this.dictExtendedState.setItem(COSName.TYPE, COSName.EXT_G_STATE);
|
||||||
|
pdExtendedGraphicsState = new PDExtendedGraphicsState(this.dictExtendedState);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static abstract class COSResourceCacheBase<TObject extends COSObjectable> {
|
private static abstract class COSResourceCacheBase<TObject extends COSObjectable> {
|
||||||
|
@ -777,8 +716,9 @@ public class DefaultPaintApplier implements PaintApplier {
|
||||||
|
|
||||||
private static boolean equalsCOSDictionary(COSDictionary cosDictionary,
|
private static boolean equalsCOSDictionary(COSDictionary cosDictionary,
|
||||||
COSDictionary cosDictionary1) {
|
COSDictionary cosDictionary1) {
|
||||||
if (cosDictionary.size() != cosDictionary1.size())
|
if (cosDictionary.size() != cosDictionary1.size()) {
|
||||||
return false;
|
return false;
|
||||||
|
}
|
||||||
for (COSName name : cosDictionary.keySet()) {
|
for (COSName name : cosDictionary.keySet()) {
|
||||||
COSBase item = cosDictionary.getItem(name);
|
COSBase item = cosDictionary.getItem(name);
|
||||||
COSBase item2 = cosDictionary1.getItem(name);
|
COSBase item2 = cosDictionary1.getItem(name);
|
||||||
|
@ -789,37 +729,38 @@ public class DefaultPaintApplier implements PaintApplier {
|
||||||
}
|
}
|
||||||
|
|
||||||
private static boolean equalsCOSBase(COSBase item, COSBase item2) {
|
private static boolean equalsCOSBase(COSBase item, COSBase item2) {
|
||||||
if (item == item2)
|
if (item == item2) {
|
||||||
return true;
|
return true;
|
||||||
if (item == null)
|
}
|
||||||
|
if (item == null) {
|
||||||
return false;
|
return false;
|
||||||
if (item2 == null)
|
}
|
||||||
|
if (item2 == null) {
|
||||||
return false;
|
return false;
|
||||||
/*
|
}
|
||||||
* Can the items be compared directly?
|
if (item.equals(item2)) {
|
||||||
*/
|
|
||||||
if (item.equals(item2))
|
|
||||||
return true;
|
return true;
|
||||||
|
}
|
||||||
if (item instanceof COSDictionary && item2 instanceof COSDictionary)
|
if (item instanceof COSDictionary && item2 instanceof COSDictionary) {
|
||||||
return equalsCOSDictionary((COSDictionary) item, (COSDictionary) item2);
|
return equalsCOSDictionary((COSDictionary) item, (COSDictionary) item2);
|
||||||
|
}
|
||||||
// noinspection SimplifiableIfStatement
|
if (item instanceof COSArray && item2 instanceof COSArray) {
|
||||||
if (item instanceof COSArray && item2 instanceof COSArray)
|
|
||||||
return equalsCOSArray((COSArray) item, (COSArray) item2);
|
return equalsCOSArray((COSArray) item, (COSArray) item2);
|
||||||
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static boolean equalsCOSArray(COSArray item, COSArray item2) {
|
private static boolean equalsCOSArray(COSArray item, COSArray item2) {
|
||||||
if (item.size() != item2.size())
|
if (item.size() != item2.size()) {
|
||||||
return false;
|
return false;
|
||||||
|
}
|
||||||
for (int i = 0; i < item.size(); i++) {
|
for (int i = 0; i < item.size(); i++) {
|
||||||
COSBase i1 = item.getObject(i);
|
COSBase i1 = item.getObject(i);
|
||||||
COSBase i2 = item2.getObject(i);
|
COSBase i2 = item2.getObject(i);
|
||||||
if (!equalsCOSBase(i1, i2))
|
if (!equalsCOSBase(i1, i2)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -827,15 +768,12 @@ public class DefaultPaintApplier implements PaintApplier {
|
||||||
|
|
||||||
TObject makeUnqiue(TObject state) {
|
TObject makeUnqiue(TObject state) {
|
||||||
int key = getKey(state);
|
int key = getKey(state);
|
||||||
List<TObject> pdExtendedGraphicsStates = states.get(key);
|
List<TObject> pdExtendedGraphicsStates = states.computeIfAbsent(key, k -> new ArrayList<>());
|
||||||
if (pdExtendedGraphicsStates == null) {
|
|
||||||
pdExtendedGraphicsStates = new ArrayList<TObject>();
|
|
||||||
states.put(key, pdExtendedGraphicsStates);
|
|
||||||
}
|
|
||||||
for (TObject s : pdExtendedGraphicsStates) {
|
for (TObject s : pdExtendedGraphicsStates) {
|
||||||
if (stateEquals(s, state))
|
if (stateEquals(s, state)) {
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
pdExtendedGraphicsStates.add(state);
|
pdExtendedGraphicsStates.add(state);
|
||||||
return state;
|
return state;
|
||||||
}
|
}
|
||||||
|
@ -860,5 +798,4 @@ public class DefaultPaintApplier implements PaintApplier {
|
||||||
return obj.getCOSObject().size();
|
return obj.getCOSObject().size();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
package org.xbib.graphics.graphics2d.pdfbox;
|
package org.xbib.graphics.io.pdfbox;
|
||||||
|
|
||||||
import java.awt.Paint;
|
import java.awt.Paint;
|
||||||
import java.awt.Shape;
|
import java.awt.Shape;
|
||||||
|
@ -18,7 +18,7 @@ public interface DrawControl {
|
||||||
* @param env Environment
|
* @param env Environment
|
||||||
* @return the shape to be filled. If you return null, nothing will be filled
|
* @return the shape to be filled. If you return null, nothing will be filled
|
||||||
*/
|
*/
|
||||||
Shape transformShapeBeforeFill(Shape shape, IDrawControlEnv env);
|
Shape transformShapeBeforeFill(Shape shape, DrawControlEnv env);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* You may optional change the shape that is going to be drawn. You can also do
|
* You may optional change the shape that is going to be drawn. You can also do
|
||||||
|
@ -28,36 +28,36 @@ public interface DrawControl {
|
||||||
* @param env Environment
|
* @param env Environment
|
||||||
* @return the shape to be filled. If you return null, nothing will be drawn
|
* @return the shape to be filled. If you return null, nothing will be drawn
|
||||||
*/
|
*/
|
||||||
Shape transformShapeBeforeDraw(Shape shape, IDrawControlEnv env);
|
Shape transformShapeBeforeDraw(Shape shape, DrawControlEnv env);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Called after shape was filled. This method is always called, even if
|
* Called after shape was filled. This method is always called, even if
|
||||||
* {@link #transformShapeBeforeFill(Shape, IDrawControlEnv)} returns
|
* {@link #transformShapeBeforeFill(Shape, DrawControlEnv)} returns
|
||||||
* null.
|
* null.
|
||||||
*
|
*
|
||||||
* @param shape the shape that was filled. This is the original shape, not the one
|
* @param shape the shape that was filled. This is the original shape, not the one
|
||||||
* transformed by
|
* transformed by
|
||||||
* {@link #transformShapeBeforeFill(Shape, IDrawControlEnv)}.
|
* {@link #transformShapeBeforeFill(Shape, DrawControlEnv)}.
|
||||||
* @param env Environment
|
* @param env Environment
|
||||||
*/
|
*/
|
||||||
void afterShapeFill(Shape shape, IDrawControlEnv env);
|
void afterShapeFill(Shape shape, DrawControlEnv env);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Called after shape was drawn. This method is always called, even if
|
* Called after shape was drawn. This method is always called, even if
|
||||||
* {@link #transformShapeBeforeDraw(Shape, IDrawControlEnv)} returns
|
* {@link #transformShapeBeforeDraw(Shape, DrawControlEnv)} returns
|
||||||
* null.
|
* null.
|
||||||
*
|
*
|
||||||
* @param shape the shape that was drawn. This is the original shape, not the one
|
* @param shape the shape that was drawn. This is the original shape, not the one
|
||||||
* transformed by
|
* transformed by
|
||||||
* {@link #transformShapeBeforeDraw(Shape, IDrawControlEnv)}.
|
* {@link #transformShapeBeforeDraw(Shape, DrawControlEnv)}.
|
||||||
* @param env Environment
|
* @param env Environment
|
||||||
*/
|
*/
|
||||||
void afterShapeDraw(Shape shape, IDrawControlEnv env);
|
void afterShapeDraw(Shape shape, DrawControlEnv env);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The environment of the draw operation
|
* The environment of the draw operation
|
||||||
*/
|
*/
|
||||||
interface IDrawControlEnv {
|
interface DrawControlEnv {
|
||||||
/**
|
/**
|
||||||
* @return the current paint set on the graphics.
|
* @return the current paint set on the graphics.
|
||||||
*/
|
*/
|
|
@ -1,4 +1,4 @@
|
||||||
package org.xbib.graphics.graphics2d.pdfbox;
|
package org.xbib.graphics.io.pdfbox;
|
||||||
|
|
||||||
import org.apache.pdfbox.pdmodel.PDDocument;
|
import org.apache.pdfbox.pdmodel.PDDocument;
|
||||||
import org.apache.pdfbox.pdmodel.PDPageContentStream;
|
import org.apache.pdfbox.pdmodel.PDPageContentStream;
|
||||||
|
@ -20,10 +20,33 @@ import java.text.AttributedCharacterIterator;
|
||||||
*/
|
*/
|
||||||
public interface FontTextDrawer {
|
public interface FontTextDrawer {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param iterator Has the text and all its properties
|
||||||
|
* @param env Environment
|
||||||
|
* @return true when the given text can be fully drawn using fonts. return false
|
||||||
|
* to have the text drawn as vector shapes
|
||||||
|
* @throws IOException when a font can not be loaded or a paint can't be applied.
|
||||||
|
* @throws FontFormatException when the font file can not be loaded
|
||||||
|
*/
|
||||||
|
boolean canDrawText(AttributedCharacterIterator iterator, FontTextDrawerEnv env)
|
||||||
|
throws IOException, FontFormatException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param iterator The text with all properties
|
||||||
|
* @param env Environment
|
||||||
|
* @throws IOException when a font can not be loaded or a paint can't be applied.
|
||||||
|
* @throws FontFormatException when the font file can not be loaded
|
||||||
|
*/
|
||||||
|
void drawText(AttributedCharacterIterator iterator, FontTextDrawerEnv env)
|
||||||
|
throws IOException, FontFormatException;
|
||||||
|
|
||||||
|
FontMetrics getFontMetrics(Font f, FontTextDrawerEnv env)
|
||||||
|
throws IOException, FontFormatException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Enviroment for font based drawing of text
|
* Enviroment for font based drawing of text
|
||||||
*/
|
*/
|
||||||
interface IFontTextDrawerEnv {
|
interface FontTextDrawerEnv {
|
||||||
/**
|
/**
|
||||||
* @return the document we are writing to
|
* @return the document we are writing to
|
||||||
*/
|
*/
|
||||||
|
@ -79,32 +102,4 @@ public interface FontTextDrawer {
|
||||||
*/
|
*/
|
||||||
Graphics2D getCalculationGraphics();
|
Graphics2D getCalculationGraphics();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @param iterator Has the text and all its properties
|
|
||||||
* @param env Environment
|
|
||||||
* @return true when the given text can be fully drawn using fonts. return false
|
|
||||||
* to have the text drawn as vector shapes
|
|
||||||
* @throws IOException when a font can not be loaded or a paint can't be applied.
|
|
||||||
* @throws FontFormatException when the font file can not be loaded
|
|
||||||
*/
|
|
||||||
boolean canDrawText(AttributedCharacterIterator iterator, IFontTextDrawerEnv env)
|
|
||||||
throws IOException, FontFormatException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param iterator The text with all properties
|
|
||||||
* @param env Environment
|
|
||||||
* @throws IOException when a font can not be loaded or a paint can't be applied.
|
|
||||||
* @throws FontFormatException when the font file can not be loaded
|
|
||||||
*/
|
|
||||||
void drawText(AttributedCharacterIterator iterator, IFontTextDrawerEnv env)
|
|
||||||
throws IOException, FontFormatException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param f
|
|
||||||
* @param env
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
FontMetrics getFontMetrics(Font f, IFontTextDrawerEnv env)
|
|
||||||
throws IOException, FontFormatException;
|
|
||||||
}
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
package org.xbib.graphics.graphics2d.pdfbox;
|
package org.xbib.graphics.io.pdfbox;
|
||||||
|
|
||||||
import org.apache.pdfbox.pdmodel.PDDocument;
|
import org.apache.pdfbox.pdmodel.PDDocument;
|
||||||
import org.apache.pdfbox.pdmodel.PDPageContentStream;
|
import org.apache.pdfbox.pdmodel.PDPageContentStream;
|
|
@ -1,4 +1,4 @@
|
||||||
package org.xbib.graphics.graphics2d.pdfbox;
|
package org.xbib.graphics.io.pdfbox;
|
||||||
|
|
||||||
import org.apache.pdfbox.pdmodel.PDDocument;
|
import org.apache.pdfbox.pdmodel.PDDocument;
|
||||||
import org.apache.pdfbox.pdmodel.PDPageContentStream;
|
import org.apache.pdfbox.pdmodel.PDPageContentStream;
|
||||||
|
@ -24,8 +24,11 @@ import java.util.Map;
|
||||||
* PdfBoxGraphics2D objects.
|
* PdfBoxGraphics2D objects.
|
||||||
*/
|
*/
|
||||||
public class LosslessImageEncoder implements ImageEncoder {
|
public class LosslessImageEncoder implements ImageEncoder {
|
||||||
|
|
||||||
private Map<ImageSoftReference, SoftReference<PDImageXObject>> imageMap = new HashMap<>();
|
private Map<ImageSoftReference, SoftReference<PDImageXObject>> imageMap = new HashMap<>();
|
||||||
|
|
||||||
private Map<ProfileSoftReference, SoftReference<PDColorSpace>> profileMap = new HashMap<>();
|
private Map<ProfileSoftReference, SoftReference<PDColorSpace>> profileMap = new HashMap<>();
|
||||||
|
|
||||||
private SoftReference<PDDocument> doc;
|
private SoftReference<PDDocument> doc;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -87,17 +90,18 @@ public class LosslessImageEncoder implements ImageEncoder {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean equals(Object obj) {
|
public boolean equals(Object obj) {
|
||||||
if (obj == null)
|
if (obj == null) {
|
||||||
return false;
|
return false;
|
||||||
assert obj instanceof ImageSoftReference;
|
}
|
||||||
return ((ImageSoftReference) obj).get() == get();
|
return ((ImageSoftReference) obj).get() == get();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
Image image = get();
|
Image image = get();
|
||||||
if (image == null)
|
if (image == null) {
|
||||||
return 0;
|
return 0;
|
||||||
|
}
|
||||||
return image.hashCode();
|
return image.hashCode();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -109,17 +113,18 @@ public class LosslessImageEncoder implements ImageEncoder {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean equals(Object obj) {
|
public boolean equals(Object obj) {
|
||||||
if (obj == null)
|
if (obj == null) {
|
||||||
return false;
|
return false;
|
||||||
assert obj instanceof ProfileSoftReference;
|
}
|
||||||
return ((ProfileSoftReference) obj).get() == get();
|
return ((ProfileSoftReference) obj).get() == get();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
ICC_Profile image = get();
|
ICC_Profile image = get();
|
||||||
if (image == null)
|
if (image == null) {
|
||||||
return 0;
|
return 0;
|
||||||
|
}
|
||||||
return image.hashCode();
|
return image.hashCode();
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
package org.xbib.graphics.graphics2d.pdfbox;
|
package org.xbib.graphics.io.pdfbox;
|
||||||
|
|
||||||
import org.apache.pdfbox.pdmodel.PDDocument;
|
import org.apache.pdfbox.pdmodel.PDDocument;
|
||||||
import org.apache.pdfbox.pdmodel.PDPageContentStream;
|
import org.apache.pdfbox.pdmodel.PDPageContentStream;
|
||||||
|
@ -30,13 +30,13 @@ public interface PaintApplier {
|
||||||
* @throws IOException if its not possible to write the paint into the contentStream
|
* @throws IOException if its not possible to write the paint into the contentStream
|
||||||
*/
|
*/
|
||||||
PDShading applyPaint(Paint paint, PDPageContentStream contentStream,
|
PDShading applyPaint(Paint paint, PDPageContentStream contentStream,
|
||||||
AffineTransform currentTransform, IPaintEnv env) throws IOException;
|
AffineTransform currentTransform, PaintApplierEnv env) throws IOException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The different mappers used by the paint applier. This interface is
|
* The different mappers used by the paint applier. This interface is
|
||||||
* implemented internally by {@link PdfBoxGraphics2D}
|
* implemented internally by {@link PdfBoxGraphics2D}
|
||||||
*/
|
*/
|
||||||
interface IPaintEnv {
|
interface PaintApplierEnv {
|
||||||
/**
|
/**
|
||||||
* @return the color mapper
|
* @return the color mapper
|
||||||
*/
|
*/
|
|
@ -0,0 +1,13 @@
|
||||||
|
package org.xbib.graphics.io.pdfbox;
|
||||||
|
|
||||||
|
@SuppressWarnings("serial")
|
||||||
|
public class PdfBoxGraphics2dException extends RuntimeException {
|
||||||
|
|
||||||
|
public PdfBoxGraphics2dException(String message) {
|
||||||
|
super(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
public PdfBoxGraphics2dException(Throwable throwable) {
|
||||||
|
super(throwable);
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
package org.xbib.graphics.graphics2d.pdfbox;
|
package org.xbib.graphics.io.pdfbox;
|
||||||
|
|
||||||
import org.apache.pdfbox.cos.COSName;
|
import org.apache.pdfbox.cos.COSName;
|
||||||
import org.apache.pdfbox.pdmodel.PDDocument;
|
import org.apache.pdfbox.pdmodel.PDDocument;
|
||||||
|
@ -24,8 +24,10 @@ import java.io.OutputStream;
|
||||||
with PDFBox.
|
with PDFBox.
|
||||||
*/
|
*/
|
||||||
public class RGBtoCMYKColorMapper extends DefaultColorMapper {
|
public class RGBtoCMYKColorMapper extends DefaultColorMapper {
|
||||||
ICC_ColorSpace icc_colorspace;
|
|
||||||
PDICCBased pdProfile;
|
private final ICC_ColorSpace icc_colorspace;
|
||||||
|
|
||||||
|
private final PDICCBased pdProfile;
|
||||||
|
|
||||||
public RGBtoCMYKColorMapper(ICC_Profile icc_profile, PDDocument document) throws IOException {
|
public RGBtoCMYKColorMapper(ICC_Profile icc_profile, PDDocument document) throws IOException {
|
||||||
icc_colorspace = new ICC_ColorSpace(icc_profile);
|
icc_colorspace = new ICC_ColorSpace(icc_profile);
|
||||||
|
@ -44,20 +46,13 @@ public class RGBtoCMYKColorMapper extends DefaultColorMapper {
|
||||||
int[] rgbInts = {r, g, b};
|
int[] rgbInts = {r, g, b};
|
||||||
float[] rgbFoats = rgbIntToFloat(rgbInts);
|
float[] rgbFoats = rgbIntToFloat(rgbInts);
|
||||||
float[] cmykFloats = icc_colorspace.fromRGB(rgbFoats);
|
float[] cmykFloats = icc_colorspace.fromRGB(rgbFoats);
|
||||||
|
return new PDColor(cmykFloats, pdProfile);
|
||||||
PDColor cmykColor = new PDColor(cmykFloats, pdProfile);
|
|
||||||
return cmykColor;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static float[] rgbIntToFloat(int[] rgbInts) {
|
public static float[] rgbIntToFloat(int[] rgbInts) {
|
||||||
// the input ints are in the range 0 to 255
|
float red = (float) rgbInts[0] / 255.0f;
|
||||||
// the output floats need to be in the range 0.0 to 1.0
|
float green = (float) rgbInts[1] / 255.0f;
|
||||||
float red = (float) rgbInts[0] / 255.0F;
|
float blue = (float) rgbInts[2] / 255.0f;
|
||||||
float green = (float) rgbInts[1] / 255.0F;
|
return new float[]{red, green, blue};
|
||||||
float blue = (float) rgbInts[2] / 255.0F;
|
|
||||||
float[] rgbFloats = new float[]{red, green, blue};
|
|
||||||
return rgbFloats;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package org.xbib.graphics.graphics2d.pdfbox;
|
package org.xbib.graphics.io.pdfbox;
|
||||||
|
|
||||||
import org.apache.pdfbox.pdmodel.PDDocument;
|
import org.apache.pdfbox.pdmodel.PDDocument;
|
||||||
import org.apache.pdfbox.pdmodel.PDPage;
|
import org.apache.pdfbox.pdmodel.PDPage;
|
||||||
|
@ -8,6 +8,7 @@ import org.apache.pdfbox.pdmodel.graphics.form.PDFormXObject;
|
||||||
import org.apache.pdfbox.util.Matrix;
|
import org.apache.pdfbox.util.Matrix;
|
||||||
import org.junit.jupiter.api.Assertions;
|
import org.junit.jupiter.api.Assertions;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.xbib.graphics.io.pdfbox.PdfBoxGraphics2D;
|
||||||
|
|
||||||
import java.awt.Color;
|
import java.awt.Color;
|
||||||
import java.io.File;
|
import java.io.File;
|
|
@ -0,0 +1,65 @@
|
||||||
|
package org.xbib.graphics.io.pdfbox;
|
||||||
|
|
||||||
|
import org.apache.pdfbox.pdmodel.font.PDType1Font;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
import java.awt.Font;
|
||||||
|
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertNull;
|
||||||
|
|
||||||
|
public class DefaultFontTextDrawerFontsTest {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testFontStyleMatching() {
|
||||||
|
Font anyFont = Font.decode("Dialog");
|
||||||
|
Font anyFontBold = anyFont.deriveFont(Font.BOLD);
|
||||||
|
Font anyFontItalic = anyFont.deriveFont(Font.ITALIC);
|
||||||
|
Font anyFontBoldItalic = anyFont.deriveFont(Font.BOLD | Font.ITALIC);
|
||||||
|
|
||||||
|
assertEquals(PDType1Font.COURIER, DefaultFontTextDrawerFonts.chooseMatchingCourier(anyFont));
|
||||||
|
assertEquals(PDType1Font.COURIER_BOLD,
|
||||||
|
DefaultFontTextDrawerFonts.chooseMatchingCourier(anyFontBold));
|
||||||
|
assertEquals(PDType1Font.COURIER_OBLIQUE,
|
||||||
|
DefaultFontTextDrawerFonts.chooseMatchingCourier(anyFontItalic));
|
||||||
|
assertEquals(PDType1Font.COURIER_BOLD_OBLIQUE,
|
||||||
|
DefaultFontTextDrawerFonts.chooseMatchingCourier(anyFontBoldItalic));
|
||||||
|
|
||||||
|
assertEquals(PDType1Font.HELVETICA,
|
||||||
|
DefaultFontTextDrawerFonts.chooseMatchingHelvetica(anyFont));
|
||||||
|
assertEquals(PDType1Font.HELVETICA_BOLD,
|
||||||
|
DefaultFontTextDrawerFonts.chooseMatchingHelvetica(anyFontBold));
|
||||||
|
assertEquals(PDType1Font.HELVETICA_OBLIQUE,
|
||||||
|
DefaultFontTextDrawerFonts.chooseMatchingHelvetica(anyFontItalic));
|
||||||
|
assertEquals(PDType1Font.HELVETICA_BOLD_OBLIQUE,
|
||||||
|
DefaultFontTextDrawerFonts.chooseMatchingHelvetica(anyFontBoldItalic));
|
||||||
|
|
||||||
|
assertEquals(PDType1Font.TIMES_ROMAN, DefaultFontTextDrawerFonts.chooseMatchingTimes(anyFont));
|
||||||
|
assertEquals(PDType1Font.TIMES_BOLD,
|
||||||
|
DefaultFontTextDrawerFonts.chooseMatchingTimes(anyFontBold));
|
||||||
|
assertEquals(PDType1Font.TIMES_ITALIC,
|
||||||
|
DefaultFontTextDrawerFonts.chooseMatchingTimes(anyFontItalic));
|
||||||
|
assertEquals(PDType1Font.TIMES_BOLD_ITALIC,
|
||||||
|
DefaultFontTextDrawerFonts.chooseMatchingTimes(anyFontBoldItalic));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testDefaultFontMapping() {
|
||||||
|
assertEquals(PDType1Font.HELVETICA,
|
||||||
|
DefaultFontTextDrawerFonts.mapDefaultFonts(Font.decode(Font.DIALOG)));
|
||||||
|
assertEquals(PDType1Font.HELVETICA,
|
||||||
|
DefaultFontTextDrawerFonts.mapDefaultFonts(Font.decode(Font.DIALOG_INPUT)));
|
||||||
|
assertEquals(PDType1Font.HELVETICA,
|
||||||
|
DefaultFontTextDrawerFonts.mapDefaultFonts(Font.decode("Arial")));
|
||||||
|
assertEquals(PDType1Font.COURIER,
|
||||||
|
DefaultFontTextDrawerFonts.mapDefaultFonts(Font.decode(Font.MONOSPACED)));
|
||||||
|
assertEquals(PDType1Font.TIMES_ROMAN,
|
||||||
|
DefaultFontTextDrawerFonts.mapDefaultFonts(Font.decode(Font.SERIF)));
|
||||||
|
assertEquals(PDType1Font.ZAPF_DINGBATS,
|
||||||
|
DefaultFontTextDrawerFonts.mapDefaultFonts(Font.decode("Dingbats")));
|
||||||
|
assertEquals(PDType1Font.SYMBOL,
|
||||||
|
DefaultFontTextDrawerFonts.mapDefaultFonts(Font.decode("Symbol")));
|
||||||
|
assertNull(DefaultFontTextDrawerFonts.mapDefaultFonts(Font.decode("Georgia")));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,23 @@
|
||||||
|
package org.xbib.graphics.io.pdfbox;
|
||||||
|
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
import java.awt.Color;
|
||||||
|
import java.awt.Font;
|
||||||
|
import java.awt.FontFormatException;
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
public class FontTest extends PdfBoxGraphics2DTestBase {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testAntonioFont() throws IOException, FontFormatException {
|
||||||
|
final Font antonioRegular = Font.createFont(Font.TRUETYPE_FONT,
|
||||||
|
PdfBoxGraphics2dTest.class.getResourceAsStream("antonio/Antonio-Regular.ttf"))
|
||||||
|
.deriveFont(15f);
|
||||||
|
exportGraphic("fonts", "antonio", gfx -> {
|
||||||
|
gfx.setColor(Color.BLACK);
|
||||||
|
gfx.setFont(antonioRegular);
|
||||||
|
gfx.drawString("Für älter österlich, Umlauts are not always fun.", 10, 50);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
package org.xbib.graphics.graphics2d.pdfbox;
|
package org.xbib.graphics.io.pdfbox;
|
||||||
|
|
||||||
import org.apache.pdfbox.pdmodel.PDDocument;
|
import org.apache.pdfbox.pdmodel.PDDocument;
|
||||||
import org.apache.pdfbox.pdmodel.font.PDFont;
|
import org.apache.pdfbox.pdmodel.font.PDFont;
|
|
@ -1,4 +1,4 @@
|
||||||
package org.xbib.graphics.graphics2d.pdfbox;
|
package org.xbib.graphics.io.pdfbox;
|
||||||
|
|
||||||
import org.apache.pdfbox.pdmodel.PDDocument;
|
import org.apache.pdfbox.pdmodel.PDDocument;
|
||||||
import org.apache.pdfbox.pdmodel.PDPage;
|
import org.apache.pdfbox.pdmodel.PDPage;
|
||||||
|
@ -31,6 +31,7 @@ import org.jfree.data.xy.XYSeriesCollection;
|
||||||
//import org.jfree.ui.RectangleEdge;
|
//import org.jfree.ui.RectangleEdge;
|
||||||
//import org.jfree.util.TableOrder;
|
//import org.jfree.util.TableOrder;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.xbib.graphics.io.pdfbox.PdfBoxGraphics2D;
|
||||||
|
|
||||||
import java.awt.Color;
|
import java.awt.Color;
|
||||||
import java.awt.Font;
|
import java.awt.Font;
|
|
@ -1,4 +1,4 @@
|
||||||
package org.xbib.graphics.graphics2d.pdfbox;
|
package org.xbib.graphics.io.pdfbox;
|
||||||
|
|
||||||
import javax.imageio.ImageIO;
|
import javax.imageio.ImageIO;
|
||||||
import org.apache.pdfbox.pdmodel.PDDocument;
|
import org.apache.pdfbox.pdmodel.PDDocument;
|
||||||
|
@ -6,7 +6,6 @@ import org.apache.pdfbox.pdmodel.PDPage;
|
||||||
import org.apache.pdfbox.pdmodel.PDPageContentStream;
|
import org.apache.pdfbox.pdmodel.PDPageContentStream;
|
||||||
import org.apache.pdfbox.pdmodel.common.PDRectangle;
|
import org.apache.pdfbox.pdmodel.common.PDRectangle;
|
||||||
import org.apache.pdfbox.pdmodel.font.PDFont;
|
import org.apache.pdfbox.pdmodel.font.PDFont;
|
||||||
import org.apache.pdfbox.pdmodel.font.PDFontFactory;
|
|
||||||
import org.apache.pdfbox.pdmodel.font.PDType1Font;
|
import org.apache.pdfbox.pdmodel.font.PDType1Font;
|
||||||
import org.apache.pdfbox.pdmodel.graphics.form.PDFormXObject;
|
import org.apache.pdfbox.pdmodel.graphics.form.PDFormXObject;
|
||||||
import org.apache.pdfbox.util.Matrix;
|
import org.apache.pdfbox.util.Matrix;
|
||||||
|
@ -29,17 +28,14 @@ class PdfBoxGraphics2DTestBase {
|
||||||
PDFont pdArial = PDType1Font.HELVETICA;
|
PDFont pdArial = PDType1Font.HELVETICA;
|
||||||
File parentDir = new File("build/test/" + dir);
|
File parentDir = new File("build/test/" + dir);
|
||||||
parentDir.mkdirs();
|
parentDir.mkdirs();
|
||||||
|
|
||||||
BufferedImage image = new BufferedImage(400, 400, BufferedImage.TYPE_4BYTE_ABGR);
|
BufferedImage image = new BufferedImage(400, 400, BufferedImage.TYPE_4BYTE_ABGR);
|
||||||
Graphics2D imageGraphics = image.createGraphics();
|
Graphics2D imageGraphics = image.createGraphics();
|
||||||
exporter.draw(imageGraphics);
|
exporter.draw(imageGraphics);
|
||||||
imageGraphics.dispose();
|
imageGraphics.dispose();
|
||||||
ImageIO.write(image, "PNG", new File(parentDir, name + ".png"));
|
ImageIO.write(image, "PNG", new File(parentDir, name + ".png"));
|
||||||
|
|
||||||
for (Mode m : Mode.values()) {
|
for (Mode m : Mode.values()) {
|
||||||
PDPage page = new PDPage(PDRectangle.A4);
|
PDPage page = new PDPage(PDRectangle.A4);
|
||||||
document.addPage(page);
|
document.addPage(page);
|
||||||
|
|
||||||
PDPageContentStream contentStream = new PDPageContentStream(document, page);
|
PDPageContentStream contentStream = new PDPageContentStream(document, page);
|
||||||
PdfBoxGraphics2D pdfBoxGraphics2D = new PdfBoxGraphics2D(document, 400, 400);
|
PdfBoxGraphics2D pdfBoxGraphics2D = new PdfBoxGraphics2D(document, 400, 400);
|
||||||
DefaultFontTextDrawer fontTextDrawer = null;
|
DefaultFontTextDrawer fontTextDrawer = null;
|
||||||
|
@ -56,12 +52,12 @@ class PdfBoxGraphics2DTestBase {
|
||||||
registerFots(fontTextDrawer);
|
registerFots(fontTextDrawer);
|
||||||
break;
|
break;
|
||||||
case DefaultFontText: {
|
case DefaultFontText: {
|
||||||
fontTextDrawer = new DefaultFontTextDrawerDefaultFonts();
|
fontTextDrawer = new DefaultFontTextDrawerFonts();
|
||||||
registerFots(fontTextDrawer);
|
registerFots(fontTextDrawer);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case ForceFontText:
|
case ForceFontText:
|
||||||
fontTextDrawer = new DefaultFontTextForcedDrawer();
|
fontTextDrawer = new DefaultFontTextDrawerForce();
|
||||||
registerFots(fontTextDrawer);
|
registerFots(fontTextDrawer);
|
||||||
fontTextDrawer.registerFont("Arial", pdArial);
|
fontTextDrawer.registerFont("Arial", pdArial);
|
||||||
break;
|
break;
|
||||||
|
@ -93,10 +89,8 @@ class PdfBoxGraphics2DTestBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void registerFots(DefaultFontTextDrawer fontTextDrawer) {
|
private void registerFots(DefaultFontTextDrawer fontTextDrawer) {
|
||||||
fontTextDrawer.registerFont(new File(
|
fontTextDrawer.registerFont(new File("src/test/resources/org/xbib/graphics/io/pdfbox/DejaVuSerifCondensed.ttf"));
|
||||||
"src/test/resources/org/xbib/graphics/graphics2d/pdfbox/DejaVuSerifCondensed.ttf"));
|
fontTextDrawer.registerFont(new File("src/test/resources/org/xbib/graphics/io/pdfbox/antonio/Antonio-Regular.ttf"));
|
||||||
fontTextDrawer.registerFont(new File(
|
|
||||||
"src/test/resources/org/xbib/graphics/graphics2d/pdfbox/antonio/Antonio-Regular.ttf"));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
interface GraphicsExporter {
|
interface GraphicsExporter {
|
|
@ -1,4 +1,4 @@
|
||||||
package org.xbib.graphics.graphics2d.pdfbox;
|
package org.xbib.graphics.io.pdfbox;
|
||||||
|
|
||||||
import javax.imageio.ImageIO;
|
import javax.imageio.ImageIO;
|
||||||
import javax.imageio.ImageReader;
|
import javax.imageio.ImageReader;
|
||||||
|
@ -256,9 +256,7 @@ public class PdfBoxGraphics2dTest extends PdfBoxGraphics2DTestBase {
|
||||||
as1.addAttribute(TextAttribute.BACKGROUND, Color.LIGHT_GRAY, 12, 19);
|
as1.addAttribute(TextAttribute.BACKGROUND, Color.LIGHT_GRAY, 12, 19);
|
||||||
as1.addAttribute(TextAttribute.FONT, font2, 20, 28);
|
as1.addAttribute(TextAttribute.FONT, font2, 20, 28);
|
||||||
as1.addAttribute(TextAttribute.LIGATURES, TextAttribute.LIGATURES_ON, 20, 28);
|
as1.addAttribute(TextAttribute.LIGATURES, TextAttribute.LIGATURES_ON, 20, 28);
|
||||||
as1.addAttribute(TextAttribute.STRIKETHROUGH, TextAttribute.STRIKETHROUGH_ON, 20,
|
as1.addAttribute(TextAttribute.STRIKETHROUGH, TextAttribute.STRIKETHROUGH_ON, 20, 28);
|
||||||
28);
|
|
||||||
|
|
||||||
gfx.drawString(as1.getIterator(), 15, 160);
|
gfx.drawString(as1.getIterator(), 15, 160);
|
||||||
|
|
||||||
// Hello World - in arabic and hebrew
|
// Hello World - in arabic and hebrew
|
||||||
|
@ -278,5 +276,4 @@ public class PdfBoxGraphics2dTest extends PdfBoxGraphics2DTestBase {
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
package org.xbib.graphics.graphics2d.pdfbox;
|
package org.xbib.graphics.io.pdfbox;
|
||||||
|
|
||||||
import org.apache.pdfbox.pdmodel.PDDocument;
|
import org.apache.pdfbox.pdmodel.PDDocument;
|
||||||
import org.apache.pdfbox.pdmodel.PDPage;
|
import org.apache.pdfbox.pdmodel.PDPage;
|
||||||
|
@ -123,12 +123,12 @@ public class PdfRerenderTest {
|
||||||
boolean insideOwnDraw = false;
|
boolean insideOwnDraw = false;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void afterShapeFill(Shape shape, IDrawControlEnv env) {
|
public void afterShapeFill(Shape shape, DrawControlEnv env) {
|
||||||
afterShapeDraw(shape, env);
|
afterShapeDraw(shape, env);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void afterShapeDraw(Shape shape, IDrawControlEnv env) {
|
public void afterShapeDraw(Shape shape, DrawControlEnv env) {
|
||||||
if (insideOwnDraw)
|
if (insideOwnDraw)
|
||||||
return;
|
return;
|
||||||
insideOwnDraw = true;
|
insideOwnDraw = true;
|
|
@ -1,4 +1,4 @@
|
||||||
package org.xbib.graphics.graphics2d.pdfbox;
|
package org.xbib.graphics.io.pdfbox;
|
||||||
|
|
||||||
import org.apache.batik.anim.dom.SAXSVGDocumentFactory;
|
import org.apache.batik.anim.dom.SAXSVGDocumentFactory;
|
||||||
import org.apache.batik.bridge.BridgeContext;
|
import org.apache.batik.bridge.BridgeContext;
|
||||||
|
@ -59,63 +59,44 @@ public class RenderSVGsTest extends PdfBoxGraphics2DTestBase {
|
||||||
|
|
||||||
private void renderSVG(String name, final double scale) throws IOException {
|
private void renderSVG(String name, final double scale) throws IOException {
|
||||||
String uri = RenderSVGsTest.class.getResource(name).toString();
|
String uri = RenderSVGsTest.class.getResource(name).toString();
|
||||||
|
|
||||||
// create the document
|
|
||||||
String parser = XMLResourceDescriptor.getXMLParserClassName();
|
String parser = XMLResourceDescriptor.getXMLParserClassName();
|
||||||
SAXSVGDocumentFactory f = new SAXSVGDocumentFactory(parser);
|
SAXSVGDocumentFactory f = new SAXSVGDocumentFactory(parser);
|
||||||
Document document = f.createDocument(uri, RenderSVGsTest.class.getResourceAsStream(name));
|
Document document = f.createDocument(uri, RenderSVGsTest.class.getResourceAsStream(name));
|
||||||
|
|
||||||
// create the GVT
|
|
||||||
UserAgent userAgent = new UserAgentAdapter();
|
UserAgent userAgent = new UserAgentAdapter();
|
||||||
DocumentLoader loader = new DocumentLoader(userAgent);
|
DocumentLoader loader = new DocumentLoader(userAgent);
|
||||||
BridgeContext bctx = new BridgeContext(userAgent, loader);
|
BridgeContext bctx = new BridgeContext(userAgent, loader);
|
||||||
bctx.setDynamicState(BridgeContext.STATIC);
|
bctx.setDynamicState(BridgeContext.STATIC);
|
||||||
GVTBuilder builder = new GVTBuilder();
|
GVTBuilder builder = new GVTBuilder();
|
||||||
final GraphicsNode gvtRoot = builder.build(bctx, document);
|
final GraphicsNode gvtRoot = builder.build(bctx, document);
|
||||||
|
this.exportGraphic("svg", name.replace(".svg", ""), gfx -> {
|
||||||
this.exportGraphic("svg", name.replace(".svg", ""), new GraphicsExporter() {
|
|
||||||
@Override
|
|
||||||
public void draw(Graphics2D gfx) {
|
|
||||||
gfx.scale(scale, scale);
|
gfx.scale(scale, scale);
|
||||||
gvtRoot.paint(gfx);
|
gvtRoot.paint(gfx);
|
||||||
}
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
private void renderSVGCMYK(String name, final double scale) throws IOException {
|
private void renderSVGCMYK(String name, final double scale) throws IOException {
|
||||||
String uri = RenderSVGsTest.class.getResource(name).toString();
|
String uri = RenderSVGsTest.class.getResource(name).toString();
|
||||||
|
|
||||||
// create the document
|
|
||||||
String parser = XMLResourceDescriptor.getXMLParserClassName();
|
String parser = XMLResourceDescriptor.getXMLParserClassName();
|
||||||
SAXSVGDocumentFactory f = new SAXSVGDocumentFactory(parser);
|
SAXSVGDocumentFactory f = new SAXSVGDocumentFactory(parser);
|
||||||
Document document = f.createDocument(uri, RenderSVGsTest.class.getResourceAsStream(name));
|
Document document = f.createDocument(uri, RenderSVGsTest.class.getResourceAsStream(name));
|
||||||
|
|
||||||
// create the GVT
|
|
||||||
UserAgent userAgent = new UserAgentAdapter();
|
UserAgent userAgent = new UserAgentAdapter();
|
||||||
DocumentLoader loader = new DocumentLoader(userAgent);
|
DocumentLoader loader = new DocumentLoader(userAgent);
|
||||||
BridgeContext bctx = new BridgeContext(userAgent, loader);
|
BridgeContext bctx = new BridgeContext(userAgent, loader);
|
||||||
bctx.setDynamicState(BridgeContext.STATIC);
|
bctx.setDynamicState(BridgeContext.STATIC);
|
||||||
GVTBuilder builder = new GVTBuilder();
|
GVTBuilder builder = new GVTBuilder();
|
||||||
final GraphicsNode gvtRoot = builder.build(bctx, document);
|
final GraphicsNode gvtRoot = builder.build(bctx, document);
|
||||||
|
|
||||||
PDDocument pdfDocument = new PDDocument();
|
PDDocument pdfDocument = new PDDocument();
|
||||||
|
|
||||||
File parentDir = new File("build/test/svg");
|
File parentDir = new File("build/test/svg");
|
||||||
parentDir.mkdirs();
|
parentDir.mkdirs();
|
||||||
|
|
||||||
PDPage page = new PDPage(PDRectangle.A4);
|
PDPage page = new PDPage(PDRectangle.A4);
|
||||||
pdfDocument.addPage(page);
|
pdfDocument.addPage(page);
|
||||||
|
|
||||||
PDPageContentStream contentStream = new PDPageContentStream(pdfDocument, page);
|
PDPageContentStream contentStream = new PDPageContentStream(pdfDocument, page);
|
||||||
|
|
||||||
PdfBoxGraphics2D pdfBoxGraphics2D = new PdfBoxGraphics2D(pdfDocument, 400, 400);
|
PdfBoxGraphics2D pdfBoxGraphics2D = new PdfBoxGraphics2D(pdfDocument, 400, 400);
|
||||||
|
|
||||||
ICC_Profile icc_profile = ICC_Profile.getInstance(PDDocument.class.getResourceAsStream(
|
ICC_Profile icc_profile = ICC_Profile.getInstance(PDDocument.class.getResourceAsStream(
|
||||||
"/org/apache/pdfbox/resources/icc/ISOcoated_v2_300_bas.icc"));
|
"/org/apache/pdfbox/resources/icc/ISOcoated_v2_300_bas.icc"));
|
||||||
DefaultColorMapper colorMapper = new RGBtoCMYKColorMapper(icc_profile, pdfDocument);
|
DefaultColorMapper colorMapper = new RGBtoCMYKColorMapper(icc_profile, pdfDocument);
|
||||||
pdfBoxGraphics2D.setColorMapper(colorMapper);
|
pdfBoxGraphics2D.setColorMapper(colorMapper);
|
||||||
|
FontTextDrawer fontTextDrawer;
|
||||||
FontTextDrawer fontTextDrawer = null;
|
|
||||||
contentStream.beginText();
|
contentStream.beginText();
|
||||||
contentStream.setStrokingColor(0.0f, 0.0f, 0.0f, 1.0f);
|
contentStream.setStrokingColor(0.0f, 0.0f, 0.0f, 1.0f);
|
||||||
contentStream.setNonStrokingColor(0.0f, 0.0f, 0.0f, 1.0f);
|
contentStream.setNonStrokingColor(0.0f, 0.0f, 0.0f, 1.0f);
|
||||||
|
@ -124,21 +105,16 @@ public class RenderSVGsTest extends PdfBoxGraphics2DTestBase {
|
||||||
contentStream.showText("Mode: CMYK colorspace");
|
contentStream.showText("Mode: CMYK colorspace");
|
||||||
contentStream.endText();
|
contentStream.endText();
|
||||||
fontTextDrawer = new DefaultFontTextDrawer();
|
fontTextDrawer = new DefaultFontTextDrawer();
|
||||||
|
|
||||||
pdfBoxGraphics2D.setFontTextDrawer(fontTextDrawer);
|
pdfBoxGraphics2D.setFontTextDrawer(fontTextDrawer);
|
||||||
|
|
||||||
pdfBoxGraphics2D.scale(scale, scale);
|
pdfBoxGraphics2D.scale(scale, scale);
|
||||||
gvtRoot.paint(pdfBoxGraphics2D);
|
gvtRoot.paint(pdfBoxGraphics2D);
|
||||||
pdfBoxGraphics2D.dispose();
|
pdfBoxGraphics2D.dispose();
|
||||||
|
|
||||||
PDFormXObject appearanceStream = pdfBoxGraphics2D.getXFormObject();
|
PDFormXObject appearanceStream = pdfBoxGraphics2D.getXFormObject();
|
||||||
Matrix matrix = new Matrix();
|
Matrix matrix = new Matrix();
|
||||||
matrix.translate(0, 300);
|
matrix.translate(0, 300);
|
||||||
contentStream.transform(matrix);
|
contentStream.transform(matrix);
|
||||||
contentStream.drawForm(appearanceStream);
|
contentStream.drawForm(appearanceStream);
|
||||||
|
|
||||||
contentStream.close();
|
contentStream.close();
|
||||||
|
|
||||||
String baseName = name.substring(0, name.lastIndexOf('.'));
|
String baseName = name.substring(0, name.lastIndexOf('.'));
|
||||||
pdfDocument.save(new File(parentDir, baseName + ".pdf"));
|
pdfDocument.save(new File(parentDir, baseName + ".pdf"));
|
||||||
pdfDocument.close();
|
pdfDocument.close();
|
Before Width: | Height: | Size: 633 B After Width: | Height: | Size: 633 B |
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 232 KiB After Width: | Height: | Size: 232 KiB |
Before Width: | Height: | Size: 208 KiB After Width: | Height: | Size: 208 KiB |