bwip 0.6.7 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1514cf4e6fe2059954dfceca2aa76690d4329a75
4
- data.tar.gz: c8113b40e920e05da80d168eaef76fe5cbe59927
3
+ metadata.gz: a01af6cc53c7f80ccbb0717ad96a5aab82b9060a
4
+ data.tar.gz: f2398fc1c6f6c221dbe57aa488ee96bc015a8c64
5
5
  SHA512:
6
- metadata.gz: 6c619f5629e1c890ed0d34fc6758b2db562a8081fe06a6762fb046638e05886a331f0953b48dcd604f18e7bca8b9adce8f747bed94d221482afb2a4f98dff659
7
- data.tar.gz: 9ef92e7b38a61d39d476f912f9f2b6919f4dd384d4456b969d007c622423f179ec406db70e505ba120a4166304150f77b986f8ede8b81c100ec794234a62a6c2
6
+ metadata.gz: bed1e237b2700f0ec4e4585191143f61e6b30518c18f9a4f55a52c896a2a745139b883445bd9d607d9d5da427c87d737dbd06167c0f767d7489350f4d2b3b781
7
+ data.tar.gz: dc077816f99a97bba59b098df80c6f4fb1eb410fdf98ac863e401f680eb31acb1643c72e796c9b75b735dead270bf962607333478ba4a4de0ea8e669ffce9fec
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # bwip
2
- [![Build Status](https://secure.travis-ci.org/heartyoh/bwip.png?branch=master)](http://travis-ci.org/heartyoh/bwip)
2
+ [![Build Status](https://secure.travis-ci.org/heartyoh/bwip.png?branch=master)](http://travis-ci.org/heartyoh/bwip)
3
3
 
4
4
  This project rocks and uses MIT-LICENSE.
5
5
 
@@ -8,15 +8,15 @@ It supports packages for nodejs, bower & rails.
8
8
 
9
9
  As a gem for rails provides:
10
10
 
11
- * bwip 0.6
11
+ * bwip 0.7
12
12
 
13
13
  As a package for nodejs provides:
14
14
 
15
- * bwip 0.6
15
+ * bwip 0.7
16
16
 
17
17
  As a package for bower provides:
18
18
 
19
- * bwip 0.6
19
+ * bwip 0.7
20
20
 
21
21
  ## Getting Started
22
22
  ### Install the nodejs module with:
@@ -26,7 +26,8 @@ As a package for bower provides:
26
26
  var bwip = require('bwip');
27
27
 
28
28
  var bcid = 'code128';
29
- var scale = 4;
29
+ var wscale = 4;
30
+ var hscale = 4;
30
31
  var rotate = 'L';
31
32
  var text = '^FNC1011234567890';
32
33
  var options = {
@@ -34,7 +35,49 @@ var options = {
34
35
  parsefnc: true
35
36
  };
36
37
 
37
- var png = bwip.png(bcid, text, scale, rotate, options);
38
+ var png = bwip.png(bcid, text, wscale, hscale, rotate, options);
39
+ ```
40
+
41
+ ### Sample Barcode Image Server using nodejs
42
+ ```
43
+ var url = require('url');
44
+ var http = require('http');
45
+ var bwip = require('bwip');
46
+
47
+ function error(res, status, message) {
48
+ res.writeHead(status, { 'Content-Type':'text/plain' });
49
+ res.end(message, 'ascii');
50
+ }
51
+
52
+ http.createServer(function(req, res) {
53
+
54
+ var args = url.parse(req.url, true).query;
55
+
56
+ // Set the defaults
57
+ var wscale = parseInt(args.wscale, 10) || 2;
58
+ var hscale = parseInt(args.hscale, 10) || 2;
59
+ var rotate = args.rotate || 'N';
60
+ var bcid = args.bcid;
61
+ var text = args.text;
62
+
63
+ if (!text)
64
+ return error(res, 400, 'Bar code text not specified.\r\n');
65
+ if (!bcid)
66
+ return error(res, 400, 'Bar code type not specified.\r\n');
67
+
68
+ // Remove the non-BWIPP options
69
+ delete args.wscale;
70
+ delete args.hscale;
71
+ delete args.rotate;
72
+ delete args.text;
73
+ delete args.bcid;
74
+
75
+ // Return a PNG-encoded image
76
+ var png = bwip.png(bcid, text, wscale, hscale, rotate, args);
77
+
78
+ res.writeHead(200, { 'Content-Type':'image/png' });
79
+ res.end(png, 'binary');
80
+ }).listen(3030);
38
81
  ```
39
82
 
40
83
  ### Install the rails module with Gemfile
@@ -56,13 +99,15 @@ The bwip files will be added to the asset pipeline and available for you to use.
56
99
 
57
100
  ## Documentation
58
101
  ### for Node
59
- function : bwip.png(bcid, text, scale, rotate, options);
102
+ function : bwip.png(bcid, text, wscale, hscale, rotate, options);
60
103
 
61
104
  'bcid' is the name of the bwip-js barcode rendering function e.g.
62
105
 
63
106
  'text' is the text to be bar coded.
64
107
 
65
- 'scale' is an integer value from 1 .. 10. Default is 2.
108
+ 'wscale' is an integer value from 1 .. 10. Default is 2.
109
+
110
+ 'hscale' is an integer value from 1 .. 10. Default is 2.
66
111
 
67
112
  'rotate' takes the values:
68
113
  N normal, unrotated (the default)
@@ -1,4 +1,4 @@
1
1
  module Bwip
2
- VERSION = "0.6.7"
2
+ VERSION = "0.7.0"
3
3
  BWIP_BUILD_ON = "20130125"
4
- end
4
+ end
@@ -1,4 +1,4 @@
1
- function BWIPJS(){this.ptr=0,this.stk=[],this.dict={},this.dstk=[this.dict],this.gstk=[],this.bmap=null,this.dstk.get=function(a){for(var b=this.length-1;b>=0;b--)if(void 0!==this[b][a])return this[b][a]},this.greset()}BWIPJS.bwipp={},BWIPJS.fonts={},BWIPJS.print=function(){},BWIPJS.debug=function(){},BWIPJS.psarray=function(a){if(!(this instanceof BWIPJS.psarray))return new BWIPJS.psarray(a);if("number"==typeof a){for(var b=[],c=0;a>c;c++)b[c]=null;this.value=b,this.length=a,this.offset=0}else if(a instanceof Array)this.value=a,this.offset=0,this.length=a.length;else{this.value=[],this.length=a.length,this.offset=0;for(var c=0;c<a.length;c++)this.value[c]=a.value[a.offset+c]}for(var c=0;c<this.length;c++)this[c]=void 0},BWIPJS.psarray.prototype.toString=function(){for(var a="",b=this.offset;b<this.offset+this.length;b++)a+=" "+BWIPJS.pstostring(this.value[b]);return"["+a.substr(1)+"]"},BWIPJS.psarray.prototype.valueOf=function(){for(var a="",b=this.offset;b<this.offset+this.length;b++)a+=" "+BWIPJS.pstostring(this.value[b]);return"["+a.substr(1)+"]"},BWIPJS.psarray.prototype.get=function(a){return this.value[this.offset+parseFloat(a)]},BWIPJS.psarray.prototype.set=function(a,b){this.value[this.offset+parseFloat(a)]=b},BWIPJS.psarray.prototype.subset=function(a,b){(isNaN(b)||a+b>this.length)&&(b=this.length-a);var c=new BWIPJS.psarray(b);return c.value=this.value,c.offset=this.offset+a,c},BWIPJS.psarray.prototype.assign=function(a,b){if(b instanceof Array)if(this.length==this.value.length&&this.length==b.length)this.value=b;else for(var c=0;c<b.length;c++)this.value[this.offset+a+c]=b[c];else for(var c=0;c<b.length;c++)this.value[this.offset+a+c]=b.value[b.offset+c]},BWIPJS.psstring=function(a){if(!(this instanceof BWIPJS.psstring))return new BWIPJS.psstring(a);if("number"==typeof a){this.value=[],this.length=a,this.offset=0;for(var b=0;a>b;b++)this.value[b]=0}else if("string"==typeof a){this.value=[],this.length=a.length,this.offset=0;for(var b=0;b<a.length;b++)this.value[b]=a.charCodeAt(b)}else{this.value=[],this.length=a.length,this.offset=0;for(var b=0;b<a.length;b++)this.value[b]=a.value[a.offset+b]}for(var b=0;b<this.length;b++)this[b]=0/0},BWIPJS.psstring.prototype.toString=function(){for(var a="",b=this.offset;b<this.offset+this.length;b++)a+=String.fromCharCode(this.value[b]);return a},BWIPJS.psstring.prototype.valueOf=function(){for(var a="",b=this.offset;b<this.offset+this.length;b++)a+=String.fromCharCode(this.value[b]);return a},BWIPJS.psstring.prototype.get=function(a){return this.value[this.offset+parseFloat(a)]},BWIPJS.psstring.prototype.set=function(a,b){this.value[this.offset+parseFloat(a)]=b},BWIPJS.psstring.prototype.subset=function(a,b){(isNaN(b)||a+b>this.length)&&(b=this.length-a);var c=new BWIPJS.psstring(b);return c.value=this.value,c.offset=this.offset+a,c},BWIPJS.psstring.prototype.assign=function(a,b){if("string"==typeof b)for(var c=0;c<b.length;c++)this.value[this.offset+a+c]=b.charCodeAt(c);else for(var c=0;c<b.length;c++)this.value[this.offset+a+c]=b.value[b.offset+c]},BWIPJS.psstring.prototype.indexOf=function(a){return this.toString().indexOf(a.toString())},BWIPJS.pstype=function(a){if(null===a||void 0===a)return"nulltype";var b=typeof a;return"number"==b?a%1?"realtype":"integertype":"boolean"==b?"booleantype":a instanceof BWIPJS.psarray?"arraytype":a instanceof BWIPJS.psstring?"stringtype":"dicttype"},BWIPJS.pstostring=function(a){if(null===a)return"null";if("function"==typeof a)return"--function--";if(a instanceof BWIPJS.psarray)return a.toString();if(a instanceof BWIPJS.psstring){for(var b="(",c=0;c<a.length;c++){var d=a.value[a.offset+c];switch(d){case 92:b+="\\\\";break;case 10:b+="\\n";break;case 13:b+="\\r";break;case 9:b+="\\t";break;case 8:b+="\\b";break;case 40:b+="\\(";break;case 41:b+="\\)";break;default:b+=32>d||d>127?"\\"+function(a){return"000".substr(a.length)+a}(d.toString(8)):String.fromCharCode(d)}}return b+")"}if("object"==typeof a){var b="";for(var c in a)b+=" /"+c+" "+BWIPJS.pstostring(a[c]);return"<<"+b+" >>"}return"number"==typeof a&&a%1?a.toPrecision(12).replace(/0*$/,""):""+a},BWIPJS.prototype.bitmap=function(a){return a?(this.bmap=a,void 0):this.bmap},BWIPJS.prototype.value=function(a){if(a===!0||a===!1||null===a)return a;var b=typeof a;return"number"==b?a:"string"==b?BWIPJS.psstring(a):a instanceof Array?BWIPJS.psarray(a):a},BWIPJS.prototype.push=function(a){this.stk[this.ptr++]=this.value(a)},BWIPJS.prototype.pop=function(){if(this.ptr<=0)throw"--underflow--";return this.stk[--this.ptr]},BWIPJS.prototype.call=function(a){if(BWIPJS.bwipp[a]||BWIPJS.load("bwipp/"+a+".js"),!BWIPJS.bwipp[a])throw a+": --undefined--";this.dict[a]=BWIPJS.bwipp[a],BWIPJS.bwipp[a].call(this)},BWIPJS.prototype.eval=function(a){if(a=a.toString(),!/^<(([0-9A-F][0-9A-F])*)>$/i.test(a))throw"eval: not a hex string literal";for(var b=new BWIPJS.psstring((a.length-2)/2),c=0,d=1;d<a.length-1;d+=2)b.set(c++,parseInt(a.substr(d,2),16));this.stk[this.ptr++]=b},BWIPJS.prototype.greset=function(){this.g_tdx=0,this.g_tdy=0,this.g_tsx=1,this.g_tsy=1,this.g_posx=0,this.g_posy=0,this.g_penw=1,this.g_path=[],this.g_font=null,this.g_rgb=[0,0,0]},BWIPJS.prototype.currentpoint=function(){return{x:(this.g_posx-this.g_tdx)/this.g_tsx,y:(this.g_posy-this.g_tdy)/this.g_tsy}},BWIPJS.prototype.currentfont=function(){return this.g_font},BWIPJS.prototype.findfont=function(a){return{FontName:a}},BWIPJS.prototype.dtransform=function(a,b,c){return{dx:b,dy:c}},BWIPJS.prototype.translate=function(a,b){this.g_tdx=this.g_tsx*a,this.g_tdy=this.g_tsy*b},BWIPJS.prototype.scale=function(a,b){this.g_tsx*=a,this.g_tsy*=b},BWIPJS.prototype.setlinewidth=function(a){this.g_penw=a},BWIPJS.prototype.setfont=function(a){this.g_font=a},BWIPJS.prototype.setrgb=function(a,b,c){var a=Math.round(255*a),b=Math.round(255*b),c=Math.round(255*c);this.bmap.color(a,b,c),this.g_rgb=[a,b,c]},BWIPJS.prototype.setcmyk=function(a,b,c,d){var e=Math.round((1-a)*(1-d)*255),f=Math.round((1-b)*(1-d)*255),g=Math.round((1-c)*(1-d)*255);this.bmap.color(e,f,g),this.g_rgb=[e,f,g]},BWIPJS.prototype.newpath=function(){this.g_path=[]},BWIPJS.prototype.closepath=function(){if(this.g_path.length){var a=this.g_path[0],b=this.g_path[this.g_path.length-1];this.g_path.push([b[0],b[1]]),this.g_path.push(["c"]),this.g_path.push([a[0],a[1]])}},BWIPJS.prototype.moveto=function(a,b){this.g_posx=this.g_tdx+this.g_tsx*a,this.g_posy=this.g_tdy+this.g_tsy*b,BWIPJS.debug("moveto: posx,posy=("+this.g_posx+","+this.g_posy+")")},BWIPJS.prototype.rmoveto=function(a,b){this.g_posx+=this.g_tsx*a,this.g_posy+=this.g_tsy*b,BWIPJS.debug("rmoveto: posx,posy=("+this.g_posx+","+this.g_posy+")")},BWIPJS.prototype.lineto=function(a,b){this.g_path.push([this.g_posx,this.g_posy]),this.g_path.push(["l"]),this.g_posx=this.g_tdx+this.g_tsx*a,this.g_posy=this.g_tdy+this.g_tsy*b,this.g_path.push([this.g_posx,this.g_posy]),BWIPJS.debug("lineto: posx,posy=("+this.g_posx+","+this.g_posy+")")},BWIPJS.prototype.rlineto=function(a,b){this.g_path.push([this.g_posx,this.g_posy]),this.g_path.push(["l"]),this.g_posx+=this.g_tsx*a,this.g_posy+=this.g_tsy*b,this.g_path.push([this.g_posx,this.g_posy]),BWIPJS.debug("rlineto: posx,posy=("+this.g_posx+","+this.g_posy+")")},BWIPJS.prototype.arc=function(a,b,c,d,e,f){if(d!=e){if(0!=d&&360!=d||0!=e&&360!=e)throw"arc: not a full circle ("+d+","+e+")";a=this.g_tdx+this.g_tsx*a,b=this.g_tdy+this.g_tsy*b;var g=c*this.g_tsx,h=c*this.g_tsy;this.g_path.push([a-g,b-h]),this.g_path.push(["a",{x:a,y:b,rx:g,ry:h,sa:d,ea:e,ccw:f}]),this.g_path.push([a+g,b+h])}},BWIPJS.prototype.getfont=function(){var a=Math.floor(this.g_tsx);1>a?a=1:a>10&&(a=10);var b=this.g_font.FontSize+(10>a?"-0":"-")+a;return BWIPJS.fonts.OCRB&&BWIPJS.fonts.OCRB[b]||BWIPJS.load("fonts/ocrb"+b+".js"),BWIPJS.fonts.OCRB?BWIPJS.fonts.OCRB[b]:void 0},BWIPJS.prototype.stringwidth=function(a){var b=this.getfont();if(!b)return{w:0,h:0};for(var c=0,d=0,e=0,f=0;f<a.length;f++){var g=String.fromCharCode(a.get(f)),h=b.g[g];h?(c+=Math.max(h.l+h.w,b.w),h.t<0?e<h.h-h.t&&(e=h.h-h.t):(d<h.t&&(d=h.t),e<h.h-h.t&&(e=h.h-h.t))):c+=b.w}return c+=(a.length-1)*Math.floor(b.w/4),{w:c/this.g_tsx,h:(d+e)/this.g_tsy}},BWIPJS.prototype.charpath=function(a){var b=this.stringwidth(a);this.rlineto(b.w,0),this.rlineto(0,b.h),this.rlineto(-b.w,0)},BWIPJS.prototype.pathbbox=function(){if(!this.g_path.length)throw"pathbbox: --nocurrentpoint--";for(var a=this.g_path,b=a[0][0],c=a[0][1],d=0,e=0,f=2,g=2;f<a.length;f+=g)b>a[f][0]&&(b=a[f][0]),d<a[f][0]&&(d=a[f][0]),c>a[f][1]&&(c=a[f][1]),e<a[f][1]&&(e=a[f][1]),g=2==g?1:2;return{llx:(b-this.g_tdx)/this.g_tsx,lly:(c-this.g_tdy)/this.g_tsy,urx:(d-this.g_tdx)/this.g_tsx,ury:(e-this.g_tdy)/this.g_tsy}},BWIPJS.prototype.gsave=function(){var a={};for(id in this)0==id.indexOf("g_")&&(a[id]=this.gclone(this[id]));this.gstk.push(a)},BWIPJS.prototype.grestore=function(){if(!this.gstk.length)throw"grestore: stack underflow";var a=this.gstk.pop();for(id in a)this[id]=a[id];this.bmap.color(this.g_rgb[0],this.g_rgb[1],this.g_rgb[2])},BWIPJS.prototype.stroke=function(){var a=this.g_penw*this.g_tsx,b=this.g_penw*this.g_tsy,c=this.g_path.length/3;"c"==this.g_path[this.g_path.length-2][0]&&c--;for(var d=0;d<this.g_path.length;){var e=this.g_path[d++],f=this.g_path[d++],g=this.g_path[d++];switch(f[0]){case"l":this.drawline(!0,e[0],e[1],g[0],g[1],a,b,c>1);break;case"a":this.drawarc(e[0],e[1],g[0],g[1],f[1].sa,f[1].se,a,b);break;case"c":break;default:throw"stroke: undefined opcode: "+f[0]}}this.g_path=[]},BWIPJS.prototype.fill=function(){if(this.g_path.length){"c"!=this.g_path[this.g_path.length-2][0]&&this.closepath();var a=this.bmap;this.bmap=new BWIPJS.fillmap;for(var b=0;b<this.g_path.length;){var c=this.g_path[b++],d=this.g_path[b++],e=this.g_path[b++];switch(d[0]){case"l":this.drawline(!1,c[0],c[1],e[0],e[1],1,1);break;case"a":this.drawarc(c[0],c[1],e[0],e[1],d[1].sa,d[1].se,1,1);break;case"c":this.bmap.fill();break;default:throw"fill: undefined opcode: "+d[0]}}this.bmap.xfer(a),this.bmap=a,this.g_path=[]}},BWIPJS.prototype.imagemask=function(a,b,c,d,e){for(var f=d.get(0),g=d.get(1),h=d.get(2),i=d.get(3),j=d.get(4),k=d.get(5),l=this.g_tsx,m=this.g_tsy,n=a*a,o=b*b,p=0>f?1:0,q=0>g?1:0,r=0>h?1:0,s=0>i?1:0,t=Math.ceil(a/8),u=0;b>u;u++)for(var v=0;a>v;v++){var w=e.get(u*t+Math.floor(v/8)),x=w&1<<7-v%8;if(!(x&&!c||!x&&c))for(var y=Math.floor(this.g_tdx+((v+p-j)*f+(u+r-k)*h)*l/n),z=Math.floor(this.g_tdy+((u+s-k)*i+(v+q-j)*g)*m/o),A=Math.floor(y+l/a),B=Math.floor(z+m/b),C=z;B>C;C++)for(var D=y;A>D;D++)this.bmap.set(D,C)}},BWIPJS.prototype.show=function(a,b,c){var d=this.getfont();if(d){b=this.g_tsx*b,c=this.g_tsy*c;for(var e=0;e<a.length;e++){var f=String.fromCharCode(a.get(e)),g=d.g[f];if(g){var h,i,j=g.m,k=this.g_posx+g.l,l=this.g_posy+g.t+c-2,m=j.charAt(0),n=l-g.h,o=k+g.w,p=1;if("b"==m)for(var q=l;q>n;q--)for(var r=0;r<g.w;r++)r%8||(h=parseInt(j.charAt(p),16)<<4|parseInt(j.charAt(p+1),16),p+=2),128&h&&this.bmap.set(k+r,q),h<<=1;else if("x"==m)for(var q=l;q>n;q--)for(var r=k;o>r;)if(h=parseInt(j.charAt(p),16)<<4|parseInt(j.charAt(p+1),16),i=h>>1,p+=2,1&h)for(;i--;)this.bmap.set(r++,q);else r+=i;else{if("y"!=m)throw"unknown font bitmap encoding: "+m;for(var r=k;o>r;r++)for(var q=l;q>n;)if(h=parseInt(j.charAt(p),16)<<4|parseInt(j.charAt(p+1),16),i=h>>1,p+=2,1&h)for(;i--;)this.bmap.set(r,q--);else q-=i}this.g_posx+=Math.max(g.l+g.w,d.w)+Math.floor(d.w/4)+b}else this.g_posx+=d.w+Math.floor(d.w/4)+b}}},BWIPJS.prototype.gclone=function(a){if(a instanceof Array){for(var b=[],c=0;c<a.length;c++)b[c]=this.gclone(a[c]);return b}if(a instanceof Object){var b={};for(c in a)b[c]=this.gclone(a[c]);return b}return a},BWIPJS.prototype.drawline=function(a,b,c,d,e,f,g,h){if(!a||b!=d&&c!=e){b=Math.floor(b),d=Math.floor(d),c=Math.floor(c),e=Math.floor(e);var i=Math.abs(d-b),j=Math.abs(e-c),k=b>d?-1:1,l=c>e?-1:1,m=b,n=c,o=0,p=Math.floor(Math.sqrt(f*f+g*g)),q=Math.round(Math.sqrt(p*p/(j*j/(i*i)+1)))||1,r=Math.round(Math.sqrt(p*p-q*q))||1;if(i>=j){for(;m!=d;){for(var s=0;q>s;s++)this.bmap.set(m,n+s);o+=j,o>=i&&(o-=i,n+=l),m+=k}for(var s=0;q>s;s++)this.bmap.set(m,n+s)}else{for(;n!=e;){for(var s=0;r>s;s++)this.bmap.set(m+s,n);o+=i,o>=j&&(o-=j,m+=k),n+=l}for(var s=0;r>s;s++)this.bmap.set(m+s,n)}}else{var t=Math.round(f),u=Math.round(g);if(c>e){var v=c;c=e,e=v}if(b>d){var v=b;b=d,d=v}b==d?(b=Math.round(b-t/2),d=Math.round(d+t/2),c=Math.round(c-(h?u/2:0)),e=Math.round(e+(h?u/2:0))):(c=Math.round(c-u/2),e=Math.round(e+u/2),b=Math.round(b-(h?t/2:0)),d=Math.round(d+(h?t/2:0)));for(var n=c;e>n;n++)for(var m=b;d>m;m++)this.bmap.set(m,n)}},BWIPJS.prototype.drawarc=function(a,b,c,d){var e,f=Math.abs(c-a),g=Math.abs(d-b),h=1&g,i=4*(1-f)*g*g,j=4*(h+1)*f*f,k=i+j+h*f*f;a>c&&(a=c,c+=f),b>d&&(b=d),b+=Math.floor((g+1)/2),d=b-h,f*=8*f,h=8*g*g;do this.bmap.set(c,b),this.bmap.set(a,b),this.bmap.set(a,d),this.bmap.set(c,d),e=2*k,e>=i&&(a++,c--,i+=h,k+=i),j>=e&&(b++,d--,j+=f,k+=j);while(c>=a);for(;g>b-d;)this.bmap.set(a-1,b),this.bmap.set(c+1,b++),this.bmap.set(a-1,d),this.bmap.set(c+1,d--)},BWIPJS.fillmap=function(){function a(a,b){return c[b][a]}function b(a,b){c[b][a]=1==c[b][a]?void 0:1}var c=[],d=1/0,e=1/0,f=-1/0,g=-1/0;this.set=function(a,b){a=~~a,b=~~b,c[b]||(c[b]=[]),c[b][a]=0,d>a&&(d=a),a>f&&(f=a),e>b&&(e=b),b>g&&(g=b)},this.fill=function(){for(var c=(Math.floor(d+(f-d)/2),Math.floor(e+(g-e)/2)),h=c;g>=h;h++){for(var i=d;f>=i&&0!==a(i,h);i++);for(var j=f;j>=d&&0!==a(j,h);j--);for(;j>=i;)b(i++,h)}for(var h=c-1;h>=e;h--){for(var i=d;f>=i&&0!==a(i,h);i++);for(var j=f;j>=d&&0!==a(j,h);j--);for(;j>=i;)b(i++,h)}},this.xfer=function(b){for(var c=d,h=f,i=e,j=g,k="",l=i;j>=l;l++){for(var m=c;h>=m;m++)1===a(m,l)&&b.set(m,l),k+=1===a(m,l)?"X":"0";k+="\r\n"}}},BWIPJS.load=function(){},function(a,b){"undefined"!=typeof module?module.exports=b():"function"==typeof define&&"object"==typeof define.amd?define(b):this[a]=b()}("bwip",function(){var a=function(){var a=[0,0,0],b=[],c=1/0,d=1/0,e=0,f=0;this.color=function(b,c,d){a=[b,c,d]},this.set=function(g,h){g=Math.floor(g),h=Math.floor(h),b.push([g,h,a]),c>g&&(c=g),d>h&&(d=h),g>e&&(e=g),h>f&&(f=h)},this.error=function(a){a.width=64,a.height=64;var b=a.getContext("2d");return b.beginPath(),b.rect(0,0,a.width,a.height),b.moveTo(0,0),b.lineTo(a.width,a.height),b.moveTo(a.width,0),b.lineTo(0,a.height),b.lineWidth=5,b.strokeStyle="#ff0000",b.stroke(),a.toDataURL()},this.draw=function(a,g){if(0==b.length)return a.width=32,a.height=32,a.getContext("2d").clearRect(0,0,a.width,a.height),a.style.visibility="visible",void 0;if("R"==g||"L"==g)var h=e-c+1,i=f-d+1;else var i=e-c+1,h=f-d+1;a.width=i,a.height=h;var j=a.getContext("2d");j.fillStyle="#fff",j.fillRect(0,0,a.width,a.height),j.fillStyle="#000";for(var k=j.getImageData(0,0,a.width,a.height),l=k.data,m=0;m<b.length;m++){var n=b[m][0]-c,o=b[m][1]-d,p=b[m][2];if("N"==g)o=h-o-1;else if("I"==g)n=i-n-1;else if(o=i-o,"L"==g){var q=o;o=h-n-1,n=q-1}else{var q=n;n=i-o,o=q}var r=4*(o*k.width+n);l[r++]=p[0],l[r++]=p[1],l[r++]=p[2],l[r]=255}return j.putImageData(k,0,0),a.toDataURL()}};return BWIPJS.print=function(a){console.log(a)},BWIPJS.debug=function(a){console.log(a)},BWIPJS.imageUrl=function(b){for(var c,d="includetext includecheck includecheckintext",e=b.symbol,f=b.text,g=b.alttext,h=b.scale_h,i=b.scale_w,j=b.rotation,k=new BWIPJS,l=0;l<symdesc.length;l++){var m=symdesc[l];if(m.sym===e){c=m;break}}var n=d.split(" ");d={};for(var l=0;l<n.length;l++)if(n[l]){var o=n[l].indexOf("=");-1==o?d[n[l]]=k.value(!0):d[n[l].substr(0,o)]=k.value(n[l].substr(o+1))}g&&(d.alttext=k.value(g)),d.inkspread=k.value(0),!needyoffset[c.sym]||d.textxalign||d.textyalign||d.alttext||void 0!==d.textyoffset||(d.textyoffset=k.value(-10)),k.bitmap(new a),k.scale(i,h),k.push(f),k.push(d),BWIPJS.cvs||(BWIPJS.cvs=document.createElement("canvas"),BWIPJS.cvs.style.display="none",document.body.appendChild(BWIPJS.cvs));try{k.call(c.sym)}catch(p){console.error(p);var q=k.bitmap();return q.error(BWIPJS.cvs,j)}return k.bitmap().draw(BWIPJS.cvs,j)},BWIPJS});var symdesc=[{sym:"ean5",desc:"EAN-5 (5 digit addon)",text:"90200",opts:"includetext guardwhitespace"},{sym:"ean2",desc:"EAN-2 (2 digit addon)",text:"05",opts:"includetext guardwhitespace"},{sym:"ean13",desc:"EAN-13",text:"2071473968010",opts:"includetext guardwhitespace"},{sym:"ean8",desc:"EAN-8",text:"01335583",opts:"includetext guardwhitespace height=0.5"},{sym:"upca",desc:"UPC-A",text:"488581014973",opts:"includetext"},{sym:"upce",desc:"UPC-E",text:"00123457",opts:"includetext height=0.4"},{sym:"isbn",desc:"ISBN",text:"978-1-56592-479 54495",opts:"includetext guardwhitespace"},{sym:"ismn",desc:"ISMN",text:"979-0-2600-0043",opts:"includetext guardwhitespace"},{sym:"issn",desc:"ISSN",text:"0317-8471 00 05",opts:"includetext guardwhitespace"},{sym:"code128",desc:"Code 128",text:"Count01234567^FNC2!",opts:"includetext parsefnc"},{sym:"gs1-128",desc:"GS1-128",text:"(01)95012345678903(3103)000123",opts:"includetext"},{sym:"ean14",desc:"GS1-14",text:"(01)04601234567893",opts:"includetext"},{sym:"sscc18",desc:"SSCC-18",text:"(00)006141411234567890",opts:"includetext"},{sym:"code39",desc:"Code 39",text:"THIS IS CODE 39",opts:"includetext includecheck includecheckintext"},{sym:"code39ext",desc:"Code 39 Extended",text:"Code39 Ext!",opts:"includetext includecheck includecheckintext"},{sym:"code32",desc:"Italian PharmaCode",text:"01234567",opts:"includetext"},{sym:"pzn",desc:"Pharmazentralnummer (PZN)",text:"123456",opts:"includetext"},{sym:"code93",desc:"Code 93",text:"THIS IS CODE 93",opts:"includetext includecheck"},{sym:"code93ext",desc:"Code 93 Extended",text:"Code93 Ext!",opts:"includetext includecheck"},{sym:"interleaved2of5",desc:"Interleaved 2 of 5 (ITF)",text:"2401234567",opts:"height=0.5 includecheck includetext includecheckintext"},{sym:"itf14",desc:"ITF-14",text:"04601234567893",opts:"includetext"},{sym:"identcode",desc:"Deutsche Post Identcode",text:"563102430313",opts:"includetext"},{sym:"leitcode",desc:"Deutsche Post Leitcode",text:"21348075016401",opts:"includetext"},{sym:"databaromni",desc:"GS1 DataBar Omnidirectional",text:"(01)24012345678905",opts:""},{sym:"databarstacked",desc:"GS1 DataBar Stacked",text:"(01)24012345678905",opts:""},{sym:"databarstackedomni",desc:"GS1 DataBar Stacked Omnidirectional",text:"(01)24012345678905",opts:""},{sym:"databartruncated",desc:"GS1 DataBar Truncated",text:"(01)24012345678905",opts:""},{sym:"databarlimited",desc:"GS1 DataBar Limited",text:"(01)15012345678907",opts:""},{sym:"databarexpanded",desc:"GS1 DataBar Expanded",text:"(01)95012345678903(3103)000123",opts:""},{sym:"databarexpandedstacked",desc:"GS1 DataBar Expanded Stacked",text:"(01)95012345678903(3103)000123",opts:"segments=4"},{sym:"pharmacode",desc:"Pharmaceutical Binary Code",text:"117480",opts:"showborder"},{sym:"pharmacode2",desc:"Two-track Pharmacode",text:"117480",opts:"includetext showborder"},{sym:"code2of5",desc:"Code 25",text:"01234567",opts:"version=iata includetext includecheck includecheckintext"},{sym:"code11",desc:"Code 11",text:"0123456789",opts:"includetext includecheck includecheckintext"},{sym:"bc412",desc:"BC412",text:"BC412",opts:"semi includetext includecheckintext"},{sym:"rationalizedCodabar",desc:"Rationalized Codabar",text:"A0123456789B",opts:"includetext includecheck includecheckintext"},{sym:"onecode",desc:"United States Postal Service Intelligent Mail",text:"0123456709498765432101234567891",opts:"barcolor=FF0000"},{sym:"postnet",desc:"United States Postal Service POSTNET",text:"01234",opts:"includetext includecheckintext"},{sym:"planet",desc:"United States Postal Service PLANET",text:"01234567890",opts:"includetext includecheckintext"},{sym:"royalmail",desc:"Royal Mail 4 State Customer Code (RM4SCC)",text:"LE28HS9Z",opts:"includetext includecheckintext barcolor=FF0000"},{sym:"auspost",desc:"AusPost 4 State Customer Code",text:"5956439111ABA 9",opts:"includetext custinfoenc=character"},{sym:"kix",desc:"Royal Dutch TPG Post KIX 4-State Barcode",text:"1231FZ13XHS",opts:"includetext includecheckintext"},{sym:"japanpost",desc:"Japan Post 4 State Customer Code",text:"6540123789-A-K-Z",opts:"includetext includecheckintext"},{sym:"msi",desc:"MSI Modified Plessey",text:"0123456789",opts:"includetext includecheck includecheckintext"},{sym:"plessey",desc:"Plessey UK",text:"01234ABCD",opts:"includetext includecheckintext"},{sym:"telepen",desc:"Telepen",text:"123456",opts:"numeric includetext"},{sym:"posicode",desc:"PosiCode",text:"ABC123",opts:"version=b inkspread=-0.5 parsefnc includetext"},{sym:"codablockf",desc:"Codablock F",text:"CODABLOCK F 34567890123456789010040digit",opts:"columns=8"},{sym:"code16k",desc:"Code 16K",text:"Abcd-1234567890-wxyZ",opts:""},{sym:"code49",desc:"Code 49",text:"MULTIPLE ROWS IN CODE 49",opts:""},{sym:"channelcode",desc:"Channel Code",text:"3493",opts:"height=0.5 includetext "},{sym:"flattermarken",desc:"Flattermarken",text:"12345",opts:"inkspread=-0.25"},{sym:"raw",desc:"Raw bar space succession for custom symbologies ",text:"331132131313411122131311333213114131131221323",opts:"height=0.5"},{sym:"daft",desc:"Raw DAFT succession for custom 4 state symbologies",text:"FATDAFTDAD",opts:""},{sym:"symbol",desc:"Miscellaneous symbols",text:"fima",opts:"backgroundcolor=DD000011"},{sym:"pdf417",desc:"PDF417",text:"This is PDF417",opts:""},{sym:"micropdf417",desc:"MicroPDF417",text:"MicroPDF417",opts:""},{sym:"datamatrix",desc:"Data Matrix",text:"This is Data Matrix!",opts:"rows=32 columns=32"},{sym:"qrcode",desc:"QR Code",text:"http://www.terryburton.co.uk/barcodewriter/",opts:"eclevel=M"},{sym:"maxicode",desc:"MaxiCode",text:"[)>^03001^02996152382802^029840^029001^0291Z00004951^029UPSN^02906X610^029159^0291234567^0291/1^029^029Y^029634 ALPHA DR^029PITTSBURGH^029PA^029^004",opts:"mode=2 parse"},{sym:"azteccode",desc:"Aztec Code",text:"This is Aztec Code",opts:"format=full"},{sym:"codeone",desc:"Code One",text:"Code One",opts:"version=B"},{sym:"gs1-cc",desc:"GS1 Composite 2D Component",text:"(01)95012345678903(3103)000123",opts:"ccversion=b cccolumns=4"},{sym:"ean13composite",desc:"EAN-13 Composite",text:"2112345678900|(99)1234-abcd",opts:"includetext"},{sym:"ean8composite",desc:"EAN-8 Composite",text:"02345673|(21)A12345678",opts:"includetext"},{sym:"upcacomposite",desc:"UPC-A Composite",text:"416000336108|(99)1234-abcd",opts:"includetext"},{sym:"upcecomposite",desc:"UPC-E Composite",text:"00123457|(15)021231",opts:"includetext"},{sym:"databaromnicomposite",desc:"GS1 DataBar Omnidirectional Composite",text:"(01)03612345678904|(11)990102",opts:""},{sym:"databarstackedcomposite",desc:"GS1 DataBar Stacked Composite",text:"(01)03412345678900|(17)010200",opts:""},{sym:"databarstackedomnicomposite",desc:"GS1 DataBar Stacked Omnidirectional Composite",text:"(01)03612345678904|(11)990102",opts:""},{sym:"databartruncatedcomposite",desc:"GS1 DataBar Truncated Composite",text:"(01)03612345678904|(11)990102",opts:""},{sym:"databarlimitedcomposite",desc:"GS1 DataBar Limited Composite",text:"(01)03512345678907|(21)abcdefghijklmnopqrstuv",opts:""},{sym:"databarexpandedcomposite",desc:"GS1 DataBar Expanded Composite",text:"(01)93712345678904(3103)001234|(91)1A2B3C4D5E",opts:""},{sym:"databarexpandedstackedcomposite",desc:"GS1 DataBar Expanded Stacked Composite",text:"(01)00012345678905(10)ABCDEF|(21)12345678",opts:"segments=4 "},{sym:"gs1-128composite",desc:"GS1-128 Composite",text:"(00)030123456789012340|(02)13012345678909(37)24(10)1234567ABCDEFG",opts:"ccversion=c"},{sym:"gs1datamatrix",desc:"GS1 Data Matrix",text:"(01)03453120000011(17)120508(10)ABCD1234(410)9501101020917",opts:""},{sym:"hibccode39",desc:"HIBC Code 39",text:"A123BJC5D6E71",opts:"includetext"},{sym:"hibccode128",desc:"HIBC Code 128",text:"A123BJC5D6E71",opts:"includetext"},{sym:"hibcdatamatrix",desc:"HIBC Data Matrix",text:"A123BJC5D6E71",opts:""},{sym:"hibcpdf417",desc:"HIBC PDF417",text:"A123BJC5D6E71",opts:""},{sym:"hibcmicropdf417",desc:"HIBC MicroPDF417",text:"A123BJC5D6E71",opts:""},{sym:"hibcqrcode",desc:"HIBC QR Code",text:"A123BJC5D6E71",opts:""},{sym:"hibccodablockf",desc:"HIBC Codablock F",text:"A123BJC5D6E71",opts:""},null],baropts={ean5:{includetext:!1,height:.7},ean2:{includetext:!1,height:.7},ean13:{includetext:!1,height:1,addongap:12},ean8:{includetext:!1,height:1,addongap:12},upca:{includetext:!1,height:1,addongap:12},upce:{includetext:!1,height:1,addongap:12},isbn:{includetext:!1,height:1,addongap:12,legacy:!1},ismn:{includetext:!1,height:1,addongap:12,legacy:!1},issn:{includetext:!1,height:1,addongap:12},code128:{includetext:!1,height:1,encoding:"auto",raw:!1,parse:!1,parsefnc:!1},"gs1-128":{includetext:!1,height:.5,linkagea:!1,linkagec:!1},ean14:{includetext:!1,height:1},sscc18:{includetext:!1,height:1},code39:{includecheck:!1,includetext:!1,includecheckintext:!1,hidestars:!1,height:1},code39ext:{includetext:!1,parse:!1},code32:{includetext:!1,height:1},pzn:{includetext:!1,height:1,pzn8:!1},code93:{includecheck:!1,includetext:!1,height:1,parsefnc:!1},code93ext:{includetext:!1,parse:!1},interleaved2of5:{includecheck:!1,includetext:!1,includecheckintext:!1,height:1},itf14:{includetext:!1,height:1},identcode:{includetext:!1,height:1},leitcode:{includetext:!1,height:1},databaromni:{height:33,linkage:!1,format:"omni"},databarstacked:{},databarstackedomni:{},databartruncated:{},databarlimited:{height:10,linkage:!1},databarexpanded:{height:34,format:"expanded",segments:-1,linkage:!1},databarexpandedstacked:{},pharmacode:{height:8,nwidth:.5,wwidth:1.5,swidth:1},pharmacode2:{includetext:!1,height:4},code2of5:{includecheck:!1,includetext:!1,includecheckintext:!1,height:1,version:"industrial"},code11:{includecheck:!1,includetext:!1,includecheckintext:!1,height:1},bc412:{includecheck:!1,includetext:!1,includecheckintext:!1,includestartstop:!1,semi:!1,height:1},rationalizedCodabar:{includecheck:!1,includetext:!1,includecheckintext:!1,height:1},onecode:{height:.15},postnet:{includetext:!1,includecheckintext:!1,height:.125},planet:{includetext:!1,includecheckintext:!1,height:.125},royalmail:{includetext:!1,includecheckintext:!1,height:.175},auspost:{includetext:!1,height:.175,custinfoenc:"character"},kix:{includetext:!1,includecheckintext:!1,height:.175},japanpost:{includetext:!1,includecheckintext:!1,height:.175},msi:{includecheck:!1,includetext:!1,includecheckintext:!1,checktype:"mod10",badmod11:!1,height:1},plessey:{includetext:!1,includecheckintext:!1,unidirectional:!1,height:1},telepen:{numeric:!1,includetext:!1,height:1,parse:!1},posicode:{includetext:!1,height:1,encoding:"auto",version:"a",checkoffset:0,raw:!1,parse:!1,parsefnc:!1},codablockf:{rows:-1,columns:8,rowheight:10,sepheight:1,encoding:"auto",parse:!1,parsefnc:!1},code16k:{mode:-1,pos:-1,rows:0,rowheight:8,sepheight:1,encoding:"auto",raw:!1,parse:!1,parsefnc:!1},code49:{mode:-1,pos:-1,rows:0,rowheight:8,sepheight:1,parse:!1,parsefnc:!1},channelcode:{shortfinder:!1,includetext:!1,includecheck:!1,height:1},flattermarken:{includetext:!1,height:.3},raw:{height:1},daft:{height:.175},symbol:{},pdf417:{compact:!1,eclevel:-1,columns:0,rows:0,rowmult:3,ccc:!1,raw:!1,parse:!1},micropdf417:{columns:0,rows:0,rowmult:2,cca:!1,ccb:!1,raw:!1,parse:!1},datamatrix:{columns:0,rows:0,encoding:"ascii",raw:!1,parse:!1,parsefnc:!1},qrcode:{format:"full",version:"unset",eclevel:"unset",encoding:"unset",raw:!1,parse:!1},maxicode:{mode:-1,sam:-1,parse:!1},azteccode:{format:"unset",readerinit:!1,layers:-1,eclevel:23,ecaddchars:3,raw:!1,parse:!1},codeone:{version:"unset",encoding:"ascii",raw:!1,parse:!1},"gs1-cc":{ccversion:"a",cccolumns:-1,lintype:"",linwidth:-1},ean13composite:{},ean8composite:{},upcacomposite:{},upcecomposite:{},databaromnicomposite:{},databarstackedcomposite:{},databarstackedomnicomposite:{},databartruncatedcomposite:{},databarlimitedcomposite:{},databarexpandedcomposite:{},databarexpandedstackedcomposite:{},"gs1-128composite":{},gs1datamatrix:{},hibccode39:{},hibccode128:{},hibcdatamatrix:{},hibcpdf417:{columns:2},hibcmicropdf417:{columns:2},hibcqrcode:{},hibccodablockf:{}},needyoffset={auspost:!0,bc412:!0,code11:!0,code2of5:!0,code39:!0,code39ext:!0,code93:!0,code93ext:!0,flattermarken:!0,itf14:!0,interleaved2of5:!0,japanpost:!0,msi:!0,plessey:!0,rationalizedCodabar:!0,royalmail:!0,kix:!0,telepen:!0,planet:!0,postnet:!0};BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["10-01"]={h:7,w:5,g:{0:{t:7,l:0,w:5,h:7,m:"b70888888888870"},1:{t:7,l:1,w:3,h:7,m:"y04030802030a0f"},2:{t:7,l:0,w:5,h:7,m:"b708808304080f8"},3:{t:7,l:0,w:4,h:7,m:"bf01020601010e0"},4:{t:7,l:0,w:5,h:7,m:"b20204090f81010"},5:{t:7,l:0,w:5,h:7,m:"bf880f0080810e0"},6:{t:7,l:0,w:5,h:7,m:"b10204070888870"},7:{t:7,l:0,w:5,h:7,m:"bf8081020404040"},8:{t:7,l:0,w:5,h:7,m:"b70888870888870"},9:{t:7,l:0,w:5,h:7,m:"b70888870102040"},A:{t:7,l:0,w:5,h:7,m:"b20205050708888"},B:{t:7,l:0,w:5,h:7,m:"bf08888f08888f0"},C:{t:7,l:0,w:5,h:7,m:"b70888080808870"},D:{t:7,l:0,w:5,h:7,m:"be09088888890e0"},E:{t:7,l:0,w:5,h:7,m:"bf88080f08080f8"},F:{t:7,l:0,w:4,h:7,m:"bf08080e0808080"},G:{t:7,l:0,w:5,h:7,m:"b708880b8888870"},H:{t:7,l:0,w:5,h:7,m:"b888888f8888888"},I:{t:7,l:1,w:3,h:7,m:"y030a030f030a03"},J:{t:7,l:0,w:4,h:7,m:"b10101010109060"},K:{t:7,l:0,w:5,h:7,m:"b8890a0c0a09088"},L:{t:7,l:0,w:5,h:7,m:"b808080808080f8"},M:{t:7,l:0,w:5,h:7,m:"b88d8d8a8a88888"},N:{t:7,l:0,w:5,h:7,m:"b88c8c8a8989888"},O:{t:7,l:0,w:5,h:7,m:"b70508888885070"},P:{t:7,l:0,w:5,h:7,m:"bf08888f0808080"},Q:{t:7,l:0,w:5,h:7,m:"b705088a8a85078"},R:{t:7,l:0,w:5,h:7,m:"bf08888f0a09088"},S:{t:7,l:0,w:5,h:7,m:"b70888070088870"},T:{t:7,l:0,w:5,h:7,m:"bf8202020202020"},U:{t:7,l:0,w:5,h:7,m:"b88888888888870"},V:{t:7,l:0,w:5,h:7,m:"b88888850502020"},W:{t:7,l:0,w:5,h:7,m:"b888888a8a85050"},X:{t:7,l:0,w:5,h:7,m:"b88885020508888"},Y:{t:7,l:0,w:5,h:7,m:"b88505020202020"},Z:{t:7,l:0,w:4,h:7,m:"bf01020604080f0"},a:{t:5,l:0,w:5,h:5,m:"b7008788878"},b:{t:8,l:0,w:5,h:8,m:"b808080b0c888c8b0"},c:{t:5,l:0,w:5,h:5,m:"b7088808870"},d:{t:8,l:0,w:5,h:8,m:"b0808086898889868"},e:{t:5,l:0,w:5,h:5,m:"b7088f88078"},f:{t:8,l:0,w:4,h:8,m:"b304040f040404040"},g:{t:5,l:0,w:5,h:7,m:"b708888986808f0"},h:{t:8,l:0,w:5,h:8,m:"b808080b0c8888888"},i:{t:8,l:1,w:3,h:8,m:"b606000e020202020"},j:{t:8,l:0,w:4,h:10,m:"b303000701010101010e0"},k:{t:8,l:0,w:4,h:8,m:"b80808090a0c0a090"},l:{t:8,l:1,w:3,h:8,m:"y0f020e030e03"},m:{t:5,l:0,w:5,h:5,m:"bd0a8a8a8a8"},n:{t:5,l:0,w:5,h:5,m:"bb0c8888888"},o:{t:5,l:0,w:5,h:5,m:"b7088888870"},p:{t:5,l:0,w:5,h:7,m:"bb0c888c8b08080"},q:{t:5,l:0,w:5,h:7,m:"b68988898680808"},r:{t:5,l:0,w:5,h:5,m:"bb0c8808080"},s:{t:5,l:0,w:5,h:5,m:"b78807008f0"},t:{t:6,l:0,w:4,h:6,m:"b40f040404030"},u:{t:5,l:0,w:5,h:5,m:"b8888889868"},v:{t:5,l:0,w:5,h:5,m:"b8888505020"},w:{t:5,l:0,w:5,h:5,m:"b88a8a85050"},x:{t:5,l:0,w:5,h:5,m:"b8850205088"},y:{t:5,l:0,w:5,h:7,m:"b88505020204080"},z:{t:5,l:0,w:4,h:5,m:"bf0106080f0"},"~":{t:7,l:0,w:5,h:2,m:"b68b0"},"!":{t:7,l:1,w:2,h:7,m:"y090205090205"},"@":{t:7,l:0,w:5,h:7,m:"b70880868a8a850"},"#":{t:7,l:0,w:5,h:7,m:"b2828f850f8a0a0"},$:{t:7,l:0,w:5,h:8,m:"b2070a86030a87020"},"%":{t:7,l:0,w:5,h:7,m:"bc8d01020405898"},"^":{t:7,l:0,w:5,h:4,m:"b20705088"},"&":{t:7,l:0,w:5,h:7,m:"b60909060a89068"},"*":{t:7,l:0,w:5,h:5,m:"b20a8707088"},_:{t:-1,l:0,w:5,h:1,m:"x0b"},"+":{t:6,l:0,w:5,h:5,m:"b2020f82020"},"`":{t:7,l:1,w:3,h:3,m:"bc06020"},"-":{t:4,l:0,w:5,h:1,m:"x0b"},"=":{t:5,l:0,w:5,h:3,m:"x0b0a0b"},'"':{t:7,l:0,w:5,h:3,m:"bd8d8d8"},"'":{t:7,l:1,w:2,h:4,m:"y0909"},"(":{t:7,l:1,w:3,h:7,m:"b20408080804020"},")":{t:7,l:1,w:3,h:7,m:"b80402020204080"},"{":{t:7,l:0,w:5,h:7,m:"b182020c0202018"},"}":{t:7,l:0,w:5,h:7,m:"bc02020182020c0"},"[":{t:7,l:0,w:4,h:7,m:"bf08080808080f0"},"]":{t:7,l:0,w:4,h:7,m:"bf01010101010f0"},"<":{t:7,l:0,w:5,h:7,m:"b183060c0603018"},">":{t:7,l:0,w:5,h:7,m:"bc06030183060c0"},"|":{t:7,l:2,w:1,h:9,m:"y13"},":":{t:6,l:1,w:2,h:6,m:"y050405050405"},";":{t:6,l:1,w:3,h:8,m:"b606000006060c080"},".":{t:2,l:1,w:2,h:2,m:"y0505"},",":{t:2,l:1,w:3,h:4,m:"b6060c080"},"\\":{t:7,l:0,w:5,h:7,m:"b80404020101008"},"?":{t:7,l:0,w:5,h:8,m:"b7088081030003030"},"/":{t:7,l:0,w:5,h:7,m:"b08101020404080"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["10-02"]={h:14,w:10,g:{0:{t:14,l:0,w:10,h:14,m:"b3f007f80e1c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0e1c07f803f00"},1:{t:14,l:2,w:6,h:14,m:"y06071004071202071407161d1d"},2:{t:14,l:1,w:8,h:14,m:"b7cfec70303070e1c3870e0c0ffff"},3:{t:14,l:0,w:9,h:14,m:"bff00ff0007000e001c003e003f000380018001800180c380ff007e00"},4:{t:14,l:0,w:9,h:14,m:"b0c000c00180018003000300066006600c600ff80ff80060006000600"},5:{t:14,l:1,w:8,h:14,m:"bffffc0c0c0fcfe070303070efcf8"},6:{t:14,l:0,w:10,h:14,m:"b038007000e001c0038007f007f80e1c0c0c0c0c0c0c0e1c07f803f00"},7:{t:14,l:0,w:9,h:14,m:"y05180518050e0b050a0f0506090a0504070e0502051209140716"},8:{t:14,l:0,w:10,h:14,m:"b1e003f007380618073803f003f007380e1c0c0c0c0c0e1c07f803f00"},9:{t:14,l:0,w:10,h:14,m:"b3f007f80e1c0c0c0c0c0c0c0e1c07f803f8007000e001c0038007000"},A:{t:14,l:0,w:9,h:14,m:"y14090c110411080d040508050c05080d0405080411080c111409"},B:{t:14,l:0,w:10,h:14,m:"bfe00ff00c380c180c180c300ff00ff80c1c0c0c0c0c0c1c0ff80ff00"},C:{t:14,l:0,w:9,h:14,m:"b3e007f00e380c180c000c000c000c000c000c000c180e3807f003e00"},D:{t:14,l:0,w:9,h:14,m:"y1d1d05140505140507100702051005020209080902041504080d08"},E:{t:14,l:0,w:9,h:14,m:"x1313050e050e050e050e11021102050e050e050e050e1313"},F:{t:14,l:1,w:8,h:14,m:"bffffc0c0c0c0fefec0c0c0c0c0c0"},G:{t:14,l:0,w:9,h:14,m:"b3e007f00e380c180c000c000cf80cf80c180c180c180e1807f803f00"},H:{t:14,l:0,w:9,h:14,m:"y1d1d0c050c0c050c0c050c0c050c0c050c1d1d"},I:{t:14,l:1,w:8,h:14,m:"bffff18181818181818181818ffff"},J:{t:14,l:1,w:8,h:14,m:"b030303030303030303c3c3c3ff7e"},K:{t:14,l:0,w:9,h:14,m:"bc180c380c700ce00dc00f800f000f000f800dc00ce00c700c380c180"},L:{t:14,l:0,w:9,h:14,m:"y1d1d1805180518051805180518051805"},M:{t:14,l:0,w:9,h:14,m:"y1d1d0b12040d0c0a090a040d0c0b121d1d"},N:{t:14,l:0,w:9,h:14,m:"y1d1d02091206090e0a090a0e09061209021d1d"},O:{t:14,l:0,w:10,h:14,m:"b1e003f0061806180c0c0c0c0c0c0c0c0c0c0c0c0618061803f001e00"},P:{t:14,l:0,w:9,h:14,m:"y1d1d0508050c0508050c0508050c0508050c0704070c020d0e040910"},Q:{t:14,l:0,w:10,h:14,m:"b1c003e0063006300c180c180c180c180cd80cf80670063803fc01cc0"},R:{t:14,l:1,w:8,h:14,m:"bfcfec7c3c3c7fefccccec6c7c3c3"},S:{t:14,l:0,w:9,h:14,m:"b3e007f00e380c180c000f0007c001f0007800180c180e3807f003e00"},T:{t:14,l:0,w:10,h:14,m:"y05180518051805181d1d0518051805180518"},U:{t:14,l:0,w:9,h:14,m:"y19041b02160718051805180516071b021904"},V:{t:14,l:0,w:10,h:14,m:"y09140f0e060f080c0d04120b120b0c0d04060f080f0e0914"},W:{t:14,l:0,w:10,h:14,m:"y15081904120b100d0a0d060a0d06100d120b19041508"},X:{t:14,l:0,w:10,h:14,m:"bc0c0e1c06180738033003f001e001e003f00330073806180e1c0c0c0"},Y:{t:14,l:0,w:10,h:14,m:"y05180914020b10060b0c0a130a13060b0c020b1009140518"},Z:{t:14,l:1,w:8,h:14,m:"bffff06060c0c181830306060ffff"},a:{t:10,l:0,w:9,h:10,m:"b3e007f00e38001803f807f80e180c380ff807d80"},b:{t:14,l:0,w:9,h:14,m:"bc000c000c000c000dc00ff00e300c180c180c180c180e300ff00dc00"},c:{t:10,l:1,w:8,h:10,m:"b1c7f63c0c0c0c0637f1c"},d:{t:14,l:0,w:9,h:14,m:"b01800180018001801d807f806380c180c180c180c18063807f801d80"},e:{t:10,l:0,w:9,h:10,m:"b1c007f006300c180ff80ff80c00061807f801e00"},f:{t:14,l:1,w:8,h:14,m:"b070f1c1818ffff18181818181818"},g:{t:10,l:0,w:9,h:13,m:"b1d807f806380c180c180c18063807f801d800180c3807f003e00"},h:{t:14,l:1,w:8,h:14,m:"bc0c0c0c0deffe3c3c3c3c3c3c3c3"},i:{t:14,l:2,w:5,h:14,m:"b3838380000f8f818181818181818"},j:{t:14,l:2,w:6,h:18,m:"b1c1c1c00007c7c0c0c0c0c0c0c0c0c1cf8f0"},k:{t:14,l:1,w:8,h:14,m:"bc0c0c0c0c7cedcf8f0f8dccec7c3"},l:{t:14,l:2,w:6,h:14,m:"y19041b021607180518051805"},m:{t:10,l:0,w:10,h:10,m:"y151502050e0510150213070e0510150213"},n:{t:10,l:0,w:9,h:10,m:"y151502050e051005100510070e02130411"},o:{t:10,l:0,w:10,h:10,m:"b1e007f806180c0c0c0c0c0c0c0c061807f801e00"},p:{t:10,l:0,w:9,h:13,m:"bdc00ff00e300c180c180c180c180e300ff00dc00c000c000c000"},q:{t:10,l:0,w:9,h:13,m:"b1d807f806380c180c180c180c18063807f801d80018001800180"},r:{t:10,l:0,w:9,h:10,m:"y151502050e0510051005100510070e02050e"},s:{t:10,l:0,w:9,h:10,m:"b3c007e00e300c0007e003f000380c1807f003e00"},t:{t:14,l:1,w:8,h:14,m:"b303030ffff303030303030303f1f"},u:{t:10,l:0,w:9,h:10,m:"y0f0613020e05021005100510050e05021515"},v:{t:10,l:0,w:9,h:10,m:"bc180c180e38063006300770036003e001c000800"},w:{t:10,l:0,w:10,h:10,m:"bc0c0c0c0c0c0ccc0ccc0ccc0ffc07f8033003300"},x:{t:10,l:1,w:7,h:10,m:"bc6c66c6c38386c6cc6c6"},y:{t:10,l:0,w:9,h:14,m:"y07160b0e05040b06090813020a0d06080b0a040b0e0b120716"},z:{t:10,l:1,w:8,h:10,m:"bffff070e1c3870e0ffff"},"~":{t:14,l:0,w:10,h:4,m:"b38c07dc0ef80c700"},"!":{t:14,l:3,w:3,h:14,m:"y110607110607110607"},"@":{t:14,l:0,w:10,h:14,m:"b3e00ff80c18000c000c06cc0fcc0dcc0ccc0ccc0ccc0dd80ff807700"},"#":{t:14,l:0,w:10,h:15,m:"b0cc00cc01dc019807fc07fc03b8033007700ff80ff806600ee00cc00cc00"},$:{t:14,l:0,w:10,h:15,m:"b0c003f007fc0ecc0cc00ec007c003f000f800dc00cc0cdc0ff803f000c00"},"%":{t:14,l:0,w:10,h:14,m:"b7180fb80db00fb0076000e000c000c001c001b8037c036c077c06380"},"^":{t:14,l:1,w:8,h:8,m:"b18183c3c7e66c381"},"&":{t:14,l:0,w:10,h:14,m:"b3c007e00e700c300e7007e003c007800fcc0cfc0c780e3807fc03cc0"},"*":{t:14,l:1,w:8,h:9,m:"b1818dbff7e3c7ee766"},_:{t:-1,l:0,w:10,h:2,m:"x1515"},"+":{t:13,l:0,w:10,h:10,m:"b0c000c000c000c00ffc0ffc00c000c000c000c00"},"`":{t:14,l:2,w:6,h:6,m:"bf0f078381c0c"},"-":{t:8,l:0,w:10,h:3,m:"x151515"},"=":{t:11,l:0,w:9,h:7,m:"x13131212121313"},'"':{t:14,l:1,w:8,h:5,m:"be7e7e7e7e7"},"'":{t:14,l:3,w:3,h:7,m:"y0f0f0f"},"(":{t:14,l:2,w:6,h:14,m:"b0c1c306060c0c0c0c06060301c0c"},")":{t:14,l:2,w:6,h:14,m:"bc0e03018180c0c0c0c181830e0c0"},"{":{t:14,l:0,w:9,h:14,m:"b07800f800c00180018003800f000f0003800180018000c000f800780"},"}":{t:14,l:0,w:9,h:14,m:"bf000f80018000c000c000e00078007800e000c000c001800f800f000"},"[":{t:14,l:1,w:7,h:14,m:"bfefec0c0c0c0c0c0c0c0c0c0fefe"},"]":{t:14,l:1,w:7,h:14,m:"bfefe06060606060606060606fefe"},"<":{t:14,l:0,w:10,h:13,m:"b00c001c007800f003c007800f00078003c000f00078001c000c0"},">":{t:14,l:0,w:10,h:13,m:"bc000e00078003c000f00078003c007800f003c007800e000c000"},"|":{t:14,l:4,w:2,h:17,m:"y2323"},":":{t:11,l:3,w:4,h:11,m:"x0909090808080808090909"},";":{t:11,l:2,w:6,h:14,m:"b3c3c3c00000000003c3c7c78f0e0"},".":{t:3,l:3,w:4,h:3,m:"x090909"},",":{t:3,l:2,w:6,h:6,m:"b3c3c7c78f0e0"},"\\":{t:14,l:1,w:8,h:14,m:"bc0e060703038181c0c0e06070303"},"?":{t:14,l:0,w:11,h:15,m:"b0f003fc071e0e0e0e0e001c0038007000e000e00000000000f000f000f00"},"/":{t:14,l:1,w:8,h:14,m:"b0307060e0c1c1838307060e0c0c0"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["10-03"]={h:21,w:15,g:{0:{t:21,l:0,w:15,h:21,m:"b1ff03ff87ffc701c701ce00ee00ee00ee00ee00ee00ee00ee00ee00ee00ee00e701c701c7ffc3ff81ff0"},1:{t:21,l:3,w:8,h:21,m:"y08091a06091c04091e02092009222b2b2b"},2:{t:21,l:1,w:13,h:21,m:"b3f80ffe0fff0e078003800380038007800f001e007c00f801e003c0078007000e000e000fff8fff8fff8"},3:{t:21,l:0,w:14,h:21,m:"bfff8fff8fff800f801f003e007c00f801f001fe01ff000f8003c001c001c001c003cc078fff0ffe03f80"},4:{t:21,l:0,w:14,h:21,m:"b03800380070007000e000e001c001c003800380070e070e0e0e0e0e0fffcfffcfffc00e000e000e000e0"},5:{t:21,l:1,w:13,h:21,m:"b7ff0fff0fff0e000e000e000e000ff00ffc0ffe000f00078003800380038007800f003f0ffe0ff80fe00"},6:{t:21,l:0,w:15,h:21,m:"b00f001e003c007800f000e001c003fe03ff07ff8783cf01ee00ee00ee00ee00ef01e783c7ff83ff00fe0"},7:{t:21,l:0,w:14,h:21,m:"y07240724072407160f071213070e17070a0d0e07080b120706091607040918111a0f1c0d1e0922"},8:{t:21,l:0,w:15,h:21,m:"b0fe03ff83ff8783c701c701c38383ef80fe00fe01ff07c7c701ce00ee00ee00ee00ef83e7ffc3ff80fe0"},9:{t:21,l:0,w:15,h:21,m:"b0fe01ff83ffc783cf01ee00ee00ee00ee00ef01e783c3ffc1ff80ff8007000e001e003c007800f001e00"},A:{t:21,l:0,w:15,h:21,m:"b038007c007c006c00ee00ee00ee01c701c701c703c7838383ff83ff87ffc783c701c701cf01ee00ee00e"},B:{t:21,l:0,w:15,h:21,m:"bffc0fff0fff8e078e01ce01ce01ce01ce03cfff8fff0fff8e03ce01ee00ee00ee00ee03cfffcfff8ffe0"},C:{t:21,l:1,w:13,h:21,m:"b07c01fe03ff0387870387000f000e000e000e000e000e000e000e000f000700070383c783ff01ff007c0"},D:{t:21,l:1,w:13,h:21,m:"y2b2b2b071e07071e07071e07091a070202071a07020209160704040b0e0b04061f060a170a0e0f0e"},E:{t:21,l:1,w:12,h:21,m:"x191919071207120712071207120712170217021702071207120712071207120712191919"},F:{t:21,l:2,w:11,h:21,m:"y2b2b2b070c0712070c0712070c0712070c0712070c0712070c0712070c07120724"},G:{t:21,l:0,w:14,h:21,m:"b07e01ff83ffc3c1c78007000f000e000e000e000e1fce1fce1fce01cf01c701c781c3c1c3ffc1ffc07f0"},H:{t:21,l:1,w:13,h:21,m:"y2b2b2b1207121207121207121207121207121207121207122b2b2b"},I:{t:21,l:2,w:11,h:21,m:"y071e07071e07071e07071e072b2b2b071e07071e07071e07071e07"},J:{t:21,l:2,w:11,h:21,m:"y1c09061c0d021c0d0222092407240724072209290229022506"},K:{t:21,l:0,w:16,h:21,m:"be01ee03ce078e0f0e1e0e3c0e780ef00fe00fc00fc00fe00ef00e780e3c0e1e0e0f0e078e03ce01ee00f"},L:{t:21,l:1,w:13,h:21,m:"y2b2b2b2407240724072407240724072407240724072407"},M:{t:21,l:0,w:15,h:21,m:"y2b2b2b0b20111a0415120a130e100d0e0a130e041512111a0b202b2b2b"},N:{t:21,l:1,w:13,h:21,m:"y2b2b2b0d1e040f18080f140e0f0e120f0a180f041c0f2b2b2b"},O:{t:21,l:0,w:15,h:21,m:"b07c01ff03ff83c78783c701c701ce00ee00ee00ee00ee00ee00ee00ef01c701c783c3c783ff81ff007c0"},P:{t:21,l:0,w:14,h:21,m:"bffc0fff0fff8e038e01ce01ce01ce01ce01ce078fff8fff0ffc0e000e000e000e000e000e000e000e000"},Q:{t:21,l:0,w:16,h:21,m:"b07801fe03ff0787870387038e01ce01ce01ce01ce01ce79ce3dce1dc71f870f878783ff81ffc079e000f"},R:{t:21,l:0,w:14,h:21,m:"bff80ffe0fff0e0f0e078e038e038e038e038e0f0fff0ffe0ff80e380e3c0e1c0e0e0e0f0e070e078e03c"},S:{t:21,l:1,w:13,h:21,m:"b0fc03fe07ff0f078e038e038f00078003e001f800fc003e000f000780038e038e038f0787ff03fe00f80"},T:{t:21,l:0,w:14,h:21,m:"y072407240724072407242b2b2b072407240724072407240724"},U:{t:21,l:0,w:14,h:21,m:"y230827042902200902220924072407240724072209200902290227042308"},V:{t:21,l:0,w:15,h:21,m:"y07240f1c171406190c0c190614171c0f22091c0f14170c190606190c17140f1c0724"},W:{t:21,l:0,w:15,h:21,m:"y171423082b16151c0f1615101308100d0e10130816151c0f16152b25061714"},X:{t:21,l:0,w:15,h:21,m:"bf01e701c783c38383c781c701ef01ef00fe00fe007c00fe00fe01ef01ef01c703c783838783c701cf01e"},Y:{t:21,l:0,w:15,h:21,m:"y0328072409220d1e040d1a080d160c1f101b0c1f080d16040d1a0d1e0b2007240328"},Z:{t:21,l:1,w:13,h:21,m:"b7ff07ff07ff000f000e001e001c003c00380070007000e001e001c003c00380078007000fff8fff8fff8"},a:{t:15,l:1,w:13,h:15,m:"b0fe03ff07ff8703800380ff83ff87ff8f038e038e078f0f8fff87ff81f38"},b:{t:22,l:0,w:14,h:22,m:"be000e000e000e000e000e000e000e7c0fff0fff8f878f03ce01ce01ce01ce01ce01cf03cf878fff8fff0e7c0"},c:{t:15,l:1,w:12,h:15,m:"b0f803fe07fe078f0f070e000e000e000e000e000f07078f07fe03fe00f80"},d:{t:21,l:0,w:14,h:21,m:"b001c001c001c001c001c001c0f9c3ffc7ffc787cf03ce01ce01ce01ce01ce01cf03c787c7ffc3ffc0f9c"},e:{t:15,l:1,w:13,h:15,m:"b0f803fe07ff07070e038fff8fff8fff8e000e000f00078007ff83ff00fe0"},f:{t:21,l:2,w:11,h:21,m:"y0e07160e07160e07160e071606250229022909060716070807160708071607080716"},g:{t:15,l:0,w:14,h:20,m:"b0f9c3ffc7ffc787cf03ce01ce01ce01ce01cf03c787c7ffc3ffc0f9c001c001c703c7ff83ff81fe0"},h:{t:21,l:1,w:12,h:21,m:"y2b2b2b0e07160c07180c07180c07180c07180c09160e1d0e1d1219"},i:{t:21,l:3,w:8,h:21,m:"b0f0f0f0f000000ffffff0707070707070707070707"},j:{t:21,l:3,w:8,h:26,m:"b0f0f0f0f0000003f3f3f0707070707070707070707070ffffef8"},k:{t:21,l:1,w:13,h:21,m:"y2b2b2b16090c140d0a12110810090409060e090809040c090c09020c0710090c0514070c0318052803"},l:{t:21,l:3,w:9,h:21,m:"y250629022902220924072407240724072407"},m:{t:15,l:0,w:15,h:15,m:"y1f1f1f020518071807181f1f021d0718071807181f021d041b"},n:{t:15,l:1,w:13,h:15,m:"y1f1f1f02091402071607180718071807180916021d021d0619"},o:{t:15,l:0,w:15,h:15,m:"b07c01ff03ff8783c701ce00ee00ee00ee00ee00e701c783c3ff81ff007c0"},p:{t:15,l:0,w:14,h:20,m:"be7c0fff0fff0f878f038e01ce01ce01ce01ce01cf038f878fff0fff0e7c0e000e000e000e000e000"},q:{t:15,l:0,w:14,h:20,m:"b0f9c3ffc3ffc787c703ce01ce01ce01ce01ce01cf03c787c7ffc3ffc0f9c001c001c001c001c001c"},r:{t:15,l:1,w:12,h:15,m:"y1f1f1f02091402071607180718071809160b14020914040714"},s:{t:15,l:1,w:13,h:15,m:"b1fe07ff0fff8f038e000f0007f803fe00ff000780038e078fff87ff01fc0"},t:{t:19,l:2,w:11,h:19,m:"y08071808071808071823042502270807120708071207080712070807120708071207"},u:{t:15,l:1,w:13,h:15,m:"y19061d021d02160918071807180718071607021409021f1f1f"},v:{t:15,l:1,w:13,h:15,m:"y07180d12130c0613060c13120d1807120d0c13061306130c0d120718"},w:{t:15,l:0,w:15,h:15,m:"be00ee00ee00ee00ee00e701c739c739c77dc76dc3ef83ef83ef83c783c78"},x:{t:15,l:1,w:13,h:15,m:"bf07878f038e03de01dc00f800f8007000f800f801dc03de038e078f0f078"},y:{t:15,l:0,w:15,h:20,m:"bf00e700e781c381c1c381c380e700f7007e003e003c003c00380078007000f001e007c0078007000"},z:{t:15,l:1,w:12,h:15,m:"b7ff07ff07ff000f001e003c007800f001e003c007800f000fff0fff0fff0"},"~":{t:21,l:0,w:15,h:5,m:"b3c0e7f8efffee3fce078"},"!":{t:21,l:5,w:4,h:21,m:"y1b08091b08091b08091b0809"},"@":{t:21,l:0,w:15,h:21,m:"b0fe03ff07ff8707ce01ce01c000e000e3dce7fce7fcef3cee1cee1cee1cee1cee1cef3ce7ffc7ffc3e78"},"#":{t:21,l:0,w:15,h:21,m:"b070e070e070e0e1c0e1c7ffe7ffe7ffe1c381c38183038703870fffcfffcfffc70e070e0e1c0e1c0e1c0"},$:{t:21,l:0,w:15,h:22,m:"b03800fe03ff87ffcf39ee38ee380f3807b807f801fe007f803fc039e038e038ee38ef39c7ffc7ff80fe00380"},"%":{t:21,l:0,w:15,h:21,m:"b3c1c7e1c7e3ce738e778e7707ee07ee03dc003c00380078007780efc0efc1dce3dce39ce78fc70fc7078"},"^":{t:21,l:0,w:14,h:11,m:"b030007800fc00fc01fe03ff03cf07878f03ce01cc00c"},"&":{t:21,l:0,w:15,h:21,m:"b0fc01ff03ff078787038707838f03be01fc01f803f007f0e778ee3cee1eee0fcf07c787c7ff83ffc0fde"},"*":{t:21,l:0,w:15,h:14,m:"b0380038003800380638cfffefffe3ff807c007e00fe01ef03c781830"},_:{t:-2,l:0,w:16,h:3,m:"x212121"},"+":{t:19,l:0,w:15,h:16,m:"b038003800380038003800380fffefffefffe0380038003800380038003800380"},"`":{t:21,l:3,w:9,h:8,m:"bfc00fc007e003e001f000f0007800380"},"-":{t:12,l:0,w:14,h:3,m:"x1d1d1d"},"=":{t:16,l:1,w:13,h:10,m:"x1b1b1b1a1a1a1a1b1b1b"},'"':{t:21,l:2,w:11,h:7,m:"y0f0f0f0f0e0e0e0f0f0f0f"},"'":{t:21,l:5,w:4,h:9,m:"y13131313"},"(":{t:21,l:3,w:9,h:21,m:"y100b100a170a081b08060b0a0b0604091209040209160902091a09071e07052205"},")":{t:21,l:3,w:9,h:21,m:"y052205071e07091a0902091609020409120904060b0a0b06081b080a170a100b10"},"{":{t:21,l:0,w:14,h:21,m:"b01f807f807f80f000e000e000e001e00fc00f800f800fc001e000e000e000e000e000f0007fc07fc01fc"},"}":{t:21,l:1,w:13,h:21,m:"bfc00ff00ff00078003800380038003c001f800f800f801f803c003800380038003800780ff00ff00fc00"},"[":{t:21,l:2,w:11,h:21,m:"y2b2b2b071e07071e07071e07071e07071e07071e07071e07071e07"},"]":{t:21,l:2,w:11,h:21,m:"y071e07071e07071e07071e07071e07071e07071e07071e072b2b2b"},"<":{t:21,l:0,w:14,h:20,m:"b0004001c003c00fc01f007e00f803f007c00f800f8007c003f000f8007e001f000fc003c001c0004"},">":{t:21,l:0,w:14,h:20,m:"b8000e000f000fc003e001f8007c003f000f8007c007c00f803f007c01f803e00fc00f000e0008000"},"|":{t:21,l:6,w:3,h:26,m:"y353535"},":":{t:15,l:4,w:6,h:15,m:"x0d0d0d0d0d0c0c0c0c0c0d0d0d0d0d"},";":{t:15,l:2,w:11,h:21,m:"y28032407200b1c0d02180f040b0a11060b0a0f080b0a0d0a0b0a0b0c0b0a090e0b0a0710"},".":{t:5,l:4,w:6,h:5,m:"x0d0d0d0d0d"},",":{t:6,l:2,w:11,h:11,m:"b07e007e00fe00fc01f801f003e003c0078007000e000"},"\\":{t:21,l:2,w:10,h:21,m:"y09220d1e13180611140a130e10110a1413041a111e0d2407"},"?":{t:21,l:0,w:14,h:21,m:"b0fc03ff07ff8f87cf03cf03ce03c003c007800f801f003e003c003c000000000000007c007c007c007c0"},"/":{t:21,l:2,w:10,h:21,m:"y24071e0d1a1114130410110a0a130e06111413180d1e0922"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["10-04"]={h:28,w:20,g:{0:{t:28,l:0,w:20,h:28,m:"y0e1d0e082908043104023502020f180f020b240b0928090928090928090928090928090928090928090928090b240902020f1a0d02023502043104082908101b0e"},1:{t:28,l:4,w:12,h:28,m:"y0e0b200c0b220a0b24080b26060b28040b2a020b2c0b2e39393939"},2:{t:28,l:1,w:18,h:28,m:"x08130a021d06021f0423020d0c0b0207140b1c091c091c091a0b180b02160d02140d04120d060e0f080a0f0c080f0e060d12040d14040b16020b1802091a0b1a0b1a25252525"},3:{t:28,l:0,w:19,h:28,m:"x2502250225022502180b04160b06140b08120b0a100b0c0e0b0e0c0b100a110c0a17060a1904160f021a0b021c0b1e091e091e091e091c0b1a0b0207100f02230421061d0a06130e"},4:{t:28,l:0,w:20,h:28,m:"y220b0c1e0f0c1a130c16170c121b0c0e1304090c0a1308090c06130c090c021310090c1114090c0d18090c091c090c05161f1a1f1a1f1a1f24090c24090c24090c24090c"},5:{t:28,l:1,w:17,h:28,m:"x021f02021f02021f02021f020209180209180b18091a091a150e1b081d061f04120f02160b02180b1a091a091a091a091a09180902160b02140b040e0f061b08170c1112"},6:{t:28,l:0,w:20,h:28,m:"b001f00003e00007c0000f80001f00003e00007c0000f80000f00001f00001ffc003fff003fff807fffc07e07e0fc03e0f801f0f000f0f000f0f000f0f000f0f801f07c03e07e07e03fffc01fff800fff0003fc00"},7:{t:28,l:0,w:20,h:28,m:"y09300930093009300930091e1309181909141d091021090e1112090c0f16090a0d1a09080b1e09060b2009040b221524132611280f2a0b2e"},8:{t:28,l:0,w:20,h:28,m:"b03fc000fff003fffc03fffc07e07e07801e07801e07801e03c03c03f0fc01fff8007fe0003fc000fff001fff803f0fc07c03e07801e0f000f0f000f0f000f0f000f0f801f07e07e07fffe03fffc01fff8003fc00"},9:{t:28,l:0,w:20,h:28,m:"b03fc000fff001fff803fffc07e07e07c03e0f801f0f000f0f000f0f000f0f000f0f801f07c03f07e07e03fffe01fffc00fffc003ff80000f80000f00001f00003e00007c0000f80001f00003e00007c0000f8000"},A:{t:28,l:0,w:20,h:28,m:"y32072a0f24151c1d1421040e210a0623101d040910150c09100b1609100b160910150c09101d0409100623100e210a1421041c1d24152a0f3207"},B:{t:28,l:0,w:20,h:28,m:"y393939390910091009091009100909100910090910091009091009100909100910090910091009091009100909100910090b0c0d0c0b020b080f0c0b0223080b0204330206150417040a0d0a1306240b0a"},C:{t:28,l:1,w:17,h:28,m:"y1019100a250a062d060431040211141102020b200b020b240b0928090928090928090928090b240b020b200b02020b200b02040920090406072007060a0320030a"},D:{t:28,l:1,w:17,h:28,m:"y393939390928090928090928090209240b02092409020409200b02040b1c0b04060d140f04080f0c11060a27080c230a101b0e160f14"},E:{t:28,l:1,w:17,h:28,m:"x23232323091a091a091a091a091a091a091a091a1f041f041f041f04091a091a091a091a091a091a091a091a23232323"},F:{t:28,l:2,w:15,h:28,m:"y3939393909100918091009180910091809100918091009180910091809100918091009180910091809300930"},G:{t:28,l:0,w:19,h:28,m:"y1017120c210c082908062d06040f121104020d1c0d02020b200b020b240b0928090912090e090912090e090912090e090912090e090912090e09020910090e09020b0e1f04090e1f06070e1d0208050e1d02"},H:{t:28,l:1,w:18,h:28,m:"y3939393918091818091818091818091818091818091818091818091818091818091839393939"},I:{t:28,l:3,w:14,h:28,m:"y3009092809092809092809092809393939390928090928090928090928093009"},J:{t:28,l:3,w:14,h:28,m:"y260b08260f042611022611022e0b30093009300930092e0b3702370235043108"},K:{t:28,l:0,w:21,h:28,m:"y39393939160b18140f16121314100b020b120e0b060b100c0b0a0b0e0a0b0e0b0c080b120b0a060b160b08040b1a0b06020b1e0b040b220b0209260b072a09052e070332053603"},L:{t:28,l:1,w:18,h:28,m:"y3939393930093009300930093009300930093009300930093009300930093009"},M:{t:28,l:0,w:20,h:28,m:"y393939390f2a15241b1e061b180c1b121215121215120c1b12061b181b1e15240f2a39393939"},N:{t:28,l:1,w:18,h:28,m:"y39393939112804132208131e0c15181015141415101a130c1e1308221304261339393939"},O:{t:28,l:0,w:20,h:28,m:"y1413120c210c082908062d060411101104020d1c0d0202092409020b240b0928090928090928090928090b240b0209240902020d1c0d020411101104062d060829080c210c121512"},P:{t:28,l:0,w:19,h:28,m:"y393939390912091609120916091209160912091609120916091209160912091609120916091209160b0e0b16020b0a0b18021f18041b1a06171c0a0f20"},Q:{t:28,l:0,w:21,h:28,m:"b03f0000ffc001ffe003fff003e1f007c0f80780780780780f807c0f003c0f003c0f003c0f003c0f003c0f3c3c0f3e3c0f3f3c0f9ffc078ff80787f807c3f803e1f003fff801fffc00fffe003f3f00001f80000f8"},R:{t:28,l:1,w:17,h:28,m:"y393939390912091609120916091209160912091609120b1409120f100912130c0b0e1908020b0a0b021304021f0613041b0c0f0617120b0a0f1a07"},S:{t:28,l:1,w:18,h:28,m:"b03f0000ffc001ffe003fff003e1f807c07807807807800007800007c00003e00001f80000fe00007f80001fe00003f00000f800007800003c00003c0f003c0f803c0f807c07e0f807fff803fff001ffe0003f000"},T:{t:28,l:0,w:20,h:28,m:"y093009300930093009300930093009303939393909300930093009300930093009300930"},U:{t:28,l:1,w:18,h:28,m:"y2f0a3306350437022c0b022e0b3009300930093009300930092e0b2c0b023702350433062f0a"},V:{t:28,l:0,w:20,h:28,m:"y09300f2a17221f1a0621120e1f0c161f041e1b24152c0d2c0d24151c1d161d060e1f0c061f141d1c17220f2a0732"},W:{t:28,l:0,w:20,h:28,m:"y1b1e2b0e3504391a1f2a0f24151c1d161b08161310161310161b081c1d24152a0f1a1f3935042b0e1b1e"},X:{t:28,l:0,w:20,h:28,m:"y033403072c070b240b0f1c0f13141304130c130408130413080c210c1019101411141411141019100c210c081304130804130c13041314130f1c0f0b240b072c07033403"},Y:{t:28,l:0,w:20,h:28,m:"y033607320b2e0f2a13260413220811200c111c10291425142510290c111c08112004132213260f2a0b2e07320336"},Z:{t:28,l:2,w:16,h:28,m:"bfffefffefffefffe003c003c0078007800f000f001e001e003c003c0078007800f000f001e001e003c003c0078007800ffffffffffffffff"},a:{t:20,l:1,w:17,h:20,m:"x0a1108041b04021f02020b0c0b020910091a091a090a19061d041f02210d0e090b100909120909100b090e0d02090811022104150209080d0609"},b:{t:30,l:0,w:19,h:30,m:"y3d3d3d3d180b0c0b04160b100b0216091409021409180914091809140918091409180914091809140b140b160b100b02160d0c0d021821041a1d061c190820110c"},c:{t:20,l:1,w:17,h:20,m:"x0c0d0a081506061904041d02020d080b0202090e0b0b18091a091a091a091a091a091a0b1802090e0b020d080b02041d020619040815060c0d0a"},d:{t:30,l:0,w:19,h:30,m:"y20110c1c19081a1d06182104160d0c0d021609120b02140b140b14091809140918091409180914091809140918091609140902160b100b02180b0c0b043d3d3d3d"},e:{t:20,l:1,w:18,h:20,m:"x0c0f0a081706061b04041d04020b0c0b0202091009020207140925252525091c091c0b1a02091a020d16041f02061d020819040c1108"},f:{t:30,l:2,w:16,h:30,m:"y1409201409201409201409201409201409200a3306370439023b0d0809200b0a0920090c0920090c0920090c0920090c0920"},g:{t:20,l:1,w:18,h:27,m:"y0c0f1c06190e0506041f0a09020223080902020d0c0b080b0b140908090b14090a070918070a070918070a070918070a070918070a070b14070c07020914070a09040b0c090a09023502330431062f08"},h:{t:30,l:2,w:16,h:30,m:"y3d3d3d3d18091c16091e140920140920140920140920140920140b1e1627162718251c21"},i:{t:30,l:4,w:11,h:30,m:"y1409201409201409201409201409200b0a09200b0a09200b0a290b0a290b0a290b0a29"},j:{t:30,l:4,w:12,h:37,m:"y4209420942091409260914092609140926091409240b0b0a09220b020b0a35020b0a35020b0a33040b0a2f08"},k:{t:30,l:1,w:18,h:30,m:"y3d3d3d3d220912200d101e110e1c150c1a0b040b0a180b080b08160b0c0b06140b100b04120b140b021209180b12071c0912052007120324053a03"},l:{t:30,l:4,w:12,h:30,m:"y350839043b023b02300d320b340934093409340934093409"},m:{t:20,l:0,w:20,h:20,m:"y29292929020720020522072207222929290227020720072207220722292902270425"},n:{t:20,l:1,w:18,h:20,m:"y29292929040b1a020b1c0b1e0920092009200920092009200b1e0227042506230821"},o:{t:20,l:0,w:20,h:20,m:"b03fc000fff001fff803f0fc07c03e07801e0f801f0f000f0f000f0f000f0f000f0f000f0f000f0f801e07801e07c03c03f0fc01fff800fff0003fc00"},p:{t:20,l:0,w:19,h:27,m:"y37373737040b0c0b12020b100b1002091409100918090e0918090e0918090e0918090e0918090e0b140b0e0209140910020d0c0d10042112061d140819160e0d1c"},q:{t:20,l:0,w:19,h:27,m:"y0e0f1a081916061d14042112020d0c0d1002091409100b140b0e0918090e0918090e0918090e0918090e0918090e0209140910020b100b10040b0c0b1237373737"},r:{t:20,l:2,w:16,h:20,m:"y2929292904091c02091e0920072207220722072209200d1c020b1c04091c06071c"},s:{t:20,l:1,w:17,h:20,m:"x08110a041906021d040d0a0b0209100902091a091a0b1802111002170a0619040e1302160d1a091a090912090b0c0d2102021d04061508"},t:{t:26,l:2,w:16,h:26,m:"b0f000f000f000f000f00ffffffffffffffff0f000f000f000f000f000f000f000f000f000f000f000f000f8007ff07ff03ff00fe"},u:{t:20,l:1,w:18,h:20,m:"y21082504270227021e0b2009200920092009200920091e09021c0b021a0b0429292929"},v:{t:20,l:0,w:20,h:20,m:"y07220b1e1118171204170e0819080e190214151a0f200920091a0f14150e190208190804170e151411180b1e0722"},w:{t:20,l:0,w:20,h:20,m:"y092019102702290a1f1e0b18111415101306100b0e100b0e101306141518111e0b0a1f29270219100920"},x:{t:20,l:0,w:19,h:20,m:"bf803e07c07c03c07801e0f001f1f000f1e0007bc0003f80003f80001f00001f00003f80003f80007bc000f1e001f1f001e0f003c07807c07c0f803e0"},y:{t:20,l:0,w:21,h:27,m:"y03340728090b24090f2009111c0b0411140d0208110e0d040c11060f06101d0a14170c16130e1411121011160c111a08111e04112211260d2a0b2c07300334"},z:{t:20,l:2,w:16,h:20,m:"bffffffffffffffff001f003e007c00f801f003e007c00f801f003e007c00f800ffffffffffffffff"},"~":{t:30,l:0,w:20,h:7,m:"b0f00403fc0e07ff1f0fffff0f8ffe0703fc0200f00"},"!":{t:30,l:7,w:6,h:30,m:"y191a0b270c0b270c0b270c0b270c0b191a0b"},"@":{t:30,l:0,w:20,h:30,m:"y0a07121308060b0e1b04040d0c1f02020d0c2102020910090e0d0912071409091207140907140714090716090e0b0714210207141f040912210209122302092c07020b2a07040f220906370833020c2d04122308"},"#":{t:30,l:1,w:18,h:30,m:"y2607080912070e171207081d1229020c250c2d101f080710190e07100b08070e071012070e07080912070e171207081d1229020c250c2d101f080710190e07100b080724"},$:{t:30,l:0,w:20,h:30,m:"b00f00000f00007fc001fff803fffc07fffe0f8f3f0f0f1f0f0f1f0f0f000f0f0007cf0007ff0001ff8000ffe0001ff8000ffc000f7e000f1f000f0f000f0f0f0f0f0f0f1f0f8f3e07fffe03fffc01fff0007fc0000f00000f000"},"%":{t:29,l:0,w:19,h:29,m:"y06092c02112009151c0b070807180f070807141102070807120f06150e0f0a02110c0f0e06090c1110180f14140f0a090610110811020e0f0a150a0f0e070807060f120708070211140708070f18150b1e110207260906"},"^":{t:30,l:0,w:19,h:15,m:"b00400000e00001f00001f00003f80007fc0007fc000ffe001fbf001f1f003e0f807c07c07803c0f001e07001c0"},"&":{t:30,l:0,w:20,h:30,m:"b03f0000ffc001fff003fff007e1f807c0780780780780780780780780f003c1e003c7c001ef8001ff0000fe0000f80003fc0003fe0f07df0f078f0f0f0f8f0f07ce0f03fe0f01fe0f81fc07e0fc07fffc03fffc01fffe007f9f0"},"*":{t:29,l:0,w:20,h:19,m:"b00f00000f00000f00000f00000f00070f0e07cf3e0fffff0fffff01fff8001f80001f80003fc00079e000f9f001f0f803e07c00e0700040200"},_:{t:-3,l:-1,w:22,h:4,m:"x2d2d2d2d"},"+":{t:26,l:1,w:18,h:22,m:"y1209121209121209121209121209121209121209122d2d2d2d120912120912120912120912120912120912120912"},"`":{t:28,l:4,w:12,h:10,m:"bff00ff007f803f801fc00fc007e003e001f000f0"},"-":{t:17,l:1,w:18,h:5,m:"x2525252525"},"=":{t:21,l:1,w:18,h:12,m:"x252525252424242425252525"},'"':{t:28,l:3,w:14,h:9,m:"y1313131313121212121313131313"},"'":{t:28,l:7,w:5,h:12,m:"y1919191919"},"(":{t:30,l:4,w:12,h:30,m:"y161116101d100e230c0a290a080f100f08060d180d06040b200b04020b240b020b280b092c09092c09073007"},")":{t:30,l:4,w:12,h:30,m:"y073007092c09092c090b280b020b240b02040b200b04060d180d06080f100f080a290a0e230c101d10161116"},"{":{t:30,l:1,w:18,h:30,m:"y1a091a1a091a1a091a1a091a1a091a180d18082b0a043306021b04190402190819020d240b020b280b092c09092c09092c09092c09092c09092c09"},"}":{t:30,l:1,w:18,h:30,m:"y092e07092e07092e07092e07092e07092e070b2a090d2609020219081902021b041904043306082b0a180d181a091a1a091a1a091a1a091a1a091a"},"[":{t:30,l:3,w:14,h:30,m:"y3d3d3d3d092c09092c09092c09092c09092c09092c09092c09092c09092c09092c09"},"]":{t:30,l:2,w:15,h:30,m:"y092c09092c09092c09092c09092c09092c09092c09092c09092c09092c09092c093d3d3d3d"},"<":{t:28,l:0,w:20,h:27,m:"x2603240520091c0d1a0f161102140f06100f0a0e0f0c0a0f10080f12040f16020f180d1c020f18040f16080f120a0f100e0f0c100f0a140d08160f041a0d021c0b021e0902220502240302"},">":{t:28,l:0,w:20,h:27,m:"x0326052409200d1c0f1a021116060f140a0f100c0f0e100f0a120f08160f04180f021c0d180f02160f04120f08100f0a0c0f0e0a0f10080d14040f16020d1a020b1c02091e020522020324"},"|":{t:30,l:8,w:4,h:37,m:"y4b4b4b4b"},":":{t:21,l:6,w:8,h:21,m:"x111111111111101010101010101010111111111111"},";":{t:21,l:3,w:14,h:28,m:"y360332072e0b2a0f26132215021e17040d1215060d1213080d12110a0d120f0c0d120d0e0d120b100d120912"},".":{t:6,l:6,w:8,h:6,m:"x111111111111"},",":{t:6,l:3,w:14,h:13,m:"b03fc03fc07fc07fc0ff80ff01fe01fc03f803f007e007c00f800"},"\\":{t:30,l:2,w:16,h:30,m:"y033a09340d30132a0215260617200c151c1017161615121a150e2015082415042a132e0f34093805"},"?":{t:30,l:0,w:19,h:30,m:"y080b2a060d2a040f2a02112a020d2e0209320b3209280d0916090a0d09140b0a0d09120d0a0d09100f0a0d0b0c110a0d020b080d100d021d1e021b200417220613240a0b28"},"/":{t:30,l:2,w:16,h:30,m:"y3a033409300d2a132615022015081c150c1815101215160e151a081520041524132a0f2e0b320538"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["10-05"]={h:35,w:25,g:{0:{t:35,l:0,w:25,h:35,m:"y141f140c2f0c063908043f0402430202151a1502020d2a0d020d2e0d0b320b0b320b0b320b0b320b0b320b0b320b0b320b0b320b0b320b0d2e0d020d2a0d0202151a1502024302043f040837080c2f0c141f14"},1:{t:35,l:5,w:15,h:35,m:"y100f280e0f2a0c0f2c0a0f2e080f30060f32040f34020f360f380d3a4747474747"},2:{t:35,l:0,w:24,h:35,m:"x0c170e06210a0229062d042f0211100f02091a0f03220d260b260b260b260b240b02220d02200d041e0d061a0f0816110a12130c0e13100c11140a0f18080d1c060d1e040d20020d22020d22020b240d240d242f022f022f022f022f02"},3:{t:35,l:0,w:25,h:35,m:"x2f042f042f042f042f04200f041e0f061c0f081a0f0a180f0c160f0e140f10120f12100f140e15100e1b0a0e1d080e1f061e1104220f02260b02260d280b280b280b280b260d240d02220f02091413042f042d06290a250e0a1514"},4:{t:35,l:0,w:24,h:35,m:"y2a0d102611102215101e19101a1d101621101217040b100e17080b100a170c0b100617100b100217140b1015180b10111c0b100d200b1009240b10051a291e291e291e291e292c0b102c0b102c0b102c0b10"},5:{t:35,l:2,w:21,h:35,m:"x022702022702022702022702022702020b1e0d1e0b200b200b200b2019121f0c230825062704031411041a0f021e0b021e0d200b200b200b200b200b1e0d1e0b021c0d021a0d0416110410150623081f0c1b101516"},6:{t:35,l:0,w:25,h:35,m:"y261110201d0a1c2308182906142f0412190a0f041017120d020e17160b020c19160d0a191a0b080f020b1a0b060f040b1a0b040f060b1a0b020f080b1a0b0f0a0b1a0b0d0c0b1a0b0b0e0d160d09120b160b0207140d120d0205180f0a0f04031a27041e2306201f0824170c280f10"},7:{t:35,l:0,w:25,h:35,m:"y0b3c0b3c0b3c0b3c0b3c0b3c0b28150b201d0b1c210b1a230b16270b1415140b10131a0b0e111e0b0c0f220b0a0f240b080d280b060d2a0b020f2c192e1730153213340f380b3c"},8:{t:35,l:0,w:25,h:35,m:"x1011120a1d0c06250804290604290602110e0f04020d140d04020b180b04020b180b04020b180b04040b140b06040f0c0f0606110411080a1f0a0c1b0c0e170e0c1b0c0823080611061106040f0e0f04020f120f02020d160d020d1a0d0b1e0b0b1e0b0b1e0b0b1e0b0d1a0d0f160f02110e1102022f02042b040627060a1f0a101310"},9:{t:35,l:0,w:25,h:35,m:"y100f280c1724081f2006231e04271a03040f0a0f1805020d120d1407020b160b12090d160d0e0b0b1a0b0c0d0b1a0b0a0f0b1a0b080f020b1a0b060f040b1a0b040f060b1a0b020f080b1a190a0d16190c020b16170e020d121710040f0a1912042d1606271a08211e0c1922101126"},A:{t:35,l:0,w:25,h:35,m:"y42053a0d32152a1d22251a2b02122b0a0a2b1202311423060b141b0e0b1413160b140d1c0b1413160b141b0e0b1423060b140231140a2b12122b0a1a2b0222252a1d32153a0d4205"},B:{t:35,l:0,w:25,h:35,m:"x2310270c2b082d062f040b160f040b1a0d020b1c0b020b1c0b020b1c0b020b1c0b020b1c0b020b1a0b040b160f042d062b08290a2b082d060b160f040b1a0d020b1c0b020b1c0d0b1e0b0b1e0b0b1e0b0b1c0d0b1c0d0b1a0d020b1611022f042d062b08290a250e"},C:{t:35,l:2,w:21,h:35,m:"y1817181027100c2f0c083708063b0604151615040211221102020d2a0d02020b2e0b020b320b0b320b0b320b0b320b0b320b0b320b020b2e0b02020f260f02040d260d04040d260d04060b260b060a0726070a"},D:{t:35,l:2,w:21,h:35,m:"y47474747470b320b0b320b0b320b020b300b020b2e0b02020d2c0b02040d280d02040f240d04060f200f0408111811060a131013080c310a0e2d0c122510161d141a1518"},E:{t:35,l:1,w:22,h:35,m:"x2b022b022b022b022b020b220b220b220b220b220b220b220b220b22270627062706270627060b220b220b220b220b220b220b220b220b220b220b222d2d2d2d2d"},F:{t:35,l:3,w:18,h:35,m:"y47474747470b120b200b120b200b120b200b120b200b120b200b120b200b120b200b120b200b120b200b120b200b120b200b3c0b3c"},G:{t:35,l:0,w:24,h:35,m:"x14110c1019080c21040a250208270206110e0d040f140b040d20020d22020d22020b240d240b260b260b260b260b0c1b0b0c1b0b0c1b0b0c1b0b0c1b0b1c0b0d1a0b020b1a0b020b1a0b020d180b020d180b040d160b040f140b0611100b082908290c250e2314130a"},H:{t:35,l:1,w:22,h:35,m:"y47474747471c0b201c0b201c0b201c0b201c0b201c0b201c0b201c0b201c0b201c0b201c0b201c0b204747474747"},I:{t:35,l:3,w:19,h:35,m:"y0b320b0b320b0b320b0b320b0b320b0b320b0b320b47474747470b320b0b320b0b320b0b320b0b320b0b320b0b320b"},J:{t:35,l:3,w:18,h:35,m:"y300d0a3011063013043015023015023a0d3c0b3c0b3c0b3c0b3c0b3a0d3a0d45024502430441063d0a"},K:{t:35,l:-1,w:27,h:35,m:"y47474747471c0d1e1a111c18151a161918140d020f16120d060f14100d0a0f120e0d0e0f100c0d120f0e0a0d160f0c080d1a0f0a060d1e0f08040d220f06020d260f040d2a0f020b2e0f09320d07360b053a09033e0742054403"},L:{t:35,l:1,w:23,h:35,m:"y47474747473c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b"},M:{t:35,l:0,w:24,h:35,m:"y47474747470f3817301d2a0421220a211c101f18181718181718101f180a211c0421221d2a17300f384747474747"},N:{t:35,l:1,w:23,h:35,m:"y47474747471532192e04192a0a17260e172212171e1619181c171420171024170c2817082c170430174747474747"},O:{t:35,l:0,w:25,h:35,m:"y1817181223120e2b0e0a330a0837080613161306040f220f04020d2a0d02020b2e0b020d2e0d0b320b0b320b0b320b0b320b0b320b0d2e0d020b2e0b02020d2a0d02040f220f0406151413060837080a330a0e2b0e122312181718"},P:{t:35,l:1,w:23,h:35,m:"y47474747470b160b1c0b160b1c0b160b1c0b160b1c0b160b1c0b160b1c0b160b1c0b160b1c0b160b1c0b160b1c0d120d1c020d0e0d1e020f0a0f1e042320042320061f220a17260e0f2a"},Q:{t:35,l:-1,w:27,h:35,m:"y16171a0e27120a2d1008330c06370a041314150802111e0f08020d260d06020b18050e0b060b1a070c0d040b1a090c0b040b1a0b0a0b040b1a0d080b040b1c0d060b040b1e0d040b04020b1e1904020d1e150602111c13060415121508063b06083b040c39021025060d1617100b3e0940074205"},R:{t:35,l:1,w:22,h:35,m:"y47474747470b140b1e0b140b1e0b140b1e0b140b1e0b140b1e0b140f1a0b1413160b1417120d101d0e0d10210a020f080d06170602230a1702041f1015061b161108171c0d0e0d24094205"},S:{t:35,l:1,w:22,h:35,m:"b00ff0003ffc00fffe01ffff03ffff83f81fc7e00fc7c007c7c00007c00007c00007e00003f00003fc0001ff0000ffc0003ff0000ffc0003fe0000ff00003f80001f80000fc00007c00007c00007cf8007cfc00fcfe01fc7f03f87ffff83ffff01fffe007ff8001fe00"},T:{t:35,l:0,w:24,h:35,m:"y0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c47474747470b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c"},U:{t:35,l:1,w:23,h:35,m:"y390e3d0a410643044304360f02380d023a0d3c0b3c0b3c0b3c0b3c0b3c0b3c0b3a0d380d02360f024304430441063d0a390e"},V:{t:35,l:0,w:26,h:35,m:"y07400f3815321d2a2324291e08291610290e182906202726212e19380f380f2e1926212027182906102b0c082b142d1a25221d2a15320f380740"},W:{t:35,l:0,w:25,h:35,m:"y1f2831163d0a47471c2b32152e19281f2221041a230a1a1b121a15181a1b121a230a202304281f2e1932151c2b47473d0a31161f28"},X:{t:35,l:0,w:25,h:35,m:"y034203073a070b320b0f2a0f132213171a17041712170408170a17080c1702170c102710141f141817181a131a181718141f141027100c1702170c08170a17080417121704171a171322130f2a0f0b320b073a07034203"},Y:{t:35,l:0,w:25,h:35,m:"y034407400b3c0f381334173004172c0817280c17241017201433182f1a2d182f14331017200c172408172804172c173013340f380b3c07400344"},Z:{t:35,l:2,w:21,h:35,m:"y0b320b0b2e0f0b2a130b26170b221b0b1e1f0b1a15040b0b1813080b0b14130c0b0b1013100b0b0c13140b0b0a13160b0b06131a0b0b02131e0b1b220b19240b15280b112c0b0d300b0b320b3c0b"},a:{t:26,l:1,w:22,h:26,m:"x0e130c081f06062304042702040d0e0d02020d120d220b220b220b220b0e1f082506270429020f120b020b160b0b180b0b180b0b160d0b160d0d1011020d0a15022b04290619040b0c0f080b"},b:{t:38,l:0,w:24,h:38,m:"y4d4d4d4d4d1c110c11041c0d140d041a0d180d021a0b1c0b02180b200b180b200b180b200b180b200b180b200b180b200b180d1c0d180d1a0d021a0f140f021a130c11041c2d041e2906202508241d0c2a1112"},c:{t:26,l:2,w:21,h:26,m:"x100f0c0c1906081f04062302042502040f0a0f020d120b020b1e020b1e0b200b200b200b200b200b200b200b20020b1e020b140b020d100d040f0a0f042502062104081f040a19080e110c"},d:{t:38,l:0,w:24,h:38,m:"y2a1310241d0c2025081e29061c2d041a130c11041a0f140f021a0b1a0d02180d1c0d180b200b180b200b180b200b180b200b180b200b180b200b1a0b1c0b021a0d180d021c0d140d041c0f0e11044d4d4d4d4d"},e:{t:26,l:1,w:23,h:26,m:"x10110e0c190a081f08062306042704040d0e0d04020d120d02020b160b0202091a09020b1a0b2f2f2f2f2f0b240b24020b22020b22020d20040f0e0d020427040625040821060c1b0810130c"},f:{t:38,l:2,w:20,h:38,m:"y180b2a180b2a180b2a180b2a180b2a180b2a180b2a0c41084506470449024b020d0a0b2a0d0c0b2a0b0e0b2a0b0e0b2a0b0e0b2a0b0e0b2a0b0e0b2a0b0e0b2a"},g:{t:26,l:1,w:23,h:35,m:"b01fc3e07ffbe1ffffe1ffffe3f83fe7e00fe7c007e7c007ef8003ef8003ef8003ef8003ef8003ef8003ef8003ef8003e7c007e7c007e7e00fe3f83fe1ffffe0ffffe07ffbe01fc3e00003e00003e00003e00003e7c003e7e007c7f01fc3ffff83ffff00fffe003ff00"},h:{t:38,l:2,w:21,h:38,m:"y4d4d4d4d4d1c0d241a0d261a0b28180b2a180b2a180b2a180b2a180b2a180b2a180d28180f261a331a331c311e2f222b"},i:{t:38,l:5,w:14,h:38,m:"y180b2a180b2a180b2a180b2a180b2a180b2a180b2a0f0a0b2a0f0a0b2a0f0a350f0a350f0a350f0a350f0a35"},j:{t:38,l:5,w:14,h:47,m:"y540b540b540b180b320b180b320b180b320b180b320b0f0a0b300d0f0a0b2e0d020f0a45020f0a43040f0a43040f0a41060f0a3d0a"},k:{t:38,l:1,w:23,h:38,m:"y4d4d4d4d4d2a0d16281114261512241910221d0e200f040f0c1e0f080f0a1c0f0c0f081a0f100f06180f140f04180d180f02180b1c0f1809200d1807240b1805280918032c0748054a03"},l:{t:38,l:5,w:15,h:38,m:"y410c470649044b024b023c11400d400d420b420b420b420b420b420b420b"},m:{t:26,l:0,w:25,h:26,m:"y353535353504072a02072c092c092c0b2a35353502330233020b28092c092c092c0b2a353502330431062f"},n:{t:26,l:1,w:23,h:26,m:"y3535353535060d22040d24020d26020b28020b280b2a0b2a0b2a0b2a0b2a0b2a0d28020d2602330431062f082d0c29"},o:{t:26,l:0,w:25,h:26,m:"y1211120c1d0c0a210a062708062906040f100f04020d180d02020b1c0b0202092009020b200b09240909240909240909240909240909220b0b200902020b1c0b02020d180d02040f100f04042b060627080a210a0c1b0e121112"},p:{t:26,l:0,w:24,h:35,m:"y474747474704110c1116040d140f14020b1c0b14020b1c0b140b200b120b200b120b200b120b200b120b200b120b200b120d1c0d12020b1c0b14020d180d14040f100f16042d160629180a231a0c1d1e121124"},q:{t:26,l:0,w:24,h:35,m:"y1211240c1d1e0a231a062918042d1604110e0f16020f160d14020b1c0b140d1c0d120b200b120b200b120b200b120b200b120b200b120b200b12020b1c0b14020b1c0b14040d160b16040f100f164747474747"},r:{t:26,l:2,w:20,h:26,m:"y3535353535040d2404092802092a02092a092c092c092c092c0b2a0d28020f24020f24040d24060b24080924"},s:{t:26,l:1,w:22,h:26,m:"b01ff800fffe01ffff03ffff87f01f87e00f87c00007c00007c00007e00003fc0001ffe000fffc003fff0003ff80001f80000fc00007c00007cf8007c7c00fc7e03f87ffff83ffff00fffc003fe00"},t:{t:33,l:2,w:20,h:33,m:"y0e0b2a0e0b2a0e0b2a0e0b2a0e0b2a02370a3d063f04410241020e0b1e0d0e0b1e0d0e0b200b0e0b200b0e0b200b0e0b200b0e0b200b0e0b200b0e0b2009020e0b200902"},u:{t:26,l:1,w:23,h:26,m:"y2b0a2f06310433023302260f280d2a0b2a0b2a0b2a0b2a0b2a0b280b02280b02260d02240d04220d063535353535"},v:{t:26,l:0,w:26,h:26,m:"y0530092c0d281322191c041b16081d100e1b0c141b06181d1e172411280d280d24111e17181d141b060e1b0c081d10041d141b1a152011240b2a0530"},w:{t:26,l:0,w:25,h:26,m:"y0d281d182d0835350c291a1b260f20151a1b141b0614150c14111014150c141b061a1b2015260f1a1b0c2935352d081d180d28"},x:{t:26,l:0,w:24,h:26,m:"bfc003f7c003e3e007c1f00f81f00f80f81f007c3e007c3e003e7c001ff8001ff8000ff00007e00007e0000ff0001ff8001ff8003e7c007c3e007c3e00f81f01f00f81f00f83e007c7c003efc003f"},y:{t:26,l:0,w:26,h:35,m:"y0344054207360b0b320b0d300b112a0d0213240f06131c11020a131611040c150e1306101506150814270c181f101c17141c131818151a14151e1015220c152608152a04152e153211360d3a093e0542"},z:{t:26,l:2,w:21,h:26,m:"x022902290229022902291c0f1a0f02180f04160f06140f08120f0a100f0c0e0f0e0c0f100a0f12080f14060f16040f18020f1a0f1c0d1e2b2b2b2b2b"},"~":{t:38,l:0,w:25,h:8,m:"x080d160504061312070204190c0b023131020b0a1b0402071015060405140f08"},"!":{t:38,l:9,w:7,h:38,m:"y1b260d31100d31100d31100d31100d31100d1b260d"},"@":{t:39,l:0,w:25,h:39,m:"y0e0918150c0a0d122106061110250404130e290204110e2b02020d140d140d020b16091a0b0b18091c09091a091c09091c091a09091c0d120b02091a2b02091a2904091a29040b182b020b182d020b380b020d3809040d36090417280d0647020845020c3f041039061a290c"},"#":{t:38,l:1,w:23,h:38,m:"y30090a0b1609120902131609121d16090827163304122d0e0831142d040914230e09141f1209140f080912091407100912090a0b1609120902131609121d16090827163304122d0e0831142d040914230e09141f1209141106091209140710092e"},$:{t:38,l:0,w:26,h:38,m:"y100d1a07100e1118090e0c15160b0c0a19140d0a081d120f08080d060b120f08060d0a0b140d06060b0c0b160b06060b0e0b140b06060b0e0b140b060609100b140b064d4d4d4d4d0609140b120906060b120b100b06060b140b0e0b06060d120b0c0d06080f100d060d08080f101f080a0d121b0a0c0b12190c100714150e2e0d12"},"%":{t:37,l:1,w:23,h:37,m:"y060d30090215280d1922110b040b1e15070c071c1304070c071813080b040b14150a1910150e0215101312060d1013161e15181c131c18130e0d0614130e150210150e190e13120b040b0a1316070c0706131a070c0702151c0b040b1320190f2615020b2e0d060744"},"^":{t:39,l:0,w:25,h:21,m:"y2205042009021e0d1a0f02180f041411061211080e130a0a150c08150e041710021712171402171204171008150e0a150c0e130a121108141106180f041a0f021e0d200902220504"},"&":{t:38,l:0,w:25,h:38,m:"y320d0e0c0b16170a08150e1d06061b082104041f04230402310a0f02020f08190e0d02020b1013120d0d1211120d0b1413120b0b12190e0b0b121b0c0b0b100b0413080b0b0e0d0811060b0d0a0d0c13020b020d060d121902021d16170204191a1502041720110206131c190a0d14232a232a1704092a110c072a0b1603"},"*":{t:38,l:0,w:25,h:25,m:"y16031a12071a0e0d180e0d100306100b0e0704100d0a0b02120b080d02120b0611140b021102141906290a270c250e270c290a141906140b021102120b0611120b080d02100d0a0b02100b0e07040e0d1003060e0d1812071a16031a"},_:{t:-4,l:-1,w:27,h:4,m:"x37373737"},"+":{t:33,l:1,w:23,h:27,m:"y160b16160b16160b16160b16160b16160b16160b16160b16160b163737373737160b16160b16160b16160b16160b16160b16160b16160b16160b16"},"`":{t:35,l:3,w:18,h:14,m:"y031a0518071609140b120d100f0e110c130a15081706190404170208150c11100d14091805"},"-":{t:16,l:1,w:23,h:6,m:"x2f2f2f2f2f2f"},"=":{t:27,l:1,w:23,h:16,m:"x2f2f2f2f2f2e2e2e2e2e2e2f2f2f2f2f"},'"':{t:35,l:4,w:17,h:12,m:"y1919191919191818181818191919191919"},"'":{t:35,l:9,w:7,h:16,m:"y21212121212121"},"(":{t:38,l:5,w:15,h:38,m:"y1e131c181f16122912102f0e0c350c0a1510150a08111c1108060f240f06040f280f04020f2c0f020f300f0d340d0b380b093c09093c09"},")":{t:38,l:5,w:15,h:38,m:"y093c09093c090b380b0d340d0f300f020f2c0f02040f280f04060f240f0608111c11080a1510150a0c350c102f0e122912181f161e131c"},"{":{t:39,l:1,w:23,h:39,m:"y240b20240b20240b20240b20240b20240b20220f1e1c1b180a3b0a0623021f0604250221040423061f04021b161b02020d320d02020b360b020d360d0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b"},"}":{t:39,l:1,w:23,h:39,m:"y0b3c090b3c090b3c090b3c090b3c090b3c090b3c090d380b020b380902020d340b02021b161b020423061f0404250221040623021f060a3b0a1c191a220f1e240b20240b20240b20240b20240b20240b20"},"[":{t:38,l:3,w:19,h:38,m:"y4d4d4d4d4d0b380b0b380b0b380b0b380b0b380b0b380b0b380b0b380b0b380b0b380b0b380b0b380b0b380b0b380b"},"]":{t:38,l:3,w:18,h:38,m:"y0b380b0b380b0b380b0b380b0b380b0b380b0b380b0b380b0b380b0b380b0b380b0b380b0b380b4d4d4d4d4d"},"<":{t:36,l:0,w:25,h:34,m:"x2e052c07280b260d221120131c13041a130616130a14130c1013100e13120a131608131804131c02131e1122112202131e04131c0813180a13160e131210131014130c16130a1a13061c130420132211260d280b2c072e05"},">":{t:36,l:0,w:25,h:34,m:"x052e072c0b280d261122132004131c06131a0a13160c131410131014110e16130a1a11081c1304201102221122112011021c13041a110816130a14110e1013100e11140a131608131806111c02131e020f22020d24020b2602072a02052c"},"|":{t:39,l:10,w:5,h:48,m:"y6161616161"},":":{t:26,l:7,w:10,h:26,m:"x1515151515151515141414141414141414141515151515151515"},";":{t:26,l:3,w:19,h:37,m:"y460542093e0d3a1136153217022e19042a1b06241f0811141d0a11141b0c1114190e1114171011141512111413141114111611140f1811140d1a240b1c"},".":{t:8,l:7,w:10,h:8,m:"x1515151515151515"},",":{t:10,l:3,w:19,h:19,m:"y22051e091a0d161112150e17020a1904061b061f081d0a1b0c190e17101512131411160f180d1a0b1c"},"\\":{t:38,l:3,w:19,h:38,m:"y07460b42113c15381b32041b2e0a1b280e1b24141b1e181b1a1e1b14221b10281b0a2c1b06321b38153c11420b4607"},"?":{t:39,l:0,w:25,h:39,m:"y0e0d340a1134081334061534041734041734021538020f3e0d420d340f0b360f0b1e0b0e0f0b1c0d0e0f0b1a0f0e0f0b18110e0f0b16130e0f0d12150e0f020d0e0f160f020f0a0f26022726042328061f2a061d2c0a15300e0d34"},"/":{t:38,l:2,w:21,h:38,m:"y4a034607400d3c113617321b2e1906281b0a2419101e1b141a191a141b1e1019240a1b28061b2c1b321736113c0d400746034a"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["10-06"]={h:42,w:30,g:{0:{t:42,l:0,w:29,h:42,m:"y1825181035100a410a064906044d04044d04021920190202113011020f380f0d3c0d0d3c0d0d3c0d0d3c0d0d3c0d0d3c0d0d3c0d0d3c0d0d3c0d0d3c0d0d3c0d0f380f02113011020219201902044d04044d040649060a410a103510182518"},1:{t:42,l:6,w:18,h:42,m:"y1411301211321011340e11360c11380a113a08113c06113e04114002114211440f46555555555555"},2:{t:43,l:1,w:28,h:43,m:"x1215120a230c06290a0231060233040233040213101302020d1a0f020207220f0203260f2c0d2c0d2c0d2c0d2a0f2a0d02280f02260f04240f062011081c130a18150c1613101215121013160c131a0a131c081120061122060f24040f26040d28020d2a020d2a020b2c0d2c0d2c370237023702370237023702"},3:{t:42,l:0,w:29,h:42,m:"x37043704370437043704370424110622110820110a1e110c1c110e1a111018111216111414111612111810111a101b10101f0c102308102506221504280f042a0f022c0d022c0f2e0d2e0d2e0d2e0d2e0d2c0f2a0f02281102052213020d14170435063308310a2d0e0425120c1718"},4:{t:42,l:0,w:29,h:42,m:"y3211122e15122a1912261d122221121e25121a1b020d12161b060d12121b0a0d120e1b0e0d120a1b120d12061b160d12021b1a0d12191e0d1215220d1211260d120d2a0d12091e2f05222f262f262f262f262f360d12360d12360d12360d12360d12360d12"},5:{t:42,l:2,w:25,h:42,m:"x022f02022f02022f02022f02022f02022f02020d24020d24020d24020d24020b26020b260d260d261b182310270c2b082d062d061a1504201102220f02240d02240f260d260d260d260d260d240f240d02220f022011021e11041a1306121908290a270c23101f14171c"},6:{t:42,l:0,w:30,h:42,m:"y2e1314281f0e24270a202d081c33061a3704161f0a1304141d121102121d160f02101d1a0d020e11020d1a0f0c11020d1e0d0a11040d1e0d0811060d1e0d0611080d1e0d04110a0d1e0d02110c0d1e0d110e0d1e0d0f100d1e0d0d120f1a0d020b160d1a0d0209180f160f02071a11120f04051e130a130403222b06242b0626270828210c2c1b0e320f14"},7:{t:42,l:0,w:29,h:42,m:"y0d480d480d480d480d480d480d30190d28210d24250d20290d1e2b0d1a2f0d1819180d14171e0d1215220d1013260d0e112a0d0c112c0d0a112e0d0811300d0411341f361d381b3a193c173e154011440d48"},8:{t:42,l:0,w:30,h:42,m:"x1415140e210e0a290a082d080631060631060413101304040f180f04040d1c0d04040d1c0d04040d1c0d04040d1c0d04060d180d06061110110608110c11080a290a0c250c101d10121912101d100c250c0a290a08130813080611101106040f180f04020f1c0f02020d200d020f200f0d240d0d240d0d240d0d240d0f200f0f200f02111811020215101502043504043504063106082b0a0c230e121714"},9:{t:42,l:0,w:30,h:42,m:"y140f320e1b2c0c1f2a082726062b24062d200304130a131e05021112111a07020f160f1809020d1a0d160b0f1a0f120d0d1e0d100f0d1e0d0e110d1e0d0c11020d1e0d0a11040d1e0d0811060d1e0d0611080d1e0d04110a0d1e0d02110c0f1a0d02110e020d1a1d10020f161d120211121d1404130a1d1806351a06311e082d200c25240e1f28141130"},A:{t:42,l:0,w:30,h:42,m:"y50054a0b42133a1b32232c29242f021c2f0a142f120e2f180637182b060d18230e0d181b160d18131e0d180d240d18171a0d181f120d18270a0d183d180439180c371214370a1c370224312c2934213c1944114c09"},B:{t:42,l:0,w:30,h:42,m:"x27162d10310c330a330a35080d1813060d1c0f060d1e0f040d1e0f040d200d040d200d040d200d040d200d040d1e0f040d1c0f060d1a110635083508310c310c350837060d1a13040d1e11020d200f020d220f0d240d0d240d0d240d0d240d0d240d0d220f0d200f020d1e11020d1a1304390437063508330a2f0e2b12"},C:{t:42,l:2,w:25,h:42,m:"y1e191e1629161035100c3d0c0a410a084706061918190604152415040211301102020f340f02020d380d020d3a0f0d3c0d0d3c0d0d3c0d0d3c0d0d3a0f0f380f020f340f0202112e1302040f2e1104040f2e1104060d2e0f06080b2e0b0a0c072e090c"},D:{t:42,l:2,w:25,h:42,m:"y5555555555550d3c0d0d3c0d0d3c0d020b3c0d020d3a0b02020d380d02040d360d02040f320d04060f2e0f0406112a0f0608112611060a131e13080c1712170a0e3b0c10370e143110162b141c211822151e"},E:{t:42,l:2,w:25,h:42,m:"x3102310231023102310231020d260d260d260d260d260d260d260d260d260d260d262d062d062d062d062d062d060d260d260d260d260d260d260d260d260d260d260d260d260d26333333333333"},F:{t:42,l:4,w:21,h:42,m:"y5555555555550d160d260d160d260d160d260d160d260d160d260d160d260d160d260d160d260d160d260d160d260d160d260d160d260d480d480d48"},G:{t:42,l:1,w:28,h:42,m:"y1c1b1e142d141035100c3d0c0a410a0845080619161b06061324150404112c11040211301102020f340f02020d380d020f380f0d1a0d160d0d1a0d160d0d1a0d160d0d1a0d160d0d1a0d160d0d1a0d160d0d1a0d160d0f180d160d020d180d160d020f162d02040d162d02040d162d02060b162d020809162b040c05162b04"},H:{t:42,l:2,w:26,h:42,m:"y555555555555220d26220d26220d26220d26220d26220d26220d26220d26220d26220d26220d26220d26220d26220d26555555555555"},I:{t:42,l:4,w:22,h:42,m:"y480d0d3c0d0d3c0d0d3c0d0d3c0d0d3c0d0d3c0d0d3c0d5555555555550d3c0d0d3c0d0d3c0d0d3c0d0d3c0d0d3c0d0d3c0d480d"},J:{t:42,l:4,w:21,h:42,m:"y380f0e38130a381706381904381904381b02440f02460f480d480d480d480d480d460f440f025302510451044f064b0a470e"},K:{t:42,l:0,w:31,h:42,m:"y5555555555552211222015201e191e1c1d1c1a211a1811041118161108111614110c1114121110111210111411100e1118110e0c111c110c0a1120110a0811241108061128110604112c110402113011021134110f380f0d3c0d0b400b094409074807054c05035003"},L:{t:42,l:1,w:27,h:42,m:"y555555555555480d480d480d480d480d480d480d480d480d480d480d480d480d480d480d480d480d480d480d480d480d"},M:{t:42,l:0,w:29,h:42,m:"y5555555555551144193c1f36272e0629260c292014251c1a1f1c20191c1a1f1c14251c0c2920062926272e1f36193c1144555555555555"},N:{t:42,l:1,w:27,h:42,m:"y555555555555173e1b3a041d34081d300e1b2c121b28161d221c1b1e201b1a241d142a1b102e1b0c321d06361d023c19555555555555"},O:{t:42,l:0,w:29,h:42,m:"y1e191e1629161231120e390e0c3f0a08450806191819060415241504040f2e1104020f340f02020d380d020f380f0d3c0d0d3c0d0d3c0d0d3c0d0d3c0d0f380f020d380d02020f340f0204112c1104041524150406191819060845080c3f0a0e390e1231121629161e191e"},P:{t:42,l:1,w:28,h:42,m:"y5555555555550d1a0d220d1a0d220d1a0d220d1a0d220d1a0d220d1a0d220d1a0d220d1a0d220d1a0d220d1a0d220d1a0d220d1a0d220f160f220f160d24020f120f2402130a1324042b2606272808232a0a1f2c0c1b2e120f34"},Q:{t:42,l:-1,w:32,h:42,m:"y1a1b201429180e35120c3910083f0e06430c061716190a041324130802112c1106020f300f060f1c03160d060d1e07140d040d1e09120d040d1e0d0e0d040d1e0f0c0d040d1e110a0d040d1e15040f04020d1e15020d06020f1e21060211201b0804131e1908061716190a0847060a47040c47020e330213142908111c19140d4a0b4c0950055203"},R:{t:42,l:1,w:27,h:42,m:"y5555555555550d1a0d220d1a0d220d1a0d220d1a0d220d1a0d220d1a0f200d1a111e0d1a151a0d1a19160f161f120f162110020f120f02170c02130c0f061908042b0a1904042910190625141708211a130c1b200f120f2a0b4c095005"},S:{t:42,l:2,w:26,h:42,m:"x1411100e1d0a0a2308082706062b04042f0204130c1102040f140f020f180d020d1a0d020d26020d26020d26020f24040f2204112006131c0815180a17140c191010190c14170a1815081c1306201104221102260d02260f280d280d0d1c0d0d1c0d0f180f0f180f020f140f0202130c1302042d04042d040629060a210a0c1d0c121112"},T:{t:42,l:0,w:30,h:42,m:"y0d480d480d480d480d480d480d480d480d480d480d480d485555555555550d480d480d480d480d480d480d480d480d480d480d480d48"},U:{t:42,l:1,w:28,h:42,m:"y4312490c4b0a4d084f065104401104440f02440f02460f460f480d480d480d480d480d480d460f460f440f02440f0240110451044f064d084b0a490c4312"},V:{t:42,l:0,w:31,h:42,m:"y05500b4a13421b3a2332292c042d240a2f1c122f141a2f0c222f042a2b32233a1b4213460f42133a1b32232a2b222f041a2f0c122f140a2f1c042d24292c2134193c11440b4a0550"},W:{t:42,l:0,w:30,h:42,m:"y2134352043124d0855551e3734213e17361f2e27282b0222270c202312201b1a201b1a20231222270c2829042e27361f3e1734211e3755554d08431235202134"},X:{t:42,l:0,w:30,h:42,m:"y0350030748070b400b0f380f1330131728171b201b041b181b04081b101b080c1b081b0c103510142d141825181c1d1c2015202015201c1d1c182518142d141035100c1b081b0c081b101b08041b181b041b201b1728171330130f380f0b400b074807035003"},Y:{t:42,l:0,w:30,h:42,m:"y0352074e0b4a0f461342173e1b3a041b36081b320c1b2e101b2a141b26183d1c39203520351c39183d141b26101b2a0c1b2e081b32041b361b3a173e13420f460b4a074e0352"},Z:{t:42,l:2,w:25,h:42,m:"y0d3c0d0d38110d36130d32170d2e1b0d2a1f0d26230d2219020d0d1e19060d0d1a190a0d0d16190e0d0d1219120d0d0e19160d0d0a191a0d0d06191e0d0d0219220d23260d21280d1d2c0d19300d15340d11380d0d3c0d480d480d"},a:{t:31,l:2,w:26,h:31,m:"x10170e0a2308082706062b04042f020411100f02040d160f280d280d280d280d12230c29082d062f04310211160d020f180d0f1a0d0d1c0d0d1c0d0d1a0f0d1a0f0f16110f121502110a19023304310621020d0a19060d0e110a0d"},b:{t:46,l:1,w:28,h:46,m:"y5d5d5d5d5d5d2411101306220f181104220b200f02200d220d02200b240d021e0b280d1e0b280d1e0b280d1e0b280d1e0b280d1e0b280d1e0d240f1e0d240d02200d200f0220111813022213101504223506243306262f082a270c2e1f10341514"},c:{t:31,l:2,w:25,h:31,m:"x14110e0e1d080c21060a250408290206110c0f02040f120f040d160d020d24020d24020d240d260d260d260d260d260d260d260d260d26020d24020d24020d180d040d160d040f120f06110a1102062b020827040a23060e1b0a12130e"},d:{t:46,l:1,w:28,h:46,m:"y3415142e210e2a270c262f08243306223704221310150420111a1102200d220d021e0d240d021e0d260d1e0b2a0b1e0b2a0b1e0b2a0b1e0b2a0b1e0b2a0b1e0b2a0b200b260b02200b240d02220b200d04220f1a0f0424111211065d5d5d5d5d5d"},e:{t:31,l:1,w:27,h:31,m:"x1411120e1d0c0c210a082708062b06060f0e1104040d160d04040b1a0d02020d1a0d02020b1e0b02020b1e0d3737373737370d2a0d2a0d2a020b2a020d28020d28040d26040f140f0206110e0f04062d040829060c23080e1f0a141310"},f:{t:46,l:3,w:24,h:46,m:"y1e0d321e0d321e0d321e0d321e0d321e0d321e0d321e0d321e0d32104d0a53085506570459025b02110c0d32110e0d320f100d320d120d320d120d320d120d320d120d320d120d320d120d32"},g:{t:31,l:1,w:27,h:41,m:"y14132c0e1f1807080a27140906082b120b04062f100d0204330e0d02021312130c0d02020f1a0f0e0d020d1e0d0e0d0d220d0e0b0b240d0e0b0b260b0e0b0b260b0e0b0b260b0e0b0b260b0e0b0b260b0e0b020b220b100b020b220b0e0d020d1e0d0e0b02040d1a0d100b02060f1011100d0251024f044d064d06490a450e"},h:{t:46,l:2,w:25,h:46,m:"y5d5d5d5d5d5d22112a220d2e200d30200d30200b321e0d321e0d321e0d321e0d321e0d321e0f301e0f30200f2e203d223b223b243928352c31"},i:{t:46,l:7,w:15,h:46,m:"y1e0d321e0d321e0d321e0d321e0d321e0d321e0d32110e0d32110e0d32110e0d32110e3f110e3f110e3f110e3f110e3f"},j:{t:46,l:6,w:17,h:57,m:"y660d660d660d660d1e0d3c0d1e0d3c0d1e0d3c0d1e0d3c0d1e0d3a0f110e0d380f02110e0d341302110e5302110e5104110e5104110e4f06110e4b0a110e470e"},k:{t:46,l:1,w:27,h:46,m:"y5d5d5d5d5d5d340f1a3213183017162e1b142c1f122a11021110281106110e26110a110c24110e110a221112110820111611061e111a11041e0f1e11021e0d22111e0b260f1e092a0d1e072e0b1e0532091e03360758055a03"},l:{t:46,l:6,w:17,h:46,m:"y4d10530a570659045b025b024813024c114e0f500d500d500d500d500d500d500d500d"},m:{t:31,l:0,w:31,h:31,m:"y3f3f3f3f3f3f040b30020b320209340b340b340b340d323f3f3f023d023d043b020d30020b320b340b340b340d323f3f023d023d043b0837"},n:{t:31,l:1,w:27,h:31,m:"y3f3f3f3f3f3f061128040f2c040d2e020d30020b32020b320b340b340b340b340b340b340d320f30020f2e023d043b063908370a350e31"},o:{t:31,l:0,w:30,h:31,m:"y161316101f100c270c0a2b0a082f0806330604150e1504040f1a0f04020f1e0f02020d220d02020b260b020d260d0b2a0b0b2a0b0b2a0b0b2a0b0b2a0b0b2a0b0d260d0d260b02020d220d02020f1e0f02040f1a0f040415101304063306082f080a2b0a0c250e101f10161316"},p:{t:31,l:0,w:29,h:41,m:"y535353535353061112111a040f1a0f18020d220d16020b240d16020b260b160b280d140b2a0b140b2a0b140b2a0b140b2a0b140b2a0b140b2a0b140d260d14020b240d16020d220d16040f1a0f18041312131806331a082f1c0a2b1e0c2720101f2416132a"},q:{t:31,l:0,w:29,h:41,m:"y16132a101f240c27200a2b1e082f1c06331a0413121318040f1a1116020d220d16020d240b160d260d140b2a0b140b2a0b140b2a0b140b2a0b140b2a0b140b2a0b140b280d14020b260b16020d220d16040b220d16040f1a0f18061112111a535353535353"},r:{t:31,l:3,w:23,h:31,m:"y3f3f3f3f3f3f060f2a040d2e020d30020b32020b320b340b340b340b340d320f3002132a02132a04112a04112a080d2a0c092a"},s:{t:31,l:2,w:26,h:31,m:"x12150e0c2108082706062b04042d0402130e1102020f140f02020d180d02020d26020d26020d26040d2404131e061b1408210c0c2108121d061c1504240f02260f280d280d280d0d1a0f020d161102110e1302023102042d0406290608230a0e1710"},t:{t:41,l:3,w:24,h:41,m:"y120d34120d34120d34120d34120d34120d3402430e024908024b06024d0451025102120d260f120d280d120d2a0b120d2a0b120d2a0b120d2a0b120d2a0b120d2a0b120d280d120d280d120d280b02120d260d02"},u:{t:31,l:1,w:27,h:31,m:"y310e370839063b043d023d022e0f02320d320d340b340b340b340b340b340b320b02320b02300d022e0d042c0f042811063f3f3f3f3f3f"},v:{t:31,l:0,w:30,h:31,m:"y033c09360f30152a1b24211e0225180825120e250c1425061a25201f26192c13320d320d2c132619201f1a251425060e250c082512022518211e1b24152a0f300936033c"},w:{t:31,l:0,w:31,h:31,m:"y033c132c211e2f1039063f023d1629241b2c13241b1c23182502181d0a181512180f18181512181d0a1825021c23241b2c13241b1629023d3f39062f10211e132c033c"},x:{t:31,l:1,w:28,h:31,m:"y033a03073207092e090d260d0f220f111e11151615021512150204170a170408150615080a2b0a0e230e101f10141714141714101f100e230e0a2b0a081506150804170a17040215121502151615111e110f220f0d260d092e09073207033a03"},y:{t:31,l:0,w:30,h:42,m:"y035207420d0b3e0d0f3a0d13360d17300f1b2a0f02041b221302081b1a15040c1b121706101b0a1908141b02190c182f0e1c2712201f16201b1a1c1b1e181b22141b26101b2a0c1b2e081b32041b361b3a173e13420f460b4a074e0352"},z:{t:31,l:2,w:25,h:31,m:"x333333333333220f02200f041e0f061c0f081a0f0a180f0c160f0e140f10120f12100f140e0f160c0f180a0f1a080f1c060f1e040f20020f220f240d26333333333333"},"~":{t:46,l:0,w:31,h:10,m:"b01e0000007fc00301fff007c1fffc0fe3ffffbfc7ffffffcff0ffff8fe03fff03c00ffe018003fc0"},"!":{t:46,l:11,w:8,h:46,m:"y212e0f3b140f3b140f3b140f3b140f3b140f3b140f212e0f"},"@":{t:46,l:0,w:29,h:46,m:"y100b1a19100c0f1427080813102d0606150e310404170e33020411123502020f16111611020d180d1e0d020b1a0b220b0b1c0b220b0b1c0b220b0b1e0d1c0d0b1e11140f020b1c35020b1c33040b1c31060d1a33040d1a3502020d1837020d420d0211400b04133c0b061b2e0f08550a51020c4d04104706163f08202f0e"},"#":{t:46,l:0,w:29,h:46,m:"y40031605220316090e0d1c09160906151c0916231c0912271c0908311c390818331210331a063302091a2f0c091a2714091a1b020916091a130a091609180309140916090e0d1c09160906151c0916231c0910291c0906331c3b061835100e351a043502091a2f0c091a2714091a2516091a130a0916091a0b12091603201c033e"},$:{t:46,l:0,w:30,h:46,m:"y420714160d200b1010171c0d0e0e1b1a0f0c0c1f18110a0a231613080a231613080811080f1a0d08080f0c0d1a0f06080d100d1a0d06060f100d1a0d06060f120d180d06060d140d180d065d5d5d5d5d060d180d140d06080d160d140d06080d180d120b08080d180d100d08080f160f0e0d080a13120f0a0d0a0c1114230a0c1114210c0e0f161f0c120b181b0e14091a15123a0d16"},"%":{t:45,l:1,w:28,h:45,m:"y080f440417360b021b300f021b2c130d060d2815090e09241702090e09201706090e091c19080d060d18190c021b181710021b1417140417121718080f12191a26171e2217221e17100f081a190e17041817101b021417141b021017160d060d0c171a090e090a171c090e09061720090e090217240d060d152a1b02112e1b020f3217040b3a0f08"},"^":{t:46,l:0,w:29,h:23,m:"y260504240902200f1c131a13021615041415061017080e170a0a190c061b0e041b101d121b1419161b141d12041b10061b0e0a190c0e170a1017081415061615041a13021c13200f240902260504"},"&":{t:46,l:0,w:30,h:46,m:"y3c0f1238190c0e0d1a1f0a0a17122308081d0c27060621082b04042702130a1302043710110202110a1d140f02020f1017180f020d1415180f0d1a15160d0d1819140d0d161d120d0d16210e0d0d140d04150c0d0d120d0a15080d0f0e0f0c15060d020d0c0f1215020b02020f080f161f0202231a1d02041f201704061b2417020619221d0815162b0c0d1a2b322b321b060b32151007320d1a05"},"*":{t:45,l:0,w:29,h:29,m:"y18051e14091e0e0f1e100f1c100f120506120d100904120f0c0d02120f0a11140d0615140d041502161f060f081d082f0c2d0e29122d0e2f0c0f081d08161f06140d041502140d0615120f0a11120f0c0d02120d100904100f120506100f1c0e0f1e14091e18051e"},_:{t:-5,l:-1,w:33,h:5,m:"x4343434343"},"+":{t:39,l:1,w:28,h:32,m:"y1a0d1a1a0d1a1a0d1a1a0d1a1a0d1a1a0d1a1a0d1a1a0d1a1a0d1a1a0d1a1a0d1a4141414141411a0d1a1a0d1a1a0d1a1a0d1a1a0d1a1a0d1a1a0d1a1a0d1a1a0d1a1a0d1a1a0d1a"},"`":{t:42,l:4,w:21,h:17,m:"y051e071c091a0b180d160f1411121310150e170c190a1b081d06041b040819020c171013140f180b1c072003"},"-":{t:20,l:1,w:28,h:8,m:"x3939393939393939"},"=":{t:33,l:1,w:27,h:20,m:"x3737373737373636363636363636373737373737"},'"':{t:42,l:5,w:20,h:14,m:"y1d1d1d1d1d1d1d1c1c1c1c1c1c1d1d1d1d1d1d1d"},"'":{t:42,l:11,w:7,h:18,m:"y25252525252525"},"(":{t:46,l:6,w:17,h:46,m:"y2417221c251c182f16143514103d100e410e0c19141b0a08172017080615281506041330130402133413020211381102113c110f400f0d440d0b480b0b480b"},")":{t:46,l:6,w:17,h:46,m:"y0b480b0b480b0d440d0f400f0f3e11021138110202133413020413301304061528150608172017080c19141b0a0e410e103d10143514182f161c251c241524"},"{":{t:46,l:1,w:28,h:46,m:"y280d28280d28280d28280d28280d28280d28280d282611262219221631160e410e0a490a0825042508062508250604211421040411341104020f3c0f02020d400d020f400f0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d"},"}":{t:46,l:1,w:28,h:46,m:"y0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0f400f020d400d02020f3c0f0204113411040421142104062508250608250425080a490a0e410e163116221922261126280d28280d28280d28280d28280d28280d28280d28"},"[":{t:46,l:4,w:22,h:46,m:"y5d5d5d5d5d5d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d"},"]":{t:46,l:4,w:22,h:46,m:"y0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d5d5d5d5d5d5d"},"<":{t:44,l:0,w:30,h:42,m:"x3a0338053409320b2e0f2c1128152615022217042015081c170a1a150e1617101415141017160e151a0a171c0815200417220215261528132a17260415240617200a151e0c151c1015181215161417121815101a170c1e150a2017062415042615022a11022c0f022e0d02320902340702380302"},">":{t:44,l:0,w:30,h:42,m:"x033a053809340b320f2e112c15280215260417220815200a171c0e151a1017161415141617101a150e1c170a2015082217042615022815281526172217042017061c170a1a170c1617101417121017160e17180a171c08171e0417220217241528132a0f2e0d3009340736033a"},"|":{t:46,l:12,w:6,h:56,m:"y717171717171"},":":{t:31,l:9,w:11,h:31,m:"x17171717171717171716161616161616161616161617171717171717171717"},";":{t:32,l:4,w:22,h:43,m:"y540350074c0b480f441340173c1902381b04341d06301f082c210a131a1f0c131a1d0e131a1b10131a1912131a1714131a1516131a1318131a111a131a0f1c131a0d1e131a0b20"},".":{t:10,l:9,w:11,h:10,m:"x17171717171717171717"},",":{t:10,l:4,w:22,h:21,m:"y28032407200b1c0f181314171019020c1b04081d06041f08210a1f0c1d0e1b101912171415161318111a0f1c0d1e0b20"},"\\":{t:46,l:3,w:24,h:47,m:"y07580b54114e17481b44213e04213a0a2134101f3014212a1a1f261e2120241f1c2821162e1f1232210c381f083c2102421d48174c13520d56095c03"},"?":{t:46,l:0,w:30,h:46,m:"y120b400c11400a1340081540061740041940041940021b40021348020f4c0f4e0f3c130d240d0e130d220f0e130d20110e130d1e130e130d1e130e130d1c150e130d1a170e130f16111613020d14111813020f10111a1302130a112e042b2e0429300625320821340a1d360c173a100f3e"},"/":{t:46,l:3,w:24,h:47,m:"y5807540b4e114817441b3e213a1f0634210a2e21102a211424211a20211e1a2124161f2a10212e0a2134062138213e1d421748134c0d520758035c"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["10-07"]={h:49,w:35,g:{0:{t:49,l:0,w:35,h:49,m:"y1e271e143b140e470e0a4f0a065508065706045b04021f221f02021536150202113e1102020f420f021142110f460f0f460f0f460f0f460f0f460f0f460f0f460f0f460f0f460f0f460f0f460f11420f0211420f0202113e11020215361502021f221d04045b040657060853080a4f0a0e470e143b1420251e"},1:{t:49,l:7,w:20,h:49,m:"y12133e12133e1013400e13420c13440a13460a134608134806134a04134c02134e021150135063636363636363"},2:{t:50,l:1,w:32,h:50,m:"x1417160c2510082d0c04330a023708023906023b040217101702020f1c1302020924110202052a113011320f320f320f320f320f300f022e11022e0f042a130428130624150822150a1e170c1a171018171214171612151a0e171c0c15200a152208132608112806112a04112c040f2e020f30020f30020d32020d320f320f323f023f023f023f023f023f023f02"},3:{t:49,l:1,w:33,h:49,m:"x3f043f043f043f043f043f043f042a130628130826130a24130c22130e2013101e13121c13141a131618131816131a14131c12131e121d1412230e12270a122908122b062619042c13042e1302301102320f02340f340f340f340f340f340f3211320f023011022e1302072415040f161b043d063b08390a370c33100627160e191c"},4:{t:49,l:1,w:33,h:49,m:"y3c1314381714341b14301f142c2314282714242b14201f020f141c1f060f14181f0a0f14141f0e0f14101f120f140c1f160f14081f1a0f14041f1e0f141f220f141b260f14172a0f14132e0f140f320f140b2237072637032a372c372c372c372c37400f14400f14400f14400f14400f14400f14"},5:{t:49,l:3,w:29,h:49,m:"x043502023702023702023702023702023702023702020f2a020f2a020f2a020f2a020f2a020d2c0f2c0f2c0f2c1f1c27142b102f0c310a330835061e19042413042613022811022a0f022a112c0f2c0f2c0f2c0f2c0f2c0f2a112a0f022811022613022413042015061c1906141f08310a2d0e2b102714211a1922"},6:{t:49,l:0,w:35,h:49,m:"y3813183021122c290e28310a2437082239081e3f061c210c17041a1f141304162118130214211c11021221200f021013020f20110e13040f20110c13060d240f0a13060f240f0813080f240f06130a0f240f04130c0f240f02130e0f240f13100f240f11121120110f1411200f020d18111e0f020b1a111c1102091c131813020720131413040522170c1704032635062a31082c2d0a2e290c30250e341d123a1118"},7:{t:49,l:0,w:34,h:49,m:"y0f540f540f540f540f540f540f540f381d0f32230f2c290f282d0f24310f22330f1e370f1c1d1c0f181b220f1619260f14172a0f12152e0f1015300f0e13340f0c13360f0a13380f06153a0f04153c234021421f441d461b48194a174c13500d56"},8:{t:49,l:0,w:35,h:49,m:"x1817181223120e2b0e0a330a083708063b06063b06041712170404131a130404111e1104040f220f04040f220f04040f220f04060f1e0f06060f1c1106081116110808131015080a1706170a0c2f0c102710122312161b161221141027100c2f0c0a1902190a08170c1508061512150604131a130402131e11040211221102020f260f020f28110f2a0f0f2a0f0f2a0f0f2a0f1126111126110211221302151a15020219121902043f04043f04063b0608350a0c2f0c102710161918"},9:{t:49,l:0,w:35,h:49,m:"y18113a121d340e25300c292e0a2d2c08312a0635260304170c172205041314132007021318131c0902111c111a0b020f200f180d112011140f11201112110f240f10130f240f0e13020f240f0c13040f240f0a13060f240f0813080f240f06130a0f240d06130c11200f04130e11200f021310020f20211202111c211402131821160413141f1a04170c211c063f1e0839220a35240c2f280e292c122130181338"},A:{t:49,l:0,w:35,h:49,m:"y5c07540f4c17441f3c27342f2c37243f1c3f08143f100c3f1804431c37020f1c2f0a0f1c27120f1c1f1a0f1c17220f1c0f2a0f1c17220f1c1f1a0f1c27120f1c2f0a0f1c37020f1c04431c0c3f18143f101c3f08243f2c37342f3c27441f4c17540f5c07"},B:{t:49,l:0,w:35,h:49,m:"y636363636363630f1a0d200f0f1a0d200f0f1a0d200f0f1a0d200f0f1a0d200f0f1a0d200f0f1a0d200f0f1a0d200f0f1a0d200f0f1a0d200f0f1a0d200f0f1a0d200f0f1a0d200f0f1a0d200f11180d200f020f16111c11021114111c110213101518110202150a19181102043912130206390c15040627042f040a23042d060c1f08290810190c250a140f141f0e381b103e0f16"},C:{t:49,l:2,w:30,h:49,m:"y241b241a2f1a1639141043100e470e0a4f0a085308061f1a1f0604192a1904041532150402133a130202113e1102020f420f021142110f460f0f460f0f460f0f460f0f460f11421111421102113e11020215361502041336130404133613040611361106080f360f080a0d360d0a0e09360b0c4c0512"},D:{t:49,l:2,w:30,h:49,m:"y636363636363630f460f0f460f0f460f020d460f020d460f020f440d02020f420f02040f400f0204113c0f04060f3c0f04061138110408133211060a132e11080a172615080c191e170a0e1d121b0c10450e124110163b121835161c2d1a22231e2a1524"},E:{t:49,l:2,w:30,h:49,m:"x3b023b023b023b023b023b023b020f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e35083508350835083508350835080f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e3d3d3d3d3d3d3d"},F:{t:49,l:5,w:25,h:49,m:"y636363636363630f1a0f2c0f1a0f2c0f1a0f2c0f1a0f2c0f1a0f2c0f1a0f2c0f1a0f2c0f1a0f2c0f1a0f2c0f1a0f2c0f1a0f2c0f1a0f2c0f1a0f2c0f1a0f2c0f540f540f540f54"},G:{t:49,l:1,w:32,h:49,m:"y221f2218311a143b141043100e470e0c4d0a0a5108081d1a1d0806172819060415321504041336130402133a130202113e1102020f420f021142110f200f180f0f200f180f0f200f180f0f200f180f0f200f180f0f200f180f0f200f180f0f200f180f111e0f180f020f1e0f180f02111c3302040f1c3302040f1c3302060d1c3302080b1c31040a091c31040e051c3104"},H:{t:49,l:2,w:31,h:49,m:"y63636363636363280f2c280f2c280f2c280f2c280f2c280f2c280f2c280f2c280f2c280f2c280f2c280f2c280f2c280f2c280f2c280f2c280f2c63636363636363"},I:{t:49,l:5,w:25,h:49,m:"y540f540f0f460f0f460f0f460f0f460f0f460f0f460f0f460f636363636363630f460f0f460f0f460f0f460f0f460f0f460f0f460f540f540f"},J:{t:49,l:5,w:25,h:49,m:"y42111042150c421908421b06421d04421d04421f0250110252115211540f540f540f540f540f5211521150110261025f045f045d065b08570c5310"},K:{t:49,l:-1,w:37,h:49,m:"y63636363636363261528241926221d242021221e25201c291e1a1504151c181508151a16150c15181415101516121514151410151815120e151c15100c1520150e0a1524150c081528150a06152c15080415301506021534150415381502133c151140130f44110d480f0b4c0d09500b075409055807035c056003"},L:{t:49,l:1,w:32,h:49,m:"y63636363636363540f540f540f540f540f540f540f540f540f540f540f540f540f540f540f540f540f540f540f540f540f540f540f540f540f"},M:{t:49,l:1,w:33,h:49,m:"y6363636363636313501b4823402b38042d320a2f2a122f22182b20202320261d20202320182b201231200a3128042f302b3823401b48135063636363636363"},N:{t:49,l:1,w:32,h:49,m:"y636363636363631b481f44022140081f3c0c213610213214212e1a1f2a1e212422212026211c2a211830211234210e38210a3c21064221461d63636363636363"},O:{t:49,l:0,w:34,h:49,m:"y241b241c2b1c163716123f1210450e0c4b0c0a4f0a081d1a1d0806172a1706041532150404113a110402113e1102020f420f021142110f460f0f460f0f460f0f460f0f460f0f460f114211020f420f0202113e110204113a110404153215040619281706081d1a1d080a4f0a0c4b0c10450e123f121637161c2b1c241b24"},P:{t:49,l:1,w:33,h:49,m:"y636363636363630f1e0f280f1e0f280f1e0f280f1e0f280f1e0f280f1e0f280f1e0f280f1e0f280f1e0f280f1e0f280f1e0f280f1e0f280f1e0f280f1e0f28111a1128111a0f2a021116112a021312132a04130e132c04332c062f2e082b300a27320c2334101b3814133c"},Q:{t:49,l:-1,w:37,h:49,m:"y201d26182d1e1239180e41140c45120a4910084d0e061d181d0c041728170a041330130a0211361308020f22031611081122051611060f2409140f060f240b120f060f240d100f060f24110c0f060f24130a0f060f2415080f06112219040f06020f262508021324230804132421080417221d0a061d1c190c0853080a53060c5304105312390415182f0a13201f1411560d580b5a095c076003"},R:{t:49,l:1,w:32,h:49,m:"y636363636363630f1e0f280f1e0f280f1e0f280f1e0f280f1e0f280f1e0f280f1e11260f1e13240f1e17200f1e1b1c0f1e1f18111a2514111a27120211160f041b0e02131211061d0a04150c130a1d060431101d02062f121d082b18190a271e150c232411101b2a0f1411340b5c075e05"},S:{t:49,l:2,w:31,h:49,m:"x181314121d1010230c0c290a0a2d0808310608330406150c15040611141302041118110204111a0f02040f1c0f02040f2c040f2c040f2c04112a060f2a0611280615240817200a191c0c1b18101b14121d10161b0e1a1b0a1e19082217062615042a11042c11022e0f022e11300f300f0f220f11200f11200f111e11131a1102021316130202170e1702043704063306082f080a2b0a0c270c101f10161316"},T:{t:49,l:1,w:33,h:49,m:"y0f540f540f540f540f540f540f540f540f540f540f540f540f54636363636363630f540f540f540f540f540f540f540f540f540f540f540f540f54"},U:{t:49,l:1,w:33,h:49,m:"y4f145310570c590a5b085d065f044a15044e1302501102520f0252115211540f540f540f540f540f540f540f52115211520f025011024e13024a15045f045d065b08590a570c53104f14"},V:{t:49,l:0,w:36,h:49,m:"y095a1152194a1f44273c2f34372c0637260e371e1637161e370e2635082c37342f3c27441f4c1752114e15461d3e25362d2e3528350620350e18351610351e083724372c2f34273c2142194a11520b580360"},W:{t:49,l:0,w:35,h:49,m:"y1f44352e451e51125b08636322413a29481b441f3c27362d2e330228310a262b1226231a261b2226211c26291426310c2e3104342f3c2742214a193c27224163635f04550e491a3b28253e"},X:{t:49,l:0,w:35,h:49,m:"y035e030756070b4e0b0f460f114013153a151932191d2a1d021d241d04041f1c1f06081f141f0a0c1f0e1d0e101f061d1214391618311a1a2b1e1e2322221b262021221c291e18311a1439161219081f120e1b0e1f0e0a1b161d0c061b1e1d080419241f041b2a1f17321b133a170f42130b4a0f09500b0558075e05"},Y:{t:49,l:0,w:34,h:49,m:"y055e095a0d561152154e194a1d46021f42061f3e0a1d3c0e1d38121d34161d301a491e452241263d22411e451a49161d30121d340e1d380a1f3a061f3e021f421d46194a154e11520d560b58075c0360"},Z:{t:49,l:3,w:29,h:49,m:"y560d0f44110f40150f3c190f381d0f34210f30250f2c290f282d0f261d040f0f221d080f0f1e1d0c0f0f1a1d100f0f161d140f0f121d180f0f0e1f1a0f0f0a1f1e0f0f061f220f0f021f260f2b2a0f272e0f23320f1f360f1b3a0f173e0f13420f0f460f540f540f"},a:{t:37,l:2,w:30,h:37,m:"x1417120e230c0a2b08082f0606330406130e15020411161102040f1a0f0202111c0f020f1e0f2e0f2e0f2e0f2e0f14290e2f0a330835063704390215180f02111c0f111e0f111e0f0f200f0f1e110f1e110f1e110f1c131118150211121902130c1d043906370825020f0c1d060f10130c0f"},b:{t:53,l:1,w:33,h:53,m:"y6b6b6b6b6b6b6b281512170626111e1106240f260f04240d2a0f02220f2a0f02220d2e0d02200f2e0f200d320d200d320d200d320d200d320d200d320d200d320d200f2e0f200f2e0d02220f2a0f02221126110222151e13042419121904263f06283b082a370a2c330c302b103423143c151a"},c:{t:37,l:3,w:29,h:37,m:"y1a171a142314102b100c330c0a3908083d06063f06041716170404112213020211261102020f2a0f020f2e0f0f2e0f0d320d0d320d0d320d0d320d0d320d0f2e0f0f2e0f020f2a0f02021322130202132013040411201304060f201106060f200f080a0b200d0a0c09200b0c1203200512"},d:{t:53,l:1,w:33,h:53,m:"y3a171a342512302d0e2c330c2a370a283b08263f06241912190422151e13042211241302220f2a0f02200f2c0f02200f2e0f200d300f200d320d200d320d200d320d200d320d200d320d200f2e0d02220d2e0d02220f2a0f02240d2a0d04240f24110426111e110628151215086b6b6b6b6b6b6b"},e:{t:37,l:1,w:32,h:37,m:"x181316121f100e270c0c2b0a0a2f0808330606150c15060611141304040f1a1104040d1e1102020f200f02020d220f02020d2211020d22114141414141410f320f320f320f32020f30020f30020f30040f2e04112c061314110406170e13040835040a31060c2d080e290a12210e181514"},f:{t:53,l:3,w:28,h:53,m:"y200d3e200d3e200d3e200d3e200d3e200d3e200d3e200d3e200d3e200d3e200d3e12590c5f0863066504670467026902110e0d3e020f100d3e0f120d3e0f120d3e0d140d3e0d140d3e0d140d3e0d140d3e0d140d3e0d140d3e"},g:{t:37,l:1,w:32,h:49,m:"y18153612232e0e2b18090a0a33140b080837120d06063b100f04043f0e1102041714150e1102021320110c11020211240f100d02020f280d120d0f2c0d120b0f2c0d120b0d300b120b0d300b120b0d300b120b0d300b120b0d300b120b0d300b120b020d2c0b140b020d2c0b120d020f280b140d040f240d140b0204111e0f140d02061512131211025f045f045d065b08590a570c5310"},h:{t:53,l:3,w:28,h:53,m:"y6b6b6b6b6b6b6b261332241136240f38220f3a220f3a200f3c200f3c200f3c200f3c200f3c200f3c20113a201338221336224922492447264528432c3f303b"},i:{t:53,l:8,w:19,h:53,m:"y200f3c200f3c200f3c200f3c200f3c200f3c200f3c200f3c200f3c130e0f3c130e0f3c130e0f3c130e4b130e4b130e4b130e4b130e4b130e4b130e4b"},j:{t:53,l:7,w:20,h:66,m:"y780d780d780d780d200f4a0d200f4a0d200f4a0d200f4a0d200f4a0d200f480f200f460f02130e0f441102130e0f421302130e6302130e6104130e5f06130e5f06130e5d08130e590c130e5510"},k:{t:53,l:1,w:33,h:53,m:"y6b6b6b6b6b6b6b3a112038151e36191c341d1a3221183025162e29142c150415122a1508151028150c150e261510150c241514150a221518150820151c150620132015042011241502200f2815200d2c13200b30112009340f2007380d20053c0b20034009640766056803"},l:{t:53,l:7,w:20,h:53,m:"y59125f0c630865066704690269025613025a115c0f5c0f5e0d5e0d5e0d5e0d5e0d5e0d5e0d5e0d5e0d"},m:{t:37,l:0,w:36,h:37,m:"y4b4b4b4b4b4b4b040d3a04093e0209400209400b400b400b400f3c4b4b4b0249024904470447020f3a020b3e0b400b400b400b400d3e4b4b02490249044706450a41"},n:{t:37,l:2,w:31,h:37,m:"y4b4b4b4b4b4b4b081330061134040f38040d3a020f3a020d3c020d3c0d3e0d3e0d3e0d3e0d3e0d3e0f3c0f3c020f3a02133602490447064508430a410c3f1239"},o:{t:37,l:0,w:35,h:37,m:"y1a171a142314102b100c310e0a370a083b08063d08061712170604131e1304040f260f04020f2a0f02020d2e0d02020b320b020d320d0b360b0b360b0b360b0b360b0b360b0b360b0b360b0d320d020b320b02020d2e0d02020f2a0f02040f260f0404131e13040617141506063d0808390a0a350c0e2f0e102912161f161c131c"},p:{t:37,l:1,w:33,h:49,m:"y63636363636363061712171e04131e131c040f260f1c020f2a0f1a020d2e0d1a020d2e0d1a0d320d180d320d180d320d180d320d180d320d180d320d180d320d180f2e0f18020d2e0d1a020f2a0f1a021126111a04131e131c041914171c063f1e083b200a37220c3324102b2814232c1c1334"},q:{t:37,l:1,w:33,h:49,m:"y1c153214232c102b280c33240a3722083b20063f1e041914171c04131e131c021126111a020f2a0f1a020d2e0d1a0f2e0f180d320d180d320d180d320d180d320d180d320d180d320d180d320d18020d2e0d1a020d2e0d1a040d2a0f1a040f260f1c06111e111e061712171e63636363636363"},r:{t:37,l:4,w:27,h:37,m:"y4b4b4b4b4b4b4b081132060d38040d3a020d3c020b3e020b3e0b400b400b400b400d3e0d3e113a0217320217320415320415320613320a0f320e0b32"},s:{t:37,l:2,w:31,h:37,m:"x16171210230c0c290a0a2d0808310606330606130e15040411161104040f1a0f04040f1a0f04040f2c040f2c04112a04112a061326061b1e0823140a270e0e270a122706182304201d022a13022e112e11300f300f300f11200f020f1e1102111a11020215101702043704063306082d0a0c250e121914"},t:{t:47,l:3,w:28,h:47,m:"y140d3e140d3e140d3e140d3e140d3e140d3e140d3e140d3e024d1002530a02550859065b045d025d02140d2c1102140d300f140d300f140d320d140d320d140d320d140d320d140d320d140d320d140d300f140d300d02140d300d02140d2e0f02"},u:{t:37,l:2,w:31,h:37,m:"y3b103f0c430845064704470449023811023a113c0f3c0f3e0d3e0d3e0d3e0d3e0d3e0d3c0d023c0d023a0f023a0d04380f043411063013084b4b4b4b4b4b4b"},v:{t:37,l:0,w:36,h:37,m:"y07440d3e133819321d2e23282922042b1c0a2b16102b10162b0a1c2906222928232e1d34173a11400b3a113615301b2a2124271e270618270c1427100e271608271c02272223281f2c193213380d3e07440348"},w:{t:37,l:0,w:35,h:37,m:"y074417342724371447044b4b06451c2f301b34172e1d28232227021e25081e1d101e17161e0f1e1e15181e1d101e230a20270426252e1d3417361522290e3d4b4b4b3d0e2b2019320942"},x:{t:37,l:0,w:34,h:37,m:"y054205073e070b360b0d320d0f2c11132613152215191a17021b1617040419101708061b0a170a0a1904170e0c2d12102714141f18161b1a1a151c181b181421161227120e1702170e0a1906170c08170c1908041912170619181902171c191324151128130d300f0b340d073a0b05400746054803"},y:{t:37,l:-1,w:37,h:49,m:"y055e095a0b4c0d0f480d13440d17400d1b3c0d1d380f021f301102061f2815020a1f2017040e1f181b04121d141b06161d0c1b0a1a1d041d0c1e3510222d142625182a1d1c281b20241b24201d261c1d2a181d2e161b32121b360e1b3a0a1b3e061b42021b461b48174c13500f540b58075c0360"},z:{t:37,l:3,w:29,h:37,m:"x02350402350402350402350402350402350426110424110622130622110820110a1e110c1c110e1a11101a111018111216111414111612111810111a10111a0e111c0c111e0a1120081122081122061124041126021128112a0f2c3b3b3b3b3b3b"},"~":{t:53,l:-1,w:38,h:11,m:"x0e112205080a1b1a09060821140d0406270e1102042f041702490217042f0402110e2706040d14210806091a1b0a080520130e"},"!":{t:53,l:12,w:10,h:53,m:"y1b3e134316134316134316134316134316134316134316134316131b3e13"},"@":{t:54,l:1,w:33,h:54,m:"y120d221b120e111a290c0a1516310808171437040619123904041b123b020413181516130202111c0f2011020f1e0d240f020d200d260d0f200d260d0d220d260d0d240d240d0d240f200d020d26131413020d223b040d2239060d2239060d223b040f203d02020d203d02020f4e0f020f500d04114c0d04134a0d0617420f081f34130a61020c5f021059041451081a490a263512"},"#":{t:53,l:1,w:33,h:53,m:"y48051a0526031a0b120d20091a0b08171e0b1a291e0b1a291e0b12311e0b083b1e430a1c3d12143b1c0a431e3d060b1e33100b1e2b180b1e291a0b1e150a0b1a0b1e0d120b1a0b140b031c0b1a0b0a151e0b1a0b021d1e0b1a291e0b12311e0b083b1e47061e3d10143f180a431e023d040b1e350e0b1e2b180b1e291a0b1e19060b1a0b1e0f100b1a032607180548"},$:{t:53,l:0,w:36,h:53,m:"y180f2609161417220b14101d200f100e211e110e0e231c110e0c251c130c0a291a130c0a1108131a130a0a0f0e0f1e0f0a080f100f1e1108080f120f1e0f08080d140f1e0f08080d160f1c0f08080d160f1c0f08060f160f1c0f086b6b6b6b6b6b080d1a11180d08080d1c0f180d08080d1c0f180d08080f1a11140f080a0d1c0f140f080a0f1a11100f0a0a1516110e0f0a0c13161308110c0c1318290c0e1118270e100f1a250e140b1c211016091e1d123e1716420f1a"},"%":{t:52,l:1,w:33,h:52,m:"y0811500617400d041b3a11021f36132132170d0a0d2c1b0b0e0b281d020b0e0b261b060b0e0b221b0a0b0c0d1e1b0e211c1d10021f1a1b14021d181b180419161b1c0813141b2010031a1b22281b26241b120d0c201b1217061e1b121b041a1b141f02161b181f02121b1a0f060f10191e0b0e0b0c1b200b0e0b081b240b0e0b041b280b0e0b02192c2319301f0215341d04113a1b040d401508520b0c"},"^":{t:54,l:0,w:34,h:28,m:"y2c07062a0b0426110222172017021c19041a1906161b08141b0a101b0e0e1b100a1d12081d14041f1621181f1a1d1c1f1a021f18041f16081d140a1d120e1b10101b0e14190c161b081a19061c19042017022217261102280d042c07062e0506"},"&":{t:54,l:0,w:35,h:54,m:"y481114421b10120f20210c0c1918270a0a21102b0808250c2f06062b063304062f02130c1504044312130202150a231811020211121f181102020f18191c11111c171a110f1e1b180f0f1e1d160f0f1c21140f0f1a27100f0f181104170e0f0f180f08190a0f0f160f0c19080f11120f1219040f02110e111419020d02021308131a230204291e21020427221d040623281904081f2c1902081d26230c151c31100f1e313c313c1f060d3c1b0c0b3c1516073c0d2005"},"*":{t:53,l:0,w:35,h:34,m:"y1e03241a0922140f221211221411201411160506160f140904160f120d0216110e11180f0a15180f08171a0f0417021a25061c2108390c370e3312311433123510390c1c21081a25061a0f04170218110617180f0a1516110c1316110e0f0214111409041411160506141120121320140f221a09221e0324"},_:{t:-5,l:-2,w:39,h:7,m:"x4f4f4f4f4f4f4f"},"+":{t:46,l:1,w:33,h:38,m:"y200d20200d20200d20200d20200d20200d20200d20200d20200d20200d20200d20200d20200d204d4d4d4d4d4d4d200d20200d20200d20200d20200d20200d20200d20200d20200d20200d20200d20200d20200d20"},"`":{t:49,l:6,w:23,h:19,m:"y091e0b1c0d1a0f181116131415121710190e1b0c1d0a1f0821062304042102081f0c1b10171413180f1c0b20072403"},"-":{t:23,l:1,w:33,h:9,m:"x434343434343434343"},"=":{t:38,l:1,w:32,h:22,m:"x41414141414141404040404040404041414141414141"},'"':{t:49,l:6,w:23,h:17,m:"y2323232323232323222222222222222323232323232323"},"'":{t:49,l:13,w:9,h:21,m:"y2b2b2b2b2b2b2b2b2b"},"(":{t:53,l:7,w:20,h:53,m:"y2a172a2227221e311c1a3918164114124712104d0e0e1f141f0c0a1b221b0a08192a1908061732170604153a150402153e15020213421302134613114a110f4e0f0d500f0d520d0b560b"},")":{t:53,l:7,w:20,h:53,m:"y0b560b0d520d0d500f0f4e0f114a11134613021342130202153e150204153a1504061732170608192a19080a1b221b0a0e1f141f0c104d0e1247121641141a39181e311c2227222a172a"},"{":{t:54,l:1,w:33,h:55,m:"y300f30300f30300f30300f30300f30300f30300f302e11302e132e2c172c242328104b140c550e082f022d0a0631022f08062f062f06042d0e2d040221242504021344150202114a1102020f4e0f02114e0f020f520f0f520f0f520f0f520f0f520f0f520f0f520f0f520f0f520f0f520f600f"},"}":{t:54,l:1,w:33,h:54,m:"y600d0f520d0f520d0f520d0f520d0f520d0f520d0f520d0f520d0f520d0f520d114e0d02020f4e0d0202114a0f020213441302041f242304042d0e2b04062f062d060631022d08082f022b0a0c550c1049142423262c172a2e132c2e112e300f2e300f2e300f2e300f2e300f2e300f2e300f2e"},"[":{t:54,l:4,w:26,h:54,m:"y6d6d6d6d6d6d6d0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f"},"]":{t:54,l:4,w:26,h:54,m:"y0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f6d6d6d6d6d6d6d"},"<":{t:51,l:0,w:35,h:49,m:"x420540073e093a0d380f341332152e192c1902281b04261908221b0a20190e1c1b101a1914161b1614191a101b1c0e19200a1b22081926041b2802192c17301532192e02192c0619280819260c19220e192012191c14191a161b161a19141c191220190e22190c2619082819062c19022e1702301502341102360f023a0b023c0902400502420302"},">":{t:51,l:0,w:35,h:49,m:"x05420740093e0d3a0f3813341532192e02192c041b280819260a1b220e1920101b1c14191a161b161a19141c1b1020190e221b0a261908281b042c19022e1930172e192a1b02281906241b0822190c1e1b0e1c1912181b14161918121b1a10191e0c1b200a1924061b2604192a1b2c1730153211360f380b3c093e05420344"},"|":{t:54,l:14,w:7,h:66,m:"y85858585858585"},":":{t:37,l:10,w:14,h:37,m:"x1d1d1d1d1d1d1d1d1d1d1d1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1d1d1d1d1d1d1d1d1d1d1d"},";":{t:37,l:4,w:26,h:51,m:"y640360075c0b580f541350174c1b481d02441f044021063c230838250a34270c34250e171e2310171e2112171e1f14171e1d16171e1b18171e191a171e171c171e151e171e1320171e1122171e0f24171e0d26"},".":{t:11,l:10,w:14,h:11,m:"x1d1d1d1d1d1d1d1d1d1d1d"},",":{t:11,l:4,w:26,h:25,m:"y30032c07280b240f20131c17181b141d02101f040c210608230804250a270c250e231021121f141d161b18191a171c151e132011220f240d26"},"\\":{t:54,l:3,w:28,h:55,m:"y07680b64115e155a1b541f50254a0425460827400e253c1425361825321e252c2225282825222c251e3225183625143c250e40250a4625044a25501f541b5a15600f640b6a05"},"?":{t:54,l:1,w:33,h:54,m:"y140f4a0e154a0a194a081b4a061d4a061d4a041f4a041f4a02214a02175402115a135a1148151148150f2c0d12150f281112150f261312150f241512150f221712150f20191215111c1b1215020f1a1d1215021116151c15021312151e1502170a1734043336043138062d3a08293c0a253e0c21400e1b44140f4a"},"/":{t:54,l:3,w:28,h:55,m:"y6a05640b600f5a155619501f4a254625044027083c250e3625143225182c251e2627222225281c272c1825321227360e253c082542022746234c1f501956155a0f600b64056a"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["10-08"]={h:56,w:40,g:{0:{t:56,l:0,w:39,h:56,m:"y242924184118104f120c590c0a5d0a066308066506046904042324230402193c1902021348130202114c110202114c13114e13115011115011115011115011115011115011115011115011115011115011115011114e13134c110202114c1102021348130202193c190204232423040469040665060861080a5d0a0e570c124d121a3f18242924"},1:{t:56,l:8,w:23,h:56,m:"y16154614154812174812154a10154c0e154e0c15500a15520a155208155406155604155802155a02155a155c7171717171717171"},2:{t:57,l:2,w:36,h:57,m:"x1819180e29120a310e06370c023d0a023f08024106024304021b10190402131c1702020d24150202072c15020332133613381138113811381138113611023611023413023213043015042c17062a170826190a24190c2019101c1b121a1916161b1814191c1019200e19220c17260a17280a132c08132e061330061132041134041134021136021136020f38020f381138113847024702470247024702470247024702"},3:{t:56,l:1,w:37,h:56,m:"x470447044704470447044704470447042e17062c17082a170a28170c26170e2417102217122017141e17161c17181a171a18171c16171e141720141d1a14251214290e142b0c142d0a142f082a1b063017043215043613023613023811023a113a113a113a113a113a1138133813381102361302341502033015040926190411181d0645064308410a3d0e3b10023514082b18121920"},4:{t:56,l:1,w:38,h:56,m:"y4415184019183c1d183821183425183029182c2d18283118242104111820210811181c210c11181821101118142114111810211811180c211c111808212011180421241118212811181d2c11181930111815341118113811180d263f092a3f052e3f323f323f323f323f323f481118481118481118481118481118481118481118481118"},5:{t:56,l:3,w:34,h:57,m:"x043d04043d04043d04043d04043d04023f04023f04023f04021132021132021132021132021132021132021132020f34020f34113423222d1831143510390c3b0a3d083f0603201d062819042c15043013023013023211023213341134113411341134113411341132133211023013022e13042c15042a1506261906201d0818230a390c370e33122f162b1a25201d280342"},6:{t:56,l:0,w:39,h:56,m:"y40151c382514322f102e350e2c390c283f0a26430822490620270c1b041c271417041a251a150418271c15021627201302141502112411021215041124130e17041128110c17061128110a150a11281108150c11281106150e1128110415101128110215121128111514112811131613241311181324130f1c112411020d1e132013020b20151c15020924151815040924171417040728190c1906052a3d06032e390832350a34310c362d0e3827123c211442151a"},7:{t:56,l:1,w:38,h:56,m:"y1160116011601160116011601160116011421f113a2711342d113031112c3511283911263b11223f1120231e111c1f26111a1d2a1118193011141b32111219361110173a110e173c110c173e110a174011081544110417462948274a254c234e21501d541b561958155c0f62"},8:{t:56,l:0,w:39,h:56,m:"x1c171c142714102f100c370c0a3b0a083f08064306064306041b12190604151e150404132213040411261104041126110404112611040411261104061122110606131e130608131a130808151417080a170c190a0c1b021b0c0e330e122b12142714181f18162316122b120e31100c370c0a1b061b0a08190e1908061716170604151c170404132213040213261302021128130202112a1102112e11112e11112e11112e11112e11112e11132a13152615021522150202171e1702021d121d02044704064306064306083f080c370c0e330e1229141a191c"},9:{t:56,l:0,w:39,h:56,m:"y1c1342161f3c1227380e2d360c31340a353208392e03063d2a0506190c19280704171417260704151815240902151c15200b021320131e0d021124111c0f1324131811132413161311281114151128111215021128111015041128110e15061128110c15081128110a150a11281106170c11281104170e13241104151202112411021514021320271602151e251804151a251a041714271c06190c27200649220843260a3f280c392c0e3330122b341623381c1540"},A:{t:56,l:0,w:40,h:56,m:"y680960115819521f4a27422f3a37343d2c3d08243d101c3d18163b200e4320064b20390811203110112029181120212011201928112011301120113011201928112021201120291811203110112039081120064b200e4320163b201c3d18243d102c3d08343d3a37422f4a27521f581960116809"},B:{t:56,l:0,w:39,h:56,m:"y7171717171717171111e0f2411111e0f2411111e0f2411111e0f2411111e0f2411111e0f2411111e0f2411111e0f2411111e0f2411111e0f2411111e0f2411111e0f2411111e0f2411111e0f2411111e0f2411111e0f2411131c0f241102111a132013021318132013021514171c13020217101b18150204170a2114170204450c1904062f023704082d0235060a290631080c250a2d0a0e210e290c121b12231018111a1b1446111a"},C:{t:56,l:3,w:34,h:56,m:"y2a1d2a2031201a3d1a164714124f100e550e0c590c0a5d0a08231c2308061d2c1d06041938190404154015040215441502021348130202114c1102134c13115011115011115011115011115011115011134c1302134813020213481302021740170204173c170404173c170406153c150608133c13080a113c110a0c0f3c0f0c100b3c0b10560714"},D:{t:56,l:3,w:34,h:56,m:"y7171717171717171115011115011115011020f5011020f501102114e0f0202114c110204114a110204114a110204134611040613421304061540110608153c13060a153813080a193017080c192c170a0e1d22190c1021141f0e124f10144b121845141a41161e391a22311e28252430172a"},E:{t:56,l:3,w:34,h:56,m:"x430243024302430243024302430243021134113411341134113411341134113411341134113411341134113411343d083d083d083d083d083d083d083d08113411341134113411341134113411341134113411341134113411341134113411344545454545454545"},F:{t:56,l:5,w:29,h:56,m:"y7171717171717171111e1132111e1132111e1132111e1132111e1132111e1132111e1132111e1132111e1132111e1132111e1132111e1132111e1132111e1132111e1132111e1132111e11321160116011601160"},G:{t:56,l:1,w:37,h:56,m:"y2821281e351e184118144914124d120e550e0c590c0a5d0a08231a2508081b2c1d06061934190604173c170404154015040413441502021348130202114c110202114c131322111a131124111c111124111c111124111c111124111c111124111c111124111c111124111c111124111c111322111c11021122111c11021320111c0f0202151e3b0204131e3b0204131e3b0206111e3b02080f1e39040a0d1e39040c0b1e390410071e3904"},H:{t:56,l:2,w:35,h:56,m:"y71717171717171712e11322e11322e11322e11322e11322e11322e11322e11322e11322e11322e11322e11322e11322e11322e11322e11322e11322e11322e11327171717171717171"},I:{t:56,l:6,w:28,h:56,m:"y6011115011115011115011115011115011115011115011115011115011717171717171717111501111501111501111501111501111501111501111501160116011"},J:{t:56,l:6,w:28,h:56,m:"y4c11144c170e4c1b0a4c1d084c1f064c21044c21044c23025a15025e11025e136011601160116011601160115e135e11025a15026f026d046d046b066908670a630e5d14"},K:{t:56,l:-1,w:42,h:56,m:"y71717171717171712c172e2a1b2c281f2a262328242726222b2420170217221e170617201c170a171e1a170e171c181712171a161716171814171a171612171e171410172217120e172617100c172a170e0a172e170c081732170a061736170804173a170602173e170417421702154617134a15114e130f52110d560f0b5a0d095e0b076209056607036a056e03"},L:{t:56,l:2,w:36,h:56,m:"y71717171717171716011601160116011601160116011601160116011601160116011601160116011601160116011601160116011601160116011601160116011"},M:{t:56,l:0,w:39,h:56,m:"y7171717171717171155c1d54254c2b46333e0435380c35301237281835241e2f242627242c21242627241e2f241835241237280a392e043736333e2b46254c1d54155c7171717171717171"},N:{t:56,l:1,w:37,h:56,m:"y71717171717171711d54215002254a0625460a25420e253e12253a1825341c253020252c2425282825242e251e32251a3625163a25123e250e4227084825044c2550217171717171717171"},O:{t:56,l:0,w:39,h:56,m:"y2c1b2a222f201c391c184316144b121051100e550e0c5b0a0a211c2308081b2c1d06061738170604154015040413441502021348130202114c110202114c13115011115011115011115011115011115011134e11134c1302114c11020213481302041344150204173c17040619361706081b2c1d060a231a23080c5b0a0e570c105110144b121843161c391c222d222a1d2a"},P:{t:56,l:1,w:37,h:56,m:"y71717171717171711122112e1122112e1122112e1122112e1122112e1122112e1122112e1122112e1122112e1122112e1122112e1122112e1122112e1122112e1122112e131e132e131e113002111c133002131a1330021516153004170e1732043b320637340833360a2f380c2b3a0e273c121f40181346"},Q:{t:56,l:-1,w:43,h:56,m:"y261f2c1c3322163f1c12451a104b160c51140a551208591006231a210e061b2a1b0c041734190a04153a150a0213401508021128031a13081328051a1108112a07181306112a0b161106112a0d141106112a0f121106112a130e1106112a150c1106112a170a11060211281b04130602112a1b02110802132c290804152a2708041928230a061b261f0c08211e1f0c0a5d0a0c5d080e5f04105f02145d183d06171e310e1526211813620f640d660b6a076c056e03"},R:{t:56,l:1,w:37,h:56,m:"y71717171717171711122112e1122112e1122112e1122112e1122112e1122112e1122112e1122132c1122172811221b2411221d221122211e131e271a131e2b1602111c311202131a1104210e02151613081f0c04170e150c210804391021040635162108331a1d0a2f1e1b0c2b24170e252c13121f301118133a0d68096c056e03"},S:{t:56,l:2,w:35,h:56,m:"x1c1318161f1212270e102b0c0c310a0a3508083906083b0406190e1704061516130406131a130204131e11020411201102041120110204113204113204113204133006113006132e06152c0817280a19240a1d200e1d1c101f18141f141621101a1f0e201d0a241b082819062a19042e15043015023213023411023413361136113611112611112611132213132015151e13020217161702021b0e1904043f04043d0606390808350a0c2f0c0e2b0e1223121a131a"},T:{t:56,l:1,w:38,h:56,m:"y1160116011601160116011601160116011601160116011601160116011607171717171717171116011601160116011601160116011601160116011601160116011601160"},U:{t:56,l:1,w:37,h:56,m:"y59185f12630e650c670a69086b066b065419045815045a15025c13025e11025e136011601160116011601160116011601160115e135e11025c13025a15025817025419046d046b066908670a650c630e5f125918"},V:{t:56,l:0,w:41,h:56,m:"y056c0d64135e1b56234e2b46333e3938023f300a3f28123f201a3f18223d12283f0a303f02383940314829502158195e135a17521f4a27422f3a37323d022c3b0a243d101c3d18143d200c3d28043f2e3b36333e2b46234e1d54155c0d64056c"},W:{t:56,l:0,w:39,h:56,m:"y234e3b364b265918630e6d0471712849422f521f4e23482940313a373239062c370e2c2f162c271e2c1f262c25202c2d182c351032370838394031462b4e23541d422f264b717171670a5d144f223f322948"},X:{t:56,l:0,w:39,h:56,m:"y0568050960090b5a0d0f540f134c131744171b3c1b1d361f212e23022326230406232021080a2318210c0c2312211010230a21141423022118183d1c1c3520202f2224272626212a242528202d241e33201a3b1c161f022318121f0a23140e1f1223100c1d1a230c081f202308041f2823041f30231b3621173e1d154419114c150d5411095c0d056409036a05"},Y:{t:56,l:0,w:39,h:56,m:"y056c09680d641160155c19581d541f52234e04234a0823460c234210233e14233a1823361c552051244d28492849244d20511c5518233616213a12213e0e21420a214606214a02234c21501d541958155c11600d640968056c036e"},Z:{t:56,l:3,w:33,h:56,m:"y620f114e13114a1711461b11421f113e23113a2711362b11322f112e33112a23041111262308111122230c11111e231011111a23141111162318111114211c111110212011110c21241111082128111104212c113130112d3411293811253c112140111d4411194811154c11115011601160116011"},a:{t:41,l:3,w:34,h:41,m:"x18191410290c0c2f0a0a3506083706063b04041910170204131a130204111e11020213201134113411341134113411182d12330c390a3b083d063f04171a1102151e110213201102112211112411112411112213112213112213112015131c17131a190213141d02170c210441063f082b02110a2704110e1f081114130e11"},b:{t:60,l:1,w:38,h:61,m:"y790279027902790279027902790279022e1914170a2c152013082c112811062a112c11042a0f300f042811301102280f340f02280f340f02260f380f260f380f260f380f260f380f260f380f260f380f260f3611261134112611340f02281130110228132c130228152813042a172017042a1d141b062c49062e450830410a323d0c3635103831123e251846171e"},c:{t:41,l:3,w:33,h:41,m:"x1a151414210e10270c0e2d080c31060a350408370408170c1702061514130204131a110204111c1304112e0211300211300211301132113211321132113211321132113211321132113202113002113002113002131e1104111c1304131a1102061512150206190c17020837040a33060c2f080e2b0a10270c141f101a1316"},d:{t:60,l:1,w:38,h:60,m:"y44171e3c2716382f1234370e323b0c303f0a2e43082c47062a1d121b062a171e1704281526130428132a130228112e1102261130110226113211260f3411260f360f260f360f260f360f260f360f260f360f260f360f280f320f02280f320f02280f30110228112e0f042a112a11042a132611062c151e15062e191219087979797979797979"},e:{t:41,l:2,w:36,h:41,m:"x1c131a1421141227100e2f0c0c330a0a3708083b060815101706061318150404131c13040411201302040f241102020f261102020f261102020f2811494949494949491138113811381138020f380211360211360411340413320415300615181304061b0e1704083d040a39060c35080e310a122b0c1623101c1716"},f:{t:60,l:4,w:31,h:60,m:"y260f44260f44260f44260f44260f44260f44260f44260f44260f44260f44260f44166310690c6d087106730673047502770215100f440211140f4413140f4411160f4411160f440f180f440f180f440f180f440f180f440f180f440f180f440f180f44"},g:{t:41,l:2,w:36,h:55,m:"y1a173e142536102d1e090c0c351a0d080a39180f06083d16110406411411040445121302041914191213020215201510130202112811140f02020f2c0f160f0f2e11140f0f300f160d0d320f160d0d340d160d0d340d160d0d340d160d0d340d160d0d340d160d0d340d160d020d300d180d020d300d160f020f2c0f160f040d2a0f180d0204112411160f0206112011161102081512171613026b046b0469066708650a630c610e5b14"},h:{t:60,l:4,w:32,h:60,m:"y79797979797979792c15382a133c2a113e28133e28114028114026114226114226114226114226114226114226134026134026153e28173a28512a4f2a4f2c4d2e4b304934453841"},i:{t:60,l:10,w:20,h:60,m:"y26114226114226114226114226114226114226114226114226114215121142151211421512114215121142151253151253151253151253151253151253151253"},j:{t:60,l:8,w:23,h:74,m:"y860f860f860f860f860f2611500f2611500f2611500f2611500f2611500f26114e1126114e111512114c11021512114a130215121146170215126b0415126b041512690615126906151267081512650a1512610e15125d12"},k:{t:60,l:2,w:36,h:60,m:"y79797979797979794411244215224019203e1d1e3c211c3a251a3829183615041516341508151432150c151230151015102e1514150e2c1518150c2a151c150a28152015082615241506261328150426112c1502260f3015260d3413260b381126093c0f2607400d2605440b26034809720774057603"},l:{t:60,l:8,w:23,h:60,m:"y63166b0e6f0a710873067504750477026017026413026613681168116a0f6a0f6a0f6a0f6a0f6a0f6a0f6a0f6a0f6a0f"},m:{t:41,l:0,w:40,h:41,m:"y5353535353535353060d40040b44020d44020b46020b460d460d4611425353535302510251044f044f021140020d44020d440d460d460d460f441142535302510251044f064d084b0c47"},n:{t:41,l:2,w:35,h:41,m:"y535353535353535308173406133a06113c04113e040f40020f42020f42020f420f440f440f440f440f440f440f441142114202114002153c0251044f064d064d084b0c470e45143f"},o:{t:41,l:0,w:39,h:41,m:"y1e171e182318122d141033100c390e0a3d0c08410a084308061b121b0604171e1704041326130402112e0f040211300f02020f320f02020d360d020f360f0d3a0d0d3a0d0d3a0d0d3a0d0d3a0d0d3a0d0d3a0d0f360f0f360d02020d340f02020f320f0202112e0f0404132613040415221306061b14190608430808410a0a3d0c0c390e103310142b14182318201320"},p:{t:41,l:1,w:38,h:55,m:"y6f6f6f6f6f6f6f6f081912192406151e1522041326132004112a112002112e111e020f320f1e020f320f1e0f34111c0f360f1c0f360f1c0f360f1c0f360f1c0f360f1c0f360f1c0f34111c1132111c020f320f1e02112e111e02132a131e041326132004171e1720061b1419220647220843240a3f260c3b2810332c142b3018233420153a"},q:{t:41,l:1,w:38,h:55,m:"y20153a182334142d2e10332c0c3b280a3f26084324064722061b1419220417201520041326132002132a131e02112e111e020f320f1e1132111c11340f1c0f360f1c0f360f1c0f360f1c0f360f1c0f360f1c0f360f1c020d34111c020f320f1e020f320f1e040f2e111e04112a1120061126132006151e152208171419246f6f6f6f6f6f6f6f"},r:{t:41,l:4,w:31,h:41,m:"y535353535353535308153606113c060f3e040f40020f42020d44020d440d460d460d460d460d460f44114213400219380219380417380417380615380813380c0f38100b38"},s:{t:41,l:2,w:35,h:41,m:"x1a191412270e0e2f0a0a35080839060839060617101704061318130404131c110404111e110404113204113204113204133004133006152c061d2408251a0a2b120c2f0c102d0a142d061c2704241f042e17023213023413361136113611112611021122130211221302131c15020219121902043f04063b060837080a310c0e2910161918"},t:{t:54,l:4,w:31,h:54,m:"y180f46180f46180f46180f46180f46180f46180f46180f46045514045b0e045f0a0263080265060267040269026b02180f321302180f3413180f3611180f380f180f380f180f380f180f380f180f380f180f380f180f380f180f3611180f360f02180f360f02180f341102180f341102"},u:{t:41,l:2,w:35,h:41,m:"y4112450e490a4b084d064f044f0451023e1302401342114211440f440f440f440f440f440f440d02420f02420f02401102400f043e11043c11063813083417085353535353535353"},v:{t:41,l:0,w:41,h:41,m:"y0350094a0f44153e1b381f34252e2b283122062f1e0c2f18122f12182f0c1e2f06222f02282b2e25341f3a194013460d42113c17361d32212c27262b02202b081a2d0c162b12102b180a2b1e042d222b28252e1f341b38153e0f44094a054e"},w:{t:41,l:0,w:39,h:41,m:"y0b481b382b283b184b085353530e452231361d3a19341f2e25262d202d0620270c201f1420191a20112220171c201d1620250e202b08262d2c27341f3a193c17282b163d02515353510241122f241f340f44"},x:{t:41,l:0,w:39,h:41,m:"y034e03054a050942090b3e0b0d3a0d113211132e131528171922191b1e19021d181906041d121908061d0c190c0a1d06190e0c1d021712102f1414271816231a1a1b1e1c191e1a1d1c182318142916122f120e190419100a1b081b0c081910190a041b141b061b1c190419201b172419132c151130130d36110b3c0d07420b0546094e055003"},y:{t:41,l:-1,w:43,h:55,m:"y036c056a09660d540f11500f134e0f174a0f1b460f1f4011213c13042134150208212c19020c212619040e21201b061221181d081621101f0a1a210a1f0c1e1f041f102239142631182a2b1a2e231e2e1f222a1f26261f2a221f2e1e1f321c1f34181f38141f3c101f400c1f44081f48061d4c021d501d521956155a115e0d620966056a036c"},z:{t:41,l:3,w:33,h:41,m:"x043b04043b04043b04043b04043b04043b04043b042c13042a130628150628130826130a24130c22130e2013101e13121c15121a15141a131618131816131a14131c12151c10151e0e15200c15220a15240a132608132806152804152a02152c152e133043434343434343"},"~":{t:60,l:0,w:41,h:13,m:"x10112605080c1b2007060a211a0b0408271411062d0e13064b02044d020217043304150e2b060211142508040d1a1f0a080720190c0a03280f10"},"!":{t:60,l:14,w:11,h:60,m:"y1b4a154b1a154b1a154b1a154b1a154b1a154b1a154b1a154b1a154b1a151b4a15"},"@":{t:62,l:0,w:39,h:62,m:"y220358160f261d1610151e2d0e0e1718370a0a1b163d06081d144104061f124304061f12450204151c191817020411201324130211221128110211220f2c0f020f240f2c0f11240f2c0f0f26112a0f0f281126110f28132211020f2a171815020f2645040f2643060f2641080f2643061124450411244702020f2447020211581302135a0f0413580f0415560f0617520f08194c1108273815020c6f020e6b041069041463061a590a204f0e2e3916"},"#":{t:60,l:1,w:37,h:60,m:"y52051c072c031e0b140f26091e0b0a19220d1e0b0221220d1e2d220d1833220d0e3d220d064104224b0c20431616451e0e49220443060b223f0e0b2235180b222f1e0b2221020d1e0b22170c0d1e0b20030f140d1e0b180b051e0d1e0b0e15220d1e0b041f220d1e2d220d1833220d103b220d0645224f0820471218451c0e49220445040b22410c0b2237160b222f1e0b222f1e0b221b080d1e092411120d1e032a091a0750"},$:{t:60,l:0,w:40,h:60,m:"y1c0f2c091a1817280d16141d260f14122124131010252213100e2920150e0e2b1e170c0c2d1e170c0c130a131e170a0a11101122130a0a11121122110a0a0f141122130808111611221108081116112211080811180f22110808111811201108080f1a1120110879797979797979080f1e131a110808111e111a110808111e111a11080a0f1e13180f0a0a0f201116110a0a111e1314110a0c111e1310110c0c1718170a130c0c171a2f0e0e151a2f0e10131c2b1012111e2712140f202314160d221f161a09241b184a111e"},"%":{t:59,l:2,w:36,h:59,m:"y0a135a061b480f041f441102233e1502233a1927341d0d0e0d321f0b120b2e1f040b120b2a1f080b120b261f0c0d0e0d241f0e27201f1202231e1f1602231a1f1a041f1a1d1e061b181f200a13181f24301f282e1d2c2a1f12130a261f121b06221f141f04201d1623021c1f182302181f1a27141f1e0d0e0d121d220b120b0e1d260b120b0a1f280b120b061f2c0d0e0d041d30271d3623021b382302173e1f0413441b060f4c130a"},"^":{t:61,l:0,w:39,h:31,m:"y3405063209042e0d042c110228172619221b02201b041c1d06181f08161d0c121f0e101f100c21120a2114062316042318251a231c211e231c251a0423180623160a21140c2112101f10121f0e161d0c181d0a1c1b081e1d04221b02241b28172c11022e0f02320904340506"},"&":{t:61,l:0,w:40,h:61,m:"y5211184c1d12140f26250e10191e290c0c23142f0a0a290e3308082d0a37060633063904063502170c1904044b14170204170a29181502021514211c13020213181d201302111e1b1e131322191c1311221f1a111120231811111e291411111c2d1211111c11041d0e11111a110a1b0c111316130c1b0a1102111413121b061102131013161b040f02021708151a2b02042f202702042d24250206292a1f0406272e1d040823321d020a1f32210e172e29120f2437443744374423060f44210c0b441b140944151e05440d2803"},"*":{t:60,l:0,w:40,h:39,m:"y2205281c0b28180f2814152616132616131c030818111a07061813140d041a111211021a111013021c110a191c11081b1c11061b021e110219061e290820230c410e3d1239163718371839163d12410e20230c1e29081e110219061c11061b021c11081b1c110a191a111013021a111211021813140d0418111a070616131c0308161326141526180f281c0b28220528"},_:{t:-6,l:-2,w:44,h:7,m:"x59595959595959"},"+":{t:52,l:1,w:37,h:43,m:"y240f24240f24240f24240f24240f24240f24240f24240f24240f24240f24240f24240f24240f24240f24240f245757575757575757240f24240f24240f24240f24240f24240f24240f24240f24240f24240f24240f24240f24240f24240f24"},"`":{t:56,l:6,w:28,h:22,m:"y032a0528072609240b220f1e111c131a1518171619141b121f0e210c230a25080225060623040823020c21101d141916171a131e0f220b26072805"},"-":{t:26,l:1,w:37,h:10,m:"x4b4b4b4b4b4b4b4b4b4b"},"=":{t:43,l:1,w:37,h:25,m:"x4b4b4b4b4b4b4b4b4a4a4a4a4a4a4a4a4a4b4b4b4b4b4b4b4b"},'"':{t:56,l:7,w:25,h:19,m:"y27272727272727272726262626262626272727272727272727"},"'":{t:56,l:15,w:9,h:24,m:"y313131313131313131"},"(":{t:60,l:8,w:23,h:61,m:"y3219302a2928243522203d1e1c451a184d16165114125712102316250e0e1d261f0c0a1d2e1d0a081b361b0806193e19060617421904041548170402154c1702155017135415115813115a110f5e0f0d600f0d620d"},")":{t:60,l:8,w:23,h:61,m:"y0d620d0d600f0f5e0f115a1111581313541515501702154c17020415481704041942190406193e1906081b361b080a1d2e1d0a0e1d261f0c102316250e125712165114184d161c451a203d1e2435222a2928321930"},"{":{t:61,l:1,w:37,h:61,m:"y3611343611343611343611343611343611343611343611343415323415323219302e1f2e16491c1059120c630c0a670a083504330806350833060433103104042b20290402174a17020213521302021156110202115611020211561102115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11"},"}":{t:61,l:1,w:37,h:61,m:"y115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11021156110202115611020211561102021352130202174a1702042b2029040433103104063508330608350433080a670a0c630c10591216491c2e1f2e321930341532341532361134361134361134361134361134361134361134361134"},"[":{t:61,l:5,w:29,h:61,m:"y7b7b7b7b7b7b7b7b115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11"},"]":{t:61,l:5,w:29,h:61,m:"y115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a117b7b7b7b7b7b7b7b"},"<":{t:58,l:0,w:39,h:56,m:"x4c034a054609440b400f3e113a153817341b321d2e1d042c1d06281d0a261d0c221d10201d121e1b161a1d18181d1a141d1e121d200e1d240c1d26081d2a061d2c021d301d3219361b341d32041d2e061d2c0a1d280c1d26101d22121d20161b1e181d1a1c1b181e1d14201d12241d0e261d0c2a1d082c1d06301d02321d361938173c133e11420d440b46094a054c03"},">":{t:58,l:0,w:39,h:56,m:"x034c054a09460b440f40113e153a17381b341d32041d2e061d2c0a1d280c1d26101d22121d20161b1e181d1a1a1d181e1d14201d12241d0e261d0c2a1d082c1d06301d02321d3619341b321d2e1d042c1d06281d0a261d0c221d10201d121e1b161a1d18181b1c141d1e121d200e1d240c1d26081d2a061d2c021d301d3219361738133c113e0d420b440946054a034c"},"|":{t:61,l:16,w:8,h:75,m:"y9797979797979797"},":":{t:42,l:12,w:15,h:42,m:"x1f1f1f1f1f1f1f1f1f1f1f1f1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1f1f1f1f1f1f1f1f1f1f1f1f1f"},";":{t:42,l:5,w:30,h:58,m:"y72036e076a0b660f62135e175a1b561f5221024e23044a250646270842290a3e2b0c3a2d0e19222b10192229121922271419222516192223181922211a19221f1c19221d1e19221b20192219221922172419221526192213281922112a19220f2c"},".":{t:13,l:12,w:15,h:13,m:"x1f1f1f1f1f1f1f1f1f1f1f1f1f"},",":{t:13,l:5,w:30,h:29,m:"y38033407300b2c0f28132417201b1c1f1821021423041025060c270808290a042b0c2d0e2b102912271425162318211a1f1c1d1e1b201922172415261328112a0f2c"},"\\":{t:61,l:4,w:32,h:62,m:"y05780b720f6e156819641f5e235a2954042950082b4a0e2946122b4018293c1c2b36222932262b2c2c2928302b2236291e3a2b1840291446290e4a290a50290454295a235e1f641968156e0f720b7805"},"?":{t:62,l:0,w:39,h:62,m:"y1613541217540e1b540c1d540a1f5408215406235406235404255404255404196002176402156602136813541713541711561711320f1617112e131617112c151617112a171617112819161711261b161713221d161713201f161702131c21161702131a192017021714192217021b0c1b3a043d3c043b3e0637400635420831440a2d460c29480e234c121b50161354"},"/":{t:61,l:4,w:32,h:62,m:"y780574096e0f6a1364195e1f5a2354295029044a2b0846290e402b123c2918362b1c302b222c2b26262b2c222b301c2b3618293c122b400c2b46082b4a022b502954235a1f5e196415680f6e0b720578"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["10-09"]={h:63,w:45,g:{0:{t:63,l:0,w:44,h:63,m:"y282d2a1c471c145516105f100c670c0a6b0a086f08067306042b222b04041b401d0402174c190202155215020213561302021356130202135615135a13135a13135a13135a13135a13135a13135a13135a13135a13135a13135a13135a13135a13135a131358130202135613020213561302021552150202194a1704041d401b040429262706067306086f080a6b0a0c670c105f101655141e451c2a2d28"},1:{t:63,l:9,w:26,h:63,m:"y18194e1817501617521419521219541217561017580e19580c195a0c175c0a175e081760061960061762041764021766196617687f7f7f7f7f7f7f7f"},2:{t:64,l:2,w:40,h:64,m:"x1a1b1c1229160c3312063d0e04410c02450a024708024906024b04021d121d040215201902020f281702020b2e150202053615020338153e133e133e133e133e133e133c13023c13023a15023815043617043417063217082e190a2c1b0a281b0e241d10221d121e1d161c1d18181d1c161b20121d22101b260e1b280c192c0a192e0a153208153406153606133804153804133a04113c02133c02113e02113e02113e133e133e4f024f024f024f024f024f024f024f024f02"},3:{t:63,l:1,w:43,h:63,m:"x51065106510651065106510651065106510636190834190a32190c30190e2e19102c19122a191428191626191824191a22191c20191e1e19201c19221a1924181926162120162918162d1416311016350c16370a163908302106361b063a19043e15044015024213024213024413441344134413441344134215421542154015023e17023c190205341b040b2a1d06151a23064f084d0a4b0c490e47104314043b180a2f1e141d26"},4:{t:63,l:1,w:42,h:63,m:"y4e171a4a1b1a461f1a42231a3e271a3a2b1a362f1a32331a2e371a2a2702131a262706131a22270a131a1e270e131a1a2712131a162716131a12271a131a0e271e131a0a2722131a062726131a02272a131a252e131a2132131a1d36131a193a131a153e131a1142131a0d2c470930470336473847384738473847384752131a52131a52131a52131a52131a52131a52131a52131a"},5:{t:63,l:3,w:38,h:64,m:"x04450404450404450404450404450404450404450404450402470402133802133802133802133802133802133802133802133802113a02113a02113a02113a022526311c37163b123d10410c430a450845082423062c1d0430190434170236150238130238153a133a133a133a133a133a133a133a1338153813023615023417023217043019042c1b06281d082223081a290a410c3d103b123716331a2f1e29241f2e0944"},6:{t:63,l:0,w:44,h:63,m:"y4817204027183a3114363910323f0e30430c2c490a2a4d08265306242b0e1d062229161b041e291e17041c292217021a2926150218170213261502141902132a1302121904132a15101906132a150e1908112e130c1908132e130a190a132e1308190c132e1306190e132e13041910132e13021912132e131914132e131716152a151518152a1302131c132a1302111e152615020f20172217020d24152215040b26171c190409281b161906072c1d0e1d06053043080332410a363f0a383b0c3a370e3e2f12402b144423184c1320"},7:{t:63,l:1,w:43,h:63,m:"y136c136c136c136c136c136c136c136c136c134a2313402d133a3313363713323b132e3f132c41132845132625221322232813201f2e131c1f32131a1d3613181b3a13161b3c1314194013121942130e1b44130c1948130a194a1308194c1306194e2f502d522b5429562758255a215e1f601d621b641768116e"},8:{t:63,l:0,w:44,h:63,m:"x20172218271a1233141039100c3f0e0a430c08470a084908064b08061b161b080417221706041526150604132a130604112e110604112e110604112e110604112e110606112a11080613261308081322130a08171a170a0a1912190c0c1b0a1b0e0e3b10123512142f161829181a231c18271a142f161233140e3b100c3f0e0a1f0a1b0c081d121b08061b18190806172017060417241704041528150402152c150202133013021530130213341313341313341313341313341313341315301515301502152c15020219261702021b201b020421121f04045104064d06064b0808470a0c410c0e3d0e123512162b181e1b20"},9:{t:63,l:0,w:45,h:63,m:"y20134c1a2144162940122f3e10353a0c3b380a3f360a3f36081b0e1b3203061916192e0506171a172c0704171e17280904152215260b02152615220d02152615200f02132a131e1102132a151a13132e131815132e131617132e131419132e13121902132e13101904132e130e1906132e130c1908132e130a190a132e1308190c132e1108190e152a1306191002132a130417140215282b160215262b180217222b1a041720291c04191a2b1e0619162922061d0e2b24085126084d2a0a492c0c43300e3d34123538162d3c1a2342221548"},A:{t:63,l:0,w:46,h:63,m:"y7a05740b6c13641b5e2156294e314639403f38473047082847102245181a45201249240a512404410413243d0c1324351413242d1c1324252413241d2c132415341324153413241f2a1324272213242f1a132439101324410813245b240457240c512214511a1c511224510a2c5102344b3c43443b4c33542b5c23641b6c13740b7c03"},B:{t:63,l:1,w:43,h:63,m:"y7f7f7f7f7f7f7f7f132211281313221128131322112813132211281313221128131322112813132211281313221128131322112813132211281313221128131322112813132211281313221128131322112813132211281313221128131520112813152011261502131e15241502151c15241502151a19201502021718192015020417121f1c1702041b0c25141904064d0c1d040637023b060833043b060a310439080c2d08350a0e290c310c1223102b10161b1627121c111e1d1850111e"},C:{t:64,l:3,w:38,h:65,m:"y321f322835262043201a4f1a165716125f121063100c6b0c0a6f0a082b1e2b080623322108061d3e1d06041b461b0404174e17040217521702021556150202135a1302155a15135e13135e13135e13135e13135e13135e13155a15155a150215561502021752170202194c1b02041b441d04041b441d040619441b0608174419080a1544170a0c1344150c0e1144130e120d440f121609440b16"},D:{t:63,l:4,w:37,h:63,m:"y7f7f7f7f7f7f7f7f135c11135a13135a13135a1302115a1302135811020213581102021356130204135413020415501304061350130406154c1504081548150608174417060a174017080c193a19080c1b36190a0e1d2e1b0c1021241d0e122516250e145b101655141a4f161c4b1820431c243d1e2833242e2928361930"},E:{t:63,l:3,w:38,h:63,m:"x4b024b024b024b024b024b024b024b024b02113c113c113c113c113c113c113c113c113c113c113c113c113c113c113c113c113c450845084508450845084508450845084508113c113c113c113c113c113c113c113c113c113c113c113c113c113c113c113c113c113c113c4d4d4d4d4d4d4d4d4d"},F:{t:63,l:6,w:32,h:63,m:"y7f7f7f7f7f7f7f7f1322133813221338132213381322133813221338132213381322133813221338132213381322133813221338132213381322133813221338132213381322133813221338132213381322133813221338136c136c136c136c"},G:{t:64,l:1,w:42,h:65,m:"y2e25302439261e471e1a4f1a165716145d121063100e670e0c6b0c0a291c2b0a0a212e2308081d3a1d08061b421b06061948190404174e170404155215040217541502021556150202135a130202135a151528132015132a132213132a132213132a132213132a132213132a132213132a132213132a132213132a132213132a1322130213281322110202132813201302021526132013020415241320130204172245020615224304061522430408132243040a112241060c0f224106100b2241061407223f08"},H:{t:63,l:2,w:40,h:63,m:"y7f7f7f7f7f7f7f7f3413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413387f7f7f7f7f7f7f7f"},I:{t:63,l:6,w:32,h:63,m:"y6c136c13135a13135a13135a13135a13135a13135a13135a13135a13135a137f7f7f7f7f7f7f7f135a13135a13135a13135a13135a13135a13135a13135a13135a13135a13135a136c136c13"},J:{t:63,l:6,w:32,h:64,m:"y561516561912561d0e56210a5623085625065625065627046619026a15026c13026c156e136e136e136e136e136e136e136e136c156c13026a15026619027d047b067b067908770a730e6f126b16"},K:{t:63,l:-1,w:47,h:63,m:"y7f7f7f7f7f7f7f7f321736301b342e1f322c23302a272e282b2c262f2a2419021928221906192620190a19241e190e19221c191219201a1916191e18191a191c16191e191a1419221918121926191610192a19140e192e19120c193219100a1936190e08193a190c06193e190a04194219080219461906194a1904174e1902155219135617115a150f5e130d62110b660f096a0d076e0b0572090376077a057c03"},L:{t:63,l:2,w:41,h:63,m:"y7f7f7f7f7f7f7f7f6c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c13"},M:{t:63,l:0,w:44,h:63,m:"y7f7f7f7f7f7f7f7f17681d62255a2b54314e3748043b400a3b3a103b34163d2c1c392a22332a282d2a2e272a2e272a282d2a22332a1c392a163d2c103d320a3d38043b403946314e2b54255a1d6217687f7f7f7f7f7f7f7f"},N:{t:63,l:2,w:41,h:63,m:"y7f7f7f7f7f7f7f7f215e255a295604295208294e0c294a10294614294218293e1c293a202b34242b30282b2c2c2b283229243629203a291c3e29184229144629104a290c4e2908522b0256295a257f7f7f7f7f7f7f7f"},O:{t:64,l:0,w:44,h:65,m:"y321f32283328223f221e491c1a5118165914125f1210650e0c6b0c0a291e290a0821322108081b3e1d06061946190604174e170404155215040215561502021358150202135a1302135c15135e13135e13135e13135e13135e13135e13155a1502135a130202155615020215561502041552150404194c17040619461906081d3c1d060a213021080a291e290a0c6b0c10650e125f121659141853181e491c223f22283328321f32"},P:{t:63,l:2,w:41,h:63,m:"y7f7f7f7f7f7f7f7f132613341326133413261334132613341326133413261334132613341326133413261334132613341326133413261334132613341326133413261334132613341326133415221534152213361520153602151e153602171a17360417161738041b0e1b38063f3a063f3a083b3c0a373e0c33400e2f42122746161f4a1c1350"},Q:{t:64,l:-1,w:48,h:64,m:"y2c23322237281c4322184b1e14531a1059180e5f140c63120a671008271c290e06212e210c061b3a1b0c041942190a041548170a02154c170802152c051e150802132e071e1308152e091c150613300d1a130613300f18130613301116130613301512130613301710130613301b0c1306152e1d0815060213301d061308021530330802153231080417302d0a041932290a061b30250c06212c210e08291c290c0a6d0a0c6d080e6f04126d02146d1849061b1c410c19223714152e2120137011740d760b78097c057e03"},R:{t:63,l:2,w:40,h:63,m:"y7f7f7f7f7f7f7f7f1326133413261334132613341326133413261334132613341326133413261334132615321326192e13261d2a13262126132625221522292015222d1c021322311802151e371402171a15042510021916150a230e041b0e190c250a0441102506063d16250208391c230a371e210c33241d0e2d2c1912273017161f38131c13420f740b76097a05"},S:{t:64,l:3,w:39,h:65,m:"y5e0d185e11141a11341510141d2e170e10252a190c0e29281b0a0c2d261d080a31241f060835221f060637241f04063928190404190c192a1702041710172c1502021714172a1502021518152c1502131c152a15151e132c131320152a131322132a131322152813132413281313241526131326132613132615221515261322151526151e1502021328151c15020215261718170202172617141704041924190c1b04041f1e3d06061d203b06081b223708081b24330a0a1924310c0c17282b0e10132a251212112e1f14180b34131a"},T:{t:63,l:1,w:42,h:63,m:"y136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c7f7f7f7f7f7f7f7f136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c"},U:{t:63,l:1,w:42,h:64,m:"y631e6b166f127110730e770a770a79085e1d066417066617046815046a15026a15026c13026c156e136e136e136e136e136e136e136e136e136e136c156c13026a15026a1502681702661704641904601b067b067908770a750c730e6f126b16631e"},V:{t:63,l:0,w:46,h:63,m:"y07780f7017681d62255a2d52354a3d42433c0447340c472c1447241c471c2445162a470e3247063a45423d4a35522d5827601f68176817601f5827522d4a35423d3a430232430a2a45102245181a45201445260c452e044536413e3b44334c2b54235c1d62156a0d72057a"},W:{t:63,l:0,w:44,h:63,m:"y255a3d424f305d226916750a7d027f05205b3c434c3358275c23542b4e3146393e41383f08303f10303718302f2030272830252a302d2230351a303d12363f0a3e3f02443b4c33522d5a255c234e313c43051e5d7f7f77086d12631c552a433c2d52"},X:{t:63,l:0,w:45,h:63,m:"y037a03057605096e090d660d115e111358151750191b4a1b1f421f233a2325342702272c270406272427080a271c270c0e2716251010271025141427082518184b1c1c4320203b24243328262f2a2a272e2a272e262f2a243526203d221c451e182304271a16210c251812211227140e211a27100a2320270c062328270804213027042138271d40231b461f174e1b1354190f5c150d6211096a0d0572097a05"},Y:{t:63,l:1,w:43,h:63,m:"y057a09760d72116e156a19661b641f60235c27580427540827500c274c1027481427441a25401e253c225d26592a552e512e512a552659225d1e253c1a25401625441225480e254c0a2550062554022558255a215e1d621966156a116e0d7209760778037c"},Z:{t:63,l:4,w:37,h:63,m:"y6e1113581513541913501d134e1f134a2313462713422b133e2f133a331336371332270213132e270613132c250a131328250e1313242512131320251613131c251a131318251e1313142720131310272413130c272813130a252c1313062530131302253413353813313c132d4013294413254813214c131d5013195413175613135a136c136c13"},a:{t:47,l:3,w:38,h:48,m:"x1c1b1614291010310c0e37080a3d060a3d06084104061d10170406171a150206152011020415221102041326113c113c113c113c113c113c111e2f1637103d0e3f0a4308450647041b1e1104152411021526110213281102112a11112c11112a13112a13112a1311281511281513241713221902131e1b0215181f02190e2504490647083302110a2d06110c29081110210c11181322"},b:{t:68,l:1,w:42,h:69,m:"y890289028902890289028902890289023619161d0a341522190832132a150830113213062e113613042e113811042c113a13022c0f3e11022c0f3e11022a1140112a0f42112a0f42112a0f42112a0f42112a0f42112a0f42112a0f42112a113e132a113e11022c113a13022c113a13022c133613042e133215042e172a17063019221b06301f161f08324f0a344b0c36470e3a41103c3d1242331646291c4e1924"},c:{t:47,l:4,w:37,h:48,m:"y2419241c291c183316143b121041100e470c0c4b0a0a4f08081d181f06061728170604153015040413341304021338130202113c1102020f400f02020f40110f440f0f440f0f440f0f440f0f440f0f440f0f440f114011113e1302113c1102021336150202153217020219281b040417281b0406152819060615281708081328150a0a1128130c0c0f28110e100b280f101407280916"},d:{t:68,l:1,w:42,h:69,m:"y4e1b2246291c4035163c3d123a411036470e344b0c324f0a321f141f0830192419062e172c15062e133215042c133613042c113a13022c113c11022a11400f022a1140112a0f42112a0f440f2a0f440f2a0f440f2a0f440f2a0f440f2a0f440f2a11400f022c0f400f022c0f400f022c113c0f042e113811042e11361106301132130632132c1308321724150a341b161b0c89028902890289028902890289028902"},e:{t:46,l:2,w:41,h:47,m:"x20151e182516142d1212311010370c0c3d0a0c3f080a1b0e190808171a150608151e130606152213040613261104041328130204132a110202132c110202132c110202132c13025153535353535353134013401340134002114002133e02133e02133e04133c04133c04153a061522150206171e150408191817040a1d0e1b040c41060e3f06103b0812370a162f0e1a271222171a"},f:{t:68,l:5,w:35,h:68,m:"y2c114c2c114c2c114c2c114c2c114c2c114c2c114c2c114c2c114c2c114c2c114c2c114c2c114c1a6f12770e7b0a7f0881068306830485021912114c021516114c021318114c131a114c131a114c131a114c111c114c111c114c111c114c111c114c111c114c111c114c111c114c111c114c"},g:{t:47,l:2,w:40,h:62,m:"y20174618273e143122090e10391e0d0a0c3f1c0f080a451811060849161304064b161304061d141d1415020417221912150204152815121502021330131213020211341114130211341116111138111411113811160f0f3c0f160f0f3c0f160f0f3c0f160f0f3c0f160f0f3c0f160f0f3c0f160f0f3c0f160f113811160f020f380f180f020f380f161102113411160f0204113011180f0206112c13180f0206132813181102081520151813020a19141918130402770402750602730802730802710a026d0e026b10026516"},h:{t:68,l:4,w:37,h:68,m:"y898989898989898932193e3215423015442e15462e13482c134a2c134a2c134a2c114c2a134c2a134c2a134c2a134c2a134c2a134c2a134c2a154a2a154a2c15482c17462c1b422e5b305930593257345538513c4d4247"},i:{t:68,l:10,w:24,h:68,m:"y2c134a2c134a2c134a2c134a2c134a2c134a2c134a2c134a2c134a2c134a2c134a1914134a1914134a1914134a1914134a1914134a19145d19145d19145d19145d19145d19145d19145d19145d"},j:{t:68,l:10,w:25,h:84,m:"y9811981198119811981198112c135a112c135a112c135a112c135a112c135a112c1358132c135813191413561302191413561302191413541502191413501704191479041914790419147706191475081914730a1914710c19146d1019146716"},k:{t:68,l:3,w:39,h:68,m:"y89898989898989894e13284c17264a1b24481f2246232044271e422b1c401702171a3e170617183c170a17163a170e17143817121712361716171034171a170e32171e170c301722170a2e172617082c172a17062c152e17042c133217022c1136172c0f3a152c0d3e132c0b42112c09460f2c074a0d2c054e0b2c035209820784058603"},l:{t:68,l:9,w:26,h:68,m:"y6f1a77127b0e7f0a81088306850485046c1b02701702741302741576137613781178117811781178117811781178117811781178117811"},m:{t:47,l:0,w:45,h:47,m:"y025d025d025d025d025d025d025d025d080f48060d4c040d4e040b50020d50020d500f500f50114e134c5f5f5f025d025d045b0659065904154604114a020f4e020f4e0f500f500f500f500f50114e134c5f025d025d045b065908570a55104f"},n:{t:47,l:2,w:40,h:47,m:"y025d025d025d025d025d025d025d025d0c173c0a154008134406134606114804114a040f4c02114c020f4e020f4e0f500f500f500f500f500f500f500f50114e114e02114c02134a0215480417440659065908570a550c530e51124d1847"},o:{t:47,l:0,w:44,h:48,m:"y2419241c291c1831181439141041100e450e0c490c0a4d0a081f141f08081920190806172a150604153015040413341304041138110402113c110202113c1102020f400f021140110f440f0f440f0f440f0f440f0f440f0f440f0f440f0f440f11401111400f02020f3e110202113c110202133811040411361304041530130606152c15060619241708081f161b0a0a4d0a0c490c0e4310103f121439141831181e251e261526"},p:{t:47,l:1,w:42,h:62,m:"y027b027b027b027b027b027b027b027b0a1d161b26081724172406152c152206113411220411381120040f3c0f2002113c111e020f400f1e020f400f1e0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c1140111c020f400f1e02113c111e02113c111e0411381120041334132006152c15220619241922081d181d240a4d260c49280e452a10412c1439301831341e253a261542"},q:{t:47,l:1,w:42,h:62,m:"y2617401e273818313414393010412c0e452a0c49280a4d26081f161d24061926172206152e13220413341320041138112002113c111e02113c111e020f400f1e1140111c0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c020f400f1e020f400f1e02113c111e040f3c0f200411381120061134112208132c152208172417240a1b181b26027b027b027b027b027b027b027b027b"},r:{t:47,l:5,w:34,h:47,m:"y025d025d025d025d025d025d025d025d0a173e08134408114606114804114a040f4c020f4e020f4e0f500f500f500f500f500f50114e114e02114c021548021d40041b40041b400619400817400a15400e1140140b40"},s:{t:47,l:3,w:38,h:48,m:"x1c19181429100e330c0c370a083d080641060641060419121b0404151a170402132015040213221304021124130402113a02113a02113a021338021338041336041930061f2806291e082f160a33100e330c12310a182f061e2906282104301b023615023a11023a133c113c113c11132a1113281313281315241302171e1702021b121b04024704044306063f08083b0a0c330e102914161b1c"},t:{t:60,l:5,w:35,h:61,m:"y1a11501a11501a11501a11501a11501a11501a11501a11501a1150045f18046710026d0c026f0a0271087506770477041a113817021a113c13021a113e131a1140111a1140111a11420f1a11420f1a11420f1a11420f1a11420f1a1140111a1140111a11400f021a113e11021a113e11021a113c11041a113c11041a113a1106"},u:{t:46,l:2,w:40,h:47,m:"y49164d12510e550a5708590659065b044617024a13024c11024e114e114e11500f500f500f500f500f500f500f4e0f024e0f024e0f024c11024c0f044a110448110646130644130840150a3a190c5d025d025d025d025d025d025d025d02"},v:{t:46,l:0,w:46,h:46,m:"y05580b52114c17461b42213c27362d30312c0235260637200c371a1237141835101e350a2435042a33302d36273c21421b48154e0f4c114617421b3c213627302d2c2f02262f0820310c1a3112162f1810311c0a31220431282f2e2b3225381f3e194415480f4e09540558"},w:{t:46,l:0,w:44,h:46,m:"y0f4e1f3e2f2e3f1e4f0e5d5d5d5d124b26373a2344193c213627302d2a3102243108242910242316241d1c241524241722241d1c242514242b0e2431082a33322b38253e1f46173a232637124b5d5d5d5d4f0e3d202d301d400b52"},x:{t:46,l:0,w:44,h:46,m:"y035803055207094c090b480b0f400f113c11133813173017192c191b261d1f201d02211c1b060221161d080621101b0c0a1f0a1d0e0c21041b12103914123318162d1a1a251e1c2120201b22201d201c251c1a291a163116123714101d041d100c1d0a1d0e081f0e1f0a061d161d08021f1a1f041d201f021b261d172c1b1532171336150f3c130d420f09480d074c0b03540758055a03"},y:{t:46,l:-1,w:48,h:62,m:"y037a07760b720f5e11115c111558111954111b52111f4e112348132740150204253c17020825341b020c252c1d041025241f061423201f08162518210a1a2510230c1e2508250e22230225122641162a391a2e311e3229223425243025282e232c2a23302623342223381e233c1c233e18234214234610234a0c234e0a2152062156022358215c1d6019641568116c0d700b720776037a"},z:{t:46,l:4,w:37,h:46,m:"x0443040443040443040443040443040443040443040443043215043015062e17062c17082a170a2a150c28150e2615102415122217122017141e17161c17181a171a1a151c18151e1615201417201217221017240e17260c17280a172a0a152c08152e06172e041730021732173415364b4b4b4b4b4b4b4b"},"~":{t:68,l:0,w:46,h:15,m:"x140f2e030a10172807080c21200b060a271c0d04082d16110206330e1704590259025904190c33060213142d08040f1a270a060b20210c0807261b0e0a032e1112"},"!":{t:68,l:16,w:13,h:68,m:"y1b58174b2817571c17571c17571c17571c17571c17571c17571c17571c17571c174b28171b5817"},"@":{t:69,l:1,w:43,h:70,m:"y1e092e1f1a16112431121215203b0c0e191c43080c1b1a47060a1d184b04081f164d040621161b181d02061b1c13261702041720112e150413241130130213260f34110213260f34110211280f34110211280f34111328113211112c112e13112c132a1302112e15241502112e1b181904112a4d06112a4b08112a490a112a4b08112a4d0613284f0402112851020211641502021366130413661104156411061562110617601108195a130a1d5213020c2b3a1b020e7d021277041473061a6b081e630c265710363d1a"},"#":{t:68,l:1,w:42,h:68,m:"y5c072007560d16112c09220d0e19280d220d0621280d2233280d2233280d183d280d0e47280d06490628530e264b181e4b20144f260a4b020d26024b0a0d2643140d263b1c0d2635220d2625040d220d261d0c0d220d2613160d220d1c0b0b1e0d220d1413280d220d0a1d280d2233280d2233280d1a3b280d1243280d084d285908284f12204f1a164f240e5526044d060d2647100d263f180d2635220d2635220d2623060d220d2619100d22072c11180b560722055c"},$:{t:68,l:0,w:45,h:68,m:"y200f320b1e1c192c0f1a181f2a111816232813161229261514122b241712102f2219100e33201b0e0e33201b0e0c170a1722170e0c15101326150c0c13141326130c0c13161126130c0a13181126150a0a13181326130a0a131a1126130a0a131a1324130a0a131a1324130a0a131c1124130a898989898989890a1320131e130a0a1320131e130a0a1322131c130a0a1322131c130a0c1122131c110c0c11241318130c0c13221318130c0e171e1314130e0e1b1a1510150e10191c170a170e10191c351012171e331014151e31121613202d1418112229161a0f242518200926211a501b1e561122"},"%":{t:66,l:1,w:43,h:66,m:"y100b6a0a1764061d540f04234c1302274617022744192b3e1d110a113a210d120d3623020d120d3421060d120d3023080d120d2c230c0d120d282310110a112621142b222316022720231a02251e231e04231c2122061d1c21260a171a2328100b1c232c34213030211a0b102c2316170a2823161d08262118230422211a27021e231c27021a231e2b182122110a111421260d120d1023280d120d0c232c0d120d0a21300d120d0621340d120d022336110a11213a2b1d40270219442504154a2304134e1d080f56170a6a0b10"},"^":{t:68,l:0,w:45,h:35,m:"y3a0508380906340f043213022e192c1b281d02261d04221f06201f081c210a18230c16230e1225101025120c27140a271606291804291a2b1c291e272025222720291e2b1c04291a0629180a27160c271410251212251016230e18230c1c210a201f08221f06261d04281d022c1b2e19321302340f043809063a0508"},"&":{t:68,l:0,w:45,h:68,m:"y5c131a561f1416112c2512121b222d0e0e251a310c0c2b14350a0a2f10390808350a3d06063b043f0606570c1d04045514190404190c2f181902021914271c170202151a232015020213201f221515241d201513261f1e151326231c131324271a1313222d16131320311413131e15041d1213131e13081f0e13151a130c1f0c13151815101f081302151415141f0613021710151a1d04110202190a171e2f020435222d02043526270406312a2504082b3023040829361f040a253a1f020c21322b1019243d1411283d4c3d4c3d4c2904114c250c0d4c1f140b4c191c094c0f2a058603"},"*":{t:67,l:1,w:43,h:44,m:"y2405301e0d2e1a112e16152e16172c181520030a18151e07081a151a09081a15160f061c131413041c151015041e130c1b021e130a1f2013061d042013041d06202f0a222b0c49104712431641183d1c4118431647124910222b0c202f0a2013041d062013061d041e130a1f1e130c1b021c151015041c131413041a15160f061a151a090818151e0708181520030a16172c16152e1a112e1e0d2e240530"},_:{t:-7,l:-2,w:49,h:8,m:"x6363636363636363"},"+":{t:59,l:1,w:42,h:49,m:"y2a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11286363636363636363632a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a1128"},"`":{t:63,l:6,w:32,h:25,m:"y0330052e072c0b280d260f2411221320151e171c1b181d161f1421122310250e290a2b08022b060629040829020c271023141f181b1a191e152211260d280b2c073003"},"-":{t:29,l:1,w:42,h:11,m:"x5555555555555555555555"},"=":{t:49,l:2,w:41,h:29,m:"x5353535353535353535252525252525252525252535353535353535353"},'"':{t:63,l:8,w:29,h:21,m:"y2b2b2b2b2b2b2b2b2b2b2a2a2a2a2a2a2a2a2a2b2b2b2b2b2b2b2b2b2b"},"'":{t:63,l:17,w:11,h:26,m:"y3535353535353535353535"},"(":{t:68,l:9,w:26,h:69,m:"y3a1938302d2e2a39282641242249201e511c1a571a185d1614631412291629120e2526250e0c2132210c0a1f3a1f0a081d421d08061d461d0606194e190604195219040219561902195a19175e17156215136415116813116a110f6e0f0f6e0f"},")":{t:68,l:9,w:26,h:69,m:"y0f6e0f0f6e0f116a11116813136415156215175e17195a190219561902041952190406194e1906061d461d06081d421d080a1f3a1f0a0c2132210c0e2526250e1229162b10146314185d161a571a1e511c2249202641242a3928302d2e3a1938"},"{":{t:69,l:1,w:42,h:70,m:"y3e133c3e133c3e133c3e133c3e133c3e133c3e133c3e133c3e133c3c173a3c173a3a1b38381f362c2f32165d1a1069140c730e0a3d02390c083d06390a083d063b08063b0c3b0604391439040423342f04021956190402175c17020215601502021364130202136413021564151368131368131368131368131368131368131368131368131368131368131368131368137a13"},"}":{t:69,l:1,w:42,h:70,m:"y7a131368131368131368131368131368131368131368131368131368131368131368131368131564130202136413020213641302021560150202175c170204175619040423342f040439143706063b0c3b06083d063b08083d06390a0a3d02390c0e710e106914165b1c2c2f32381f363a1b383c173a3c173a3e133c3e133c3e133c3e133c3e133c3e133c3e133c3e133c3e133c"},"[":{t:68,l:6,w:33,h:68,m:"y898989898989898989136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413"},"]":{t:68,l:6,w:33,h:68,m:"y136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413898989898989898989"},"<":{t:65,l:0,w:44,h:62,m:"x5405520750094c0d4a0f4613441540193e1b3a1f38213421043221062e210a2c210c282110262112241f162021181e1f1c1a211e181f22142124121f280e212a0c1f2e082130061f340221361f3a1d3c1d3c1f3a021f38061f34081f320c1f2e0e1f2c102128141f261621221a1f201c1f1e201f1a221f18242114281f122a210e2e1f0c302108341f06362102381f023c1b023e1902421502441302480f024a0d024c0b02500702520502"},">":{t:65,l:0,w:44,h:62,m:"x0554075209500d4c0f4a1346154419401b3e1f3a21380421340621320a212e0c212c102128122126161f241821201c1f1e1e211a221f18242114281f122a210e2e1f0c302108341f0636210238213c1d3c1d3a1f362102341f063021082e1f0c2a210e281f12242114221f181e211a1c211c1821201621221221261021280c212c0a212e062132042134021f381f3a1b3e19401544134611480d4c0b4e07520554"},"|":{t:69,l:18,w:9,h:84,m:"ya9a9a9a9a9a9a9a9a9"},":":{t:47,l:14,w:17,h:47,m:"x2323232323232323232323232323222222222222222222222222222222222222222323232323232323232323232323"},";":{t:47,l:6,w:33,h:65,m:"y7e057a09760d72116e156a19661d62215e255a2702562904522b064e2d084a2f0a46310c42330e1d2631101d262f121d262d141d262b161d2629181d26271a1d26251c1d26231e1d2621201d261f221d261d241d261b261d2619281d26172a1d26152c1d26132e1d261130"},".":{t:14,l:14,w:17,h:14,m:"x2323232323232323232323232323"},",":{t:14,l:6,w:33,h:32,m:"y3c053809340d30112c152819241d20211c25182702142904102b060c2d08082f0a04310c330e31102f122d142b162918271a251c231e21201f221d241b261928172a152c132e1130"},"\\":{t:68,l:4,w:37,h:69,m:"y038807840d7e117a17741b70216a25662b602f5c062f560a2f52102f4c142f481a2f421e2f3e242f38282f342e2f2e322f2a382f243c2f20422f1a462f164c2f10502f0c562f065c2d02602b66256a21701b74177a117e0d84078803"},"?":{t:69,l:0,w:44,h:69,m:"y1a1160141760101b600e1d600c1f600a2160082360082360062560062560042760042166021b6e021970021772021772175a1b175a1b155c1b153411181b153213181b152e17181b152c19181b152a1b181b15281d181b15281d181b17241f181b172221181b02171e23181b02191a25181b021b141d241b021f0c1f261b044542044344063f46063d4808394a08394a0a334e0c2f500e2b52102556141d5a1a1160"},"/":{t:68,l:4,w:37,h:69,m:"y880382097e0d781374176e1d6a216427602b5a2f02562f06502f0c4c2f10462f16422f1a3c2f20382f24322f2a2e2f2e282f342231381e2f3e183142142f480e314c0a2f520431562f5c2b602566216a1b701774117a0d7e07840388"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["10-10"]={h:70,w:50,g:{0:{t:71,l:1,w:48,h:72,m:"y303130224d221a5d1a1469141071100c790c0a7d0a088108068506062f28310404214623040419561b0402195c1902021760170202156415020215641502021564171568151568151568151568151568151568151568151568151568151568151568151568151568151568151566150202156415020215641502021760170202195c1704041b541b04042346210404312c2b060685060881080a7d0a0c790c1071101469141a5d1a244b22322f30"},1:{t:70,l:10,w:29,h:70,m:"y1c1b561a1b58181b5a18195c161b5c141b5e121b601219621019640e1b640c1b660c19680a196a081b6a061b6c06196e041970021b701b7219748d8d8d8d8d8d8d8d8d"},2:{t:71,l:3,w:44,h:71,m:"x1e1b20142d180e371408411004470e024b0c024d0a024f0802510602530402211221040217221d0202112a1b02020d3019020209361902053c1742174415441544154415441544154215024215024017024015043e17043c17063a1906361b08341b0a301d0c2e1d0e2a1f10262112241f162021181e1f1c1a1f20181f22161d26121f28101d2c0e1d2e0c1b320c19340a193608193808173a06173c06153e041540041540041342021542021344021344021344154415445702570257025702570257025702570257025702"},3:{t:70,l:1,w:48,h:71,m:"x5b065b065b065b065b065b065b065b065b065b06401b063c1d083a1d0a381d0c361d0e341d10321d12301d142e1b182c1b1a2a1b1c261d1e241d20221d22201d241e1b281c1b2a1a1d2a1a291e1a2f181a33141a37101a390e1a3b0c1a3d0a3623083c1f06401b064419044617044817024817024a15024a174c154c154c154c154c154c154c154a174a17481702481702461902441904053e1b040b341d06112a2106191a2708570a570a550c530e4f124d140445180a391e102d241a1b2c"},4:{t:70,l:1,w:47,h:70,m:"y541b1e501f1e4e211e4a251e46291e422d1e3e311e3a351e36391e323d1e2e2b02151e2a2b06151e262b0a151e222b0e151e1e2b12151e1a2b16151e162b1a151e14291e151e102922151e0c2926151e08292a151e04292e151e2932151e2536151e213a151e1d3e151e1942151e1546151e114a151e0d324f09364f053a4f3e4f3e4f3e4f3e4f3e4f3e4f5a151e5a151e5a151e5a151e5a151e5a151e5a151e5a151e5a151e"},5:{t:70,l:4,w:42,h:71,m:"x044d04044d04044d04044d04044d04044d04044d04044d04044d04044d0404133e02153e02153e02153e02153e02153e02153e02153e02153e02153e02134002134002134002272c02332002391a3f1643124510470e490c4b0a4d08282706301f06341d043819043a19023c17023e15023e15023e17401540154015401540154015401540153e15023e15023c17023c17023a1704381904361906321b08301d082a210a24250c1c2b0e451043123f163b1a371e33222b2a23320d48"},6:{t:70,l:0,w:50,h:71,m:"y5219244a291c443318403b143c431038490e344f0c32530a2e570a2c5b0828310e2306262f181d06242d1e1d04222d2419041e2f2817041c312819021a312c1702181b0215301502161b0415301502141b0615301712190a1334150e1b0a1534150c1b0c1534150a1b0e153415081b10153415061b12153415041b14153415041916153415021918153415191a173215171c173017151e173015021322172e15021124172c17020f26192819020d2a172817040b2c19241904092e1b1e1b0607321d181d0605361f0e210805364d08033a490a3e450c40410e423d104439124635144a2d184e251c561524"},7:{t:70,l:1,w:48,h:70,m:"y15781578157815781578157815781578157815781578155227154a2f154237153e3b153a3f153643153247153049152c4d15282b261526272c1524233215202336151e213a151c1f3e15181f4215161f4415141d4815121d4a15101b4e150e1b50150c1b52150a1b5415061d5615021f58335a2f5e2d602b62296427662568236a1f6e1d701974117c"},8:{t:70,l:0,w:49,h:71,m:"y5e131e581f18542912160f2c2f10121924330e0e211e370c0c251a3b0a0a29163f08082d124306082f0e450606310e1b0e1f0406330a19161b0404190a1508171a190404170e1306171e19020217121302172019020217142724170202151625261702021518232817171a1f2a17151c1f2a17151c1d2e15151e1b2e15151e193015152017301515201532151520153215151e193015151e193015151c1d2e15151c1d2e151718212a1702151823281502021516252815020217142724170202171213021722170204170e1504171e17040419081708171a190406330a19161b0406330c1b0e1d06082f104306082d1241080a29163f080c251a3b0a0e211e370c121924330e16112a2f105429125821165e131e"},9:{t:70,l:0,w:50,h:70,m:"y2415541c234e182b4a143346123744103d400e413e0c433e0a473a03081f0e1f3605081b161d320706191e193009041922192e09041726172c0b041726172a0d02172a17260f02172a17241102152e15221302152e171e15172e171c171532151a1915321518190215321516190415321514190615321512190815321510190a1532150e190c1532150c190e153215081b10172e15081b12172e15061b1402152e15041b1602172c311802172a311a021926311c0417262f1e0419222f20041d1c2d24061d162f2606210e312808592c0a552e0c4f320e4b34104538123f3c1637401831441e254a261552"},A:{t:70,l:0,w:50,h:70,m:"y86077e0f7815701d6825602d5a33523b4a43424b3a4f04344d0c2c4d14244d1c1c4d24164f280e57280649021528470a15283f121528371a15282f221528272a15281f321528173a1528173a15282130152829281528312015283b161528430e15284b0615286528065f280e592618571e20591428590c3059043855404d4845503d5835602d6825701d7815800d8805"},B:{t:70,l:1,w:48,h:70,m:"y8d8d8d8d8d8d8d8d8d1526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151724112e151724112c17021522152a17021720152a1702191c19261702021b181b261702041b141f221902041f0c251e19040651161d0406550e1f06083b0243060a370441080c33083d0a0e31083b0c102d0c370e1425123310181f162f121e13202716541f1a581322"},C:{t:71,l:4,w:42,h:72,m:"y3821382c392c26472420531e1a5d1a166516146b121071100e750e0c790c0a2f202f0a08273427080623402306061d4c1d06041b541b04041958190402195c19020217601702021564150217641715681515681515681515681515681515681515681517641717641502021760170202195c1902021d541d02041f4c1f04041f4c1f04061d4c1d06081b4c1b080a194c1b080c174c190a0e154c150e10134c1310140f4c11121a094c0b18"},D:{t:70,l:4,w:41,h:70,m:"y8d8d8d8d8d8d8d8d8d1368131566131564151564150213641502136413020215621302021560150204155e150204155e150204175a150406175815040617561704081752170608194e19060a1b4819080c1b441b080c1d401b0a0e1f381d0c102130210c122526230e142b1629101665121861141c59181e551a224f1c2449202a3f242e3728342b2e3c1b36"},E:{t:70,l:4,w:42,h:70,m:"x51045104510451045104510451045104510451041342134213421342134213421342134213421342134213421342134213421342134213421342490c490c490c490c490c490c490c490c490c490c13421342134213421342134213421342134213421342134213421342134213421342134213421342134255555555555555555555"},F:{t:70,l:7,w:35,h:70,m:"y8d8d8d8d8d8d8d8d8d1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e15781578157815781578"},G:{t:71,l:2,w:46,h:72,m:"y342736283f2a224b241e551e1a5d1a166516146914126f1010730e0e770c0c2d1e310a0a2532270a08213e2308081d481f06061d4c1d060619541b04041958190404175c170402195e17020217601702021762150202156417172e152217172e15241515301524151530152415153015241515301524151530152415153015241515301524151530152415153015241502152e1524130202152e1524130202172c1522150204192815221502041b264b020619264904081726490408172649040a152647060c13264706100f264706120d2645081807264508"},H:{t:70,l:3,w:44,h:70,m:"y8d8d8d8d8d8d8d8d8d3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e8d8d8d8d8d8d8d8d8d"},I:{t:70,l:8,w:34,h:70,m:"y781578151564151564151564151564151564151564151564151564151564151564158d8d8d8d8d8d8d8d8d15641515641515641515641515641515641515641515641515641515641515641578157815"},J:{t:70,l:7,w:35,h:71,m:"y5e171a5e1d145e21105e230e5e270a5e29085e2b065e2b065e2d0472190474190276170278150278177a157a157a157a157a157a157a157817781502761702741902701b048b04890689068708850a830c7f107b14751a"},K:{t:70,l:-1,w:52,h:70,m:"y8d8d8d8d8d8d8d8d8d38193c361d3a3421383225363029342e2d322c31302a352e281b041b2c261b081b2a241b0c1b28221b101b26201b141b241e1b181b221c1b1c1b201a1b201b1e181b241b1c161b281b1a141b2c1b18121b301b16101b341b140e1b381b120c1b3c1b100a1b401b0e081b441b0c061b481b0a041b4c1b08021b501b061b541b0419581b02175c1b1560191364171168150f6c130d70110b740f09780d077c0b05800903840788058a03"},L:{t:70,l:2,w:45,h:70,m:"y8d8d8d8d8d8d8d8d8d781578157815781578157815781578157815781578157815781578157815781578157815781578157815781578157815781578157815781578157815781578157815781578157815"},M:{t:70,l:1,w:48,h:70,m:"y8d8d8d8d8d8d8d8d8d1974216c27662f5e35583b5202414a0841440e433c1443361a452e203f2e26392e2e312e342b2e342b2e2e312e26392e203f2e1a452e1445340e433c064542434a3d5035582f5e2766216c19748d8d8d8d8d8d8d8d8d"},N:{t:70,l:2,w:46,h:70,m:"y8d8d8d8d8d8d8d8d8d236a27662b62022f5c062f580a2f540e2f50122f4c162f481a2f441e2f40242d3c282d382c2d34302d30342d2c382d283c2d24402d20442f1a482f164c2f12502f0e542f0a582f065c2f02602d64298d8d8d8d8d8d8d8d8d"},O:{t:71,l:1,w:48,h:72,m:"y3a1f382e372c284326224f201e571c1a5f18166516126d121071100e750e0c2d202f0a0a2536230a0821421f08061d4c1d060619541b04041958190404175c19020217601702021564150202156417156617156815156815156815156815156815156815176417021564170217621502021760170204175c19020419581904061b501d04061f4a1d0608214021080a253427080c2d202f0a0e770c107110126d121667141a5f181e571c224d222843262e352e382138"},P:{t:70,l:2,w:45,h:70,m:"y8d8d8d8d8d8d8d8d8d152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152a17381728153a1728153a021724173a021722193a02191e193c041b181b3c041f101f3c06493e0845400845400a41420c3d440e394612314a142d4c182550201558"},Q:{t:71,l:-1,w:53,h:71,m:"y32233a263b2e2047281c5122185720145f1c12631a0e69180c6f140a7312082d1e2b120823322310061f3c210e041d461d0c04194c1b0c021952190a0217320520170a021534071e170a1734091e150a17340d1a170815360f1a150815361118150815361514150815361712150815361910150815361d0c150815361f0a1508021534210617080215382102150a021738350a041738330a041b362f0c061b382b0c062134270e08253023100a2d1e2d0e0c770c0e7908107906127904147b1857021f1c4f081d20470e1b28391817322524157c13800f820d840b88078a058c03"},R:{t:70,l:2,w:45,h:70,m:"y8d8d8d8d8d8d8d8d8d152a153a152a153a152a153a152a153a152a153a152a153a152a153a152a153a152a153a152a1936152a1b34152a1f30152a232c152a272815282d24172631201726331e021722391a0217223d1602191e15062912041b18170a290e041f0e1d0e290a0645122b06064516290408411c290a3d22250c3926230e352c1f1031321b142b381718233e151e154a11800d840986078a03"},S:{t:71,l:3,w:43,h:72,m:"y680d1c6813161c133a1712161f3419101227301b0e102b2e1d0c0e312a1f0a0c332a21080a37282108083b262306083d282104063f2e1b04041d0c1b2e1904041912193019020417181730170202171c1730150202171c173017021520172e17172215301515241530151526152e151526152e151528152c151528152c15152a152a15152a172617152c152617172a1724150202152c1720170202172a171e190202172c1918190402192a1b141b04041b281d0c1f040421244306061f244108081d263f08081d283b0a0a1b2a370c0c192c330e0e172e2f1012133227141411361f181a0b3c131e"},T:{t:70,l:1,w:47,h:70,m:"y15781578157815781578157815781578157815781578157815781578157815781578157815788d8d8d8d8d8d8d8d8d1578157815781578157815781578157815781578157815781578157815781578157815781578"},U:{t:70,l:2,w:46,h:71,m:"y6f20751a79167d127f10810e830c850a87086821066e1b0672190474170474190276170278150278150278177a157a157a157a157a157a157a157a157a157a157817781502781502761702741902741704701b046e1b066a1f0687088708850a830c810e7d127b14751a6d22"},V:{t:70,l:0,w:51,h:70,m:"y038a0b82137a1974216c2964315c39543f4e47464f3e084f36104f2e184d28204d20264f182e4f10364f083e4d0246474e3f56375c3164296c21741974196c2164295e2f56374e3f46473e4b04364b0c2e4b14264d1a1e4d22184b2a104b32084d384d4045483d5037562f5e27661f6e1974117c0984"},W:{t:70,l:0,w:50,h:70,m:"y2766414c533a612c6f1e7914830a8d8d0522673e4f503d5c31662764295c315637503d48454245063a450e36411636391e363126362b2c36292e362f28363720363f1838451040450846474e3f54395c31622b6a235e2f503d3e4f051e6b8d8d87067d10731a6726593447462f5e"},X:{t:70,l:0,w:50,h:70,m:"y0388030780070b780b0f700f116a13156217195c191d541d214c21234625273e292b362b02042b2e2b06062d28290a0a2b22290e0e2b1a2912122b122916162b0a291a1a2b02291e1c512020492424412828392c2c31303029343029342c313028392c2441282049241e4f201a25082b1c16270e2b181227162b1410251e2b100c25242d0c08252c2d080425342b0602253a2b022342291f4a251b5221175a1d1560191168150d6e1309760f057e0b0384078a03"},Y:{t:70,l:1,w:47,h:70,m:"y058809840d800f7e137a17761b721f6e236a27662b62042b5e082b5a0c2b56102b5214295018294c1c2948202944246928652e5f325b3657325b2e5f286524692029441c294818294c142b4e102b520c2b56082b5a042b5e2b622766236a216c1d7019741578117c0d8009840588"},Z:{t:70,l:4,w:41,h:70,m:"y7a13156217155e1b155a1f155821155425155029154c2d154831154435154039153c3d15382b021515342b061515302b0a15152c2b0e1515282b121515242b161515202b1a15151e291e15151a29221515162926151512292a15150e292e15150a29321515062936151502293a153b3e153742153346152f4a152b4e152752152356151f5a151b5e15176215136615781578157815"},a:{t:53,l:4,w:42,h:54,m:"x201b1a182b1214330e10390c0e3d0a0c41080a4506084904081d121b04061b1c170206172215020615261302041726130204152a1342134213421342134213421342132035183d144110450c490a4b084d064f041d22130419261302172a1302152c1302132e13152e13133013132e15132e15132c17132c17132a1915261b17221d0215201f02191823021d0e290451064f083902130a3504130c31061310290a1314210e131a1526"},b:{t:75,l:2,w:46,h:76,m:"y970297029702970297029702970297029702381f16210c3619261b0a34172e1908341336170632133a150630133e150430134013042e134215022e114613022e114613022c1348132c114a132c114a132c114a132c114a132c114a132c114a132c114a132c1346152c134613022e114415022e134215022e153e17022e173a17043017361904301b2e1b06321d261f063423162508345b0a36570c3a510e3c4d103e471442411648371a4c2d20561b28"},c:{t:53,l:4,w:41,h:54,m:"y2a192a202d201c371a183f16144712104d100e530c0c570a0a5b0808211c2108061b2c1b060617341904041738170404133e1702021540150202134413020211481102134813114c11114c11114c11114c11114c11114c11114c1113481313481315441302021342150202153e17020219361904041b2c1f04041b2c1d0606192c1d0606192c1b0808172c190a0a152c170c0c132c150e0e112c1310120d2c0f1416092c0b18"},d:{t:75,l:2,w:46,h:76,m:"y561b284c2d2046391a4241163e49123c4d103a510e38550c36590a3423182308321d261f06301b30190630173619042e173c15042e154015022e134215022e134413022c1348132c1348132c114a132c114c112c114c112c114c112c114c112c114c112c114c112c134811022e114811022e114811022e134411043011421304301340110632133c1306321536150834173017083619261b0a381f181f0c970297029702970297029702970297029702"},e:{t:52,l:2,w:46,h:53,m:"x2417221c271a182f16143712123b10103f0e0e430c0c470a0a1f0e1f080a191a1b0608191e19060815241904061528170406152a150404152c170204152e1502041330150202153015020215301702153017025b5d5d5d5d5d5d5d15481548154815481548021348021546021546021546041544041544041742061740061924150608192017060a1b1a19060a21101d060c49080e470810430a123f0c16390e1833121e291626191e"},f:{t:75,l:5,w:39,h:75,m:"y2e11582e11582e11582e11582e11582e11582e11582e11582e11582e11582e11582e11582e11582e11581c7b148310870c8b0a8d088f06910691049304191211580217161158021518115802131a1158131c1158131c1158131c1158111e1158111e1158111e1158111e1158111e1158111e1158111e1158111e1158111e1158"},g:{t:53,l:3,w:44,h:70,m:"y241b4e1c2b461637280910123f240d0c10452011080e491e11080c4d1c13060a511a1504085518150406211821161702041d241b16170204192c19141702021734151615020215381516130202133c13181302113e1318131340131811134013181111441118111144111811114411181111441118111144111811114411181111441118111144111811021140111a1102114011181302133c1318110204113c111a1102041338131a1102061334131a130208152c151c13020a1724171c13040c1b161d1a170402850602850602830802810a02810a027f0c027b1002771402711a"},h:{t:75,l:4,w:41,h:75,m:"y979797979797979797361b4634174c34154e3215503015523013542e13562e13562e13562e11582c13582c13582c13582c13582c13582c13582c13582c15562c15562e15542e17522e1950301b4c306732653265346336613a5d3c5b40574651"},i:{t:75,l:12,w:26,h:75,m:"y2e15542e15542e15542e15542e15542e15542e15542e15542e15542e15542e15542e15541b1415541b1415541b1415541b1415541b1415541b14691b14691b14691b14691b14691b14691b14691b14691b1469"},j:{t:75,l:11,w:28,h:93,m:"yaa11aa11aa11aa11aa11aa11aa112e1568112e1568112e1568112e1568112e1568112e1568112e1566132e156611021b14156413021b14156215021b14156017021b14155a1b041b1489041b1487061b1487061b1485081b14830a1b14810c1b147f0e1b147b121b147518"},k:{t:75,l:3,w:44,h:75,m:"y97979797979797979754172c521b2a501f284e23264c27244a2b22482f2046331e441b021b1c421b061b1a401b0a1b183e1b0e1b163c1b121b143a1b161b12381b1a1b10361b1e1b0e341b221b0c321b261b0a301b2a1b082e1b2e1b062e19321b042e17361b022e153a1b2e133e192e1142172e0f46152e0d4a132e0b4e112e09520f2e07560d2e055a0b2e035e09900792059403"},l:{t:75,l:10,w:29,h:75,m:"y7b1c831487108b0c8d0a8f089106930493047a1b027e170280150282158413841384138611861186118611861186118611861186118611861186118611"},m:{t:53,l:0,w:51,h:53,m:"y026902690269026902690269026902690269081350080f54060f56040f58020f5a020f5a020f5a115a115a1358135817546b6b6b026902690467066508630665061550041354021356021158020f5a115a115a115a115a1358135817546b026902690467046706650a610c5f1259"},n:{t:53,l:3,w:44,h:53,m:"y0269026902690269026902690269026902690c1d420a19480a154c08154e061352061352041354041156021356021158021158115a115a115a115a115a115a115a115a13581358021158021356021554041552041b4c0665066508630a610c5f0e5d125916551c4f"},o:{t:53,l:0,w:50,h:54,m:"y2a192a202b221c351c183d18144514124912104d100e510e0c550c0a2314230a081d241d0808192c19080617341706041738150604153c150404134013040213441302021344130202114811020211481102134813114c11114c11114c11114c11114c11114c11114c11114c11114a1313481102021148110202114613020213441302021540130404133e150404173815060617341706061b2e1708081d241d080a2316210a0c550c0e510e104d10124912144316183b1a1c331e2229222a192a"},p:{t:53,l:2,w:46,h:70,m:"y028b028b028b028b028b028b028b028b028b0c1f181f2c0a1928192a0817301728061538152606133c132604134013240411441124021344132202114811220211481122114c1120114c1120114c1120114c1120114c1120114c1120114c1120114c112013481320021148112202114613220213441322021540152204153c152404173817240619301926081b281b2808231a21280a592a0c552c0e512e124b30144534183d381c353c2229422a194a"},q:{t:53,l:2,w:46,h:70,m:"y2a194a222b401c353c183f36144534104d300e512e0c552c0a592a0823182328081b281d260619321726041738172404153c1524041340152202134413220213461122021148112213481320114c1120114c1120114c1120114c1120114c1120114c1120114c1120114c11200211481122021148112202134413220411441124041340132406133c1326081338152608173017280a1928192a0c1f181f2c028b028b028b028b028b028b028b028b028b"},r:{t:53,l:6,w:38,h:53,m:"y0269026902690269026902690269026902690c1b440a174a08154e081350061352041354041156021158021158021158115a115a115a115a115a1358135815560215540219080346022346042146061f46061f46081d460a1b460e1746121346180d46"},s:{t:53,l:4,w:42,h:54,m:"x201b1a162b141233100e3b0c0a410a084508084508064906041d121d0604171c1b04041522170402152417040213281504021328150402134002134002134002153e02153e04153c041938061f30062728082f1e0a33180c37120e390e14370a183508202f06282904321f043a19023e150240130240154213421342134213133013152c15152a171726170219201b02021d161d04024f04044b0606470808430a0a3d0e0e3512122d161a1b20"},t:{t:67,l:5,w:39,h:68,m:"y1e115a1e115a1e115a1e115a1e115a1e115a1e115a1e115a1e115a1e115a06691a04711404751004790c027d0a027f0802810602830485041e113e1b021e114415021e114613021e1148131e1148131e114a111e114a111e114a111e114a111e114a111e114a111e114a111e1148131e114811021e114811021e114613021e114613021e114413041e114215041e11421306"},u:{t:52,l:3,w:44,h:53,m:"y511a57145b105f0c610a63086506650667044e1904521702541502561302581358135a115a115a115a115a115a115a115a115811025811025811025611045611045413045213065015064e15084c150a48170c421d0c690269026902690269026902690269026902"},v:{t:52,l:0,w:51,h:52,m:"y036609600d5c135619501f4a25442b3e2f3a35343b2e043d280a3d22103d1c163b181c3b12223b0c283b062e3b34353a2f402946234c1d52175811561352174c1d462340293a2f34353035042a350a24370e1e371418371a1237200e372408372a02373033362d3c294023461d4c175211580d5c0762"},w:{t:52,l:0,w:49,h:52,m:"y056415542544353445245514650469696906631a4f2e3b42274c1d46233e2b383132372a390628350c282d1428271a281f2228172a28192828212028271a282f1228350c2c390432373a2f402948214e1b422730391c4d0861696969670255144524333623461158"},x:{t:52,l:1,w:48,h:52,m:"y056005075c070958090d500d0f4c0f134413154015173a191b341b1d301d1f2a2123241f04251e21060425181f0a062512210c0a230e1f100c25081f121023021f16143b1a16371c1a2f201e2922202326241d282421242027221e2d1e1a331c163b18141f02211410210621120c210e210e0a2112210c06211a210802231e2106212423021f2a211b301f19341d153c191340170f48130d4c1109520f07580b035e0962076603"},y:{t:52,l:-1,w:52,h:70,m:"y058809840d800f6e11136a111766111b62111d6011215c112556132950152b4c1502042b441902082b3c1d020c2b341f04102b2c2106142926250618291e27081c2916290a20290e290e2427082b1028270229142c491830411c3439203831243c292838292c3429303229322e29362a293a26293e2229421e29461c274a18274e1427521027560c275a08275e0427620227642568216c1d7019741578117c0d8009840588"},z:{t:52,l:4,w:41,h:52,m:"x044b04044b04044b04044b04044b04044b04044b04044b0438170436190434190632190832170a30170c2e190c2c190e2a191028191228171426191424191622191820191a20171c1e171e1c191e1a192018192216192416172614192612192810192a0e192c0c192e0c17300a1930081932061934041936041738021938193a173c5353535353535353"},"~":{t:76,l:0,w:51,h:17,m:"x180b44141530050a101d2a09080e25220d060c2b1c11040a31161502083710190641041d0461020261041d063f0619103708021516310a04111c2b0c060d22250e08092a1b120a05301316"},"!":{t:75,l:18,w:14,h:75,m:"y1b64194d32195f20195f20195f20195f20195f20195f20195f20195f20195f20195f20194d32191b6419"},"@":{t:77,l:1,w:47,h:78,m:"y220b32211e1a13283514141922410e121b1e470c0e1f1c4d080c211a51060a2318550408251657040627161f1a2102061d20172a19020419241532150204172613361502172811381502152a113a1302152a113a1302132c113a13152c133813133011381313301334130213301530150213321928170213341d1a1d04132e5706132e5508132e530a132e530a132e5508152c570602132c590402132c5b0202156e170204157015041572130417701306196c1308196a13081f62150a235a15020c33401d020e8d02128704148306187d081e750a246b0e2c5f123c431e"},"#":{t:76,l:2,w:46,h:76,m:"y66092209600f18133407260f101b2c0f260f08232c0f26392c0f26392c0f203f2c0f16492c0f0e512c0f0453082c5b122a551a22532418572a0e612a0653080f2a4f120f2a471a0f2a3d240f2a3b260f2a29040f260f2a1f0e0f260f280315180f260f200b0d200f260f1615032a0f260f0c1f2c0f260f02292c0f26392c0f223d2c0f1a452c0f104f2c0f0657022c630a2c591424571e1a5926125d2a0855040f2a550c0f2a4b160f2a431e0f2a3b260f2a3b260f2a25080f260f2a1d100f260732131a0f5e09240766"},$:{t:75,l:0,w:50,h:75,m:"y240f380b221e1b320f1e1a2130131a18272c1518162b2a1716142d2a19141231281b121035261d101037241d100e39241f0e0e170c19261b0e0e1512152a190c0c1516152a170c0c1318152c150c0c131a132c170a0a151a152c150a0a151c132c150a0a131e152a150a0a131e152a150a0a1320132a150a0a1320132a150a97979797979797970a13241722150a0a13261522150a0a13261522130c0c11261720130c0c1326151e150c0c1326171c150c0c1328151c130e0e13261718150e0e1d1e1714170e0e1d1e19101710101b20190c1910101b203b121219223912141722371416152433161813262f181a11262f181c0f2a271c200b2c231e581d225e1128"},"%":{t:74,l:1,w:47,h:74,m:"y120f740c197008215c110625561504295019042b4c1b022d481f022f42231110113e270f140f3c25040f160d3827060f160d34270a0f140f30270e11120f2e2512130c132a2516022f262718022d24271c0429242520062720252408231e27260a1d1e272a0e171c272e3e25323a2536362738322718170e30251a1d0a2c251a230828271a270624271e29042225202d021e25222f021a2526130c131627280f121114252c0f140f1025300d160f0c25340f140f0827360f140f06253a11101102253e2f0223442d0221462b041d4c290419522506155821081160190c740f12"},"^":{t:76,l:1,w:48,h:39,m:"y4007083e0b063a1104381502341902321d2e1f022c1f0428210624230822230a1e250c1c250e1827101627121229141029160c291a082b1c062b1e022d202d222b24292629262b24022b22042d1e082b1c0a2b1a0e29181029161427141627121a25101c250e20230c22230a2621082a21042c2102301f321d3617023813043c0f043e0b06420508"},"&":{t:76,l:0,w:50,h:76,m:"y66151e6021185c29141a112e2f12141d26350e10271e390c0e2d183d0a0c331241080a370e4308083d084706083f041f0c2104065f141d04065b1c1904041d0c332019020419162b22190202191c252617020217202328170215262126171728212417152a252215152829201515262f1c151526311a1515243716151522170421141515201708231015151e170c230e15171c1512210c1502151a1714230815021716171a21061302021912171e3702021d0a19223502043b28310204392c2d0406353229040831362506082f3a25040a2b4023020c273c2b0e233435121b284518112c4554455445542d061354290e0f5425140d541f1e0954192607540f3205"},"*":{t:75,l:1,w:48,h:49,m:"y2a0534240d321e13321a17321a17321c17301c1722050a1e152009081e171a0f061e171811062015161504201712190222150e1f22150c2124150821022415061f062613041f0826310c262f0e21062b124f144b18491a451e451e491a4b184f1421062b12262f0e26310c2613041f082415061f06241508210222150c2122150e1f201712190220151615041e171811061e171a0f061e152009081c1722050a1c17301a17321a17321e1332240d322a0534"},_:{t:-8,l:-2,w:54,h:9,m:"x6d6d6d6d6d6d6d6d6d"},"+":{t:65,l:2,w:46,h:54,m:"y2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c6d6d6d6d6d6d6d6d6d6d2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c"},"`":{t:70,l:7,w:35,h:27,m:"y033405320730092e0b2c0d2a1126132415221720191e1b1c1f182116231425122710290e2b0c2f08022f06042f04082d020c2b1027142316211a1d1e1922152611280f2c0b30073403"},"-":{t:32,l:2,w:46,h:12,m:"x5d5d5d5d5d5d5d5d5d5d5d5d"},"=":{t:54,l:2,w:45,h:32,m:"x5b5b5b5b5b5b5b5b5b5b5a5a5a5a5a5a5a5a5a5a5a5a5b5b5b5b5b5b5b5b5b5b"},'"':{t:70,l:9,w:32,h:23,m:"y2f2f2f2f2f2f2f2f2f2f2f2e2e2e2e2e2e2e2e2e2e2f2f2f2f2f2f2f2f2f2f2f"},"'":{t:70,l:19,w:11,h:30,m:"y3d3d3d3d3d3d3d3d3d3d3d"},"(":{t:76,l:10,w:29,h:77,m:"y401d3e382d36303d2e2c452a284d26245522205d1e1c631c1a6918186d16142f182d1412272a2910102336250e0e213e230c0c1f46210a0a1d4e1f08081d521d08061d561d06041b5c1d04021b601d020219641d19681b176c19176e17157215137415117813117a110f7e0f"},")":{t:76,l:10,w:29,h:77,m:"y0f7e0f117a11117813137415157215176e17176c1919681b0219641d021b601d02041b5c1d04061d561d06081d521d080a1f4a21080c1f46210a0e213e230c102336250e12272a2910142f182d14186d161a69181c631c205d1e245522284d262c452a303d2e382d36401d3e"},"{":{t:76,l:2,w:46,h:78,m:"y461542461542461542461542461542461542461542461542461542441742441940441940421d3e40213c3a293a1e5b24166f18107b120e810e0c43043f0c0a4504410a084508410806430e4106063f163d0604332c3704041b5c1f040219661b0202176a190202176c1702021570150202157015021770171574151574151574151574151574151574151574151574151574151574151574151574151574158815"},"}":{t:76,l:2,w:46,h:78,m:"y88151574151574151574151574151574151574151574151574151574151574151574151574151574151770170215701502021570150202176c170202176a19020219661b02041b5c1f0404332c3704063f163d0606430e410608450841080a4504410a0c43043f0c0e810e107b12166f181e5b243a293a40213c421d3e441940441940441742461542461542461542461542461542461542461542461542461542"},"[":{t:76,l:6,w:37,h:76,m:"y99999999999999999999157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015"},"]":{t:76,l:6,w:37,h:76,m:"y15701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701599999999999999999999"},"<":{t:73,l:0,w:49,h:70,m:"x60035e055a09580b560d521150134c174a19461d441f40233e23023a250438230834250a32230e2e25102c231428251626251824231c20251e1e23221a252418232814252a12232e0e25300c233408253606233a02253c234021421f44234002233e04253a0823380a23360e233210233014232c16232a1a23261c23241e252022231e24251a2823182a25142e231230250e34230c3625083a23063c250240234221441f481b4a194e155013540f560d5a095c076003"},">":{t:73,l:0,w:49,h:70,m:"x0360055e095a0b580d5611521350174c194a1d461f44234002233e04253a0823380a25340e233210252e14232c1625281a23261c232420232022231e26231a2823182c23142e231232230e34230c3625083a23063c250240234221441f42213e23023c230438230836230a34210e3023102e23122a231628231824231c22231e1e23221c232418252616232a14232c1023300e23320a233608233804253a02233e022140021d44021b4602174a02154c021150020f52020d5402095802075a02035e"},"|":{t:77,l:20,w:10,h:94,m:"ybdbdbdbdbdbdbdbdbdbd"},":":{t:52,l:15,w:19,h:52,m:"x27272727272727272727272727272727262626262626262626262626262626262626262627272727272727272727272727272727"},";":{t:52,l:6,w:37,h:72,m:"y8c058809840d80117c157819741d70216c256829642b02602d045c2f0658310854330a50350c4c370e4839104837121f2a35141f2a33161f2a31181f2a2f1a1f2a2d1c1f2a2b1e1f2a29201f2a27221f2a25241f2a23261f2a21281f2a1f2a1f2a1d2c1f2a1b2e1f2a19301f2a17321f2a15341f2a1336"},".":{t:16,l:15,w:19,h:16,m:"x27272727272727272727272727272727"},",":{t:16,l:6,w:37,h:36,m:"y440540093c0d3811341530192c1d2821242520291c2b02182d04142f061031080c330a08350c04370e391037123514331631182f1a2d1c2b1e292027222524232621281f2a1d2c1b2e1930173215341336"},"\\":{t:76,l:4,w:41,h:77,m:"y039807940d8e138817841d7e217a27742b70316a35660635600a355c1035561435521a354c1e35482435422a333e2e353834333438352e3e332a4235244833204c351a5233165635105c330c6035066633026c2f702b76257a21801b84178a118e0d94079803"},"?":{t:77,l:0,w:49,h:77,m:"y20116a18196a141d6a121f6a0e236a0c256a0c256a0a276a08296a08296a062b6a062b6a042d6a042176021f7a021b7e0219800219800217661d19661d19661d173c131a1d1738171a1d1736191a1d17341b1a1d17321d1a1d17301f1a1d172e211a1d172c231a1d192a231a1d1928251a1d021924271a1d021b20291a1d021d1c2b1a1d021f1621281d04210e232a1d044f48044d4a06494c06474e0843500a3f520a3d540c39560e3558102f5c14295e181f641e136a"},"/":{t:76,l:4,w:41,h:77,m:"y980394078e0d8a118417801b7a217427702b6a316633026035065c330c5635105233164c351a4833204235243c352a38352e3235342e353828353e2435421e35481a334e1435520e35580a355c04356235662f6c2b702576217a1b801784118a0d8e07940398"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["12-01"]={h:9,w:6,g:{0:{t:9,l:0,w:6,h:9,m:"b788484848484848478"},1:{t:9,l:1,w:4,h:9,m:"y04030c02030e031013"},2:{t:9,l:0,w:6,h:9,m:"b7884040810204080fc"},3:{t:9,l:0,w:6,h:9,m:"bfc08103804040404f8"},4:{t:9,l:0,w:6,h:9,m:"b102020404888fc0808"},5:{t:9,l:0,w:6,h:9,m:"bfc8080f804040408f0"},6:{t:9,l:0,w:6,h:9,m:"b102040788484848478"},7:{t:9,l:0,w:6,h:9,m:"bfc0408101020202020"},8:{t:9,l:0,w:6,h:9,m:"b788484847884848478"},9:{t:9,l:0,w:6,h:9,m:"b788484848478081020"},A:{t:9,l:0,w:7,h:9,m:"b10282844447c448282"},B:{t:9,l:0,w:6,h:9,m:"bf8848484f8848484f8"},C:{t:9,l:0,w:6,h:9,m:"b384480808080804438"},D:{t:9,l:0,w:6,h:9,m:"be090888484848890e0"},E:{t:9,l:0,w:6,h:9,m:"bfc808080f8808080fc"},F:{t:9,l:0,w:5,h:9,m:"bf8808080f080808080"},G:{t:9,l:0,w:6,h:9,m:"b384480809c8484443c"},H:{t:9,l:0,w:6,h:9,m:"b84848484fc84848484"},I:{t:9,l:0,w:5,h:9,m:"bf820202020202020f8"},J:{t:9,l:0,w:6,h:9,m:"b040404040404848478"},K:{t:9,l:0,w:6,h:9,m:"b848890a0c0a0908884"},L:{t:9,l:0,w:6,h:9,m:"b8080808080808080fc"},M:{t:9,l:0,w:7,h:9,m:"bc6c6aaaa9292828282"},N:{t:9,l:0,w:6,h:9,m:"bc4c4a4a494948c8c84"},O:{t:9,l:0,w:6,h:9,m:"b304884848484844830"},P:{t:9,l:0,w:6,h:9,m:"bf8848484f880808080"},Q:{t:9,l:0,w:6,h:9,m:"b3048848484a4944834"},R:{t:9,l:0,w:6,h:9,m:"bf8848484f890888484"},S:{t:9,l:0,w:6,h:9,m:"b788480807804048478"},T:{t:9,l:0,w:7,h:9,m:"bfe1010101010101010"},U:{t:9,l:0,w:6,h:9,m:"b848484848484848478"},V:{t:9,l:0,w:7,h:9,m:"b828244442828281010"},W:{t:9,l:0,w:7,h:9,m:"b8282828292aaaa4444"},X:{t:9,l:0,w:6,h:9,m:"b844848303030484884"},Y:{t:9,l:0,w:7,h:9,m:"b824444281010101010"},Z:{t:9,l:0,w:6,h:9,m:"bfc04081010204080fc"},a:{t:6,l:0,w:6,h:6,m:"b78047c848c74"},b:{t:9,l:0,w:6,h:9,m:"b808080b8c48484c4b8"},c:{t:6,l:0,w:6,h:6,m:"b788480808478"},d:{t:9,l:0,w:6,h:9,m:"b040404748c84848c74"},e:{t:6,l:0,w:6,h:6,m:"b7884fc80807c"},f:{t:9,l:0,w:5,h:9,m:"b182020f82020202020"},g:{t:6,l:0,w:6,h:8,m:"b788484848c7404f8"},h:{t:9,l:0,w:6,h:9,m:"b808080b8c484848484"},i:{t:9,l:1,w:3,h:9,m:"b606000e02020202020"},j:{t:9,l:1,w:4,h:11,m:"b30300070101010101010e0"},k:{t:9,l:0,w:5,h:9,m:"b80808090a0c0a09088"},l:{t:9,l:1,w:4,h:9,m:"y1102100310031003"},m:{t:6,l:0,w:7,h:6,m:"bacd292929292"},n:{t:6,l:0,w:6,h:6,m:"bb8c484848484"},o:{t:6,l:0,w:6,h:6,m:"b788484848478"},p:{t:6,l:0,w:6,h:8,m:"bb8c48484c4b88080"},q:{t:6,l:0,w:6,h:8,m:"b748c84848c740404"},r:{t:6,l:0,w:5,h:6,m:"bb0c880808080"},s:{t:6,l:0,w:6,h:6,m:"b788460188478"},t:{t:8,l:0,w:5,h:8,m:"b4040f84040404038"},u:{t:6,l:0,w:6,h:6,m:"b848484848c74"},v:{t:6,l:0,w:7,h:6,m:"b824444282810"},w:{t:6,l:0,w:7,h:6,m:"b828292aa4444"},x:{t:6,l:0,w:6,h:6,m:"b844830304884"},y:{t:6,l:0,w:6,h:8,m:"b84442810102020c0"},z:{t:6,l:0,w:5,h:6,m:"bf808102040f8"},"~":{t:9,l:0,w:6,h:2,m:"b6498"},"!":{t:9,l:2,w:2,h:9,m:"y0b04050b0405"},"@":{t:9,l:0,w:6,h:9,m:"b78840474949494b468"},"#":{t:9,l:0,w:6,h:10,m:"b1414287c2850f850a0a0"},$:{t:9,l:0,w:5,h:10,m:"b2070a8a0603028a87020"},"%":{t:9,l:0,w:6,h:9,m:"b44a848103020485488"},"^":{t:9,l:0,w:5,h:5,m:"b207050d888"},"&":{t:9,l:0,w:6,h:9,m:"b7088885060a4948874"},"*":{t:9,l:0,w:5,h:5,m:"b20a8707088"},_:{t:-1,l:0,w:6,h:1,m:"x0d"},"+":{t:6,l:0,w:5,h:5,m:"b2020f82020"},"`":{t:9,l:1,w:3,h:3,m:"bc06020"},"-":{t:4,l:0,w:6,h:1,m:"x0d"},"=":{t:6,l:0,w:6,h:4,m:"x0d0c0c0d"},'"':{t:9,l:0,w:5,h:4,m:"bd8d8d8d8"},"'":{t:9,l:2,w:2,h:5,m:"y0b0b"},"(":{t:9,l:1,w:3,h:9,m:"b204040808080404020"},")":{t:9,l:1,w:3,h:9,m:"b804040202020404080"},"{":{t:9,l:0,w:5,h:9,m:"b18202020c020202018"},"}":{t:9,l:0,w:5,h:9,m:"bc020202018202020c0"},"[":{t:9,l:0,w:5,h:9,m:"bf880808080808080f8"},"]":{t:9,l:0,w:5,h:9,m:"bf808080808080808f8"},"<":{t:8,l:0,w:6,h:7,m:"b04186080601804"},">":{t:8,l:0,w:6,h:7,m:"b80601804186080"},"|":{t:9,l:2,w:1,h:11,m:"y17"},":":{t:6,l:2,w:2,h:6,m:"y050405050405"},";":{t:6,l:1,w:3,h:9,m:"b60600000006060c080"},".":{t:2,l:2,w:2,h:2,m:"y0505"},",":{t:1,l:1,w:3,h:4,m:"b6060c080"},"\\":{t:9,l:0,w:5,h:9,m:"b808040402020101008"},"?":{t:9,l:0,w:6,h:9,m:"b788484081030003030"},"/":{t:9,l:0,w:5,h:9,m:"b080810102020404080"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["12-02"]={h:18,w:12,g:{0:{t:18,l:0,w:12,h:18,m:"b0f003fc070e06060c030c030c030c030c030c030c030c030c030c030606070e03fc00f00"},1:{t:18,l:2,w:7,h:18,m:"y08071606071804071a02071c071e2525"},2:{t:18,l:0,w:11,h:18,m:"b3e007f80e1c0c0e000600060006000c001c0038007000e001c0038007000e000ffe0ffe0"},3:{t:18,l:0,w:11,h:18,m:"bffe0ffe001c0038007000e001c003e003f8003c000e000600060006000e0c1c0ff807e00"},4:{t:18,l:0,w:12,h:18,m:"b0300070006000e000c001c001800380030c070c060c0e0c0fff0fff000c000c000c000c0"},5:{t:18,l:0,w:11,h:18,m:"bffc0ffc0c000c000c000c000fe00ff8003c000e000600060006000e003c00f80fe00f800"},6:{t:18,l:0,w:12,h:18,m:"b01c0038007000e001c0038003f007fc070e0e060c030c030c030c030606070e03fc00f00"},7:{t:18,l:0,w:12,h:18,m:"y05200520052005200520051011050a1705060b10050407160502051a091c071e"},8:{t:18,l:0,w:12,h:18,m:"b1f803fc070e06060606070e03fc01f803fc070e06060c030c030c030606070e03fc00f00"},9:{t:18,l:0,w:12,h:18,m:"b0f003fc070e06060c030c030c030c030606070e03fc00fc0038007000e001c0038007000"},A:{t:18,l:0,w:12,h:18,m:"b0600060006000f000f000f001f801980198039c030c030c07fe07fe06060e070c030c030"},B:{t:18,l:0,w:12,h:18,m:"bff00ffc0c0c0c060c060c060c0c0ffc0ffc0c0e0c070c030c030c030c070c0e0ffc0ff00"},C:{t:18,l:0,w:12,h:18,m:"b0f803fe078f06030e000c000c000c000c000c000c000c000c000e000603078f03fe00f80"},D:{t:18,l:0,w:12,h:18,m:"y2525051c05051c05051c05051c05051c050718070207140702040b080b040619060c0d0c"},E:{t:18,l:0,w:11,h:18,m:"x1717051205120512051205121502150205120512051205120512051205121717"},F:{t:18,l:1,w:10,h:18,m:"y2525050a0512050a0512050a0512050a0512050a0512050a051205200520"},G:{t:18,l:0,w:12,h:18,m:"b0f803fe070706030c000c000c000c000c3f0c3f0c030c030c030c030603070703ff00fe0"},H:{t:18,l:0,w:12,h:18,m:"y25250e05120e05120e05120e05120e05120e05120e05120e05122525"},I:{t:18,l:1,w:10,h:18,m:"y051c05051c05051c05051c052525051c05051c05051c05051c05"},J:{t:18,l:1,w:9,h:18,m:"y180904180b021e072005200520051e0723022104"},K:{t:18,l:0,w:12,h:18,m:"bc070c0e0c1c0c380c700ce00dc00f800f000f000f800dc00ce00c700c380c1c0c0e0c070"},L:{t:18,l:0,w:12,h:18,m:"y25252005200520052005200520052005200520052005"},M:{t:18,l:0,w:12,h:18,m:"y25250b1a040d14080d100e0b0c0e0b0c080d10040d140b1a2525"},N:{t:18,l:0,w:12,h:18,m:"y25250b1a040b16080b120c0b0e100b0a140b06180b021c092525"},O:{t:18,l:0,w:12,h:18,m:"b0f001f8039c070e060606060c030c030c030c030c030c0306060606070e039c01f800f00"},P:{t:18,l:0,w:11,h:18,m:"bff00ffc0c0c0c060c060c060c060c0c0ffc0ff00c000c000c000c000c000c000c000c000"},Q:{t:18,l:0,w:12,h:18,m:"b0f001f8039c070e060606060e070c030c030c030c330e37061e061e070e039e01fb00f30"},R:{t:18,l:0,w:12,h:18,m:"bff80ffe0c060c030c030c030c030c060ffe0ff80c700c380c1c0c1c0c0e0c0e0c070c070"},S:{t:18,l:0,w:11,h:18,m:"b3f807fc0e0e0c060c000c000e00078003e000f8003c000e000600060c060e0e07fc03f80"},T:{t:18,l:0,w:12,h:18,m:"y05200520052005200520252505200520052005200520"},U:{t:18,l:0,w:12,h:18,m:"y1d0821041c07021e050220052005200520051e05021c070221041d08"},V:{t:18,l:0,w:11,h:18,m:"y071e0f1604130e0a150612131c0912130a150604130e0f16091c"},W:{t:18,l:0,w:12,h:18,m:"y170e210412131a0b140d040e0f080e0f08140d041a0b12132104170e"},X:{t:18,l:0,w:12,h:18,m:"be070e07070e070e039c039c01f801f800f000f001f801f8039c039c070e070e0e070e070"},Y:{t:18,l:0,w:12,h:18,m:"y0520091c0d18040d14080d100c190c19080d10040d140d18091c0520"},Z:{t:18,l:0,w:11,h:18,m:"bffe0ffe001c001c003800380070007000e000e001c001c003800380070007000ffe0ffe0"},a:{t:13,l:0,w:11,h:13,m:"b3f807fc0e0e0006000603fe07fe0e060c060c060e0e07fe03f60"},b:{t:18,l:0,w:11,h:18,m:"bc000c000c000c000c000df00ff80f1c0e0c0c060c060c060c060c060e0c0f1c0ff80df00"},c:{t:13,l:0,w:11,h:13,m:"b1f803fc070e06000c000c000c000c000c000600070e03fc01f80"},d:{t:18,l:0,w:11,h:18,m:"b006000600060006000600e603fe071e060e0c060c060c060c060c06060e071e03fe00e60"},e:{t:13,l:0,w:12,h:13,m:"b1f803fc070e06060c030fff0fff0c000c000600070703fe01fc0"},f:{t:18,l:1,w:10,h:18,m:"y0c05140c05140c05140c05140421022307060514050805140508051405080514"},g:{t:13,l:0,w:11,h:17,m:"b0e603fe071e060e0c060c060c060c06060e071e03fe00e6000600060e0e07fc03f80"},h:{t:18,l:0,w:11,h:18,m:"y25250c05140a05160a05160a05160a05160a05160a07140c190e17"},i:{t:18,l:3,w:6,h:18,m:"b3c3c3c000000fcfc0c0c0c0c0c0c0c0c0c0c"},j:{t:18,l:2,w:7,h:23,m:"b1e1e1e0000007e7e0606060606060606060606060efcf8"},k:{t:18,l:1,w:10,h:18,m:"y252512090a100d080e070407060c070807040a070c07020a0510070a0314052203"},l:{t:18,l:2,w:7,h:18,m:"y210423021e072005200520052005"},m:{t:13,l:0,w:12,h:13,m:"y1b1b020514051605161b02190714051605161b0219"},n:{t:13,l:0,w:11,h:13,m:"y1b1b02051405160516051605160516071402190417"},o:{t:13,l:0,w:12,h:13,m:"b0f003fc070e06060c030c030c030c030c030606070e03fc00f00"},p:{t:13,l:0,w:12,h:17,m:"bcf00ffc0f0e0e060c030c030c030c030c030e060f0e0ffc0cf00c000c000c000c000"},q:{t:13,l:0,w:12,h:17,m:"b0f303ff070f06070c030c030c030c030c030607070f03ff00f300030003000300030"},r:{t:13,l:1,w:10,h:13,m:"y1b1b020514051605160516051605160714020514"},s:{t:13,l:0,w:11,h:13,m:"b3f007f80e1c0c000e00078003f8007c000e00060e0e07fc03f00"},t:{t:17,l:1,w:10,h:17,m:"y0805160805160805161f0421020805100708051205080512050805120508051205"},u:{t:13,l:0,w:11,h:13,m:"y170419021407160516051605160516051405021b1b"},v:{t:13,l:0,w:11,h:13,m:"y07140d0e040f080a0d040e0d12090e0d0a0d04040f080d0e0714"},w:{t:13,l:0,w:12,h:13,m:"bc030c030c030c030c030e670e6706f606f607fe079e030c030c0"},x:{t:13,l:1,w:9,h:13,m:"bc180e3806300770036003e003e003e00360077006300e380c180"},y:{t:13,l:0,w:11,h:18,m:"y071a050b1407040b0e09080b060b020c1306100b0a0c0b0e080b12040b160b1a071e"},z:{t:13,l:1,w:10,h:13,m:"bffc0ffc001c0038007000e000e001c00380038007000ffc0ffc0"},"~":{t:18,l:0,w:12,h:4,m:"b38307e70e7e0c1c0"},"!":{t:18,l:4,w:3,h:18,m:"y170807170807170807"},"@":{t:18,l:0,w:11,h:18,m:"b1f007fc0e0c0c06000600060006036607e606e60c660c660c660c660c6606ec07fc03b80"},"#":{t:18,l:0,w:11,h:18,m:"b0c600c601ce018c018c07fe07fe039c0318031807380ffc0ffc063006300e700c600c600"},$:{t:18,l:0,w:12,h:19,m:"b06001f807fe076f0e670c600e60076007e001f8007e006e006700630e670f6e07fe01f800600"},"%":{t:18,l:0,w:11,h:18,m:"b70e0f8e0d9c0d9c0db80fb80770007000e000e001c001dc03be03b6073607360e3e0e1c0"},"^":{t:18,l:1,w:10,h:10,m:"b0c000c001e001e003f00330073806180c0c08040"},"&":{t:18,l:0,w:12,h:18,m:"b1e007f80e1c0c0c0c0c0e1c073803f001e003c007e00e700c3b0c1f0c0e0e1e07ff03f30"},"*":{t:17,l:0,w:11,h:11,m:"b0e000e004e40eee0ffe07fc01f003f807bc071c03180"},_:{t:-2,l:0,w:12,h:2,m:"x1919"},"+":{t:17,l:0,w:12,h:14,m:"b060006000600060006000600fff0fff0060006000600060006000600"},"`":{t:18,l:2,w:7,h:7,m:"bf8f87c3c1e0e06"},"-":{t:11,l:0,w:12,h:3,m:"x191919"},"=":{t:14,l:0,w:12,h:9,m:"x191919181818191919"},'"':{t:18,l:2,w:8,h:6,m:"be7e7e7e7e7e7"},"'":{t:18,l:4,w:3,h:8,m:"y111111"},"(":{t:18,l:2,w:7,h:18,m:"b0e1c18307060e0c0c0c0c0e0607030381c0e"},")":{t:18,l:2,w:7,h:18,m:"be07038181c0c0e060606060e0c1c183870e0"},"{":{t:18,l:1,w:10,h:18,m:"y1005101005100e090e061906020d080d020205180502051c05051c05051c05051c05"},"}":{t:18,l:1,w:10,h:18,m:"y051c05051c05051c05051c050205180502020d080d020619060e090e100510100510"},"[":{t:18,l:1,w:9,h:18,m:"y2525051c05051c05051c05051c05051c05051c05051c05"},"]":{t:18,l:1,w:9,h:18,m:"y051c05051c05051c05051c05051c05051c05051c052525"},"<":{t:18,l:0,w:12,h:17,m:"b0010003000f001e007c00f003e007800f00078003e000f0007c001e000f000300010"},">":{t:18,l:0,w:12,h:17,m:"b8000c000f00078003e000f0007c001e000f001e007c00f003e007800f000c0008000"},"|":{t:20,l:5,w:2,h:24,m:"y3131"},":":{t:13,l:3,w:5,h:13,m:"x0b0b0b0b0a0a0a0a0a0b0b0b0b"},";":{t:13,l:1,w:9,h:18,m:"y22031e071a0b160d02090a0f04090a0d06090a0b08090a090a090a070c"},".":{t:4,l:3,w:5,h:4,m:"x0b0b0b0b"},",":{t:4,l:1,w:9,h:9,m:"b0f800f801f801f003e003c0078007000e000"},"\\":{t:18,l:1,w:9,h:18,m:"y071e0b1a1114060f100c0f0a100f06160f1a0b2005"},"?":{t:18,l:0,w:12,h:18,m:"b0f003fc070e0e070e070007000e001c00380070007000700000000000f800f800f800f80"},"/":{t:18,l:1,w:9,h:18,m:"y20051a0b160f100f060c0f0a060f1011140b1a071e"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["12-03"]={h:27,w:18,g:{0:{t:27,l:0,w:18,h:27,m:"y0e1b0e062b06042f04023302020d1a0d020b220b0926090926090926090926090926090926090b220b020d1a0d02023302042f04062b060e1b0e"},1:{t:27,l:4,w:10,h:27,m:"y0a0b22080b24060b26040b28020b2a0b2c37373737"},2:{t:27,l:0,w:17,h:27,m:"x08110a041906021d042102090e0b0205140b1a091a091a091a09180902140d02100f040e0d080a0f0a080d0e060b12040b14040916020918020918091a091a23232323"},3:{t:27,l:0,w:18,h:27,m:"x2302230223022302180b02160b04140b06120b08100b0a0e0b0c0a0d0e0a110a0a15060a1704160d021a09021c091c091c091c091a0b180b0205120d0221041f061d0806110e"},4:{t:27,l:0,w:18,h:27,m:"y200b0c1c0f0c18130c14170c101102090c0c1106090c08110a090c04110e090c1112090c0d16090c091a090c05141f181f181f181f22090c22090c22090c"},5:{t:27,l:1,w:16,h:27,m:"b7ffe7ffe7ffe7ffe7000f000f000f000f000ff80fff0fff8fffc007e001e001f000f000f000f000f001f001e007c01fcfff0ffe0ff00"},6:{t:27,l:0,w:18,h:27,m:"y1e0f0a181906141f041025020e130a0b020c130e0b0a150e0b080b02091209060b04091209040b06091209020b080912090b0a0b0e0b090c0b0e090207100b0a0b0205141b0403161b041a15081e0f0a"},7:{t:27,l:0,w:18,h:27,m:"y092e092e092e092e091c1309161909121d090e21090c1112090a0f1609080d1a09060b1e09040b201522132411260f280b2c"},8:{t:27,l:0,w:18,h:27,m:"b07f8001ffe003fff007fff807c0f807807807807807807803c0f003f3f000ffc0007f8000ffc001ffe003f3f007c0f80780780f003c0f003c0f003c0f003c0f807c07c0f807fff803fff001ffe0007f800"},9:{t:27,l:0,w:18,h:27,m:"y0c0d1e08151a041b18041b1603020b0a0b120502090e0910070b0e0b0c090912090a0b091209080b02091209060b04091209040b060b0e0b020b0802090e150a020b0a150c04250e0421120819160c0f1c"},A:{t:27,l:0,w:18,h:27,m:"y2e0926111e1916210e21080621101d020910150a09100b1409100b140910150a09101d0209100621100e210816211e1926112e09"},B:{t:27,l:0,w:19,h:27,m:"y37373737090e091009090e091009090e091009090e091009090e091009090e091009090e091009090e0910090b0a0b1009020b060f0c0b0221080b0204310206130417040a0b0a1306200d0a"},C:{t:27,l:1,w:16,h:27,m:"b03f00ffc1ffe1ffe3e1f7c0f780078007800f000f000f000f000f000f000f000f000f0007800780078007c0f3e1f1fff1ffe0ffc03f0"},D:{t:27,l:1,w:16,h:27,m:"y373737370926090926090926090926090209220902020b1e0b02040b1a0b04060d120d060827080a230a0e1b0e121312"},E:{t:27,l:1,w:16,h:27,m:"x1f021f021f021f0209180918091809180918091809181d041d041d041d040918091809180918091809180918091821212121"},F:{t:27,l:2,w:13,h:27,m:"y37373737090e0918090e0918090e0918090e0918090e0918090e0918090e0918092e092e"},G:{t:27,l:0,w:17,h:27,m:"y1017100a230a082906062d04040f120f04020b1e0b0202092209020b24090912090c090912090c090912090c090912090c090912090c090209101d0209101b020407101b020605101b02"},H:{t:27,l:1,w:16,h:27,m:"y3737373716091816091816091816091816091816091816091816091837373737"},I:{t:27,l:2,w:14,h:27,m:"y09260909260909260909260909260937373737092609092609092609092609092609"},J:{t:27,l:2,w:13,h:27,m:"y240b08240f042411022411022c0b2e092e092e092c0b3502350233042f08"},K:{t:27,l:-1,w:20,h:27,m:"y37373737140d161211141015120e0b040b100c0b080b0e0a0b0c0b0c080b100b0a060b140b08040b180b06020b1c0b040b200b0209240b072809052c070330053403"},L:{t:27,l:0,w:17,h:27,m:"y373737372e092e092e092e092e092e092e092e092e092e092e092e092e09"},M:{t:27,l:0,w:18,h:27,m:"y373737370d2a1522021b1a0a1b121213121213120a1b12021b1a15220d2a37373737"},N:{t:27,l:0,w:17,h:27,m:"y37373737112604112208111e0c131812111416130e1c110a201304261137373737"},O:{t:27,l:0,w:18,h:27,m:"y1213120c1f0c082708062b06040f120f04020b1e0b020b220b0926090926090926090926090b220b020b1e0b02040f120f04062b060827080c1f0c121312"},P:{t:27,l:0,w:18,h:27,m:"y3737373709100916091009160910091609100916091009160910091609100916091009160b0c0b16020b080b18021d1804191a06151c0a0d20"},Q:{t:27,l:0,w:19,h:27,m:"y1015120a210c062908042d06020f140f04020b1c0b040b1207080b0209140908090209140b06090209160b0409020b161502020b161104020f140d06042f04062f020a2d1015080b2e093007"},R:{t:27,l:0,w:17,h:27,m:"y373737370910091609100916091009160910091609100d120910110e0b0c170a020b080b021106021b08110204190c0f0615120b0a0d18093205"},S:{t:27,l:1,w:16,h:27,m:"b07e01ff83ffc7ffe7c1ef80ff00ff000f00078007e003f801fe007f801fc007e001e000f000f000ff00ff01f783e7ffe3ffc1ff807e0"},T:{t:27,l:0,w:18,h:27,m:"y092e092e092e092e092e092e092e37373737092e092e092e092e092e092e092e"},U:{t:27,l:0,w:18,h:27,m:"y2d0a3106330435022a0b022c0b2e092e092e092e092e092e092c0b2a0b023502330431062d0a"},V:{t:27,l:0,w:18,h:27,m:"y092e1126191e21160a1f0e121f061a1d22152a0d2a0d22151a1d121f060a1f0e2116191e1126092e"},W:{t:27,l:0,w:18,h:27,m:"y1b1c2b0c37371e1924131c1b141d06141310141310141b081c1b24131e1937372b0c1b1c"},X:{t:27,l:0,w:18,h:27,m:"y052e050926090d1e0d11161102130e130206130613060a230a0e1b0e1213121213120e1b0e0a230a061306130602130e13021116110d1e0d092609052e05"},Y:{t:27,l:0,w:18,h:27,m:"y0532092e0d2a112602132206131e0a131a0e29122512250e290a131a06131e02132211260d2a092e0532"},Z:{t:27,l:1,w:16,h:27,m:"b7ffe7ffe7ffe7ffe003c003c0078007800f000f001e001e003c003c0078007800f001f001e003e003c007c007800ffffffffffffffff"},a:{t:20,l:1,w:16,h:20,m:"b0ff03ffc7ffefc1ef00f000f000f000f07ff3fff7fff7ffff80ff00ff00ff01ff83f7fff3fff0fcf"},b:{t:27,l:0,w:18,h:27,m:"y37373737120b0c0b04100914090210091409020e0918090e0918090e0918090e0918090e0b140b0e0b140902100d0c0d02102304121f061619081a110c"},c:{t:20,l:1,w:15,h:20,m:"b07e00ff83ffc3ffe7c1e7800f800f000f000f000f000f000f000f800781e7c3e3ffc3ffc1ff807e0"},d:{t:27,l:0,w:18,h:27,m:"y1a110c161908122104102304100d0c0d020e0b1409020e0b140b0e0918090e0918090e0918090e09180910091409021009120b02120b0c0b0437373737"},e:{t:20,l:0,w:17,h:20,m:"x0c0d0a081506061904041d02020b0c09020209100909140723232323091a091a091a020918020d0c09041f041d020817040c0f08"},f:{t:27,l:1,w:15,h:27,m:"y12091c12091c12091c12091c12091c12091c082f0433023502350b08091c090a091c090a091c090a091c090a091c"},g:{t:20,l:0,w:17,h:27,m:"y0c0f1c061b0c0704041f0a09020223080902020d0c0b0a090b14090a070918070a070918070a070918070a070918070a070916090a07020912090a09040b0a0b0a09023502330433042f08"},h:{t:27,l:1,w:15,h:27,m:"y37373737100b1c10091e0e09200e09200e09200e09200e0b1e0e29102712251621"},i:{t:27,l:4,w:9,h:27,m:"y12091c12091c12091c12091c0b08091c0b08250b08250b08250b0825"},j:{t:27,l:4,w:10,h:34,m:"y3c093c091209220912092209120922090b0809200b0b0831020b0831020b082f040b082b08"},k:{t:27,l:0,w:17,h:27,m:"y373737371c0b101a0f0e18130c160b020b0a140b060b08120b0a0b06100b0e0b040e0b120b020e09160b0e071a090e051e070e0322053403"},l:{t:27,l:4,w:10,h:27,m:"y2f083304350235022c0b2e092e092e092e092e09"},m:{t:20,l:0,w:19,h:20,m:"y29292929020720072207222929290227020720072207220722292902270425"},n:{t:20,l:1,w:16,h:20,m:"y29292929040b1a02091e02091e09200920092009200b1e0227022704250821"},o:{t:20,l:0,w:18,h:20,m:"b03f0000ffc001ffe003e1f007c0f80780780f807c0f003c0f003c0f003c0f003c0f003c0f003c0f807c07807807c0f803e1f001ffe000ffc0003f000"},p:{t:20,l:0,w:18,h:27,m:"y37373737040b0c0b12020914091002091409100918090e0918090e0918090e0918090e0b140b0e0209140910020d0c0d10042112061d140819160c111a"},q:{t:20,l:0,w:18,h:27,m:"y0e0f1a081916061d14042112020d0c0d1002091409100b140b0e0918090e0918090e0918090e0918090e02091409100209140910040b0c0b1237373737"},r:{t:20,l:1,w:15,h:20,m:"y2929292904091c020720092007220722072209200d1c020b1c04091c06071c"},s:{t:20,l:1,w:16,h:20,m:"b0ff03ffc7ffef81ff00ff000f800fc007ff03ffc07fe003f001f000f000ff00ff81f7ffe3ffc0ff0"},t:{t:25,l:2,w:14,h:25,m:"y0a09200a09200a09202b082f043102330a09160b0a0918090a0918090a0918090a0918090a0918090a09180702"},u:{t:20,l:1,w:16,h:20,m:"y210825042702291e0b20092009200920091e09021e09021a0b0429292929"},v:{t:20,l:0,w:18,h:20,m:"y07220d1c1316191006190a0c190414151a0f200920091a0f14150c190406190a191013160d1c0722"},w:{t:20,l:0,w:18,h:20,m:"y0f1a2108292914151a0f1415101306100b0e100b0e10130614151a0f1415292921080f1a"},x:{t:20,l:1,w:16,h:20,m:"bf00f781e781e3c3c3c3c1e781e780ff00ff007e007e00ff00ff01e781e783c3c3c3c781e781ef00f"},y:{t:20,l:0,w:19,h:27,m:"y05320728090b24090f200902111a0b0611120d020a0f0c0f040e0f041106121b0a14150e1213120e13160a111c0611200211240f280b2c07300532"},z:{t:20,l:1,w:16,h:20,m:"b7fff7fff7fff7fff001f003e007c00f801f003e007c00f801f003e007c00f800ffffffffffffffff"},"~":{t:26,l:0,w:18,h:6,m:"b1f81c07fc1c0ffe3c0f1ffc0e0ff80e07e00"},"!":{t:27,l:6,w:5,h:27,m:"y210a0d210a0d210a0d210a0d210a0d"},"@":{t:27,l:0,w:18,h:27,m:"y0a090a1308060d061b04040f041f02020b082302090a0912090b0a071607090c071607090c091209090e1f02090c1f040b0a210202090a23020b2209040f1a0b0433082d020c2704121d08"},"#":{t:27,l:0,w:18,h:27,m:"y200906090c090c170c09061d0c2b062908290e1b06090e150c090e0706090c090e0c090c0906090c090c170c09061d0c2b062b06290e1b06090e150c090e07060922"},$:{t:27,l:0,w:18,h:28,m:"b01e00001e0000ffc003fff007fff807fff80f9e7c0f1e3c0f1e000f1e000f9e0007fe0003fe0001ff80007fe0001ff0001ff8001e7c001e3c001e3c0f1e3c0f9e7c07fff807fff803fff000ffc0001e00001e000"},"%":{t:27,l:0,w:18,h:27,m:"y040b28020f2007131a0b070607160f0706071213130e1304020f0c1308040b0a130c1413101013140c130a0b0408130c0f0204130e1313120706070f160706070b1a1307200f02280b04"},"^":{t:27,l:0,w:18,h:15,m:"b00c00001e00001e00003f00007f80007f8000ffc001ffe001f3e003e1f007c0f80780780f003c0f003c0600180"},"&":{t:27,l:0,w:18,h:27,m:"b03f0000ffc001ffe003ffe007e1f007c0f00781e00383e003c7c003df8001fe0000fc0001f80003f80007fc3c07be3c0f9e3c0f0f3c0f0fbc0f07b80f03f80f83f807c1f007fff003fff801fffc007f3c0"},"*":{t:26,l:0,w:18,h:18,m:"b01e00001e00001e00001e00041e08079e780ffffc0ffffc03fff000ffc0003f00007f8000ffc000f3c001e1e003e1f001c0e000c0c00"},_:{t:-3,l:-1,w:21,h:3,m:"x2b2b2b"},"+":{t:25,l:0,w:18,h:21,m:"y1009121009121009121009121009121009121009122b2b2b2b100912100912100912100912100912100912100912"},"`":{t:27,l:3,w:12,h:11,m:"bff00ff007f803f801fc00fc007e003e001f000f00070"},"-":{t:17,l:0,w:18,h:4,m:"x25252525"},"=":{t:21,l:0,w:17,h:12,m:"x232323232222222223232323"},'"':{t:27,l:2,w:14,h:9,m:"y1313131313121212121313131313"},"'":{t:27,l:6,w:5,h:12,m:"y1919191919"},"(":{t:27,l:4,w:10,h:27,m:"y160d141017100c1f0c08270806110a1106040d160d04020b1e0b020b220b092609072a07"},")":{t:27,l:4,w:10,h:27,m:"y072a070926090b220b020b1e0b02040d160d0406110a11060827080c1f0c101710160d14"},"{":{t:27,l:0,w:17,h:27,m:"y160918160918160918160918140d16101512082708042f040215081702020d180f020b220b092609092609092609092609092609092609"},"}":{t:27,l:0,w:17,h:27,m:"y0926090926090926090926090926090926090b220b020d180f020215081702042f04082708101512140d16160918160918160918160918"},"[":{t:27,l:2,w:14,h:27,m:"y37373737092609092609092609092609092609092609092609092609092609092609"},"]":{t:27,l:2,w:14,h:27,m:"y09260909260909260909260909260909260909260909260909260909260937373737"},"<":{t:26,l:0,w:18,h:25,m:"x20051e071a0b180d140f02120f040e0f080c0f0a080f0e060f10020f140f160b1a0f16020f14060f10080f0e0c0f0a0e0f08120f04140f02180d1a0b1e072005"},">":{t:26,l:0,w:18,h:25,m:"x0520071e0b1a0d18020f14040f12080f0e0a0f0c0e0f08100f06140f02160f1a0b160f140f02100f060e0f080a0f0c080f0e040f12020f140d180b1a071e0520"},"|":{t:27,l:7,w:4,h:34,m:"y45454545"},":":{t:20,l:5,w:7,h:20,m:"x0f0f0f0f0f0f0e0e0e0e0e0e0e0e0f0f0f0f0f0f"},";":{t:20,l:2,w:13,h:27,m:"y32052e092a0d260f022211041e13060d0e15080d0e130a0d0e110c0d0e0f0e0d0e0d100d0e0b120d0e0914"},".":{t:6,l:5,w:7,h:6,m:"x0f0f0f0f0f0f"},",":{t:7,l:2,w:13,h:14,m:"b03f803f807f807f80ff00fe01fc01f803f003e007c007800f000e000"},"\\":{t:27,l:1,w:16,h:27,m:"y07300b2c0f28132404132008131c0c131810131414131018130c1c13082013042413280f2c0b3007"},"?":{t:27,l:0,w:18,h:27,m:"y0c0922080d22060f22041122020d2802092c0b200d09220d091409060d09120b060d09100d060d0b0c0f060d02090c0b0a0d020d060b18021b1a04171c06131e0a0b22"},"/":{t:27,l:1,w:16,h:27,m:"y30072c0b280f24132013041c130818130c1413101013140c131808131c04132013240f280b2c0730"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["12-04"]={h:36,w:24,g:{0:{t:36,l:0,w:24,h:36,m:"y1421140c310c063d0604410402450202151c1502020d2c0d020d300d0b340b0b340b0b340b0b340b0b340b0b340b0b340b0b340b0d300d020d2c0d0202151c1502024304044104083b060c310c142114"},1:{t:36,l:4,w:15,h:36,m:"y0e0d2e0c0f2e0a0f300a0d32080d34060f34040f36040d38020d3a0d3c4949494949"},2:{t:36,l:1,w:22,h:36,m:"x0c130e061d0a022506022704022902020d0e0f020207160f02031c0d220b220b220b220b200d200b021e0d021a0f04180f0614110812110a0e110e0c11100a0f14080d18060d1a040d1c040b1e020b20020b200209220b220b222d2d2d2d2d"},3:{t:36,l:0,w:24,h:36,m:"x2d042d042d042d042d041e0f041c0f061a0f08180f0a160f0c140f0e120f10100f120e0f140c15100c1b0a0c1d080c1f061c1104200f02240b02240d260b260b260b260b240d240d220d02031e0f020b1211042b062b06270a02210e0a1314"},4:{t:36,l:0,w:24,h:36,m:"y2a0f102613102217101e1b101a1f101615040b101215080b100e150c0b100a15100b100615140b100215180b10131c0b100f200b100b240b10071a29031e292029202920292e0b102e0b102e0b102e0b102e0b10"},5:{t:36,l:2,w:20,h:36,m:"x022502022502022502022502022502020b1c020b1c02091e02091e02091e0b1e0b1e17121d0c2108230625041411041a0d021c0b021c0d1e0b1e0b1e0b1e0b1e0b1c0d1c0b021a0d02180d0414110410130621081d0c19101316"},6:{t:36,l:0,w:24,h:36,m:"y281110201f0a1c25081a2906162f0414190a11021019120d020e19160b020c1b160d0a0d040b1a0b080d060b1a0b060d080b1a0b040d0a0b1a0b020d0c0b1a0b0d0e0b1a0b0b100d160d09140b160b0207160d120d02051a0f0a0f04031c2704202306221f0826170c2a0f10"},7:{t:36,l:0,w:24,h:36,m:"y0b3e0b3e0b3e0b3e0b3e0b28170b221d0b1e210b1a250b16290b1415160b12111c0b0e11200b0c11220b0a0f260b080f280b060f2a0b020f2e19301732153413360f3a0b3e"},8:{t:36,l:0,w:24,h:36,m:"b00ff0007ffe01ffff83ffffc3ffffc7f81fe7e007e7c003e7c003e7c003e3e007c3f00fc1fc3f80ffff007ffe001ff8003ff8007ffe01ffff03fc3f83f00fc7e007e7c003ef8003ff8001ff8001ff8001ff8001ffc003f7e007f7f81fe7ffffe3ffffc1ffff807ffe001ff00"},9:{t:36,l:0,w:24,h:36,m:"y100f2a0c1924081f2206232004271c03040f0a0f1a05020d120d1607020b160b14090d160d100b0b1a0b0e0d0b1a0b0c0d020b1a0b0a0d040b1a0b080d060b1a0b060d080b1a0b020f0a0d161b0c020b16190e020d121712040f0a1914042f1606291a08231e0c1b22101128"},A:{t:36,l:0,w:24,h:36,m:"y40093811301926231e2b162f040e2f0c062f143514210a0b1419120b140f1c0b140f1c0b1419120b14210a0b143514062f140e2f0c162f041e2b2623301938114009"},B:{t:36,l:0,w:24,h:36,m:"x230e270a29082b062d040b1411020b180d020b1a0d0b1c0b0b1c0b0b1c0b0b1c0b0b1a0d0b1a0b020b160f022d042b06270a2b062d040b160f020b180d020b1a0d0b1c0b0b1c0b0b1c0b0b1c0b0b1c0b0b1a0d0b180d020b160f022d042d042b06270a230e"},C:{t:36,l:1,w:21,h:36,m:"y1819181029100c310c083908063d0604151617040211241102020d2c0d020d300d0b340b0b340b0b340b0b340b0b340b0d300d020f280f02020f280f02040d280d04060b280b06080928090838050c"},D:{t:36,l:1,w:21,h:36,m:"y49494949490b340b0b340b0b340b020b320b020b300b02020d2e0b02040d2a0d02040f260d04060f220f0408111a11060a151013080c330a0e2f0c122710161f141c131a"},E:{t:36,l:1,w:21,h:36,m:"x2b2b2b2b2b0b200b200b200b200b200b200b200b200b200b20270427042704270427040b200b200b200b200b200b200b200b200b200b200b202b2b2b2b2b"},F:{t:36,l:3,w:18,h:36,m:"y49494949490b140b200b140b200b140b200b140b200b140b200b140b200b140b200b140b200b140b200b140b200b3e0b3e0b3e"},G:{t:36,l:0,w:23,h:36,m:"y161b181029100c310c0a350a083b060613161506040f221104020f280f02020d2c0d02020b300b020d300d0b180b120b0b180b120b0b180b120b0b180b120b0b180b120b0b180b120b020b160b120b020d1427020d142502040b14250206091425020a05142502"},H:{t:36,l:1,w:22,h:36,m:"y49494949491e0b201e0b201e0b201e0b201e0b201e0b201e0b201e0b201e0b201e0b201e0b201e0b204949494949"},I:{t:36,l:3,w:18,h:36,m:"y0b340b0b340b0b340b0b340b0b340b0b340b49494949490b340b0b340b0b340b0b340b0b340b0b340b3e0b"},J:{t:36,l:3,w:17,h:36,m:"y300d0c3011083015043017023017023a0f3e0b3e0b3e0b3e0b3e0b3a0f47024702450443063d0c"},K:{t:36,l:-1,w:26,h:36,m:"y49494949491c111c1a151a181918161d16140f040f14120f080f12100f0c0f100e0f100f0e0c0f140f0c0a0f180f0a080f1c0f08060f200f06040f240f04020f280f020f2c0f0d300d0b340b093809073c07054005034403"},L:{t:36,l:0,w:23,h:36,m:"y49494949493e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b"},M:{t:36,l:0,w:24,h:36,m:"y49494949490f3a17321f2a0421240a231c121f181a17181a1718121f180a231c0421241f2a17320f3a4949494949"},N:{t:36,l:1,w:22,h:36,m:"y4949494949153402173006192a0c172610192014191c1a17181e191224170e2819082e170432174949494949"},O:{t:36,l:0,w:24,h:36,m:"y1a17181225120e2d0e0a350a0839080615161504040f240f04020d2c0d02020b300b020d300d0b340b0b340b0b340b0b340b0d300d020b300b02020d2c0d02040f240f0406151615040839080a350a0e2d0e1225121a151a"},P:{t:36,l:0,w:23,h:36,m:"y49494949490b160b1e0b160b1e0b160b1e0b160b1e0b160b1e0b160b1e0b160b1e0b160b1e0b160b1e0b160b1e0d120d1e020b100d20020f0a0f20042322042322061f240a17280e0f2c"},Q:{t:36,l:-1,w:27,h:36,m:"y16191a0e27140a2f1008350c06390a04151415080211200f08020d280d060d2c0b060b1a05100d040b1a07100b040b1a0b0c0b040b1a0d0a0b040b1a11060b040d1813020d04020d1a1b0602111819060415161308063d06083d040c3b0210270211161b0c0d3e0b420744054603"},R:{t:36,l:0,w:23,h:36,m:"y49494949490b160b1e0b160b1e0b160b1e0b160b1e0b160b1e0b160f1a0b1613160b1617120d121d0e020b120b02150a020f0a0d06170604230a170204211015061d16110a171c0d0e0f240942074603"},S:{t:36,l:1,w:22,h:36,m:"b00fe0003ff800fffc01fffe03ffff03f83f07e01f87c00f87c00f87c00007c00007e00003e00003f80001fe0000ff80007fe0003ff8000ffc0001fe00007f00003f80001f80000fc00007c00007cf8007cf8007cfc00fcfe01f87f03f87ffff03ffff01fffe007ff8001fe00"},T:{t:36,l:0,w:24,h:36,m:"y0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e49494949490b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e"},U:{t:36,l:0,w:23,h:36,m:"y3b0e3f0a410843064504380f023a0d023c0d3e0b3e0b3e0b3e0b3e0b3e0b3c0d3c0d3a0d02380f024504450443063f0a3b0e"},V:{t:36,l:-1,w:26,h:36,m:"y03460b3e13361b2e232602291e0a291612290e1a290622272a1f32173a0f3a0f32172a1f22271a27081227100a271802272023261b2e13360b3e0346"},W:{t:36,l:0,w:24,h:36,m:"y212833163f0a4949202936132e1b28212023061c1f0e1c17161c17161c1f0e20230628212e1b3613202949493f0a33162128"},X:{t:36,l:0,w:24,h:36,m:"y4405053c0909340d0d2c11112415151c1702041514170608150c170a0c1504170e102712141f1618171a18171a141f161027120c1504170e08150c170a0415141706151c17021124150d2c1109340d053c094405"},Y:{t:36,l:0,w:23,h:36,m:"y054409400d3c1138153404153008152c0c1528101524143518311c2d183114351015240c152808152c041530153411380d3c09400544"},Z:{t:36,l:2,w:20,h:36,m:"y0b340b0b300f0b2c130b28170b241b0b201f0b1c15040b0b1815080b0b14150c0b0b1015100b0b0c15140b0b0815180b0b04151c0b1f200b1b240b17280b132c0b0f300b0b340b3e0b"},a:{t:27,l:1,w:21,h:27,m:"x0c150a081d06062104042502020f0c0d02020b120d020b140b200b200b200b0e1d082306250427020d120b020b140b0b160b0b160b0b160b0b140d0b120f0d0e11020d0a13022904270617040b0a0f080b"},b:{t:39,l:0,w:24,h:39,m:"y4f4f4f4f4f1e0f0e11041c0d160d041a0d1a0d021a0b1e0b02180d200b180b220b180b220b180b220b180b220b180b220b180d1e0d1a0d1a0d021a0f160f021a130e11041c2f041e2b0620250a241f0c2a1312"},c:{t:27,l:1,w:21,h:27,m:"y1213120c1f0c0a2508062b06042f04040f121102020d1a0d02020b1e0d0d1e0d0b220b0b220b0b220b0b220b0b220b0d1e0d020d1a0d02020d180f02040b180d040609180b0608071809080c0318030e"},d:{t:39,l:0,w:24,h:39,m:"y2a1312241f0c2027081e2b061c2f041a130e11041a0f160f021a0d1a0d02180d1e0d180b220b180b220b180b220b180b220b180b220b180b220b1a0b1e0b021a0d1a0d021c0d160d041c110e0f064f4f4f4f4f"},e:{t:27,l:1,w:22,h:27,m:"x100f0e0a190a081d08062106042504040d0c0f02020d120b02020b140b020209180b0b180b2d2d2d2d2d0b220b220b22020b20020b20020d1e040f0c0d020427020625020821040c1b0610110c"},f:{t:39,l:2,w:19,h:39,m:"y180b2c180b2c180b2c180b2c180b2c180b2c180b2c0c430847044b044b024d020d0a0b2c0d0c0b2c0b0e0b2c0b0e0b2c0b0e0b2c0b0e0b2c0b0e0b2c"},g:{t:27,l:0,w:23,h:36,m:"y1013260a1f2008231207060627100904042b0e0b0202110e110c0b02020b1a0b0c0b020b1e0b0c0b0b1e0b0e090922090e090922090e090922090e090922090e090922090e0902091e09100902091e090e0b040b160b100902040f0e0f0e0b0247024504430641083d0c"},h:{t:39,l:2,w:20,h:39,m:"y4f4f4f4f4f1c0d261a0d281a0b2a180b2c180b2c180b2c180b2c180b2c180d2a180f281a351a351c331e31222d"},i:{t:39,l:5,w:13,h:39,m:"y180b2c180b2c180b2c180b2c180b2c180b2c0f0a0b2c0f0a0b2c0f0a370f0a370f0a370f0a370f0a37"},j:{t:39,l:5,w:14,h:48,m:"y560b560b560b180b340b180b340b180b340b180b340b0f0a0b320d0f0a0b300d020f0a47020f0a45040f0a45040f0a43060f0a3f0a"},k:{t:39,l:0,w:23,h:39,m:"y4f4f4f4f4f2a0f16281314261712241b10220f020f0e200f060f0c1e0f0a0f0a1c0f0e0f081a0f120f06180f160f04180d1a0f02180b1e0f1809220d1807260b18052a0918032e074a054c03"},l:{t:39,l:5,w:14,h:39,m:"y430c47084b044d024d02400f420d440b440b440b440b440b440b440b"},m:{t:27,l:0,w:25,h:27,m:"y373737373704092a02072e092e092e0b2c37373702350235020b2a092e092e092e0b2c373702350433082f"},n:{t:27,l:1,w:22,h:27,m:"y3737373737060d24040d26020d28020b2a0b2c0b2c0b2c0b2c0b2c0b2c0d2a020d28023504330631082f0c2b"},o:{t:27,l:0,w:24,h:27,m:"b00ff0003ffc007fff01ffff81fc3f83f00fc7e007c7c003e7c003efc003ff8001ff8001ff8001ff8001ff8001ff8001ff8001ffc003e7c003e7c003e7e007c3f00fc1fc3f80ffff007ffe003ffc000ff00"},p:{t:27,l:0,w:24,h:36,m:"y494949494904110e1116040d160d16020d1a0d14020b1e0b140b220b120b220b120b220b120b220b120b220b120b220b120d1e0d12020b1c0d14020f160f1404110e1116042f16062b180a231c0e1b20121324"},q:{t:27,l:0,w:24,h:36,m:"y1411240e1d1e0a231c062b18042f1604110e1116020f180d14020d1c0b140d1e0d120b220b120b220b120b220b120b220b120b220b120b220b12020b1e0b14020d1a0d14040d160d1604110e11164949494949"},r:{t:27,l:2,w:19,h:27,m:"y3737373737060d2404092a02092c02092c092e092e092e0b2c0d2a021124021124040f24060d240a0924"},s:{t:27,l:1,w:22,h:27,m:"b01ff0007ffe01ffff03ffff03f03f87e01f87c00f87c00007c00007e00003f80003ff8001fff8007ffe001fff0000ff80001f800007c00007c00007cf8007cfc00fc7e03f87ffff83ffff01fffc003fe00"},t:{t:35,l:2,w:19,h:35,m:"y100b2c100b2c100b2c100b2c100b2c04390a023f060241040243024502100b200d100b200d100b220b100b220b100b220b100b220b100b220b100b220902100b200b02"},u:{t:27,l:1,w:22,h:27,m:"y2d0a3106330435023502280f2a0d2c0b2c0b2c0b2c0b2c0b2a0b022a0b02280d02260d04240d063737373737"},v:{t:27,l:-1,w:26,h:27,m:"y0334092e0f2815221b1c21160621100c210a1221041a1d201726112c0b2c0b261120171a1d1221040c210a06211021161b1c15220f28092e0334"},w:{t:27,l:0,w:24,h:27,m:"y0f282116310637371225280f22151c1b161d0416150c160f12160f1216150c161d041c1b2215280f12253737310621160f28"},x:{t:27,l:0,w:25,h:27,m:"y033203052e050926090b220b0f1a0f11161102130e130206110a110608110611080c1f0c0e1b0e121312140f141213120e1b0e0c1f0c081106110806110a110602130e13021116110f1a0f0b220b092609052e05033203"},y:{t:27,l:-1,w:26,h:36,m:"y034607380b0b340b0f300b132a0d0215240f06151c11020a151413040e150e1306121506150816270c1a1f101e19121e15161a151a16151e1215220e15260a152a06152e02153213360f3a0b3e07420346"},z:{t:27,l:2,w:20,h:27,m:"x022702270227022702271c0d1a0d02180d04160d06140d08120d0a100d0c0e0d0e0e0b100c0b120a0d12080d14060d16040d18020d1a020b1c0d1c2929292929"},"~":{t:39,l:-1,w:26,h:9,m:"b03c002000ff007001ffc0f803fff9fc07fffff80fe3fff007c0ffe003803fc001000f000"},"!":{t:39,l:8,w:7,h:39,m:"y1b280d31120d31120d31120d31120d31120d1b280d"},"@":{t:40,l:0,w:25,h:40,m:"y0e0918170c0a0d122306061110270404130e2b0204110e2d02020d140d140f020b16091a0d0d16091c0b0b18091c0b0b1a091a0b0b1a0d120d020b182d020b182b040b182b040d162d020d162f020d360d020f360b040f340b0417280f0649020a45020c41041239061a2b0c"},"#":{t:39,l:0,w:24,h:39,m:"y360314031c0312090a0d1609120902151609121f16090829163306142b100a2f162b060916230e09161f1209160f08091209120505120912090a0d1609121f160910211609062b163108102d12063316290809161f1209161f1209160d0a0912031c03140336"},$:{t:39,l:0,w:25,h:39,m:"y100d1c07100c15180b0c0a19160d0a081d140d0a081f120f08060d080d160b08060b0c0d160b06060b0e0b160b06060b0e0b160b060609120b1609064f4f4f4f4f0609140d120906060b140b100b06060b140d0e0b06060b140d0c0d06080f100d080d08080f1021080a0d121d0a0c0b14190c100716150e300d12"},"%":{t:38,l:0,w:24,h:38,m:"y080b3a04132c0b0217280d1b2211090a091e15090a091a1504090a091615081b14130c02171213100413101314080b1015161e151a1c131e1813100b08141310130410151017020c15121b081516090a0906131a090a0902131e090a0911221b0f2617020b2c13043a0b08"},"^":{t:39,l:0,w:24,h:20,m:"b001800003c00007e00007e0000ff0001ff8001ff8003ffc003ffc007ffe00ffff00fe7f01fc3f83f81fc3f00fc7e007efc003ff8001f70000e200004"},"&":{t:39,l:0,w:24,h:39,m:"b00fe0003ff800fffc01fffe03ffff03f83f87e01f87e00f87c00f87c00f87c00f87c01f03e03f03e07e03f0fc01f3f801fff000ffe0007f80007f0000ff0001ff0003ff81f7efc1f7c7c1f7c7e1ff83f1ff81f9ef81f9ef80ffef807fefc07fc7e03fc7f81f83ffffc3ffffc1ffffe07ffbf01fe3f"},"*":{t:38,l:0,w:24,h:25,m:"b003c00003c00003c00003c00003c00003c00203c04783c1e7f3cfe7ffffeffffffffffff1ffff801ff8000ff0000ff0001ff8003e7c007e7e00fc3f00f81f01f81f80f00f00700e0020040"},_:{t:-4,l:-1,w:27,h:5,m:"x3737373737"},"+":{t:33,l:1,w:22,h:27,m:"y160b16160b16160b16160b16160b16160b16160b16160b163737373737160b16160b16160b16160b16160b16160b16160b16160b16160b16"},"`":{t:36,l:4,w:16,h:14,m:"bffc0ffc0ffe07fe03ff01ff00ff807f803fc01fc00fe007e003f001f"},"-":{t:17,l:1,w:22,h:7,m:"x2d2d2d2d2d2d2d"},"=":{t:28,l:1,w:22,h:17,m:"x2d2d2d2d2d2c2c2c2c2c2c2c2d2d2d2d2d"},'"':{t:36,l:3,w:17,h:11,m:"y1717171717171616161616171717171717"},"'":{t:36,l:9,w:6,h:15,m:"y1f1f1f1f1f1f"},"(":{t:39,l:5,w:14,h:39,m:"y1e151c182116122b120e330e0c370c0a1512170806131e13060411261104020f2c11020f320f0d360d0b380d093c0b093e09"},")":{t:39,l:5,w:14,h:39,m:"y093e09093c0b0b380d0d360d0f320f020f2c1102041126110406131e13060a151217080c370c0e330e122b121623161e151c"},"{":{t:39,l:1,w:22,h:39,m:"y220b22220b22220b22220b22220b22200f20200f20102f10083d0a0621022106042106210402210a2102020f2c1102020b360b020d360d0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b"},"}":{t:39,l:1,w:22,h:39,m:"y0b3c090b3c090b3c090b3c090b3c090b3c090b3c090d380b020b380902020f2e0f0202210a210204210621040621022106083f080e2f12200f20200f20220b22220b22220b22220b22220b22"},"[":{t:39,l:3,w:18,h:39,m:"y4f4f4f4f4f0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b"},"]":{t:39,l:2,w:19,h:39,m:"y0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b4f4f4f4f4f"},"<":{t:37,l:0,w:25,h:35,m:"x30032c072a09260d240f20131e13021a130618130814130c12130e1011120c13140a111806131a04111e13200f24112202131e06111c0813180c11160e131210131014110e16130a1a11081c13041e1302220f02240d022809022a07022c0502"},">":{t:37,l:0,w:25,h:35,m:"x0330072c092a0d260f24132002131e06131a0813180c13140e131212111014130c16130a1a13061c13042013221120131e13021a130618130814130c12130e0e13120c131408131806131a02131e132011220d260b28072c052e"},"|":{t:39,l:9,w:5,h:48,m:"y6161616161"},":":{t:27,l:7,w:9,h:27,m:"y111611111611111611111611111611111611111611111611111611"},";":{t:27,l:2,w:19,h:38,m:"y4a034607420b3e0f3a1336173219022e1b042a1d06261f0811161d0a11161b0c1116190e1116171011161512111613141116111611160f1811160d1a"},".":{t:8,l:7,w:9,h:8,m:"x1313131313131313"},",":{t:8,l:2,w:19,h:19,m:"y240320071c0b180f141310170c1902081b04041d061f081d0a1b0c190e17101512131411160f180d1a"},"\\":{t:39,l:2,w:20,h:39,m:"y034c09460d42133c1738021b32061d2c0c1b28121b22161b1e1c1b18201d12261b0e2c1b08301b0436193a15400f46094a05"},"?":{t:40,l:0,w:25,h:40,m:"y0e0d360a113608133606153604173604173602153a020f400d440d360f0b380f0b200b0e0f0b1e0d0e0f0b1c0f0e0f0b1a110e0f0b18130e0f0d14150e0f020d100f160f020f0a112602272804232a061f2c081b2e0a17300e0d36"},"/":{t:39,l:2,w:20,h:39,m:"y4c034609420d3c133817321b022e1908281b0c221b121e1b16181b1c141b200e1b26081d2a041b301936153a0f400b44054a"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["12-05"]={h:45,w:30,g:{0:{t:45,l:0,w:31,h:45,m:"y1a251c1039120c430c084b08064f06045304021b201d020211361102020d3c0f02020d3e0f0d420d0d420d0d420d0d420d0d420d0d420d0d420d0d420d0d420d0d420d0d420d0f3e0d02020d3e0d020211361102021b241704045304064f06084b080c430c1239101c251a"},1:{t:45,l:6,w:18,h:45,m:"y12113810113a0e113c0c113e0a133e0a1140081142061144041146041146021148114a5b5b5b5b5b5b"},2:{t:46,l:1,w:28,h:46,m:"y4a1306112e19060f2c1d040f2a21040f2823020f2825020f2613080d020d26110c0d020d24110e0d0f240f100d0f220f120d0d220f140d0d220d160d0d200f160d0d1e0f180d0d1e0d1a0d0d1c0f1a0d0d1c0d1c0d0f180f1c0d020f140f1e0d0211100f200d04110a13200d042b220d0627240d0823260d0a1f280d0c192c0d120f3c"},3:{t:45,l:0,w:30,h:45,m:"x39043904390439043904390426130424130622130820130a1e130c1c130e1a131018131216131414131612131810131a101914101f0e10230a1025081027062415042813022c0f022e0d022e0f300d300d300d300d300d2e0f2e0f2c0f022a1102072211040d16170437063508330a2f0e0427120c171a"},4:{t:45,l:0,w:30,h:45,m:"y3611143215142e19142a1d142621142225141e1b020d141a1b060d14161b0a0d14121b0e0d140e1b120d140a1b160d14061b1a0d14021b1e0d1419220d1415260d14112a0d140d2e0d1409203305243328332833283328333a0d143a0d143a0d143a0d143a0d143a0d14"},5:{t:45,l:2,w:26,h:45,m:"x023102023102023102023102023102023102020d26020d26020d26020d260f260f260d280d281d182312270e2b0a2d082f0609121704201104240f02240f02260d02280d280d280d280d280d280d280d260f260d02240f022211022011041e11061a1506121b08290c270e23121f16171e"},6:{t:45,l:0,w:31,h:45,m:"y3215142c1f1026290c222f0a2033081c39061a1d0c1504161f121104141d181102121f1a0f021011020d1e0d020e11020f1e0f0a13040d220d0811080d220d06110a0d220d04110c0d220d02110e0d220d11100d220d0f120d220d0d140f1e0f0b180d1e0d02091a0f1a0f02071c111611020520111211040322130c1504262f06282b082a270a2c230c301b10341314"},7:{t:45,l:0,w:31,h:45,m:"y0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d341b0d2c230d28270d242b0d202f0d1c330d1a1b1a0d1619200d1417240d1215280d10132c0d0e132e0d0a13320d0813340d0613360d041338213a1d3e1b40194217441546114a0d4e"},8:{t:45,l:0,w:31,h:45,m:"x1415160e21100a290c082d0a06310804350604131013060211181104020f1c0f04020d200d04020d200d04020d200d04040d1c0d06040f180f06060f140f0806130c13080a2b0a0c250e0e2110121914101d120c250e0a290c081702150a06150c13060413121304040f1a0f04020f1e0f02020d220d020f220f0d260d0d260d0d260d0d260d0d260d0f220f020f1e1102111a11020217101502043704063306082f080a2b0a0e230e141714"},9:{t:45,l:0,w:31,h:45,m:"y161134101b300c232c0a272a082b28062f240304150a152005041112111e07021116111a09020f1a0f180b020d1e0f140d0f1e0f120f0d220d10110d220d0e11020d220d0c11040d220d0a11060d220d0811080d220d06110a0d220d02130c0f1e0d02130e020d1e1f10020f1a1f120211181b160411121d1804150a1f1a06371e0833200a2d240c2728101f2c161332"},A:{t:45,l:-1,w:32,h:45,m:"y5803500b481342193a2132292a312233061a330e1431160c351a042f020d1a2b0a0d1a23120d1a1b1a0d1a13220d1a0f260d1a191c0d1a21140d1a2b0a0d1a33020d1a043d1a0c391614390e1c3b0424372c2f34273c1f46154e0d5605"},B:{t:45,l:0,w:31,h:45,m:"y5b5b5b5b5b5b0d1a0b1e0d0d1a0b1e0d0d1a0b1e0d0d1a0b1e0d0d1a0b1e0d0d1a0b1e0d0d1a0b1e0d0d1a0b1e0d0d1a0b1e0d0d1a0b1e0d0d1a0b1e0d0d1a0b1e0d0f180b1e0d0f180b1e0d020f140f1a0f021110111a0d0202130a17160f0204331211020625020f0a13040823022b040a1f0627060e19082508120f121d0c34190e380f14"},C:{t:45,l:1,w:27,h:45,m:"y201b20182b181237120e3f0e0a470a084b08061b1a1b0604152a150404113211040211361102020d3c0f020f3e0f0d420d0d420d0d420d0d420d0d420d0f3e0f0f3e0f020f3a0f02021332130204113211040411321104060f320f06080d320d080c09320b0a460510"},D:{t:45,l:2,w:26,h:45,m:"y5b5b5b5b5b5b0d420d0d420d0d420d020d400d020d3e0d02020f3c0d02040d3a0f02040f380f02060f340f04061130110408112c11060a132611080c151e15080e1912190a103f0c1239101633121a2b161e231a261322"},E:{t:45,l:2,w:26,h:45,m:"x3535353535350d280d280d280d280d280d280d280d280d280d280d280d280d282f062f062f062f062f062f060d280d280d280d280d280d280d280d280d280d280d280d280d280d28353535353535"},F:{t:45,l:3,w:23,h:45,m:"y5b5b5b5b5b5b0d1a0d280d1a0d280d1a0d280d1a0d280d1a0d280d1a0d280d1a0d280d1a0d280d1a0d280d1a0d280d1a0d280d1a0d280d1a0d280d4e0d4e0d4e0d4e"},G:{t:45,l:0,w:29,h:45,m:"y1e1d20162f161237120e3f0e0c430c0a49080819181b08061526150604132e1304040f360f04020f3a0f02020f3c0d02020d3e0f0f3e0f0d1e0d180d0d1e0d180d0d1e0d180d0d1e0d180d0d1e0d180d0d1e0d180d0d1e0d180d020d1c0d180d020f1a0d160f0211182f02040f182f02060d182f02080b182f020a09182d040e05182d04"},H:{t:45,l:1,w:28,h:45,m:"y5b5b5b5b5b5b260d28260d28260d28260d28260d28260d28260d28260d28260d28260d28260d28260d28260d28260d28260d28260d285b5b5b5b5b5b"},I:{t:45,l:4,w:22,h:45,m:"y4e0d0d420d0d420d0d420d0d420d0d420d0d420d0d420d5b5b5b5b5b5b0d420d0d420d0d420d0d420d0d420d0d420d0d420d4e0d"},J:{t:45,l:4,w:22,h:45,m:"y3c0f103c150a3c17083c19063c1b043c1d024a0f024c0f4e0d4e0d4e0d4e0d4e0d4e0d4c0f4a0f025902570455065308510a4d0e"},K:{t:45,l:-1,w:33,h:45,m:"y5b5b5b5b5b5b2411262215242019221e1d201c211e1a1104111c181108111a16110c11181411101116121114111410111811120e111c11100c1120110e0a1124110c081128110a06112c110804113011060211341104113811020f3c110d400f0b440d09480b074c090550070354055803"},L:{t:45,l:1,w:28,h:45,m:"y5b5b5b5b5b5b4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d"},M:{t:45,l:0,w:30,h:45,m:"y5b5b5b5b5b5b13481942213a273406292c0c2b24122b1e18251e201d1e201d1e18251e122b1e0c2b24042b2c2932213a194213485b5b5b5b5b5b"},N:{t:45,l:1,w:28,h:45,m:"y5b5b5b5b5b5b19421d3e041d3a081f340c1f30121d2c161f261a1f22201d1e241f18281f142e1d10321f0a361f063c1d02401b5b5b5b5b5b5b"},O:{t:45,l:0,w:30,h:45,m:"y221920182b18143512103b100c430c0a470a08191a1908061528130604113211040211361102020f3a0f020f3e0f0d420d0d420d0d420d0d420d0d420d0d420d0f3e0f020f3a0f0202113611020411321104061528130608191a19080a470a0c430c103d0e143314182b18221920"},P:{t:45,l:0,w:29,h:45,m:"y5b5b5b5b5b5b0d1c0d260d1c0d260d1c0d260d1c0d260d1c0d260d1c0d260d1c0d260d1c0d260d1c0d260d1c0d260d1c0d260d1c0d260d1a0f260f180d28020d160f28020f140f2802130c112a042d2a06292c08252e0a21300e1934121138"},Q:{t:45,l:-2,w:34,h:45,m:"y1e1b22142f181037140c3d120a430e08470c0619181b0a0415261508040f301108020f360f06020d2003180d060f2005160f040d2207160d040d220b120d040d220d100d040d220f0e0d040d22130a0d040f2015060f04020d222506020f2223060411221d080415201b08061b18190a084b080a4d040e4b02104b162d06131e1d120f4e0d500b540756055803"},R:{t:45,l:1,w:28,h:45,m:"y5b5b5b5b5b5b0d1c0d260d1c0d260d1c0d260d1c0d260d1c0d260d1c0d260d1c11220d1c151e0d1c191a0d1a1f160f182312020d18270e020f140d06190c02130c11081b08042d0c1b040629121b082518170a211e130c1b241112112c0d52095605"},S:{t:45,l:1,w:27,h:45,m:"y420910100f240d0c0c172011080a1d1c130608211a1306062518150404271e0f0402110a111e0f02020f0e0f200d02020d120f1e0f0f140d200d0d160f1e0d0d180d1e0d0d180f1c0d0d1a0d1c0d0d1a0f1a0d0d1c0d180f0f1a0f160f020f1a0f120f02021118110e1102041316110a110404131829040611182706080f1a23080a0d1c1f0a0e0920190c3a0f12"},T:{t:45,l:0,w:30,h:45,m:"y0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e5b5b5b5b5b5b0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e"},U:{t:45,l:0,w:29,h:45,m:"y49124d0e510a5308550657044413044811024a0f024c0d024c0f4e0d4e0d4e0d4e0d4e0d4e0d4e0d4c0f4c0d024a0f02481102461104570455065308510a4d0e4912"},V:{t:45,l:-1,w:32,h:45,m:"y05560d4e15461d3e25362b3033280833201033181833102033082833302b3823401b48134813401b3823302b283320330818331010331808332033282b3025361d3e15460d4e0556"},W:{t:45,l:0,w:31,h:45,m:"y25363922471453085b5b1e3d362542193c1f34272c2f262d08222910222118221920222118222910262d082c2f34273c1f421936251e3d5b5b5308471439222536"},X:{t:45,l:0,w:31,h:45,m:"y035603074e070b460b0f3e0f133613172e171b261b021d1e1d02061b1a1b060a1b121b0a0e1b0a1b0e121b021b12162f161a271a1e1f1e2217221e1f1e1a271a162f16121b021b120e1b0a1b0e0a1b121b0a061b1a1b06021d1e1d021b261b172e171336130f3e0f0b460b074e07035603"},Y:{t:45,l:0,w:30,h:45,m:"y035807540b500f4c134817441b40041b3c081b380c1b34101b30141b2c18431c3f203b203b1c3f1843141b2c101b300c1b34081b38041b3c1b40174413480f4c0b5007540358"},Z:{t:45,l:2,w:26,h:45,m:"y4e0d0d3e110d3a150d36190d321d0d2e210d2a250d26290d221d040d0d1e1d080d0d1a1d0c0d0d161d100d0d121d140d0d0e1d180d0d0a1d1c0d0d061d200d0d021d240d27280d232c0d1f300d1b340d17380d133c0d0f400d4e0d4e0d"},a:{t:33,l:1,w:27,h:33,m:"x12170e0c2308082906062d04062f0204130e1102040f160d02040d1a0d2a0d2a0d2a0d2a0d12250c2b082f063104330213160d020f1a0d020d1c0d0d1e0d0d1e0d0d1c0f0d1c0f0d1a110f161311121502110c19023504330623020d0a1b060d10110a0d"},b:{t:48,l:0,w:29,h:48,m:"y6161616161612413101506220f1c1104220d200f04200d240f02200b280d021e0d280f1e0b2c0d1e0b2c0d1e0b2c0d1e0b2c0d1e0b2c0d1e0b2c0d1e0d280f200d240f02200f20110220111c11042215101704243706263308282f0a2a2b0c2e2310361516"},c:{t:33,l:2,w:26,h:33,m:"y1813181023100e290c0a2f0a0835060637060415141304040f1e1102020d260d02020b2a0b020d2a0d0b2e0b0b2e0b0b2e0b0b2e0b0b2e0b0d2a0d0d2a0d020d240f0202111c130202111c1104040f1c1104060d1c0f06080b1c0d080a091c090c10031c0510"},d:{t:48,l:0,w:29,h:48,m:"y3615162e23102a2b0c282f0a263308243706221512150420111c1104200f220f02200d260d021e0d2a0d1e0b2c0d1e0b2e0b1e0b2e0b1e0b2e0b1e0b2e0b1e0b2e0b1e0d2a0b02200b2a0b02200d260d02220d220d04220f1e0f042413121306616161616161"},e:{t:33,l:1,w:28,h:33,m:"x141114101b0e0c230a0a2708082b0606130a13040411120f04040f160f02040d1a0d02020d1c0d02020d1e0b02020d1e0d0d200d39393939390d2c0d2c0d2c020b2c020d2a020d2a020f28040f260411140f0206130e1102082f020a2b040c2706101f0a161310"},f:{t:48,l:2,w:25,h:48,m:"y1e0b381e0b381e0b381e0b381e0b381e0b381e0b381e0b381e0b381e0b3810510a570859045d045d025f020f0e0b380f100b380d120b380b140b380b140b380b140b380b140b380b140b380b140b38"},g:{t:33,l:1,w:28,h:44,m:"y1415300e211a070a0a29160b06082f120d040633100d0404370e0f02041312130e0f02020f1c110c0f02020d220d100d0d260d0e0d0d260d100b0b2a0b100b0b2a0b100b0b2a0b100b0b2a0b100b0b2a0b100b0b2a0b100b020b260b120b020b260b100d020d220b120b02040f1a0f100d0206111013100f0255045504530651084f0a4910"},h:{t:48,l:2,w:25,h:48,m:"y61616161616122112e220f30200f32200d34200b361e0d361e0d361e0d361e0d361e0d361e0f341e0f342011302041223f223f243d28392c35"},i:{t:48,l:6,w:17,h:48,m:"y1e0d361e0d361e0d361e0d361e0d361e0d361e0d361e0d36110e0d36110e0d36110e0d36110e43110e43110e43110e43110e43110e43"},j:{t:48,l:6,w:17,h:60,m:"y6e0b6e0b6e0b6e0b1e0d440b1e0d440b1e0d440b1e0d440b1e0d420d110e0d400d02110e0d3c1102110e5902110e5704110e5506110e5506110e510a110e4d0e"},k:{t:48,l:0,w:29,h:48,m:"y616161616161360f1c34131a321718301b162e1f142c23122a11041310281108130e26110c130c241110130a221114130820111813061e111c13041e0f2013021e0d24131e0b28111e092c0f1e07300d1e05340b1e0338095a075c055e03"},l:{t:48,l:6,w:18,h:48,m:"y5110570a5b065d045d045f02500f02520f540d540d560b560b560b560b560b560b560b560b"},m:{t:33,l:0,w:31,h:33,m:"y434343434343040b34020b360209380b380b380b380d3643434302410241043f020d34020b360b380b380b380d3643430241043f063d0a39"},n:{t:33,l:1,w:28,h:33,m:"y43434343434306112c060d30040d32020d34020b36020b360b380b380b380b380b380b380d360d36020d34020f320241043f063d083b0a391033"},o:{t:33,l:0,w:31,h:33,m:"y181318121f120e270e0a2f0a083308063706061310150604111a1104020f220f02020d260d02020b2a0b020d2a0d0d2c0b0b2e0b0b2e0b0b2e0b0b2e0b0b2e0b0b2e0b0d2a0d020b2a0b02020d260d02020f220d0404111c0f0404151213060635080833080a2d0c0e270e121f12181318"},p:{t:33,l:0,w:30,h:44,m:"y595959595959061312131c040f1e0f1a040d220d1a020d260d18020b2a0b180d2a0d160b2e0b160b2e0b160b2e0b160b2e0b160b2e0b160b2e0b160d2a0d16020b2a0b18020d260d18020f220f18040f1e0f1a041512151a06371c08331e0a2f200e2724121f2818132e"},q:{t:33,l:0,w:30,h:44,m:"y18132e121f280e27240a2f2008331e06371c041512151a040f1e0f1a020f220f18020d260d18020b2a0b180d2a0d160b2e0b160b2e0b160b2e0b160b2e0b160b2e0b160b2e0b16020b2a0d16020b2a0b18020d260d18040d220d1a040f1e0f1a061312131c595959595959"},r:{t:33,l:3,w:24,h:33,m:"y43434343434306112c040d32040b34020b36020b360b380b380b380b380b380d360f3402132e02132e04112e060f2e080d2e0c092e"},s:{t:33,l:1,w:27,h:33,m:"x1215100c210a082708062b06042d0604110e1104020f140f04020d180d04020d28020d28020d28020f26040f2404171c061f1208230c0c2308121f06181b04221302280d022a0d2a0d2a0d0d1e0d0d1c0f0f181113101302023104042f0406290808230c0e1712"},t:{t:43,l:3,w:24,h:43,m:"y120b3a120b3a120b3a120b3a120b3a120b3a02470e024b0a5106530455025502120b2a0f02120b2e0d120b2e0d120b300b120b300b120b300b120b300b120b300b120b2e0d120b2e0b02120b2c0d02120b2c0d02"},u:{t:33,l:1,w:28,h:33,m:"y350e390a3d063f043f044102320f02340f360d380b380b380b380b380b380b360b02360b02360b02340b04320d04300d062a1306434343434343"},v:{t:33,l:-1,w:32,h:33,m:"y0340093a0f34152e1b282122271c0429160a291010290a1629041c272221281b2e15340f340f2e15281b22211c2716290410290a0a2910042916271c21221b28152e0f34093a0340"},w:{t:33,l:0,w:30,h:33,m:"y0f341f242f143f0443430c37202330132a19241f1e21041a1f0a1a19101a13161a13161a19101a1f0a1e2104241f2a19301320230c3743433f042f141f240f34"},x:{t:33,l:0,w:29,h:33,m:"y033e030736070932090b2e0b0f260f112211151a15021516150206150e150608150a15080c1502150c102310121f12161716181318161716121f121023100c1502150c08150a150806150e15060215161502151a151122110f260f0b2e0b093209073607033e03"},y:{t:33,l:-1,w:32,h:44,m:"y035607480b0b440b0f400b133c0b17360d1b300f041b281102081b2015020c1b181704101b101906141b081b0818350c1c2d10202514241d1824191c201b1e1c1b22181b26141b2a101b2e0c1b32081b36041b3a1b3e174213460f4a0b4e07520356"},z:{t:33,l:2,w:26,h:33,m:"x023102023102023102023102023102240f02220f042011041e11061c11081c0f0a1a0f0c180f0e16110e141110121112120f14100f160e0f180c11180a111a08111c080f1e060f20040f2202112211240f263535353535"},"~":{t:49,l:-1,w:32,h:12,m:"b00f0000003fc00180fff001c1fffc03e3ffff07f3fffffff7ffffffeff07fffc7e01fff83c007ff018001fe000000780"},"!":{t:48,l:10,w:9,h:48,m:"y1b36113d14113d14113d14113d14113d14113d14113d14111b3611"},"@":{t:49,l:0,w:30,h:49,m:"y14091c1b100e0f16270a0a13122f06081510330406170e370204190e3702041114131415020f180d200f020d1a0b240d020d1a0b240d0d1c0b240d0d1c0d220d0d1e0d1e0d020d20111411020d1c37040d1c35060d1c35060f1a39020f1a3902020f440f0211440d0411420d04153c0f061d30110859020a57020e5104124b0618410a223110"},"#":{t:49,l:0,w:30,h:49,m:"y46031a3e0b100b2007180b08131e0918251e0916271e090e2f1e090435041e390c1637160e3b1a0435060b1a310e0b1a27180b1a1d0209180b1a130c09180b1803091609180b0e0d1e09180b04171e0918251e09122b1e0908351e3f061a391012371a08411a350a0b1a2d120b1a27180b1a19060918091c110e0918032207180342"},$:{t:48,l:0,w:31,h:48,m:"y160d22091412151e0d100e1b1c0f0e0c1f1a110c0c2118130a0a2516130a0a0f080f1a1108080f0c0f1c0d08080d100d1c0f06080d120b1e0d06060f120d1c0d06060f120d1c0d06060d160b1e0b066161616161060d180f160d06080d180d140d08080d180d140d08080d180f120d08080f180d100f080a13120f0e0d0a0a13140f0a0f0a0c1114250c0e0f16230c0e0f181f0e120b1a1b1014091c15143c0d18"},"%":{t:47,l:0,w:30,h:47,m:"y080f4804173a0b021b340f021b30131f2c150b0a0b2819090e09241904090e092019080b0a0b1e190a1f1a190e021b181912021b141916041712191a080f14191c2619202219241e19120f081a191217041817141b021419161b021019181f0c191c0b0a0b0a1720090e09061724090e090219260b0a0b172a1f13301b020f341b020b3a1704480f08"},"^":{t:49,l:0,w:29,h:25,m:"y280506260904220f0220131c15021a150416170614170810190a0c1b0c0a1b0e061d10041d121f141d161f14041d12061d100a1b0e0c1b0c10190a1417081617061a15041c15022013220f02260904280506"},"&":{t:49,l:0,w:31,h:49,m:"y401112100d20190e0c1716210a081f1025080625082b060627042f04042b02130a130402130823121102020f101d160f02020d16171a0f0f1817180f0d1c17180d0d1a1d140d0d1821120d0d180d02170e0d0d160f04170c0d0d140f0a150a0d0f100f0e17060d020f0c0f1415020f0211081116210204251a1f020423201904061f24170408192a190a1524210e0d1c2d362d361d040d361b0a0936151207360d1e03"},"*":{t:48,l:-1,w:32,h:31,m:"y1c0320180720120d2010111e120f160306120f140704140f0e0d02140f0c0f02140f0a13160f0615160f021702182106181f08330c2f102d122d122f10330c181f08182106160f021702160f0615140f0a13140f0c0f02140f0e0d02120f140704120f16030610111e120d201807201c0320"},_:{t:-5,l:-2,w:34,h:6,m:"x454545454545"},"+":{t:42,l:0,w:29,h:35,m:"y1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c4747474747471e0d1c1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c"},"`":{t:45,l:4,w:21,h:17,m:"y071c091a0b180d160f1411121310150e170c190a1b081d061f04041d02081b0c171013140f180b1c072003"},"-":{t:21,l:0,w:29,h:8,m:"x3b3b3b3b3b3b3b3b"},"=":{t:35,l:1,w:28,h:21,m:"x393939393939383838383838383838393939393939"},'"':{t:45,l:5,w:20,h:15,m:"y1f1f1f1f1f1f1f1e1e1e1e1e1e1f1f1f1f1f1f1f"},"'":{t:45,l:11,w:8,h:19,m:"y2727272727272727"},"(":{t:49,l:6,w:18,h:49,m:"y26172620251e1a2f1a163716123f1210450e0c1d121d0c0a1722170a08152a15080613321306041336130402133a1302133e131142110f460f0d4a0d0b4c0d0b4e0b"},")":{t:49,l:6,w:18,h:49,m:"y0b4e0b0b4c0d0d4a0d0f460f114211133e1302133a13020413361304061332130608152a15080a1722170a0c1d121d0c10450e123f121637161a2f1a20251e261726"},"{":{t:49,l:0,w:29,h:49,m:"y2c0d2a2c0d2a2c0d2a2c0d2a2c0d2a2c0d2a2c0d2a2a11282815262221200e470e0a4f0a085308062b042906042b082904022910270202133a1302020f420f02020d460d020f460f0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d"},"}":{t:49,l:0,w:29,h:49,m:"y0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0f460f020d460d02020f420f0202133a13020229102702042b082904062b0429060853080a4f0a0e470e2221202815262a11282c0d2a2c0d2a2c0d2a2c0d2a2c0d2a2c0d2a2c0d2a"},"[":{t:49,l:3,w:23,h:49,m:"y6363636363630d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d"},"]":{t:49,l:3,w:23,h:49,m:"y0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d636363636363"},"<":{t:46,l:0,w:31,h:44,m:"x3a053807340b320d2e112c1328172617022417042017081e170a1a170e1817101417141217160e171a0c171c08191e0617220417241728152a152a0217260417240817200a171e0e171a10171814171416171218190e1c170c1e170a22170624170428172a152e11300f320d360938073c03"},">":{t:46,l:0,w:31,h:44,m:"x053a07380b340d32112e132c17280217260417240817200a171e0e171a1017181417141617121a170e1c170c20170822170626150428172c132a152815022417042215081e170a1c170c1817101617121415161017180e171a0a171e08172006152402172602152802112c020f2e020b3202093402073602033a"},"|":{t:49,l:12,w:6,h:60,m:"y797979797979"},":":{t:33,l:9,w:12,h:33,m:"x191919191919191919191818181818181818181818181819191919191919191919"},";":{t:33,l:3,w:23,h:46,m:"y5a035607520b4e0f4a1346174219023e1b043a1d06361f0832210a151a230c151a210e151a1f10151a1d12151a1b14151a1916151a1718151a151a151a131c151a111e151a0f20151a0d22"},".":{t:10,l:9,w:12,h:10,m:"x19191919191919191919"},",":{t:10,l:3,w:23,h:23,m:"y2c032807240b200f1c131817141902101b040c1d06081f0804210a230c210e1f101d121b1419161718151a131c111e0f200d22"},"\\":{t:49,l:2,w:25,h:50,m:"y05600b5a0f5615501b4a1f4602234008213c0c233612213216232c1c212822212226231c2c211830231236210e3a2308402104461f4a1b501554115a0b5e07"},"?":{t:49,l:0,w:30,h:49,m:"y100f440c13440a1544081744061944041b44041b44021d4402134e02115011521140130f240d12130f220f12130f201112130f1e1312130f1e1312130f1c1512130f1a1712131116111a13020f14111c13021110111e1302150a1132042b34042b340627360823380a1d3c0c193e100f44"},"/":{t:49,l:2,w:25,h:50,m:"y60055a0b560f50154a1b461f4023023c210836230c3023122c211826231c2221221c232616232c1223300c233606233c0223401f461b4a15500f560b5a0560"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["12-06"]={h:54,w:36,g:{0:{t:54,l:0,w:37,h:54,m:"y222922164116104d100c550c085d08066106046504042124210402173c17020211481102020f4c0f02020f4c0f020f4e110f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f4e11114c0f02020f4c0f02021148110202173c15040421261f04046306066106085d080c550c104d10183f16242722"},1:{t:54,l:7,w:22,h:54,m:"y1415441415441215461015480e154a0e134c0c154c0a154e081550081352061552041554021556021358135a6d6d6d6d6d6d6d"},2:{t:55,l:1,w:34,h:55,m:"x1617180e2512082f0e04370a023b08023d06023d06021910170402131a1502020d241102020928110202052e110203320f360f360f360f360f360f3411340f023211023013022c15042a1506281706241908201b0a1e190e1a1b10181b12141b1612191a10191c0c19200c17220a152608152806152a06132c04132e041130021330021132021132020f341134113411344302430243024302430243024302"},3:{t:54,l:0,w:36,h:54,m:"x45044504450445044504450445043015042e15062c15082a150a28150c26150e2415102215122015141e15161c15181a151a16151e141520141d1814231214270e14290c142d08142f062a190630150432130436110236110238113a0f3a0f3a0f3a0f3a0f3a0f38113811380f02361102341302052e13040b24170413161b0641083f0a3d0c39103514082918101920"},4:{t:54,l:0,w:36,h:54,m:"y4413164017163c1b16381f163423163027162c2b16281f020f16241f060f16201f0a0f161c1f0e0f16181f120f16141f160f16101f1a0f160c1f1e0f16081f220f16041f260f161f2a0f161b2e0f1617320f1613360f160f3a0f160b263d072a3d032e3d303d303d303d303d480f16480f16480f16480f16480f16480f16480f16"},5:{t:54,l:3,w:30,h:54,m:"x043702043702023902023902023902023902023902020f2c020f2c020f2c020f2c020f2c020f2c020f2c020d2e0f2e0f2e1f1e27162d102f0e330a35083508091619062415042811042a11022c0f022c0f022c112e0f2e0f2e0f2e0f2e0f2e0f2e0f2c112c0f022a11022813022613042415042017061c1b06142108330a310c2d102b122716211c1924"},6:{t:54,l:0,w:37,h:54,m:"y3c171a362314302d102c350c283b0a263f0822450620230e17061c231615041a231a130418231e130216232211021215020f260f021015040f26110e15060f26110c15060f2a0f0a130a0f2a0f08130c0f2a0f06130e0f2a0f0413100f2a0f0213120f2a0f13140f2a0f11161126110f1811260f020d1c0f260f020b1e112211020920131e13020724131a1304052615161504032a170e17062e370830330a322f0c342b0e3627103a1f1440131a"},7:{t:54,l:0,w:37,h:54,m:"y0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f401f0f36290f322d0f2e310f2a350f26390f223d0f20211e0f1c1f240f1a1b2a0f18192e0f1617320f1219340f1017380f0e173a0f0c173c0f0a15400f0815420f04174427462548234a214c1d501b5219541756135a0d60"},8:{t:54,l:0,w:37,h:54,m:"y461116421b10100f20230c0c171a270a0a1b142d08081f122f0606230e310604270a150c15040429061312130402130813041116130202110e0f02111a1102020f121d1c1102020f121d1e1111141920110f1619220f0f1815240f0f1815240f0f1a11260f0f1a11260f0f1813260f0f1815240f0f1617240f111419220f020f121b2011020f101f1e0f0202110c1102111c0f0202130813040f1a11020429061116130204270a1310130406230e130c150408210e31060a1b142f060c17182b08100f1e270a3e230c421b10461314"},9:{t:54,l:-1,w:38,h:54,m:"y1a1340141f3a1027360e2b340c31300a333008372e06170e172a0304151615260504131a13240702131e132009021122111e0b020f260f1c0d020f2611180f11261116110f2a0f14130f2a0f1213020f2a0f1013040f2a0f0e13060f2a0f0c13080f2a0f0a130a0f2a0f06150c0f2a0d06150e11260f041510020f260f021512020f262314021122231602131e231804131a211c041516211e06190c23200841240a3d260c372a0e312e102b321621361c133e"},A:{t:54,l:-1,w:38,h:54,m:"y6805620b5a13521b4a23422b3a33323b2c3b06243b0e1c3b161439200c41200439020f20350a0f202d120f20251a0f201d220f20152a0f20132c0f201b240f20251a0f202d120f2037080f204d200449200c451c1643141e450a2645022e3f36373e2f46274e1f5815600d6805"},B:{t:54,l:0,w:36,h:54,m:"y6d6d6d6d6d6d6d0f1e0f240f0f1e0f240f0f1e0f240f0f1e0f240f0f1e0f240f0f1e0f240f0f1e0f240f0f1e0f240f0f1e0f240f0f1e0f240f0f1e0f240f0f1e0f240f0f1e0f240f0f1e0f240f0f1e0f240f111c0f240f020f1a132011021118132011021116171c11020213121b18130204150a2114150206410c1704062d023306082b042f080a27062d0a0e210a290c121910250e1611181d12441118"},C:{t:54,l:2,w:31,h:54,m:"y281d281e311e183d18144712104d100c550c0a590a08211c2108061b2c1b060417381704041340130402134413020211481102020f4c0f020f500f0f500f0f500f0f500f0f500f0f500f114c11114a1102021146130202153e170204153a170404153a170406133a150608113a13080a0f3a110a0c0d3a0d0e12073a0912"},D:{t:54,l:2,w:31,h:54,m:"y6d6d6d6d6d6d6d0f500f0f500f114e0f020f4c11020f4c11020f4c0f0202114a0f0204114611020411460f04061142110406133e130408133a13060a133613080a173015080c172a170a0e1b20190c101f141d0e124b101645121841141c391820311c2625222e1728"},E:{t:54,l:2,w:31,h:54,m:"x3d023d023d023d023d023d023d020f300f300f300f300f300f300f300f300f300f300f300f300f300f300f3037083708370837083708370837080f300f300f300f300f300f300f300f300f300f300f300f300f300f300f300f300f300f303f3f3f3f3f3f3f"},F:{t:54,l:4,w:27,h:54,m:"y6d6d6d6d6d6d6d0f1e0f320f1e0f320f1e0f320f1e0f320f1e0f320f1e0f320f1e0f320f1e0f320f1e0f320f1e0f320f1e0f320f1e0f320f1e0f320f1e0f320f1e0f320f1e0f320f5e0f5e0f5e0f5e"},G:{t:54,l:1,w:34,h:54,m:"y2621261c351c164116124912104d100e530c0a590a0a1f1c210808192c1908061536170604153c1504041342110402134611020211481102020f4c0f02114c1111220f1e0f0f240f1e0f0f240f1e0f0f240f1e0f0f240f1e0f0f240f1e0f0f240f1e0f0f240f1e0f11220f1e0f020f220f1c1102131e0f1c0f0204131c390204131c390206111c3902080f1c39020a0d1c37040c0b1c370410071c3704"},H:{t:54,l:2,w:32,h:54,m:"y6d6d6d6d6d6d6d2c0f322c0f322c0f322c0f322c0f322c0f322c0f322c0f322c0f322c0f322c0f322c0f322c0f322c0f322c0f322c0f322c0f322c0f326d6d6d6d6d6d6d"},I:{t:54,l:5,w:26,h:54,m:"y5e0f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f6d6d6d6d6d6d6d0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f5e0f"},J:{t:54,l:5,w:26,h:54,m:"y4a11124a170c4a190a4a1b084a1d064a1f044a21025813025c0f025c115e0f5e0f5e0f5e0f5e0f5e0f5c115c0f025813026b02690467066706630a610c5b12"},K:{t:54,l:-2,w:40,h:54,m:"y6d6d6d6d6d6d6d2a152e28192c261d2a2421282225262029241e150415221c150815201a150c151e181510151c161514151a141518151812151c151610152015140e152415120c152815100a152c150e081530150c061534150a041538150802153c150615401504134415021148150f4c130d50110b540f09580d075c0b05600903640768056a03"},L:{t:54,l:0,w:35,h:54,m:"y6d6d6d6d6d6d6d5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f"},M:{t:54,l:0,w:36,h:54,m:"y6d6d6d6d6d6d6d15581d50234a2b42333a0633340c352c1237241a2f242029242623242623242029241a2f241237240c352c063334333a2b42234a1d5015586d6d6d6d6d6d6d"},N:{t:54,l:1,w:34,h:54,m:"y6d6d6d6d6d6d6d1d50214c0223480623440a253e10233a1423361823321c252c2025282623242a23202e231c3225163625123c230e40230a44250448254e1f6d6d6d6d6d6d6d"},O:{t:54,l:0,w:36,h:54,m:"y2a1b28202f1e1a391a1643141249120e510e0c550c0a1f1c210808192c19080615381506041340130404114413020211481102020f4c0f02114c110f500f0f500f0f500f0f500f0f500f0f500f114c11020f4c0f02021148110204114413020413401304061538150608192c1b060a1f1c21080c550c0e510e124b101643141a391a202d20281d28"},P:{t:54,l:1,w:34,h:54,m:"y6d6d6d6d6d6d6d0f220f2e0f220f2e0f220f2e0f220f2e0f220f2e0f220f2e0f220f2e0f220f2e0f220f2e0f220f2e0f220f2e0f220f2e0f220f2e0f220f2e0f20112e111e0f30020f1c113002111a1130021316113204150e1532043534063334082f360a2b380e233c101f3e161344"},Q:{t:54,l:-2,w:40,h:54,m:"y241f2a1a3320163b1c1243180e4b140c4f120a5310081f1a1f0e06192a190c041534170a04133a130a0211421108020f28031a11081128051a0f080f2a09180f060f2a0b160f060f2a0d140f060f2a11100f060f2a130e0f060f2a150c0f060f2a19061106020f2a19041106020f2c290802112c270804132c210a04172a1f0a0619281b0c081f18250a0a5d060c5d040e5d02125b163b08151c310e13241f1a11600d620b640968056a03"},R:{t:54,l:1,w:34,h:54,m:"y6d6d6d6d6d6d6d0f220f2e0f220f2e0f220f2e0f220f2e0f220f2e0f220f2e0f220f2e0f22132a0f2217260f221b220f221f1e0f20251a111e2916020f1c2d1402111a0f041f1002131611081f0c04150e130e1f08043510210406311621082f1a1d0a2b20190e232815101f2e111613360f620b66076a03"},S:{t:54,l:2,w:32,h:54,m:"x1a1116141d1010250c0c2d080a310608350406370406150e1702041318110204111c1102111e11020f220f020f220f020f30020f30020f3002112e02112e04112c041528041726061922081b1e0a1d1a0c1f16101f1212210e161f0c1a1d0a1e1b082219062617042a15022c13022e110230113011320f320f0f240f0f240f11220f112011131e0f0202131a1102021516130204170c17040439040635060831080a2d0a0e250e121d12161516"},T:{t:54,l:0,w:36,h:54,m:"y0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e6d6d6d6d6d6d6d0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e"},U:{t:54,l:1,w:34,h:54,m:"y55185b125f0e630a6508650867065217045613045813025a11025c0f025c115e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5c115c0f025a1102581302561304521704670667066508630a5f0e5d105518"},V:{t:54,l:-1,w:38,h:54,m:"y09640f5e17561f4e27462f3e3736023d2e0a3b28123b201a3b18223b102a3b08323b3a33422b4a23521b5a135a13521b4a23422b3a33323b2a3b08223b101a3b18123b200a3b28023d2e37362f3e27461f4e17560f5e0964"},W:{t:54,l:0,w:37,h:54,m:"y29443f2e4f1e5b1265086d6d204d3a334a234e1f4627402d38353235062a350e2a2d162a251e2a1d262a251e2a2d162a350e3235063835402d46274e1f4a233a33204d6d6d65085b124f1e3f2e2944"},X:{t:54,l:0,w:36,h:54,m:"y056405095c090d540d114c11154415193c191d341d212c21042124210408211c21080c2114210c10210c21101421042114183d181c351c202d20242524281d28281d28242524202d201c351c183d18142104211410210c21100c2114210c08211c21080421242104212c211d341d193c19154415114c110d540d095c09056405"},Y:{t:54,l:0,w:35,h:54,m:"y056809640d60115c155819541d50214c0421480821440c214010213c1421381821341c51204d244928452449204d1c5118213414213810213c0c2140082144042148214c1d5019541558115c0d6009640568"},Z:{t:54,l:2,w:31,h:54,m:"y0f500f0f4c130f48170f441b0f401f0f3c230f38270f342b0f301f020f0f2c1f060f0f281f0a0f0f241f0e0f0f201f120f0f1c1f160f0f181f1a0f0f141f1e0f0f101f220f0f0c1f260f0f081f2a0f0f041f2e0f2d320f29360f253a0f213e0f1d420f19460f154a0f114e0f5e0f5e0f5e0f"},a:{t:40,l:2,w:32,h:40,m:"x16191210250c0c2d080a31060835040637040615101502041318110204111c0f0204111e0f320f320f320f320f320f182910310c350a37063b043d04151a0f02131e0f0211200f11220f0f240f0f240f0f22110f22110f2013111c15111a170211161902150c1f043d043d062b020f0a25040f0e1d080f12130e0f"},b:{t:58,l:0,w:35,h:58,m:"y757575757575752c171219082a131e15062811261304280f2a1104260f2e1102260d320f02260d320f02240f340f240d360f240d360f240d360f240d360f240d360f240d360f240f3211240f320f02260f2e110226112a1302261326130428151e17042a19121b062a43082c3f0a2e3b0c32350e362d123a251642171c"},c:{t:40,l:2,w:31,h:40,m:"y1e151e162516122d120e350e0c3b0a0a3f08084306061718190404132413040411281302020f300f02020f300f02020d340f0f340f0d380d0d380d0d380d0d380d0d380d0d360f0f340f11300f0202112c11020215241502041322150404132215040611221306080f2211080a0d220f0a0c0b220d0c1007220910"},d:{t:58,l:0,w:35,h:58,m:"y40191c3a2516362f1032350e2e3d0a2c41082a43082a191419062815201504261328110426112c1102260f300f02240f340d02240f340f240d360f240d380d240d380d240d380d240d380d240d380d240d360f260d340d02260d340d02260f300f02280f2c0f042811280f062a132013062c1714170875757575757575"},e:{t:40,l:1,w:34,h:40,m:"x1a1318141f1210270e0e2b0c0c2f0a0a330808150e1506061316110606111a110404111e0f04040f2011020211220f02020f240f02020f240f02020f260f454545454545450f360f360f36020d36020d36020f34020f34040f3204113006111c1102061318110408170e15040a37040c33060e2f08102b0a14230e1a1714"},f:{t:58,l:3,w:29,h:58,m:"y240f42240f42240f42240f42240f42240f42240f42240f42240f42240f42240f4214610e670a6b086d066f0471027302150e0f420211120f4211140f4211140f420f160f420f160f420f160f420f160f420f160f420f160f420f160f42"},g:{t:40,l:1,w:33,h:53,m:"y1a173a122522090a0e2f1c0b080c331a0d060839180f04063d160f04063f1411020419121912110202151e1312110202112611140f020f2a0f140f0f2e0f140d0f2e0f140d0d320d140d0d320d140d0d320d140d0d320d140d0d320d140d0d320d140d0d300f140d020d2e0d160d020d2e0d140f020f2a0f140d02040f260f160d0206111e11160f02081512151413026704670465066308610a5d0e5912"},h:{t:58,l:2,w:31,h:58,m:"y757575757575752a153628133a28113c26113e260f40260f40240f42240f42240f42240f42240f42240f42240f4224114024114026113e26153a264f284d2a4b2c492e473243363f"},i:{t:58,l:8,w:20,h:58,m:"y240f42240f42240f42240f42240f42240f42240f42240f42240f4215100f4215100f4215100f4215100f42151051151051151051151051151051151051151051"},j:{t:58,l:7,w:22,h:72,m:"y820f820f820f820f820f240f500f240f500f240f500f240f500f240f500f240f4e11240f4e0f0215100f4c110215100f4a130215100f461702151069041510690415106706151065081510630a15105f0e15105b12"},k:{t:58,l:1,w:34,h:58,m:"y757575757575754013223e17203c1b1e3a1f1c38231a3627183415021516321506151430150a15122e150e15102c1512150e2a1516150c28151a150a26151e15082415221506241326150424112a1502240f2e15240d3213240b361124093a0f24073e0d2405420b240346096e0770057203"},l:{t:58,l:7,w:22,h:58,m:"y5f16670e6b0a6d086f06710473025e1502601302621364116411660f660f660f660f660f660f660f660f660f660f"},m:{t:40,l:-1,w:39,h:40,m:"y51515151515151060d3e040b42020d42020b44020b440d440d440f421140515151024f024f044d044d02113e020f40020d420d440d440d440d440f42114051024f024f044d064b08490c45"},n:{t:40,l:1,w:34,h:40,m:"y51515151515151081534061338060f3c040f3e040d40020f40020d42020d420d440d440d440d440d440d440d440f420f42020f4002113e02133c044d064b064b08490c450e43143d"},o:{t:40,l:0,w:37,h:40,m:"y1e151e162516122d120e350e0c390c0a3d0a0841080619121b0606132013060413241304040f2c0f04020f300f02020f300f02020d340d020f340f0d380d0d380d0d380d0d380d0d380d0d380d0d380d0f340f0f340d02020d320f02020f300f0202112c0f040411281104041520130606191417080841080a3d0a0c390c0e3310122b141821181e151e"},p:{t:40,l:0,w:35,h:53,m:"y6b6b6b6b6b6b6b06191419200613201320041128111e040f2c0f1e020f300f1c020d340d1c020d340d1c0d380d1a0d380d1a0d380d1a0d380d1a0d380d1a0d380d1a0d380d1a0f340f1a020d340d1c020f300f1c02112c111c041128111e041520151e06191419200841220a3d240c39260e3528122d2c1625301e1538"},q:{t:40,l:0,w:35,h:53,m:"y1e1538182330122d2c0e35280c39260a3d240841220619141920041522131e041128111e02112c111c020f300f1c020d340d1c0f340f1a0d380d1a0d380d1a0d380d1a0d380d1a0d380d1a0d380d1a0d380d1a020d340d1c020d340d1c020f300f1c040f2c0f1e041128111e061320132008171417226b6b6b6b6b6b6b"},r:{t:40,l:3,w:29,h:40,m:"y5151515151515108153406113a04113c040f3e020f40020d42020d420d440d440d440d440d440f42114002113e0219360417360417360615360813360a1136100b36"},s:{t:40,l:2,w:32,h:40,m:"x18171210250c0c2d080833060637040439040415101702021318130202111c1102020f1e1102020f30020f30020f3002112e04112c041528061b200625160829100c2b0a1029081625061e1f042817022e11023011320f320f320f320f112011112011131a13020215121702023b04043706063308082f0a0c270e121916"},t:{t:51,l:3,w:29,h:51,m:"y160f42160f42160f42160f42160f42160f42160f42160f4202531202590c025d08025f06630463046502160f301102160f3211160f340f160f360d160f360d160f360d160f360d160f360d160f360d160f340f160f340f160f340d02160f320f02160f320f02"},u:{t:40,l:1,w:34,h:40,m:"y3f12450c470a49084b064d044d043c1302400f02420f420f440d440d440d440d440d440d440d420f420d02420d02400f02400d043e0f043c0f0638130632170851515151515151"},v:{t:40,l:-1,w:38,h:40,m:"y034e09480f42153c1b362130272a2d24062d1e0c2d18122d12182d0c1e2d06242d2a273021361b3c15420f420f3c15361b30212a27242d1e2d06182d0c122d120c2d18062d1e2d24272a21301b36153c0f420948034e"},w:{t:40,l:0,w:36,h:40,m:"y11402130331e430e5151510a472031341d3a17321f2c25262b20290820230e201b1620151c20151c201b1620230e202908262b2c25321f3a17341d20310a47515151430e331e21301140"},x:{t:40,l:1,w:33,h:40,m:"y034c030548050940090d380d0f340f132c131528151920191b1c1b041b141b0408191019080a1b081b0a0e1904190e122d121429141821181c191c182118142914122d120e1904190e0a1b081b0a0819101908041b141b041b1c1b192019152815132c130f340f0d380d094009054805034c03"},y:{t:40,l:-1,w:39,h:54,m:"y056809640d520f114e0f134c0f17480f1b440f1f3e1123361302042130170208212a17040c21221b0410211a1d061421121f0818210a1f0c1c1f041f10203914243316282b1a2c231e2c1f22281f26241f2a201f2e1c1f32181f36141f3a101f3e0c1f42081f46041f4a1f4e1b5219541558115c0d6009640568"},z:{t:40,l:2,w:31,h:40,m:"x02390402390402390402390402390402390402390428130428110626130624130822130a20130c1e130e1e11101c11121a131218131416131614131814111a12111c10111e0e131e0c13200a132208132408112606112804112a02132a132c112e3f3f3f3f3f3f3f"},"~":{t:58,l:-1,w:39,h:13,m:"x120d2405080e151e09060c1d160d040a23101102082908170647020447040217042d06150c2708021112210a040d181b0c06091e150e0805260914"},"!":{t:58,l:12,w:11,h:58,m:"y1b4813491a13491a13491a13491a13491a13491a13491a13491a13491a131b4813"},"@":{t:59,l:0,w:35,h:59,m:"y140f241d1410131c2d0c0c171835080a19163906081b143d04061d1241020419181516170204131c11221302131e0f26110211200d2a0f020f220d2a0f11220d2a0f0f240f280f0f260f24110f26112011020f28151615020f2441040f243f060f243d080f24410411224302020f224302020f54130211560f0411540f0413520f06154e0f081748110a233415020c69020e6504125f061857081e4d0c2a3914"},"#":{t:58,l:0,w:35,h:58,m:"y4e07160b28071a0d0e13220d1a0d041d220d1a2d220d182f220d0e39220d063f0222470c20411416411e0c4920043f060d203b0e0d2031180d202f1a0d201d060d1a0d2013100d1a0d1a07091a0d1a0d1011220d1a0d061b220d1a2d220d182f220d1037220d0641224b0820431216451a0e47200441040d203d0c0d2033160d202f1a0d201f040d1a0d20170c0d1a07260d160d460320054e"},$:{t:58,l:-1,w:38,h:58,m:"y1a0f2a091a1617260d16141d22111210232013100e271e150e0e271e150e0c2b1c170c0c1308131a170c0a11100f20130a0a11101120110a0a0f140f2211080811140f240f080811160f220f080811160f220f0808111611200f08080f1a0f200f08757575757575080f1e0f1c0f0808111c111811080a0f1c111811080a0f1e0f180f0a0a0f1e11160f0a0a111e0f14110a0c171611120f0c0c1716130e110c0e1518130a110e10131a2b0e10131a2910140f1c2512160d1e23121a09201d16441918480f1e"},"%":{t:57,l:0,w:35,h:57,m:"y0c0d5a08174a0b061b440f041f3e13022338170223341b0d0e0d301d0d0e0d2c1d040b120b281d080b100d241f0a0d0e0d201f0e25201d1202231c1d16041f1a1d1a041d181d1e0817161f200c0f181d242e1d282a1d2c261d14130a221f121b06201d141f041c1d182102181d1a2302141d1e0d0a0f101f1e0d0e0d0e1d220d100b0a1d260d100b061d2a0d0e0d021d2e0f0a0f1b34230219362302153c1f0411421b060d4a130a"},"^":{t:59,l:0,w:37,h:30,m:"y3205062e0b042c0f02281526172219021e1b041c1b06181d08161d0a121d0e0e1f100c1f12082114062116022318231a211c211c231a0223180621160821140c1f120e1f10121d0e161b0c181d081c1b061e1b04221902241928152a11022e0b04320506340306"},"&":{t:58,l:-1,w:38,h:58,m:"y4e1116481b12120f24230e0e191c290a0c1f162d080a25103106082b0a3306062f06170a17040433021512130404150a27181302021312211c11020211161f1e0f02020f1c192011111e191e110f221b1c0f0f201f1a0f0f1e23180f0f1e27140f0f1c110219120f0f1a11061b0e0f0f18110c190c0f1114130e1b080f020f1411121b041102110e13182902021508131c2702042b2223020429261f0406252c1b040821301b020a1d2e210c172a29120d223540354023040f4021080d401d100940171807400d2603"},"*":{t:58,l:0,w:36,h:38,m:"y1e07281a0b2814132614132616111c0308161318070618111609061811120f041a110e13021a110c171c0f081b1c110419041e0f0219061e250a0f10230c3d1039143716351839143d10110e210e1e250a1c110219061c110419041a11081b1a110a191a110e13021813100f041811140d04161316090616131805081413261413261a0d261e0926"},_:{t:-6,l:-2,w:41,h:7,m:"x53535353535353"},"+":{t:50,l:1,w:34,h:41,m:"y220f22220f22220f22220f22220f22220f22220f22220f22220f22220f22220f22220f22220f225353535353535353220f22220f22220f22220f22220f22220f22220f22220f22220f22220f22220f22220f22220f22"},"`":{t:54,l:5,w:26,h:21,m:"y0328072409220b200d1e0f1c111a1516171419121b101d0e210a230825060423040623020a210e1d121916151a111c0f200b24072803"},"-":{t:25,l:1,w:34,h:9,m:"x454545454545454545"},"=":{t:42,l:1,w:34,h:25,m:"x45454545454545444444444444444444444445454545454545"},'"':{t:54,l:6,w:24,h:18,m:"y170e252525252525210405202424242424240322252525252525251114"},"'":{t:54,l:13,w:9,h:22,m:"y09242d2d2d2d2d2d2d210c"},"(":{t:58,l:7,w:22,h:59,m:"y30192e2829262235201e3d1c1a4518164b1614511210211621100e1d241b0e0c192e190c0a1736170a08173a17080615421506041546150402154a1502154e151352131154130f58110f5a0f0d5e0d0d5e0d"},")":{t:58,l:7,w:22,h:59,m:"y0d5e0d0d5e0d0f5a0f0f5811115413135213154e1502154a15020415461504061542150608173a17080a1736170a0c192e190c0e1d221d0e1021162110145112164b161a45181e3d1c22352028292630192e"},"{":{t:59,l:0,w:35,h:59,m:"y340f34340f34340f34340f34340f34340f34340f34340f343213323213322e1b2e18431c1055120c5f0c083302310a0635023308063306330604310e3104042522290402154817020211501302020f541102020f560f020f58110f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f68"},"}":{t:59,l:0,w:35,h:59,m:"y0f680f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5811020f560f02020f54110202115013020215481702042522290404310e310406330633060635023308083302310a0c5f0c10551218431c2e1b2e321332321332340f34340f34340f34340f34340f34340f34340f34340f34"},"[":{t:59,l:4,w:28,h:59,m:"y777777777777770f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f"},"]":{t:59,l:4,w:28,h:59,m:"y0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f77777777777777"},"<":{t:56,l:0,w:37,h:54,m:"x480346054209400b3c0f3a113615341732192e1b022c1b04281b08261b0a221d0c201b101c1d121a1b16181b18141b1c121b1e0e1b220c1b24081d26061b2a021d2c1b30193219321b30041b2c061b2a0a1b260c1b24101b20121b1e141d1a181b181a1b161e1b12201b10241b0c261b0a281d062c1b042e1d3219341738133a113e0d400b420946054803"},">":{t:56,l:0,w:37,h:54,m:"x0348054609420b400f3c113a153617341932021b2e041b2c081b280a1b260e1b22101b20121d1c161b1a181b181c1b141e1b12221b0e241b0c281b082a1b062e1b02301b34173219301b2e19042a1b0628190a241b0c221b0e1e1b121c1b141a1918161b1a141b1c101b200e1b220c1926081b28061b2a021b2e021930021534021336021138020d3c020b3e020742020544020346"},"|":{t:59,l:14,w:8,h:72,m:"y9191919191919191"},":":{t:40,l:11,w:14,h:40,m:"x1d1d1d1d1d1d1d1d1d1d1d1d1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1d1d1d1d1d1d1d1d1d1d1d1d"},";":{t:40,l:4,w:28,h:56,m:"y6c056809640d60115c155819541d50214c23024825044427064029083c2b0a382d0c19202b0e192029101920271219202514192023161920211819201f1a19201d1c19201b1e1920192019201722192015241920132619201128"},".":{t:12,l:11,w:14,h:12,m:"x1d1d1d1d1d1d1d1d1d1d1d1d"},",":{t:13,l:4,w:28,h:28,m:"y340530092c0d2811241520191c1d18211423021025040c2706082908042b0a2d0c2b0e291027122514231621181f1a1d1c1b1e19201722152413261128"},"\\":{t:58,l:3,w:30,h:59,m:"y07700b6c116617601b5c2156255202294c0827480c294212293c1629381c293220292e2629282c272430291e3629183a291440290e46270a4a2904502754235a1d601764136a0d6e097403"},"?":{t:59,l:0,w:36,h:59,m:"y1213520e17520c19520a1b52081d52061f52061f52042152042152021b5a021560021362021164134e17115017112e0f1417112a13141711281514171126171417112419141711221b1417131e1d1417131c1f1417021318211417021514191e1702190c1b2017023d3804393a04373c06333e082f40082d420a29440c2348101b4c161150"},"/":{t:58,l:2,w:31,h:59,m:"y740370076a0d661160175a1d562150274c270446290840290e3c291236291832271e2c292226292822292c1c293218293612293c0e274208294602294c275021561d5a176011660d6a07700374"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["12-07"]={h:63,w:42,g:{0:{t:63,l:0,w:42,h:63,m:"y282d2a1c471c145714105f100c670c086f080673060673060429262904041b401d0402174e1702021552150202135613020213561302135815135a13135a13135a13135a13135a13135a13135a13135a13135a13135a13135a13135a1313581302155613020213561302021552150202174e1504041b421b0404292a25040673060671080a6b0a0c670c105f101655141e451c2a2d28"},1:{t:63,l:8,w:25,h:63,m:"y18194e1817501617521417541219541019561017580e175a0c175c0a195c08195e08176006176204176402176602176617687f7f7f7f7f7f7f7f"},2:{t:64,l:1,w:39,h:64,m:"y6a170a15441f0815402506153e2906153c2b0615382f0415383104153633021536350215341b0a13021534170e13021334151213021332151413153213161315301318131330131a131330111c13132e131c13132c131e13132c112013132a132013132a11221313281124131326132413152411261302132211281302132013281302151c132a13021718152a13041714152c13041b0c172e1306393013083730130a3332130c2f34130e2b361310253a13141d3e131a1156"},3:{t:63,l:0,w:42,h:63,m:"x4f064f064f064f064f064f064f064f064f0636190634190832190a30190c2e190e2c19102a191228191426191624191822191a20171e1e17201c17221a1724181726161f20162718162d12162f1016330c16350a163708301f063619063a17043e13044013024013024211024411441144114411441144114213421342134013023e15023c1702053419040b2a1d04151a21064d084b0a490c470e45104114023b180a2d1e141b26"},4:{t:63,l:0,w:42,h:63,m:"y4e171a4a1b1a461f1a42231a3e271a3a2b1a362f1a32331a2e371a2a2702131a262706131a22270a131a1e270e131a1a2712131a162716131a12271a131a0e271e131a0a2722131a062726131a02272a131a252e131a2132131a1d36131a193a131a153e131a1142131a0d2c470930470534473847384738473847384752131a52131a52131a52131a52131a52131a52131a52131a"},5:{t:63,l:3,w:36,h:63,m:"x0441040441040441040441040441040441040441040243040243040213340213340213340211360211360211360211360211360211360211360211360211360223242d1c331637123b0e3d0c3f0a41084306241f062c190430150432150234130236110236133811381138113811381138113811381136133611023413023215023015042e17042c1706281b06221f081a250a3d0c3b0e3712351431182d1c27221f2a"},6:{t:63,l:-1,w:44,h:63,m:"y4817204027183a3114363910323f0e30430c2c490a2a4d0826290e1d06242716190620291a19041e291e17041c292217021a29261502182b261502141902132a1302121904132a15101906112e130e1908112e130c1908132e130a170c132e1308170e132e13061710132e13041712132e13021714132e131716132e131518152c13131a152a1302111e132a13020f20152615020d22152615020b24172215040928171e1704072a191a1706072c1916190605301b0e1b080332410a363f0a383b0c3a370e3e2f12402b144423184a1520"},7:{t:63,l:0,w:43,h:63,m:"y136c136c136c136c136c136c136c136c136c136c134a2313402d133a3313363713323b132e3f132a43132845132427221322212a13201f2e131c1d34131a1d3613181b3a13141b3e13121b4013101944130e1946130c1948130a194a13061b4c130419502d522b5429562758255a235c1f601d621b641768116e"},8:{t:63,l:-1,w:44,h:63,m:"x2019201a251a1431141039100e3d0e0c410c0a450a084908084908081b141b0806172017060615241506061328130606112c110606112c110606112c110606112c1106081128110808132413080a1320130a0a151a170a0c1712190c0e1b081b0e103910123512162d161829181c211c18271a162d161233141039100c3f0e0a1f0a1b0c081b141b0806191c17080615221706041528150404132c130402133013020211341102021134110211381111381111381111381111381111381113341315321302152e13020217281702021b201b02041f141f04045104064d06064b0808470a0c410c0e3d0e123512162b181e1b20"},9:{t:63,l:-1,w:44,h:63,m:"y20134c1a2144142b40122f3e0e373a0c3b380a3f3608433203081b0e1b3005061916192c0704191a192a0704171e17280904152217240b02152615220d02152615200f02132a131e11152a151a13132e131815132e131617132e13141702132e13121704132e13101706132e130c1908132e130a190a132e1308190c132e1108190e132e11061910152a13021b1202132a2b160215282918021526291a041522291c041720271e04191a27220619162724081b0e2926084d2a0a492c0c43300e3d34123538162d3c1a2342221548"},A:{t:63,l:-1,w:44,h:63,m:"y7a05720d6a15621d5a25522d4c33443b3c433445062c450e2445161c451e1447240e4d2406410213243f0a1324371213242f1a1324272213241d2c132415341324153413241f2a1324272213243118132439101324410813245b240655240e4f221651181e5110265108304f3847403f4837502f5827601f6817720d7a05"},B:{t:63,l:0,w:42,h:63,m:"y7f7f7f7f7f7f7f7f132211281313221128131322112813132211281313221128131322112813132211281313221128131322112813132211281313221128131322112813132211281313221128131322112813132211281313221128131520112813152011261502131e15241502151c1524130202151a192015020415181b1e1502041712211a150406190c25141904064d0c1b060833043b060a310439080c2d08350a0e290c310c1223102b10161d1427121c111e1f1650111e"},C:{t:64,l:2,w:37,h:65,m:"y32213026372620451e1a4f1a165716125f120e670e0c6b0c0a291e290a0821322108061d3e1d06041b46190604174e17040217521702021556150202135a1302155a15135e13135e13135e13135e13135e13135e13155a15155a1502155615020217521702021b4a1b02041b441d04041b441b060619441b0608174419080a1544170a0c1344150c100f441110140b440d1462071a"},D:{t:63,l:3,w:36,h:63,m:"y7f7f7f7f7f7f7f7f135c11135a13135a1302115a1302115a1302135811020213581102041156130204135413020415501304061350130406154c150408154815060a154417060a174017080c193a170a0e1936190a101b2e1b0c121f241d0e14231623101657121853141c4b1820451a243d1e2835222e2928361930"},E:{t:63,l:2,w:37,h:63,m:"x490249024902490249024902490249024902113a113a113a113a113a113a113a113a113a113a113a113a113a113a113a113a113a410a410a410a410a410a410a410a410a410a113a113a113a113a113a113a113a113a113a113a113a113a113a113a113a113a113a113a113a4b4b4b4b4b4b4b4b4b"},F:{t:63,l:5,w:31,h:63,m:"y7f7f7f7f7f7f7f7f132213381322133813221338132213381322133813221338132213381322133813221338132213381322133813221338132213381322133813221338132213381322133813221338136c136c136c136c136c"},G:{t:64,l:0,w:41,h:65,m:"y2e25302439261e471e1a4f1a165716125f121063100e670e0c271c290c0a212e210a081d3a1d080819421b06061948170604174e170404155215040415541502021556150202135a130202135a13021528132015132a132213132a132213132a132213132a132213132a132213132a132213132a132213132a132213132a13221302132813221302132813201302021526132013020217241320130204172245020615224304061522430408132243040a112241060c0f224106100b2241061407223f08"},H:{t:63,l:2,w:38,h:63,m:"y7f7f7f7f7f7f7f7f3413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413387f7f7f7f7f7f7f7f"},I:{t:63,l:6,w:30,h:63,m:"y6c13135a13135a13135a13135a13135a13135a13135a13135a13135a13135a137f7f7f7f7f7f7f7f135a13135a13135a13135a13135a13135a13135a13135a13135a136c136c13"},J:{t:63,l:5,w:31,h:64,m:"y561516561b10561d0e56210a5623085625065627045627046619026a15026c13026c156e136e136e136e136e136e136e136c156c13026a15026619027d047d047b067908770a730e71106b16"},K:{t:63,l:-2,w:46,h:63,m:"y7f7f7f7f7f7f7f7f321934301d322e21302c252e2a292c282d2a2617021928241706192622170a192420170e19221e171219201c1716191e1a171a191c18171e191a1617221918141726191612172a191410172e19120e173219100c1736190e0a173a190c08173e190a0617421908041746190602174a1904174e1902155219135617115a150f5e130d62110b660f096a0d076e0b0572090376077a057c03"},L:{t:63,l:1,w:40,h:63,m:"y7f7f7f7f7f7f7f7f6c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c13"},M:{t:63,l:0,w:42,h:63,m:"y7f7f7f7f7f7f7f7f17681f60255a2d52354a3b44063d3c0c3f34143d2e1a3b2a20352a282d2a2e272a2e272a282d2a20352a1a3b2a143d2e0c3f34063d3c3b44354a2d52255a1f6017687f7f7f7f7f7f7f7f"},N:{t:63,l:1,w:40,h:63,m:"y7f7f7f7f7f7f7f7f215e255a295604295208294e0c2b481229441629401a293c1e2938222934262b2e2a2b2a30292634292238291e3c291a402b14442b104a290c4e290852290456295a257f7f7f7f7f7f7f7f"},O:{t:64,l:0,w:42,h:65,m:"y3221302835262241201c4b1c185318145b141261100e670e0c271e270c0a1f321f0a081b3e1b08061946190606154e170404155215040215561502021358150202135a1302135c15135e13135e13135e13135e13135e13135e13155a1502135a130202155615020215561502041552150406174c17040619461906081d3c1b080a21301f0a0c271e270c0e670e126110145b141853181c4b1c224120283328321f32"},P:{t:63,l:1,w:40,h:63,m:"y7f7f7f7f7f7f7f7f13261334132613341326133413261334132613341326133413261334132613341326133413261334132613341326133413261334132613341326133413261334132613341522133615221336021320153602151e153602171a15380417161738041b0e193a063f3a083b3c0a373e0c33400e2f42122746161f4a1c1350"},Q:{t:64,l:-2,w:46,h:64,m:"y2c23322237281c4322164f1c14531a105b160e5f140a65120a251c2710081f2e1f0e061b3a1b0c041942170c041548170a02154c170802152c0320150802132e071e1308152e091c150613300b1c130613300f1813061330111613061330151213061330171013061330190e1306152e1d0815060213301d061308021530330802153231080417322b0a041932290a061b30250c081f2c210e0a271a2b0c0c6b0a0e6d06106d04146b0218691c43081b223910172c231e157011720f740d78097a077c05"},R:{t:63,l:1,w:39,h:63,m:"y7f7f7f7f7f7f7f7f13261334132613341326133413261334132613341326133413261334132613341326173013261b2c13261f28132621261326252215222b1e15222f1a021320351602151e1302251202171a1308250e041716150c250a041b0e190e2508063d142504083b18250a371e210c33241d0e2f281b10293017142138131c13420f740b76097a05"},S:{t:64,l:2,w:38,h:65,m:"y5e0d185e11141a11341510141d2e170e10252a190c0e29281b0a0a2f261d080a31241f060835221f060637281b0404190c172a1704041710172a1702021714152c1502021518152c130202131c132c1502131e132a151320132c131322132a131322132a1313241328131324132813132613261313261326131526132215152613221302021328131e1502021526151c15020415261518150404192415141704061d1e190c1906061d203b06081b2237080a1924330a0c1724310c1013282b0e12112a2710180b2e1f1456131a"},T:{t:63,l:0,w:42,h:63,m:"y136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c7f7f7f7f7f7f7f7f136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c"},U:{t:63,l:1,w:40,h:64,m:"y651c6b166f127110750c770a790879085e1d066419046617046817026a15026c13026c13026c156e136e136e136e136e136e136e136e136c156c13026c13026a1502681702661704641904601b067b067908770a750c730e6f126b16631e"},V:{t:63,l:-1,w:44,h:63,m:"y0976116e1966215e29562f5037483f4047380847301047281847202047182847103047083847403f4837502f5827601f68176817601f5827502f4837403f384730470828471020471818472010472808473047383f4037482f502956215e1966116e0976"},W:{t:63,l:0,w:43,h:63,m:"y2d52453a552a631c6f1079067f7f225d3e41502f5e215827502f4a35423d3a4104343d0e30391630311e30292630232c30292630311e303916343d0e3a4104423d4a35502f58275e21502f3e41225d7f7f79066f10631c552a453a2d52"},X:{t:63,l:0,w:41,h:63,m:"y057605096e090d660d115e11155615194e191d461d213e2125362502272e270206272627060a271e270a0e2716270e12270e271216270627161a4b1a1e431e223b222633262a2b2a2e232e2a2b2a263326223b221e431e1a4b1a162706271612270e27120e2716270e0a271e270a062726270602272e2702253625213e211d461d194e19155615115e110d660d096e09057605"},Y:{t:63,l:0,w:42,h:63,m:"y037c07780b740f70136c17681b641f60235c0225580625540a25500e254c1225481625441a25401e253c225d26592a552e512e512a552659225d1e253c1a25401625441225480e254c0a2550062554022558235c1f601b641768136c0f700b740778037c"},Z:{t:63,l:3,w:36,h:63,m:"y6e1113581513541913501d134c2113482513442913402d133c311338351334391330270413132c2708131328270c1313242710131320271413131c2718131318271c1313142720131310272413130c2728131308272c131304273013393413353813313c132d4013294413254813214c131d50131954131558136c136c136c13"},a:{t:47,l:2,w:37,h:48,m:"x1c1916142710102f0c0c37080a3b06083d06083f04061b10170406151c130204152011020413221102041324113a113a113a113a113a113a111c2f1437103b0c3f0a410843064504191e1104152211021524110213261102112811112a11112a1111281311281311261511261513221713201902131c1b0215161f02190e2304470645083102110a2d04110c270811101f0c11161322"},b:{t:68,l:0,w:41,h:69,m:"y890289028902890289028902890289023619161d0a341522190832132a150830113213062e113613042e0f3a11042c113a13022c0f3e11022c0f3e11022a0f42112a0f42112a0f42112a0f42112a0f42112a0f42112a0f42112a113e132a113e132c0f3c13022c113a13022c133615022c153215042e172a19043019221b06301f161f08324f0a344d0a36470e3a41103c3d1240351646291c4e1b22"},c:{t:47,l:3,w:36,h:48,m:"y2419241c291c163516123d1210430e0e470c0a4d0a085108061f181f0606172819040415301504041136150202113c110202113c1102020f40111140110f440f0f440f0f440f0f440f0f440f0f440f114011113e1302113c1102021336150202172e19020417281b040417281b0406152819060615281708081328150a0a1128130c0e0d280f10100b280d121605280718"},d:{t:68,l:0,w:41,h:69,m:"y4e1b22462b1a4035163c3d123a411036490c344d0a325108301f161f0830192419062e172c17042e133215042c133813022c113c11022c113c11022a1140112a1140112a0f440f2a0f440f2a0f440f2a0f440f2a0f440f2a0f440f2a0f440f2c0f400f022c0f400f022c113c11022e0f3a11042e11381104301132130632132c1308321724150a341b161b0c89028902890289028902890289028902"},e:{t:46,l:1,w:40,h:47,m:"x1e171c182316142b12122f100e370c0c3b0a0a3f080a190e1908081518170606151e1504061322130404132413040411281302041128130202132a110202112c110202112c13024f51515151515151133e114011401140020f4002113e02113e02113e04113c04113c04133a061322130406151e150408171817040a1b0e19060a41060c3d080e390a12330c142f0e18271220171a"},f:{t:68,l:3,w:35,h:68,m:"y2c114c2c114c2c114c2c114c2c114c2c114c2c114c2c114c2c114c2c114c2c114c2c114c2c114c1a6f12770e7b0a7f0881068304850485021912114c021516114c021318114c131a114c131a114c111c114c111c114c111c114c111c114c111c114c111c114c111c114c111c114c1178"},g:{t:47,l:1,w:39,h:62,m:"y20194418293c123322090e10391e0d0a0c411a0f080a451811060849161304064d141304061b161d1415020417241712150204132a1512150202133013141102021134111611020f36111611113811160f113811160f0f3c0f160f0f3c0f160f0f3c0f160f0f3c0f160f0f3c0f160f0f3c0f160f0f3c0f160f020f380f180f020f380f180f02113411160f02040f340f180f0204113011180f0206132813181102081322151813020a19141918130402770402750602750602730802710a026d0e026b10026516"},h:{t:68,l:3,w:35,h:68,m:"y898989898989898932193e3215423013462e13482e13482c134a2c134a2c114c2a134c2a134c2a134c2a134c2a134c2a134c2a154a2a154a2c15482c17462c1b422e5b2e5b30593257345538513a4f4049"},i:{t:68,l:10,w:22,h:68,m:"y2c134a2c134a2c134a2c134a2c134a2c134a2c134a2c134a2c134a2c134a1914134a1914134a1914134a1914134a1914134a19145d19145d19145d19145d19145d19145d19145d"},j:{t:68,l:8,w:25,h:84,m:"y9811981198119811981198112c135a112c135a112c135a112c135a112c135a112c1358132c1358132c13581102191413561302191413541502191413501704191479041914790419147706191475081914730a1914710c19146d1019146716"},k:{t:68,l:1,w:39,h:68,m:"y89898989898989894c17264a1b24481f2246232044271e422b1c402f1a3e190219183c190619163a190a191438190e19123619121910341916190e32191a190c30191e190a2e192219082c192619062c172a19042c152e19022c1332192c1136172c0f3a152c0d3e132c0b42112c09460f2c074a0d2c054e0b2c035209820784058603"},l:{t:68,l:8,w:25,h:68,m:"y6f1a77127b0e7f0a81088306850487026e1902721502741576137613761378117811781178117811781178117811781178117811"},m:{t:47,l:-1,w:45,h:47,m:"y025d025d025d025d025d025d025d025d080f48060d4c040d4e040b50020d50020d500f500f50114e134c5f5f5f025d025d045b0659065904154604114a020f4e020f4e0f500f500f500f500f50114e134c5f025d025d045b065908570a55104f"},n:{t:47,l:1,w:40,h:47,m:"y025d025d025d025d025d025d025d025d0c173c0a154008134406134606114804114a040f4c02114c020f4e020f4e0f500f500f500f500f500f500f500f50114e114e02114c02134a0215480417440659065908570a550c530e51124d1847"},o:{t:47,l:-1,w:44,h:48,m:"y2419241c291c1831181439141041100e450e0c490c0a4d0a081f141f08081920190806172a150604153015040413341304041138110402113c110202113c1102020f400f021140110f440f0f440f0f440f0f440f0f440f0f440f0f440f0f440f11401111400f02020f3e110202113c110202133811040411361304041530130606152c15060619241708081f161b0a0a4d0a0c490c0e4310103f121439141831181e251e261526"},p:{t:47,l:0,w:41,h:62,m:"y027b027b027b027b027b027b027b027b0a1b181b26081724172406152c152206113411220411381120040f3c0f20020f3e111e020f400f1e020f400f1e0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c1140111c020f400f1e020f3e111e02113c111e0213381120041334132006133015200619261722081d181d240a4d260c49280e452a10412c1439301831341e2738241940"},q:{t:47,l:0,w:41,h:62,m:"y2617401e2738183332143b2e10412c0e452a0c4b260a4f24081f161d24061926172206152e15200413341320041138131e02113c111e02113e0f1e020f400f1e1140111c0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c020f400f1e020f400f1e02113c111e040f3c0f200411381120061134112208132c152208172417240a1b181b26027b027b027b027b027b027b027b027b"},r:{t:47,l:4,w:33,h:47,m:"y025d025d025d025d025d025d025d025d0a173e081344061346060f4a040f4c02114c020f4e020f4e0f500f500f500f500f50114e114e134c021548021d40041b40041b400619400817400a15400e1140120d40"},s:{t:47,l:2,w:38,h:48,m:"x1e171816271010310c0e350a0a3b08083f06083f060619101b0406131a170404131e150404112213040411221304041138041138041138041336041336061334061730081f2608271e0a2d160c31100e330c123308182f062027062821043219023615023a11023a133c113c113c11132a11132a1102132613021324130202151e1702021b141904044504064106083d080a390a0c330e102b12181b1a"},t:{t:60,l:4,w:34,h:61,m:"y1a11501a11501a11501a11501a11501a11501a11501a11501a11501a1150046116046710026d0c0271080273067704770479021a113817021a113c13021a1140111a1140111a11420f1a11420f1a11420f1a11420f1a11420f1a1140111a1140111a11400f021a113e11021a113e11021a113c11041a113a1106"},u:{t:46,l:1,w:39,h:47,m:"y49164f10510e550a570859065b045b044617024a13024c11024e114e11500f500f500f500f500f500f500f500d024e0f024e0f024c11024c0f044a110448110646130644130840150a3a190c5d025d025d025d025d025d025d025d02"},v:{t:46,l:-1,w:44,h:46,m:"y05580b52114c17461d40233a29342f2e35280437220a371c1037161637101c370a22370428352e2f34293a23401d46174c114c114617401d3a2334292e2f28352237041c370a1637101037160a371c04372235282f2e2934233a1d401746114c0b520558"},w:{t:46,l:0,w:42,h:46,m:"y134a25383528471657065d5d5d0c51203d34294815401d3a23322b2c31243306242b0e242514241d1c241722241722241d1c242514242b0e2433062c31322b3a23401d48153429203d0c515d5d5d5706471635282538134a"},x:{t:46,l:0,w:43,h:46,m:"y035803075007094c090d440d0f400f113c11153415173017192c191d241d021d201d02041f181f04081d141d080a1d101d0a0e1d081d0e101d041d101435141631161a291a1e211e201d20241524201d201e211e1a291a163116143514101d041d100e1d081d0e0a1d101d0a081d141d08041f181f04021d201d021d241d192c19173017153415113c110f400f0d440d094c09075007035803"},y:{t:46,l:-1,w:44,h:62,m:"y037a0766110b62110f5e11135a111756111b52111f4c132344150204233c19020823341b040c232c1f041023261f0614231e2108182316230a1c230e250c2023062510244514283d182c351c302d2034252434212830212c2c213028213424233620233a1c233e18234214234610234a0c234e082352042356235a1f5e1b621766136a0f6e0b720776037a"},z:{t:46,l:3,w:36,h:46,m:"x0441040441040441040441040441040441040441040441043015042e17042e15062c15082a150a28150c26150e2415102217102215122015141e15161c15181a151a18171a16171c14171e1415201215221015240e15260c17260a172808172a08152c06152e041530021730173215344949494949494949"},"~":{t:68,l:-1,w:44,h:15,m:"x140d2c05080e192607060c1f200b040a251a0f02082b141306310e150455045302025304170c310615122d060211182708040d1e210a080724190e0a052a0f12"},"!":{t:68,l:15,w:12,h:68,m:"y1d5617571c17571c17571c17571c17571c17571c17571c17571c17571c17571c171d5617"},"@":{t:69,l:0,w:41,h:70,m:"y1a0d2e1f1a14132433101017203b0c0c1b1c43080a1d1a4706081f184b040621164d04062116191a1d0204191e15281502041522112e150215240f32130213260f34110211280f34110211280f34111328113211112c0f3013112c132c1102112e13261502112e1b181904112a4d06112a4b08112a490a112a4b0813284d060211284f04021128510202136215020213661304136611041564110617601108195a130a1d52150c2b3c19020e7d02107904147306186d081e630c265710343f1a"},"#":{t:68,l:1,w:40,h:68,m:"y5a091e093203220d14132a0b220d0c1b280d220d0225280d2233280d1e37280d1441280d0a4b28570a284d14204d1c184b260e5526044b080d2645120d263d1a0d2635220d2627020d220d261d0c0d220d2615140d220d1e090b1e0d220d1413280d220d0a1d280d2233280d2233280d1a3b280d1045280d064f28570a284f121e4f1c144f260a59264f080d2645120d263b1c0d2635220d2635220d261f0a0d220b2815140d2203300b1e0958"},$:{t:68,l:0,w:43,h:68,m:"y2011300b1e1a1b2c0f1a181f2a11181427261514122b241712102d241712102f2219100e33201b0e0e150a15201b0e0c15101324170c0c13141126150c0c13161126130c0a13181126150a0a13181326130a0a131a1126130a0a131a1126130a0a131a1324130a0a131c1124130a898989898989890a1320131e130a0a1320131e130a0a1322131c130a0a1322131c130a0c1124111c110c0c13221318130c0c15201318130c0e1b1a1314130e0e1b1a1510150e10191c170a151012171e331014151e31121613202d1418112229161a0f2425181e0b26211a501b1e561122"},"%":{t:66,l:0,w:41,h:66,m:"y100b6a0a1764061f501104234a15022746170227421b2b3c1f0f0e0f38230d120d3423040d120d3221080d120d2e230a0d120d2a230e0f0e0f2623122b222316022722211a02271e211e04231c2320061f1a23240a171a2328100b1e212c3421303023180b102c2316170a2823161f06262118230422211a27021e211e27021a231e2b1623220f0e0f1421260d120d10212a0d120d0c212e0d120d0823300d120d0423340f0e0f0221382b1f3e27021b42270217482304154c1f061154170a6a0b10"},"^":{t:68,l:0,w:42,h:35,m:"y3a0706380906340f043015022e192a1d281d02241f04221f061e1f0a1a210c18210e1423101223120e25140c251608271806271a02271e272025222522272002271e06271a0827180c25160e251412231214231018210e1a210c1e1f0a221f06241f04281d022a1d2e19301502340f043809063a0706"},"&":{t:68,l:-1,w:44,h:68,m:"y5c131a561f1416112c2710121b242b0e0e231c310c0c2916350a0a2f10390808350a3d060639061b0a1b06063b0417121904041b0a2f181704041712291c170202151a251e150202151c212213020213201d241515221f201513281d20131326211e131324271a1313222b18131320311413132013041d1213131e13081f0e13151a150a1f0c13151815101f081302151415141f0613021710151a1f02110202190a171e2f020437222b02043526270406312a2504082d301f060829361f040a2538230c2136271019322f1411283d4c3d4c3d4c27080f4c230e0d4c1f16094c1720074c0f2c03"},"*":{t:67,l:-1,w:44,h:44,m:"y28032e24072e1e0d2e1a112e16172c161720030a18151e050a18171a09081a15180d061a151411061c151015041c150e19021e130c1d1e13081f022013041f042013021d08202d0c22290e4712431641183d1c3d1c41184316471222290e202d0c2013021d082013041f041e13081f021e130c1d1c150e19021c151015041a151411061a15180d0618171a090818151e050a161720030a16172c1a112e1e0d2e24072e28032e"},_:{t:-7,l:-2,w:47,h:8,m:"x5f5f5f5f5f5f5f5f"},"+":{t:59,l:1,w:40,h:49,m:"y2a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a112863636363636363632a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a1128"},"`":{t:63,l:6,w:30,h:25,m:"y052e072c092a0b280d260f241320151e171c191a1b181f1421122310250e270c290a2d06042b040829020c271023141f181b1c172013240f280b2c073003"},"-":{t:29,l:1,w:40,h:11,m:"x5151515151515151515151"},"=":{t:49,l:1,w:40,h:29,m:"x5151515151515151515050505050505050505050515151515151515151"},'"':{t:63,l:7,w:28,h:21,m:"y2b2b2b2b2b2b2b2b2b2b2a2a2a2a2a2a2a2a2b2b2b2b2b2b2b2b2b2b"},"'":{t:63,l:16,w:10,h:26,m:"y35353535353535353535"},"(":{t:68,l:8,w:25,h:69,m:"y3a1938302d2e2a3928244324204b201c531c1a5918165f16142716291212212623100e1f321f0e0c1d3a1d0c0a1b421b0a081b461b0806194e19060419521904021956190202175a19175e17156215136415116813116a110f6e0f0f6e0f"},")":{t:68,l:8,w:25,h:69,m:"y0f6e0f0f6e0f116a11116813136415156215175e1702175a190219561902041952190406194e1906081b461b080a1b421b0a0c1d3a1d0c0e1f321f0e10232623101427162912165f161a59181c531c204b202443242a3928302d2e381b38"},"{":{t:69,l:0,w:41,h:70,m:"y3e133c3e133c3e133c3e133c3e133c3e133c3e133c3e133c3e133c3c173a3c173a3a1b383623341e4d22146316106d100c3b02390c0a3d023b0a083d063b08063d0a3b06063912370604351e3304041b4c1f0402175c170202156015020213641302021364130202136415156415136813136813136813136813136813136813136813136813136813136813136813137a"},"}":{t:69,l:0,w:41,h:70,m:"y137a1368131368131368131368131368131368131368131368131368131368131368131564150213641502136413020213641302021560150202175c1702041b4c1f0404351e33040639123706063d0a3b06083d063b080a3d023b0a0c3b02390c106d101463161e4d223623343a1b383c173a3c173a3e133c3e133c3e133c3e133c3e133c3e133c3e133c3e133c3e133c"},"[":{t:68,l:5,w:32,h:68,m:"y898989898989898989136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413"},"]":{t:68,l:5,w:32,h:68,m:"y136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413898989898989898989"},"<":{t:65,l:0,w:43,h:62,m:"x520550074e094a0d480f441342153e193c1b3a1d3621341f043021062e1f0a2a210c281f10261f12221f16201f181c211a1a1f1e162120141f24121f260e1f2a0c1f2c08212e061f320221341f381d3a1d3a1f38021f36061f32081f300c1f2c0e1f2a102126141f241621201a1f1e1c1f1c201f18221f16242112281f102a210c2e1f0a302106341f043621381f3c1b3e1942154413480f4a0d4c0b50075205"},">":{t:65,l:0,w:43,h:62,m:"x05520750094e0d4a0f4813441542193e1b3c1d3a2136041f340621300a1f2e0c212a101f28121f26161f22181f201c1f1c1e1f1a202116241f14261f122a1f0e2c1f0c301f08321f06361f02381f3c1b3c1b381f361f02341d06301f082e1f0a2a1f0e281f10241f14221f16201f181c1f1c1a1f1e161f22141f24121f260e1f2a0c1f2c081f30061f32022134021d38021b3a02173e021540021342020f46020d4802094c02074e020550"},"|":{t:69,l:17,w:8,h:84,m:"ya9a9a9a9a9a9a9a9"},":":{t:47,l:12,w:17,h:47,m:"x2323232323232323232323232323222222222222222222222222222222222222222323232323232323232323232323"},";":{t:47,l:5,w:32,h:65,m:"y7e057a09760d72116e156a19661d62215e23025a25045627065229084e2b0a4a2d0c462f0e4231101d262f121d262d141d262b161d2629181d26271a1d26251c1d26231e1d2621201d261f221d261d241d261b261d2619281d26172a1d26152c1d26132e1d261130"},".":{t:14,l:12,w:17,h:14,m:"x2323232323232323232323232323"},",":{t:14,l:5,w:32,h:32,m:"y3c053809340d30112c152819241d20211c23021825041427061029080c2b0a082d0c042f0e31102f122d142b162918271a251c231e21201f221d241b261928172a152c132e1130"},"\\":{t:68,l:3,w:35,h:69,m:"y058609820f7c157619721f6c236829622f5c042f580831520e2f4e142f48182f441e2f3e223138282f342e2f2e322f2a382f243c2f20422f1a482f144c2f10522f0a562f065c2f622966256c1f701b76157c0f800b8605"},"?":{t:69,l:0,w:43,h:69,m:"y1e0d601615601219600e1d600c1f600a2160082360082360062560062560042760042562021d6c021970021772021772175a1b175a1b155c1b15360f181b153213181b153015181b152e17181b152c19181b152a1b181b15281d181b17241f181b172221181b02171e23181b02191a1b221b021b141b261b041d0c1d42044344044146063d48063b4a08374c0a334e0c2f500e2b52102556141d5a1a1160"},"/":{t:68,l:3,w:35,h:69,m:"y8605800b7c0f761572196c1f662562295c2f582d06522f0a4c2f10482f14422f1a3e2f1e382f24322f2a2e2f2e282f34242f381e2f3e183142142f480e2f4e0a2f52042f582f5c296223681f6c197215760f7c0b800586"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["12-08"]={h:72,w:48,g:{0:{t:71,l:0,w:48,h:72,m:"y322f30244b221a5d1a1469141071100c790c0a7d0a08810806850604312c2b060423462104041b541b0402195c1704021760170202156415020215641502176415021568151568151568151568151568151568151568151568151568151568151568151568151568151568151764150202156415020215641502021760170202195c1704041b541b04042346210404312c2b060685060881080a7d0a0c790c1071101469141a5d1a244b22322f30"},1:{t:70,l:9,w:29,h:70,m:"y1c1b561a1b58181b5a18195c161b5c141b5e121b601219621019640e1b640c1b660c19680a196a081b6a061b6c06196e041970021b701b7219748d8d8d8d8d8d8d8d8d"},2:{t:71,l:2,w:44,h:71,m:"x1e1b20142d180e371408411004470e024b0c024d0a024f0802510602530402211221040217221d0202112a1b02020d3019020209361902053c1742174415441544154415441544154215024215024017024015043e17043c17063a1906361b08341b0a301d0c2e1d0e2a1f10262112241f162021181e1f1c1a1f20181f22161d26121f28101d2c0e1d2e0c1b320c19340a193608193808173a06173c06153e041540041540041342021542021344021344021344154415445702570257025702570257025702570257025702"},3:{t:70,l:0,w:48,h:71,m:"x5b065b065b065b065b065b065b065b065b065b06401b063c1d083a1d0a381d0c361d0e341d10321d12301d142e1b182c1b1a2a1b1c261d1e241d20221d22201d241e1b281c1b2a1a1d2a1a291e1a2f181a33141a37101a390e1a3b0c1a3d0a3623083c1f06401b064419044617044817024817024a15024a174c154c154c154c154c154c154c154a174a17481702481702461902441904053e1b040b341d06112a2106191a2708570a570a550c530e4f124d140445180a391e102d241a1b2c"},4:{t:70,l:0,w:47,h:70,m:"y58171e541b1e501f1e4c231e48271e442b1e402f1e3c331e38371e343b1e302902151e2c2906151e28290a151e24290e151e202912151e1c2916151e18291a151e14291e151e102922151e0c2926151e08292a151e04292e151e2932151e2536151e213a151e1d3e151e1942151e1546151e114a151e0d324f09364f053a4f3e4f3e4f3e4f3e4f3e4f3e4f5a151e5a151e5a151e5a151e5a151e5a151e5a151e5a151e5a151e"},5:{t:70,l:3,w:42,h:70,m:"x044d04044d04044d04044d04044d04044d04044d04044d04044d04044d0404133e02153e02153e02153e02153e02153e02153e02153e02153e02153e02134002134002134002272c0233203b1a3f1643124510470e490c4b0a4d08282706301f06341d043819043a19023c17023e15023e15023e17401540154015401540154015401540153e15023e15023c17023c17023a1704381904361906321b08301d082a210a24250c1c2b0e451043123f163b1a371e33222b2a2332"},6:{t:70,l:-1,w:50,h:70,m:"y5215264a251e4431184037163c3f12384510344b0e324f0c2e550a2c590828310e2106262f161d06242d1c1d04202f2219041e2f2617041c312619021a312a170218312c1702161b04152e1502141b06152e17121b08152e17101b081532150e190c1532150c190e1532150a1910153215081912153215061914153215041916153215021918153215191a153215171c172e17151e172e15021322152e15021124172a17020f26172a17020d2a172617040b2c17261704092e192219040930191e190607321d161b0805361f0e1f08033a470a3e430c3e410e403d104437124633144a2b184e231c541524"},7:{t:70,l:0,w:48,h:70,m:"y15781578157815781578157815781578157815781578155227154a2f154237153e3b153a3f153643153247153049152c4d15282b261526272c1524233215202336151e213a151c1f3e15181f4215161f4415141d4815121d4a15101b4e150e1b50150c1b52150a1b5415061d5615021f58335a2f5e2d602b62296427662568236a1f6e1d701974117c"},8:{t:70,l:0,w:49,h:71,m:"y5e131e581f18542912160f2c2f10121924330e0e211e370c0c251a3b0a0a29163f08082d124306082f0e450606310e1b0e1f0406330a19161b0404190a1508171a190404170e1306171e19020217121302172019020217142724170202151625261702021518232817171a1f2a17151c1f2a17151c1d2e15151e1b2e15151e193015152017301515201532151520153215151e193015151e193015151c1d2e15151c1d2e151718212a1702151823281502021516252815020217142724170202171213021722170204170e1504171e17040419081708171a190406330a19161b0406330c1b0e1d06082f104306082d1241080a29163f080c251a3b0a0e211e370c121924330e16112a2f105429125821165e131e"},9:{t:70,l:-1,w:50,h:70,m:"y2415541c234e182b4a143346123744103d400e413e0c433e0a473a03081f0e1f3605081b161d320706191e193009041922192e09041726172c0b041726172a0d02172a17260f02172a17241102152e15221302152e171e15172e171c171532151a1915321518190215321516190415321514190615321512190815321510190a1532150e190c1532150c190e153215081b10172e15081b12172e15061b1402152e15041b1602172c311802172a311a021926311c0417262f1e0419222f20041d1c2d24061d162f2606210e312808592c0a552e0c4f320e4b34104538123f3c1637401831441e254a261552"},A:{t:70,l:-1,w:50,h:70,m:"y86077e0f7815701d6825602d5a33523b4a43424b3a4f04344d0c2c4d14244d1c1c4d24164f280e57280649021528470a15283f121528371a15282f221528272a15281f321528173a1528173a15282130152829281528312015283b161528430e15284b0615286528065f280e592618571e20591428590c3059043855404d4845503d5835602d6825701d7815800d8805"},B:{t:70,l:0,w:48,h:70,m:"y8d8d8d8d8d8d8d8d8d1526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151724112e151724112c17021522152a17021720152a1702191c19261702021b181b261702041b141f221902041f0c251e19040651161d0406550e1f06083b0243060a370441080c33083d0a0e31083b0c102d0c370e1425123310181f162f121e13202716541f1a581322"},C:{t:71,l:3,w:42,h:72,m:"y3821382c392c26472420531e1a5d1a166516146b121071100e750e0c790c0a2f202f0a08273427080623402306061d4c1d06041b541b04041958190402195c19020217601702021564150217641715681515681515681515681515681515681515681517641717641502021760170202195c1902021d541d02041f4c1f04041f4c1f04061d4c1d06081b4c1b080a194c1b080c174c190a0e154c150e10134c1310140f4c11121a094c0b18"},D:{t:70,l:3,w:41,h:70,m:"y8d8d8d8d8d8d8d8d8d1368131566131564151564150213641502136413020215621302021560150204155e150204155e150204175a150406175815040617561704081752170608194e19060a1b4819080c1b441b080c1d401b0a0e1f381d0c102130210c122526230e142b1629101665121861141c59181e551a224f1c2449202a3f242e3728342b2e3c1b36"},E:{t:70,l:3,w:42,h:70,m:"x51045104510451045104510451045104510451041342134213421342134213421342134213421342134213421342134213421342134213421342490c490c490c490c490c490c490c490c490c490c13421342134213421342134213421342134213421342134213421342134213421342134213421342134255555555555555555555"},F:{t:70,l:6,w:35,h:70,m:"y8d8d8d8d8d8d8d8d8d1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e15781578157815781578"},G:{t:71,l:1,w:46,h:72,m:"y342736283f2a224b241e551e1a5d1a166516146914126f1010730e0e770c0c2d1e310a0a2532270a08213e2308081d481f06061d4c1d060619541b04041958190404175c170402195e17020217601702021762150202156417172e152217172e15241515301524151530152415153015241515301524151530152415153015241515301524151530152415153015241502152e1524130202152e1524130202172c1522150204192815221502041b264b020619264904081726490408172649040a152647060c13264706100f264706120d2645081807264508"},H:{t:70,l:2,w:44,h:70,m:"y8d8d8d8d8d8d8d8d8d3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e8d8d8d8d8d8d8d8d8d"},I:{t:70,l:7,w:34,h:70,m:"y78151564151564151564151564151564151564151564151564151564151564151564158d8d8d8d8d8d8d8d8d15641515641515641515641515641515641515641515641515641515641515641578157815"},J:{t:70,l:6,w:35,h:71,m:"y5e171a5e1d145e21105e230e5e270a5e29085e2b065e2b065e2d0472190474190276170278150278177a157a157a157a157a157a157a157817781502761702741902701b048b04890689068708850a830c7f107b14751a"},K:{t:70,l:-2,w:53,h:70,m:"y8d8d8d8d8d8d8d8d8d38193c361d3a3421383225363029342e2d322c31302a352e281b021d2c261b061d2a241b0a1d28221b0e1d26201b121d241e1b161d221c1b1a1d201a1b1e1d1e181b221d1c161b261d1a141b2a1d18121b2e1d16101b321d140e1b361d120c1b3a1d100a1b3e1d0e081b421d0c061b461d0a041b4a1d08021b4e1d061b521d0419561d02175a1d155e1b1362191166170f6a150d6e130b721109760f077a0d057e0b038209860788058a03"},L:{t:70,l:1,w:45,h:70,m:"y8d8d8d8d8d8d8d8d8d781578157815781578157815781578157815781578157815781578157815781578157815781578157815781578157815781578157815781578157815781578157815781578157815"},M:{t:70,l:0,w:48,h:70,m:"y8d8d8d8d8d8d8d8d8d1974216c27662f5e35583d50434a0645420e433c1445341a452e203f2e26392e2e312e342b2e342b2e2e312e26392e203f2e1a452e1445340e433c064542434a3d5035582f5e2766216c19748d8d8d8d8d8d8d8d8d"},N:{t:70,l:1,w:46,h:70,m:"y8d8d8d8d8d8d8d8d8d256829642d60042d5c082d580c2d54102d50142d4c182d481c2d44202d40242d3c282d382c2d34302d30342d2c382d283c2d24402d20442d1c482d184c2d14502d10542d0c582d085c2d04602d64298d8d8d8d8d8d8d8d8d"},O:{t:71,l:0,w:48,h:72,m:"y3a1f382e372c284326224f201e571c1a5f18166516126d121071100e750e0c2d202f0a0a2536230a0821421f08061d4c1d060619541b04041958190404175c19020217601702021762150202156417176417156815156815156815156815156815156815176417021564170217621502021760170204175c19020419581904061b501d04061f4a1d0608214021080a253427080c2d202f0a0e770c107110126d121667141a5f181e571c224d222843262e352e382138"},P:{t:70,l:1,w:45,h:70,m:"y8d8d8d8d8d8d8d8d8d152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152a17381728153a1728153a021724173a021722193a02191e193c041b181b3c041f101f3c06493e0845400845400a41420c3d440e394612314a142d4c182550201558"},Q:{t:71,l:-2,w:53,h:71,m:"y32233a263b2e2047281c5122185720145f1c12631a0e69180c6f140a7312082d1e2b120823322310061f3c210e041d461d0c04194c1b0c021952190a0217320520170a021534071e170a1734091e150a17340d1a170815360f1a150815361118150815361514150815361712150815361910150815361d0c150815361f0a1508021534210617080215382102150a021738350a041738330a041b362f0c061b382b0c062134270e08253023100a2d1e2d0e0c770c0e79081079061279041479021857021f1c4f081d20470e1b28391817322524157c13800f820d840b88078a058c03"},R:{t:70,l:1,w:45,h:70,m:"y8d8d8d8d8d8d8d8d8d152a153a152a153a152a153a152a153a152a153a152a153a152a153a152a153a152a153a152a1936152a1b34152a1f30152a232c152a272815282d24172631201726331e021722391a0217223d1602191e15062912041b18170a290e041f0e1d0e290a0645122b06064516290408411c290a3d22250c3926230e352c1f1031321b142b381718233e151e154a11800d840986078a03"},S:{t:71,l:2,w:43,h:72,m:"y680d1c6813161c133a1712161f3419101227301b0e102b2e1d0c0e312a1f0a0c332a21080a37282108083b262306083d282104063f2e1b04041d0c1b2e1904041912193019020417181730170202171c1730150202171c173017021520172e17172215301515241530151526152e151526152e151528152c151528152c15152a152a15152a172617152c152617172a1724150202152c1720170202172a171e190202172c1918190402192a1b141b04041b281d0c1f040421244306061f244108081d263f08081d283b0a0a1b2a370c0c192c330e0e172e2f1012133227141411361f181a0b3c131e"},T:{t:70,l:0,w:47,h:70,m:"y15781578157815781578157815781578157815781578157815781578157815781578157815788d8d8d8d8d8d8d8d8d1578157815781578157815781578157815781578157815781578157815781578157815781578"},U:{t:70,l:1,w:46,h:71,m:"y6f20751a79167d127f10810e830c850a87086821066e1b0672190474170474190276170278150278150278177a157a157a157a157a157a157a157a157a157a157817781502781502761702741902741704701b046e1b066a1f0687088708850a830c810e7d127b14751a6d22"},V:{t:70,l:-1,w:50,h:70,m:"y07860f7e17761f6e27662f5e37563d5045484d40064f380e4d32164d2a1e4d22264d1a2e4b14364b0c3e4b0446474e3f56375e2f66276e1f741974196e1f66275e2f56374e3f46473e4b04364b0c2e4b14264d1a1e4d22164d2a0e4d32064f384d4045483d5037562f5e27661f6e17760f7e0786"},W:{t:70,l:-1,w:50,h:70,m:"y2f5e474659346726731a7d1087068d8d226b3e4f503d5e2f6a23622b5c3154394e3f46474045083a4310363f18363720362f2836292e36292e362f28363720363f183a431040450846474e3f54395c31622b6a235e2f503d3e4f226b8d8d87067d10731a6726593447462f5e"},X:{t:70,l:0,w:47,h:70,m:"y0388030780070b780b0f700f1368131760171b581b1f501f2348232740272b382b042b302b04082b282b080c2b202b0c102b182b10142b102b14182b082b181c551c204d20244524283d282c352c302d30342534302d302c352c283d28244524204d201c551c182b082b18142b102b14102b182b100c2b202b0c082b282b08042b302b042b382b2740272348231f501f1b581b1760171368130f700f0b780b078007038803"},Y:{t:70,l:0,w:47,h:70,m:"y038a07860b820f7e137a17761b721f6e236a27662b62042b5e082b5a0c2b56102b52142b4e182b4a1c2b46202b42246928652c61305d3459305d2c6128652469202b421c2b46182b4a142b4e102b520c2b56082b5a042b5e2b622766236a1f6e1b721776137a0f7e0b820786038a"},Z:{t:70,l:4,w:40,h:70,m:"y156415156019155c1d155821155425155029154c2d154831154435154039153c3d15382b021515342b061515302b0a15152c2b0e1515282b121515242b161515202b1a15151c2b1e1515182b221515142b261515102b2a15150c2b2e1515082b321515042b36153f3a153b3e153742153346152f4a152b4e152752152356151f5a151b5e15176215156415781578157815"},a:{t:53,l:3,w:42,h:54,m:"x201b1a182b1214330e10390c0e3d0a0c41080a4506084904081d121b04061b1c170206172215020615261302041726130204152a1342134213421342134213421342132035183d144110450c490a4b084d064f041d22130419261302172a1302152c1302132e13152e13133013132e15132e15132c17132c17132a1915261b17221d0215201f02191823021d0e290451064f083902130a3504130c31061310290a1314210e131a1526"},b:{t:75,l:1,w:46,h:76,m:"y970297029702970297029702970297029702381f16210c3619261b0a34172e1908341336170632133a150630133e150430134013042e134215022e114613022e114613022c1348132c114a132c114a132c114a132c114a132c114a132c114a132c114a132c1346152c134613022e114415022e134215022e153e17022e173a17043017361904301b2e1b06321d261f063423162508345b0a36570c3a510e3c4d103e471442411648371a4c2d20561b28"},c:{t:53,l:3,w:41,h:54,m:"y2a192a202d201c371a183f16144712104d100e530c0c570a0a5b0808211c2108061b2c1b060617341904041738170404133e1702021540150202134413020211481102134813114c11114c11114c11114c11114c11114c11114c1113481313481315441302021342150202153e17020219361904041b2c1f04041b2c1d0606192c1d0606192c1b0808172c190a0a152c170c0c132c150e0e112c1310120d2c0f1416092c0b18"},d:{t:75,l:1,w:46,h:76,m:"y561b284c2d2046391a4241163e49123c4d103a510e38550c36590a3423182308321d261f06301b30190630173619042e173c15042e154015022e134215022e134413022c1348132c1348132c114a132c114c112c114c112c114c112c114c112c114c112c114c112c134811022e114811022e114811022e134411043011421304301340110632133c1306321536150834173017083619261b0a381f181f0c970297029702970297029702970297029702"},e:{t:52,l:1,w:46,h:53,m:"x2417221c271a182f16143712123b10103f0e0e430c0c470a0a1f0e1f080a191a1b0608191e19060815241904061528170406152a150404152c170204152e1502041330150202153015020215301702153017025b5d5d5d5d5d5d5d15481548154815481548021348021546021546021546041544041544041742061740061924150608192017060a1b1a19060a21101d060c49080e470810430a123f0c16390e1833121e291626191e"},f:{t:75,l:4,w:39,h:75,m:"y2e11582e11582e11582e11582e11582e11582e11582e11582e11582e11582e11582e11582e11582e11581c7b148310870c8b0a8d088f06910691049304191211580217161158021518115802131a1158131c1158131c1158131c1158111e1158111e1158111e1158111e1158111e1158111e1158111e1158111e1158111e1158"},g:{t:53,l:2,w:44,h:70,m:"y241b4e1c2b461637280910123f240d0c10452011080e491e11080c4d1c13060a511a1504085518150406211821161702041d241b16170204192c19141702021734151615020215381516130202133c13181302113e1318131340131811134013181111441118111144111811114411181111441118111144111811114411181111441118111144111811021140111a1102114011181302133c1318110204113c111a1102041338131a1102061334131a130208152c151c13020a1724171c13040c1b161d1a170402850602850602830802810a02810a027f0c027b1002771402711a"},h:{t:75,l:3,w:41,h:75,m:"y979797979797979797361b4634174c34154e3215503015523013542e13562e13562e13562e11582c13582c13582c13582c13582c13582c13582c13582c15562c15562e15542e17522e1950301b4c306732653265346336613a5d3c5b40574651"},i:{t:75,l:11,w:26,h:75,m:"y2e15542e15542e15542e15542e15542e15542e15542e15542e15542e15542e15542e15541b1415541b1415541b1415541b1415541b1415541b14691b14691b14691b14691b14691b14691b14691b14691b1469"},j:{t:75,l:10,w:28,h:93,m:"yaa11aa11aa11aa11aa11aa11aa112e1568112e1568112e1568112e1568112e1568112e1568112e1566132e156611021b14156413021b14156215021b14156017021b14155a1b041b1489041b1487061b1487061b1485081b14830a1b14810c1b147f0e1b147b121b147518"},k:{t:75,l:1,w:45,h:75,m:"y97979797979797979754152e52192c501d2a4e21284c25264a2924482d2246312044351e421b041b1c401b081b1a3e1b0c1b183c1b101b163a1b141b14381b181b12361b1c1b10341b201b0e321b241b0c301b281b0a2e1b2c1b082e19301b062e17341b042e15381b022e133c1b2e1140192e0f44172e0d48152e0b4c132e0950112e07540f2e05580d2e035c0b8e09900792059403"},l:{t:75,l:9,w:29,h:75,m:"y7b1c831487108b0c8d0a8f089106930493047a1b027e170280150282158413841384138611861186118611861186118611861186118611861186118611"},m:{t:53,l:-1,w:51,h:53,m:"y026902690269026902690269026902690269081350080f54060f56040f58020f5a020f5a020f5a115a115a1358135817546b6b6b026902690467066508630665061550041354021356021158020f5a115a115a115a115a1358135817546b026902690467046706650a610c5f1259"},n:{t:53,l:2,w:44,h:53,m:"y0269026902690269026902690269026902690c1d420a19480a154c08154e061352061352041354041156021356021158021158115a115a115a115a115a115a115a115a13581358021158021356021554041552041b4c0665066508630a610c5f0e5d125916551c4f"},o:{t:53,l:-1,w:50,h:54,m:"y2a192a202b221c351c183d18144514124912104d100e510e0c550c0a2314230a081d241d0808192c19080617341706041738150604153c150404134013040213441302021344130202114811020211481102134813114c11114c11114c11114c11114c11114c11114c11114c11114a1313481102021148110202114613020213441302021540130404133e150404173815060617341706061b2e1708081d241d080a2316210a0c550c0e510e104d10124912144316183b1a1c331e2229222a192a"},p:{t:53,l:1,w:46,h:70,m:"y028b028b028b028b028b028b028b028b028b0c1f181f2c0a1928192a0817301728061538152606133c132604134013240411441124021344132202114811220211481122114c1120114c1120114c1120114c1120114c1120114c1120114c1120114c112013481320021148112202114613220213441322021540152204153c152404173817240619301926081b281b2808231a21280a592a0c552c0e512e124b30144534183d381c353c2229422a194a"},q:{t:53,l:1,w:46,h:70,m:"y2a194a222b401c353c183f36144534104d300e512e0c552c0a592a0823182328081b281d260619321726041738172404153c1524041340152202134413220213461122021148112213481320114c1120114c1120114c1120114c1120114c1120114c1120114c1120114c11200211481122021148112202134413220411441124041340132406133c1326081338152608173017280a1928192a0c1f181f2c028b028b028b028b028b028b028b028b028b"},r:{t:53,l:5,w:38,h:53,m:"y0269026902690269026902690269026902690c1b440a174a08154e081350061352041354041156021158021158021158115a115a115a115a115a1358135815560215540219080346022346042146061f46061f46081d460a1b460e1746121346180d46"},s:{t:53,l:3,w:42,h:54,m:"x201b1a162b141233100e3b0c0a410a084508084508064906041d121d0604171c1b04041522170402152417040213281504021328150402134002134002134002153e02153e04153c041938061f30062728082f1e0a33180c37120e390e14370a183508202f06282904321f043a19023e150240130240154213421342134213133013152c15152a171726170219201b02021d161d04024f04044b0606470808430a0a3d0e0e3512122d161a1b20"},t:{t:67,l:4,w:39,h:68,m:"y1e115a1e115a1e115a1e115a1e115a1e115a1e115a1e115a1e115a1e115a06691a04711404751004790c027d0a027f0802810602830485041e113e1b021e114415021e114613021e1148131e1148131e114a111e114a111e114a111e114a111e114a111e114a111e114a111e1148131e114811021e114811021e114613021e114613021e114413041e114215041e11421306"},u:{t:52,l:2,w:44,h:53,m:"y511a57145b105f0c610a63086506650667044e1904521702541502561302581358135a115a115a115a115a115a115a115a115811025811025811025611045611045413045213065015064e15084c150a48170c421d0c690269026902690269026902690269026902"},v:{t:52,l:0,w:49,h:52,m:"y07620d5c135619501f4a25442b3e2f3a35343b2e043d280a3d22103d1c163b181c3b12223b0c283b062e3b34353a2f402946234c1d5217581152174c1d462340293a2f34352e3b283b06223b0c1c3b12163b18103d1c0a3d22043d283b2e35342f3a2b3e25441f4a195013560d5c0762"},w:{t:52,l:0,w:48,h:52,m:"y11582346333645245514670269696908611c4d303942274e1b482140293a2f32372c390428350c282f1228271a28212028192828192828212028271a282f1228350c2c390432373a2f402948214e1b422730391c4d0861696969670255144524333623461158"},x:{t:52,l:0,w:48,h:52,m:"y036403075c070958090b540b0f4c0f114811134413173c171938191d301d1f2c1f212821022320230206211c210608211821080c2110210c0e210c210e12210421121441141839181c311c1e2d1e2225222421242421242225221e2d1e1c311c18391814411412210421120e210c210e0c2110210c082118210806211c210602232023022128211f2c1f1d301d193819173c171344131148110f4c0f0b540b095809075c07036403"},y:{t:52,l:-2,w:52,h:70,m:"y058809840d800f6e11136a111766111b62111d6011215c112556132950152b4c1502042b441902082b3c1d020c2b341f04102b2c2106142926250618291e27081c2916290a20290e290e2427082b1028270229142c491830411c3439203831243c292838292c3429303229322e29362a293a26293e2229421e29461c274a18274e1427521027560c275a08275e0427620227642568216c1d7019741578117c0d8009840588"},z:{t:52,l:3,w:41,h:52,m:"x044b04044b04044b04044b04044b04044b04044b04044b0438170436190434190632190832170a30170c2e190c2c190e2a191028191228171426191424191622191820191a20171c1e171e1c191e1a192018192216192416172614192612192810192a0e192c0c192e0c17300a1930081932061934041936041738021938193a173c5353535353535353"},"~":{t:76,l:-1,w:50,h:17,m:"x1a074412173005080e1f2a09060c27220d040a2d1c11020833161506391017063f061b045f02025f041d083b0619103706021516310804111c2b0a060d22250c08092a1b100a05301314"},"!":{t:75,l:17,w:14,h:75,m:"y1b6419453a195f20195f20195f20195f20195f20195f20195f20195f20195f20195f2019453a191b6419"},"@":{t:77,l:0,w:47,h:78,m:"y220b32211e1a13283514141922410e121b1e470c0e1f1c4d080c211a51060a2318550408251657040627161f1a2102061d20172a19020419241532150204172613361502172811381502152a113a1302152a113a1302132c113a13152c133813133011381313301334130213301530150213321928170213341d1a1d04132e5706132e5508132e530a132e530a132e5508152c570602132c590402132c5b0202156e170204157015041572130417701306196c1308196a13081f62150a235a15020c33401d020e8d02128704148306187d081e750a246b0e2c5f123c431e"},"#":{t:76,l:1,w:46,h:76,m:"y66092209600f18133407260f101b2c0f260f08232c0f26392c0f26392c0f203f2c0f16492c0f0e512c0f0453082c5b122a551a22532418572a0e612a0653080f2a4f120f2a471a0f2a3d240f2a3b260f2a29040f260f2a1f0e0f260f280315180f260f200b0d200f260f1615032a0f260f0c1f2c0f260f02292c0f26392c0f223d2c0f1a452c0f104f2c0f0657022c630a2c591424571e1a5926125d2a0855040f2a550c0f2a4b160f2a431e0f2a3b260f2a3b260f2a25080f260f2a1d100f260732131a0f5e09240766"},$:{t:75,l:-1,w:50,h:75,m:"y240f380b221e1b320f1e1a2130131a18272c1518162b2a1716142d2a19141231281b121035261d101037241d100e39241f0e0e170c19261b0e0e1512152a190c0c1516152a170c0c1318152c150c0c131a132c170a0a151a152c150a0a151c132c150a0a131e152a150a0a131e152a150a0a1320132a150a0a1320132a150a97979797979797970a13241722150a0a13261522150a0a13261522130c0c11261720130c0c1326151e150c0c1326171c150c0c1328151c130e0e13261718150e0e1d1e1714170e0e1d1e19101710101b20190c1910101b203b121219223912141722371416152433161813262f181a11262f181c0f2a271c200b2c231e581d225e1128"},"%":{t:74,l:0,w:47,h:74,m:"y120f740c197008215c110625561504295019042b4c1b022d481f022f4223130e113e2711120f3c25040f160d3827060f160d34270a11120f30270e130e112e2512022f2a2516022d282718042b24271c0429242520062522252408212027260c1920272a120f20272e3e25323a253636273832271e0f1030251c190c2c251c210828271c250624271e29042225222b021e25242d021a25282f162728130e1114252c11120f1025300f160d0c25340f160d08273611120f06253a130e110225402f23442d0221482b021d4c290419522506155821081160190c760f10"},"^":{t:76,l:0,w:48,h:39,m:"y4205083e0b063c0f04381304361702321d301f2c21022a210426210822230a20230c1c250e1a25101627121427141029160e29180a2b1a082b1c042d1e022b222b24292629262b24022b22042d1e082b1c0a2b1a0e29181029161427141627121a25101c250e20230c22230a2621082a21042c2102301f321d3617023813043c0f043e0b06420508"},"&":{t:76,l:-1,w:50,h:76,m:"y66151e6021185c29141a112e2f12141d26350e10271e390c0e2d183d0a0c331241080a370e4308083d084706083f041f0c2104065f141d04065b1c1904041d0c332019020419162b22190202191c252617020217202328170215262126171728212417152a252215152829201515262f1c151526311a1515243716151522170421141515201708231015151e170c230e15171c1512210c1502151a1714230815021716171a21061302021912171e3702021d0a19223502043b28310204392c2d0406353229040831362506082f3a25040a2b4023020c273c2b0e233435121b284518112c4554455445542d061354290e0f5425140d541f1e0954192607540f3205"},"*":{t:75,l:0,w:48,h:49,m:"y2a0732240d322011321a19301a19301a1922050a1c1720070a1c191c0b081e171a0f061e171811062017141504201712190220170e1f22150c21221708210224150621042415041f0826330a262f0e1f082b124f144b18491a451e451e491a4b184f141f082b12262f0e26330a2415041f082415062104221708210222150c2120170e1f201712190220171415041e171811061e171a0f061c191c0b081c1720070a1a1922050a1a19301a1930201132240d322a0732"},_:{t:-8,l:-3,w:54,h:9,m:"x6d6d6d6d6d6d6d6d6d"},"+":{t:65,l:1,w:46,h:54,m:"y2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c6d6d6d6d6d6d6d6d6d6d2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c"},"`":{t:72,l:7,w:34,h:27,m:"y033405320730092e0b2c0d2a1126132415221720191e1b1c1f182116231425122710290e2b0c2f083106042f04082d020c2b10271423181f1c1b20172413280f2c0b30073403"},"-":{t:32,l:1,w:46,h:12,m:"x5d5d5d5d5d5d5d5d5d5d5d5d"},"=":{t:54,l:1,w:45,h:32,m:"x5b5b5b5b5b5b5b5b5b5b5a5a5a5a5a5a5a5a5a5a5a5a5b5b5b5b5b5b5b5b5b5b"},'"':{t:72,l:8,w:32,h:23,m:"y2f2f2f2f2f2f2f2f2f2f2f2e2e2e2e2e2e2e2e2e2e2f2f2f2f2f2f2f2f2f2f2f"},"'":{t:72,l:18,w:12,h:31,m:"y3f3f3f3f3f3f3f3f3f3f3f3f"},"(":{t:76,l:9,w:29,h:77,m:"y401d3e382d36303d2e2c452a284d26245522205d1e1c631c1a6918186d16142f182d1412272a2910102336250e0e213e230c0c1f46210a0a1d4e1f08081d521d08061d561d06041b5c1d04021b601d020219641d19681b176c19176e17157215137415117813117a110f7e0f"},")":{t:76,l:9,w:29,h:77,m:"y0f7e0f117a11117813137415157215176e17176c1919681b0219641d021b601d02041b5c1d04061d561d06081d521d080a1f4a21080c1f46210a0e213e230c102336250e12272a2910142f182d14186d161a69181c631c205d1e245522284d262c452a303d2e382d36401d3e"},"{":{t:77,l:1,w:46,h:78,m:"y461542461542461542461542461542461542461542461542461542441940441940441940421d3e40213c3a2d361e5b24166f18107b120e810e0c43043f0c0a4504410a08450841080643103f06063f1a39060433323104041f581f04021b641b02021968190202176c170202157015020215701502177017157415157415157415157415157415157415157415157415157415157415157415157415157415157415"},"}":{t:77,l:1,w:46,h:78,m:"y1574151574151574151574151574151574151574151574151574151574151574151574151574151574151770170215701502021570150202176c17020219681902021b641b02041f581f040433323104063f1a39060643103f0608450841080a4504410a0c43043f0c0e810e107b12166f181e5b243a2d3640213c421d3e441940441940441940461542461542461542461542461542461542461542461542461542"},"[":{t:76,l:5,w:37,h:76,m:"y99999999999999999999157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015"},"]":{t:76,l:5,w:37,h:76,m:"y15701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701599999999999999999999"},"<":{t:73,l:0,w:49,h:70,m:"x60035e055a09580b560d521150134c174a19461d441f40233e23023a250438230834250a32230e2e25102c231428251626251824231c20251e1e23221a252418232814252a12232e0e25300c233408253606233a02253c234021421f44234002233e04253a0823380a23360e233210233014232c16232a1a23261c23241e252022231e24251a2823182a25142e231230250e34230c3625083a23063c250240234221441f481b4a194e155013540f560d5a095c076003"},">":{t:73,l:0,w:49,h:70,m:"x0360055e095a0b580d5611521350174c194a1d461f44234002233e04253a0823380a25340e233210252e14232c1625281a23261c232420232022231e26231a2823182c23142e231232230e34230c3625083a23063c250240234221441f42213e23023c230438230836230a34210e3023102e23122a231628231824231c22231e1e23221c232418252616232a14232c1023300e23320a233608233804253a02233e022140021d44021b4602174a02154c021150020f52020d5402095802075a02035e"},"|":{t:77,l:19,w:10,h:94,m:"ybdbdbdbdbdbdbdbdbdbd"},":":{t:52,l:14,w:19,h:52,m:"x27272727272727272727272727272727262626262626262626262626262626262626262627272727272727272727272727272727"},";":{t:52,l:5,w:37,h:72,m:"y8c058809840d80117c157819741d70216c256829642b02602d045c2f0658310854330a50350c4c370e4839104837121f2a35141f2a33161f2a31181f2a2f1a1f2a2d1c1f2a2b1e1f2a29201f2a27221f2a25241f2a23261f2a21281f2a1f2a1f2a1d2c1f2a1b2e1f2a19301f2a17321f2a15341f2a1336"},".":{t:16,l:14,w:19,h:16,m:"x27272727272727272727272727272727"},",":{t:16,l:5,w:37,h:36,m:"y440540093c0d3811341530192c1d2821242520291c2b02182d04142f061031080c330a08350c04370e391037123514331631182f1a2d1c2b1e292027222524232621281f2a1d2c1b2e1930173215341336"},"\\":{t:76,l:3,w:41,h:77,m:"y039807940d8e138817841d7e217a27742b70316a35660635600a355c1035561435521a354c1e35482435422a333e2e353834333438352e3e332a4235244833204c351a5233165635105c330c6035066633026c2f702b76257a21801b84178a118e0d94079803"},"?":{t:77,l:0,w:49,h:77,m:"y20116a18196a141d6a121f6a0e236a0c256a0c256a0a276a08296a08296a062b6a062b6a042d6a042176021f7a021b7e0219800219800217661d19661d19661d173c131a1d1738171a1d1736191a1d17341b1a1d17321d1a1d17301f1a1d172e211a1d172c231a1d192a231a1d1928251a1d021924271a1d021b20291a1d021d1c2b1a1d021f1623261d04210e232a1d044f48044d4a06494c06474e0843500a3f520a3d540c39560e3558102f5c14295e181f641e136a"},"/":{t:76,l:3,w:41,h:77,m:"y980394078e0d8a118417801b7a217427702b6a316633026035065c330c5635105233164c351a4833204235243c352a38352e3235342e353828353e2435421e35481a334e1435520e35580a355c04356235662f6c2b702576217a1b801784118a0d8e07940398"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["12-09"]={h:81,w:54,g:{0:{t:82,l:0,w:55,h:83,m:"y38353a28552a2067201a731a147f141087100e8b0e0a910c08950a089708069b0606392a39060427502904041f602104021d6a1d020219701b0202197219020217761702021776170202177619177a17177a17177a17177a17177a17177a17177a17177a17177a17177a17177a17177a17177a17177a17177a171778170219761702021776170202177419020219721902021d6a1b04041f621f0404295027040637323306069b060897080a930a0c8f0c0e8b0e128510167d141a731a2265202c512a3a3538"},1:{t:81,l:11,w:32,h:81,m:"y201f641e1f661c1f681a1f6a1a1d6c181f6c161f6e141f70121f72121d74101d760e1d780c1f780a1f7a081f7c081d7e061d80041d82021f821f841d86a3a3a3a3a3a3a3a3a3a3a3"},2:{t:83,l:2,w:50,h:83,m:"y8a190480270e1b522d0c1b50310a1b4e350a1b4a39081b4a3b08194a3d061b464106194643041b444504194447041944250c170417442310170219422114170219401f18170217421d1a170217401d1c17193e1d1e17193c1d2017173e1b2217173c1b2417173c1b2417173a1b261717381b28171738192a1717361b2a1717341b2c171734192e1719301b2e17192e1b3017192c1b321702192a1b3217021b261b3417021d221b3617021f1c1f3617041f181f381704250c233a1706513a17064f3c17084b3e170a4740170c4342170c4144170e3d46171237481714334a17182b4e171c235217221570"},3:{t:81,l:0,w:53,h:82,m:"x65066506650665066506650665066506650665066506461f064421064023083e210c3c210e3a211038211236211434211632211830211a2e211c2c211e2a1f22281f24261f26241f28221f2a201f2c1c212e1a21301a29281a31201a371a1a3b161a3d141a41101a430e1a450c1a470a382b08402308442106461f064a1d044c1b044e1b024e1b02501902501b52195219521952195219521952195219501b501b5019024e1b024c1d024c1d024a1d0405441f04093c21060d362306132a27081d1a2b0a610a5f0c5d0e5b1059125516024f1a06471e0c3d22142f281e1b32"},4:{t:81,l:0,w:53,h:81,m:"y641d226021225c2522582922542d225031224c3522483922443d224041223c4522382f041722342f081722302f0c17222c2f101722282f141722242f181722202f1c17221c2f201722182f241722142f281722102f2c17220c2f301722082f341722042f3817222f3c17222b40172227441722234817221f4c17221b5017221754172213365b0f3a5b0b3e5b07425b03465b485b485b485b485b485b485b6a17226a17226a17226a17226a17226a17226a17226a17226a17226a1722"},5:{t:81,l:4,w:46,h:82,m:"x045504045504045504045504045504045504045504045504045504045504045504041544041544041544041544021744021744021744021744021744021744021744021744021546021546021546022932023526023b2002411a471649144b124f0e4f0e510c530a0d1e2b083223083621063a1d063c1d043e1b04401b02401b02421902421902441944194419441944194419441944194419421b421b421902401b02401b023e1b043c1d043c1d043a1d0636210634210830230a2c270a262b0c1c330e4d104b1249144518411c3f1e392435282d302538114c"},6:{t:81,l:-1,w:56,h:82,m:"y601b2a562d2250391c4c41184649164251124055103c5b0e38610c36650a32690a306d082e391029062a371c2306283722210426352a1d0424352e1b042037321b021e39321b021c1f02193619021a1f04173a1702181f06173a19161d0a173a19121f0a173e17101f0c173e170e1f0e173e170c1f10173e170a1f12173e17081d16173e17061d18173e17041d1a173e17021d1c173e171d1e193c171b20193a191922193a1702172619361902152819361902132a1b321b02112c1d301904112e1b2e1b040f301d281f040d341f221f060b36211c2306093a25102708073c5b080540570a0344530c484f0e484d104c47124e4314503f1654371a56311e5c272264172a"},7:{t:81,l:0,w:55,h:81,m:"y178c178c178c178c178c178c178c178c178c178c178c178c17622b17583517503d174c4117484517424b17404d173c5117385517365717325b172e352a172c2f32172a2b381726293e17242742172225461720234a171c234e171a235017182154171621561714215817121f5c17101f5e170c2160170a21621708216417042366396a376c356e337031722f742d76297a277c257e21821f84198a1390"},8:{t:82,l:-1,w:56,h:83,m:"y6e152468231c642b181a13343314161b2e39101223283d0e102920430c0e2d1e430c0c311a470a0a35164b080839124d080839105106063d0e210e2306063f0a1f162104041d0a1d061d1e1d0404191219061b221b0404171619021b261b0202171a31281b0202171c2d2c1902021520292e190202152227301917222532191526233219152621361715281f361715281d381715281b3a17152a193a17152a193a1715281b3a1715281d381715261f3817152621361717222334190215202732190215202930170202171c2b2e190202171a2f2c190204171633281b020419121b0419261b02041d0a1d061b221b04063f0a1b1e1d04063f0a1f181f04083b0e210e23060839124f060a35144d080c31184b080c2f1c470a102920430c1225243f0e161d2a3b101a13323712603314642b1868231c6e1722"},9:{t:82,l:-1,w:56,h:82,m:"y2a176422275c1e2f581a3754163f5014434e12494a104d480e4f480c5344030a574005082710253c0708211a213a09061f221f360b061d261d340d041d2c1b300f041b2e1b2e11021b321b2c11021936192a1302193619281502173a17261702173a192219193a19201b173e171e1d173e171c1d02173e171a1d04173e17161f06173e17141f08173e17121f0a173e17101f0c173e170e1f0e173e170c1f10193a190a1f12193a170a1d1602173a17061f1802193619041f1a02193619021f1c021b32391e021d303720041b2e3722041f283526061f22372806231a392a08270e3b2e086d300a67340c63360e5d3a0e5b3c125340144d441647481a3f4c1e35522429582c1960"},A:{t:81,l:-1,w:56,h:81,m:"y9c07940f8c17841f7c27742f6e35663d5e45564d4e55465b023e5b0a38591230591a28572420572c185d2e10652e086d2e025508172e4d12172e451a172e3d22172e352a172e2d32172e253a172e1d42172e1946172e213e172e2b34172e332c172e3d22172e4718172e4f10172e5906172e752e066f2e0e672e1665281e671e2667162e670e3669043e65465d5053584b6043683b7033782b8023881b90139a09"},B:{t:81,l:0,w:55,h:81,m:"ya3a3a3a3a3a3a3a3a3a3a3172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617192a153617192a153419021728193219021926193219021b221d2e1902021b221d2e1902021f1c212a1b02041f1627261d0204230e2d221d04065f1a210406650e25060895060a41044d080c3f044d080e3b08490a103908470c12350c430e1431103d1218291639141c211e31182413262b1c602320681328"},C:{t:82,l:3,w:47,h:83,m:"y422540363d342c4f2c265b262265201c6f1c187718167b161283121087100e8b0e0c8f0c0a3724390a082f3a2f0806294a2906062356230604215e2104041d661d04021d6a1d02021b6e1b0202197219020217761702197619177a17177a17177a17177a17177a17177a17177819197619197419020219721902021b6e1b02021d681f02041f602104042358250406215823060621582306081f5821080a1d581f0a0c1b581d0c0e19581b0e10175819101413581514180f5811181e09580d1c"},D:{t:81,l:3,w:47,h:81,m:"ya3a3a3a3a3a3a3a3a3a3a31776171776171776170215761702177417021772170202177217020219701702041770170204196c190204196c17040619681904061b661904081b621906081d5e1b060a1d5a1b080a1f561d080c1f521d0a0e214c1f0a0e2346210c102540230c122738250e142b2c291016331a2f121877141a73161c6f1820691a22631e265d202a55242e4d2832452c363d303e2f36481b40"},E:{t:81,l:3,w:48,h:81,m:"x5d045d045d045d045d045d045d045d045d045d045d04174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a550c550c550c550c550c550c550c550c550c550c550c174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a6161616161616161616161"},F:{t:81,l:7,w:40,h:81,m:"ya3a3a3a3a3a3a3a3a3a3a3172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a178c178c178c178c178c"},G:{t:82,l:1,w:52,h:83,m:"y3e29403243322a532a245f242067201c6f1c1a7518167b16147f141283121087100e8b0e0c3524370c0a2d3a2d0a0a27462908082352230806215a2106061f5e1f06041d661d04041b6a1b04041b6c1904021b6e1b0202197219020219721902021776191936172a191936172a191738172c171738172c171738172c171738172c171738172c171738172c171738172c171738172c171738172c171936172a19021736172a1702021934172a1702021b32172a1702041d2e17281902041f2c5702061d2c5504061d2c5504081b2c55040a192c55040c172c53060e152c530610132c530612112c5108160d2c51081a092c4f0a"},H:{t:81,l:2,w:49,h:81,m:"ya3a3a3a3a3a3a3a3a3a3a3441748441748441748441748441748441748441748441748441748441748441748441748441748441748441748441748441748441748441748441748441748441748441748441748441748441748441748a3a3a3a3a3a3a3a3a3a3a3"},I:{t:81,l:7,w:40,h:81,m:"y8c178c17177617177617177617177617177617177617177617177617177617177617177617177617a3a3a3a3a3a3a3a3a3a3a31776171776171776171776171776171776171776171776171776171776171776171776178c178c178c17"},J:{t:81,l:7,w:39,h:82,m:"y6e191e6e1f186e23146e27106e290e6e2d0a6e2f086e2f086e31066e33046e3304841f02881b028a19028c198c198e178e178e178e178e178e178e178c198c17028a1902881b02841f02a104a1049f069d089d089b0a990c951091148d18871e"},K:{t:81,l:-3,w:60,h:81,m:"ya3a3a3a3a3a3a3a3a3a3a3401f443e23423c27403a2b3e382f3c36333a343738323b36301f021f342e1f061f322c1f0a1f302a1f0e1f2e281f121f2c261f161f2a241f1a1f28221f1e1f26201f221f241e1f261f221c1f2a1f201a1f2e1f1e181f321f1c161f361f1a141f3a1f18121f3e1f16101f421f140e1f461f120c1f4a1f100a1f4e1f0e081f521f0c061f561f0a041f5a1f08021f5e1f061f621f041d661f021b6a1f196e1d17721b157619137a17117e150f82130d86110b8a0f098e0d07920b059609039a079e05a003"},L:{t:81,l:1,w:51,h:81,m:"ya3a3a3a3a3a3a3a3a3a3a38c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c17"},M:{t:81,l:0,w:54,h:81,m:"ya3a3a3a3a3a3a3a3a3a3a31d86257e2d7633703b6843604b58064d500c4d4a144d421a4f3a204f342847342e41343639343c33343c33343639342e4134284734204f341a4f3a144d420c4d4a064d504b5843603b6833702d76257e1d86a3a3a3a3a3a3a3a3a3a3a3"},N:{t:81,l:1,w:51,h:81,m:"ya3a3a3a3a3a3a3a3a3a3a3297a2d76337002356c0635680c356210355e14355a1835561e355022354c2635482c354230353e34353a3a35343e353042352c4637264c352250351e54351a5a35145e351062350c6637066c35027033742fa3a3a3a3a3a3a3a3a3a3a3"},O:{t:82,l:0,w:54,h:83,m:"y42254038393630492e2a552824612220691e1c6f1c187718167d141283121087100e8b0e0c3724350c0a2d3c2b0a08274a27080821562306061f5e1f06041d661d04041b6a1b04021b6e1b020219721902021776170202177619177819177a17177a17177a17177a17177a17177a1719761919761902197417020219721902021b6e1b02041b6a1b04041f641d04061f5e1f06082354230608274a27080a2d3a2d0a0c3724350c0e8b0e108710128312167d141877181c711a20691e245f242a552830492e363b36422342"},P:{t:81,l:1,w:52,h:81,m:"ya3a3a3a3a3a3a3a3a3a3a317341742173417421734174217341742173417421734174217341742173417421734174217341742173417421734174217341742173417421734174217341742173417421734174217341742173417421732194219301942193017441b2c194402192a1b44021b281b44021d241b46041f1c1f46042510234806554806534a08514a0a4d4c0c494e0e4550104152123d54163558182f5c1e2560261766"},Q:{t:82,l:-3,w:60,h:82,m:"y3a27442e4136284f2e22592a1e61261a692216711e14751c107b1a0e7f180c83160a87140a33223512082b382b10062546270e062150210e041f581f0c041b5e1d0c021b3805281b0a02193a0728190a02173c0b24190a193c0d241908193c0f221908173e13201708173e151e1708173e171c1708173e1b181708173e1d161708173e21121708173e230e1908193c250c190802173e2706190a02193e27021b0a021b403f0a041b403b0c041f3e390c06213e330e06273a2f10082b362b120a352431120c89100e8b0c108b0a128b08148d04188b021a8b1e5f062322570c21284d141d303d1e1b3c252c1990159213960f980d9a0b9e07a005a203"},R:{t:81,l:1,w:51,h:81,m:"ya3a3a3a3a3a3a3a3a3a3a3173217441732174417321744173217441732174417321744173217441732174417321744173217441732194217321d3e1732213a173225361732293217302f2e192e332a192e37261b2a3d2202192a411e021b2617022d1c021d2219042f18041f1c1b082f14042312210c2f100651122f0c0651162f08084d1a31040a4b1e310a49242d0c452a290e413025123b342314353c1f182f421b1c254c17241756139211960d9a099e05"},S:{t:82,l:2,w:49,h:83,m:"y780f2078151a22154219161a233c1b14162b381d12143134210e123532210e0e3b30230c0c3f2e250a0c412c27080a432c270808473221060849341d06064b361d0404210c23361b04041d1421361b02041b1a1d381902021b1e1d3817020219221b3817020217241d36190217261b381717281d3617172a1b3617172c1b3417172c1b3417172e1b3217172e1b321717301b301717301b2e1919301b2c1919301d2a17020219301b2819020219301d241b02021b301d201d02021d2e1f1c1d04041f2c21161f04042726230e210606252651060625284d0808232a4b080a212a490a0c1f2c450c0e1d2e410e101b303d10121932391216153633141813382d181e0d3e231c6e1524"},T:{t:81,l:0,w:54,h:81,m:"y178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178ca3a3a3a3a3a3a3a3a3a3a3178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c"},U:{t:81,l:1,w:52,h:82,m:"y7f26871e8b1a8f1691149510970e990c9b0a9b0a9d08782706801f06821f04861b04881904881b028a19028c17028c17028c198e178e178e178e178e178e178e178e178e178e178c198c17028c17028a1902881b02881b02861b04821f04801f067a25069d089d089b0a990c970e951093128f168b1a871e7d28"},V:{t:81,l:-2,w:58,h:81,m:"y059e0b9813901b8823802b7833703b6843604b585350594a065b420e5b3a165b321e5b2a265b222e5b1a365b123e5b0a4659044e55564d5e45663d6e35762d7e25861d861d7e25762d6e35663d5e45564d4e554659043e5b0a365b122e5b1a265b221e5b2a165b320e5b3a065b42594a53504b5843603b6833702b7823801b8813900b98059e"},W:{t:81,l:0,w:55,h:81,m:"y356e4f54614271327f248b18950e9f04a3a3a32a794a5960437231762d7033683b62415a4952514c510644510e3e4f163e471e3e3f263e372e3e2f363e372e3e3f263e471e3e4f1644510e4c510652515a496241683b7033762d723160434a592a79a3a3a39f04950e8b187f24713261424f54356e"},X:{t:81,l:0,w:54,h:81,m:"y039e030796070b8e0b0f860f137e131776171b6e1b1f661f235e232756272b4e2b2f462f02313e310206313631060a312e310a0e3126310e12311e311216311631161a310e311a1e3106311e225f222657262a4f2a2e472e323f323637363a2f3a3a2f3a363736323f322e472e2a4f2a265726225f221e3106311e1a310e311a163116311612311e31120e3126310e0a312e310a063136310602313e31022f462f2b4e2b275627235e231f661f1b6e1b177617137e130f860f0b8e0b079607039e03"},Y:{t:81,l:0,w:53,h:81,m:"y059e099a0d961192158e198a1d862182257e297a2d76022f72062f6e0a2f6a0e2f66122f62162f5e1a2f5a1e2f56222f52262f4e2a792e753271366d3a693e653a69366d32712e752a79262f4e222f521e2f561a2f5a162f5e122f620e2f660a2f6a062f6e022f722d76297a257e21821d86198a158e11920d96099a059e"},Z:{t:81,l:4,w:46,h:81,m:"y8e1517741917701d176c2117682517642917602d175c3117583517543917503d174c411748451744491740330417173c3308171738310e1717343112171730311617172c311a171728311e1717243122171720312617171c312a171718312e1717143132171710313617170c313a171708313e171704314217474617434a173f4e173b5217375617335a172f5e172b6217276617216c171d70171974171578178c178c178c17"},a:{t:61,l:3,w:48,h:62,m:"x261d1e1c2f16163912143f0e10450c0e490a0c4d080a51060853060823122104061f1e1b04061b241904061928190206192a170204192c170204192e15024a174a174a174a174a174a174a174a17263b1c451849144d10510c550a570859085906212417041d2a17041b2c17021b2e17021930170217321719321717341717321917321917321917301b17301b172e1d192a1f19282102192423021b2025021d1a29041f102f045d065b08590a3d04170c3906170e350817122d0c17162510171e152e"},b:{t:87,l:0,w:53,h:88,m:"yaf02af02af02af02af02af02af02af02af02af02af02422518250e401f281f0c3e1b341b0a3c1b3a19083c174017083a17441706381748170438174a150438154c170236174e1502361550150236155015023415541534155415341554153415541534155415341554153415541534155415341750173417501734194c170236174c17023619481902361b441904381b401b04381d3a1f043821341f063a252823083c2b182b083c6b0a3e670c40630e425f104659124855144c4d1850451c543d205c2f26661d2e"},c:{t:61,l:4,w:46,h:62,m:"y301d30263126203d201c451c184d18165314125b10105f0e0e630c0c670a0a6b0808291c290806232c2306061d381f04041b3e1d040419441b02021948190202174c170202174c170202155017175017155415155415155415155415155415155415155415155217175017174e170202174c17020219481902021b421d02041d3a1f04041f342304041f342106061d342106081b341f08081b341d0a0a19341b0c0c1734190e0e153417101211341314160d3411161a09340b1c"},d:{t:87,l:0,w:53,h:88,m:"y641f2e5a3126543d2050471a4c4d18485514465912445d1040630e3e670c3e690a3c2b182b083a252823083a1f322106381d3a1d06381b401b04361b441904361948190236174a190234194c17023417501734175017341552173415541534155415341554153415541534155415341554153415541536155015023615501502361550150238154c150438154a170438174815063a174417063c174017083c193a190a3e1b321d0a401f281f0c42231a250eaf02af02af02af02af02af02af02af02af02af02af02"},e:{t:61,l:1,w:51,h:62,m:"x2819262225201c311a1a3716163d1414411212451010490e0e4d0c0c510a0c211023080a1d1a1f08081b221d060819261b0606192a1b0406172e19040615301904041732190204153419020415361702021736170202153817020215381702021538190265676767676767676767194e194e194e194e02174e02174e02194c02194c02194c04194a04194a041b48061b46061d44081d241906081f2219060a211a1d060a271021060c53080e5108104d0a124b0a14470c16430e1a3b121e3316222b1a2a1b22"},f:{t:87,l:4,w:45,h:87,m:"y361564361564361564361564361564361564361564361564361564361564361564361564361564361564361564361564361564228d1897149b109f0ca30aa508a708a706a904ab04ab0221141564021b1a156402191c156402171e1564172015641720156417201564152215641522156415221564152215641522156415221564152215641522156415221564159a"},g:{t:61,l:1,w:51,h:81,m:"y2a1d5c222f521c3b4c18432c0b12144b280f0e124f26130a0e572215080c5b2015080a5f1e170608611e170608631c190406271a271a190404212a1f1a1b02041d321d181b0204193a191c170202193e191c1502021742171e1302021546151e151746171c15154a151e13154a151e13134e131e13134e131e13134e131e13134e131e13134e131e13134e131e13134e131e13134e131e1302134a13201302134a13201302134a131e15041346151e1302041344152013020613421520130206153e15201502081736172215020a17301b2017020a1b281d2017040e1f18231e1b04029b06029b0602990802990802970a02950c02930e029110028d1402891802831e"},h:{t:87,l:4,w:45,h:87,m:"yafafafafafafafafafafaf401d523e19583c175c3a175e3a1560381562381562361564361564361366361366341566341566341566341566341566341764341764341764341962361960361d5c362158387738773a753c733c733e71426d446b48674c63545b"},i:{t:87,l:12,w:29,h:87,m:"y3617623617623617623617623617623617623617623617623617623617623617623617623617621f1817621f1817621f1817621f1817621f1817621f18791f18791f18791f18791f18791f18791f18791f18791f18791f18791f1879"},j:{t:87,l:11,w:32,h:108,m:"yc415c415c415c415c415c415c415c415361778153617781536177815361778153617781536177815361776173617761736177417021f18177219021f1817701b021f18176e1d021f18176821041f189f041f189d061f189d061f189b081f189b081f18990a1f18970c1f1893101f1891121f188d161f18851e"},k:{t:87,l:1,w:52,h:87,m:"yafafafafafafafafafafaf601b345e1f325c23305a272e582b2c562f2a543328523726503b244e1f021f224c1f061f204a1f0a1f1e481f0e1f1c461f121f1a441f161f18421f1a1f16401f1e1f143e1f221f123c1f261f103a1f2a1f0e381f2e1f0c361f321f0a361d361f08361b3a1f0636193e1f043617421f023615461f36134a1d36114e1b360f5219360d5617360b5a1536095e13360762113605660f36036a0da40ba609a807aa05ac03"},l:{t:87,l:11,w:32,h:87,m:"y8d22951a9b149f10a30ca50aa708a906a906ab04ab048c2102901d02941902961996199817981798179a159a159a159a159a159a159a159a159a159a159a159a159a15"},m:{t:61,l:-1,w:57,h:61,m:"y027902790279027902790279027902790279027902790a155c081162061164041166040f6802116802116802116813681566156619627b7b7b7b027902790477047708730a71087306195c0415620413640213660211680211681368136813681566176419627b7b0279027904770477067508730c6f106b1665"},n:{t:61,l:2,w:50,h:61,m:"y027902790279027902790279027902790279027902790e214c0c1d520c19560a195808175c06175e0615600417600415620217620215640215640213661566156615661566156615661566156617641764021762021762021960021d5c041f5804770675087308730a710c6f0e6d126916651a61205b"},o:{t:61,l:-1,w:56,h:62,m:"y301d30262f282239221c431e1a491a165116145514125912105d100e610e0c650c0a2918290a0823282308081f321d08061d3a1b0606194019060419441904041748170402174c17020215501502021550150202135413021554151554151358131358131358131358131358131358131358131358131356151554130202135413020213521502021550150202174c150404154a17040417461904041b401906061b3c1b06061f341d0808232a1f0a0a291a270a0c650c0c630e0e5f10105b12145514164f181a491a1e411e223724282b2a321932"},p:{t:61,l:0,w:53,h:81,m:"y02a102a102a102a102a102a102a102a102a102a102a10c271827320a212821300a1b341b3008193c192e061940192c061744172c041748172a04154c152a02174c17280215501528021550152802135215281554152615541526155415261554152615541526155415261554152615521726175017261750152802154e172802174c17280219481928041944192a041b401b2a061b3c1b2c061f341f2c08212c212e082b1a292e0a69300c65320e6134105d3612593816513c1a4b3e1e4144223948282d4e321958"},q:{t:61,l:0,w:53,h:81,m:"y321b56282f4c223b461e43421a4b3e16533a125938105d360e61340c65320a6930082b1a292e08232a212e061f341f2c061b3c1b2c041b42192a041946172a021948192802174c172802174c1728021550172617501726155415261554152615541526155415261554152615541526155415261554152602135215280215501528021550152804154c172804154c152a061548172a061744172c081740192c08193c192e0a1b341b300c1d2c1d320e231a253402a102a102a102a102a102a102a102a102a102a102a1"},r:{t:61,l:5,w:44,h:61,m:"y027902790279027902790279027902790279027902790e1f4e0c19560a175a08175c08155e061560041562041364021366021366021366136813681368136813681368156615661764021960021d5c0227520425520425520623520623520821520a1f520c1d521019521415521a0f52"},s:{t:61,l:3,w:48,h:62,m:"x261d1e1e2d16183712143f0e10450c0e490a0c4d080a4f08085306081f142106061d1c1f040619241b040617261b04041928190404172a190404172c1704041746041746041746041944041944041b42061b40061f3c082336082d2c0a33240a3b1c0c3f16103f1212410e163f0c1a3d0a203908283306302d043a2304401f02441b0246190248194a174a174a174a174a17173417173219193019192e19020219281d02021d221d040223142504045706065506065308084f0a0a490e0e431012391616311a1e1f24"},t:{t:77,l:5,w:44,h:78,m:"y22156622156622156622156622156622156622156622156622156622156622156622156606791e048316048712048b0e048d0c02910a029308029506990499049b022215461f0222154c190222154e1922155017221550172215521522155215221552152215521522155215221552152215521522155017221550172215501502221550150222154e170222154e150422154c170422154c150622154a1706"},u:{t:60,l:2,w:50,h:61,m:"y5d1e631867146b106d0e710a730873087506770477045a1f025e1b02601902621964176417641766156615661566156615661566156613026415026415026415026215046215046015065e17065e15085c170858190a56190c521d0c4a230e79027902790279027902790279027902790279027902"},v:{t:60,l:-2,w:58,h:60,m:"y037609700f6a15641b5e215827522b4e314837423d3c433602473008472a0e472414471e1a451a20451426450e2c45083245023a3f403946334c2d522758215e1b641564155e1b582152274c2d463340393a3f3245022c450826450e2045141a451a14471e0e472408472a02473043363d3c374231482b4e275221581b5e15640f6a09700376"},w:{t:60,l:-1,w:56,h:60,m:"y097019602b4e3d3c4d2c5f1a7108797979790c6d2059344548315c1d582150294a2f42373c3d344104303d0c303712302f1a302920302128301b2e301b2e302128302920302f1a303712303d0c3441043c3d42374a2f502958215c1d4831344520590c6d7979797971085f1a4d2c3d3c2b4e19600970"},x:{t:60,l:0,w:55,h:60,m:"y037403057005076c070b640b0d600d0f5c0f1354131550151948191b441b1d401d213821233423272c270227282702062524250608271c27080c2518250c0e2710270e12250c2512142508251418250223181c411c1e3d1e2235222431242829282a252a2829282431242235221e3d1e1c411c1825022318142508251412250c25120e2710270e0c2518250c08271c270806252425060227282702272c272334232138211d401d1b441b1948191550151354130f5c0f0d600d0b640b076c07057005037403"},y:{t:60,l:-1,w:56,h:80,m:"y059c0984150d8015117c151578151974151d7015216c152566172960192d581b02042d521d02082d4a1f040c2d422304102d3a2506142d322906182d2c29081c2d242b0a202d1c2d0c242d142d10282d0c2f122c2d042f1630571a344f1e3847223c3f2640372a442f2e442b32402b363c2b3a382b3e342d40302d442c2d48282d4c242d50202d541c2d58182d5c142d60102d640c2d68082d6c042d702d742978257c21801d841988158c11900d940998059c"},z:{t:60,l:4,w:46,h:60,m:"x0455040455040455040455040455040455040455040455040455040455043e1b043e1b043c1b063a1b08381b0a361b0c341d0c341b0e321b10301b122e1b142c1b162a1d162a1b18281b1a261b1c241b1e221b20201d20201b221e1b241c1b261a1b28181b2a161d2a161b2c141b2e121b30101b320e1b340c1d340c1b360a1b38081b3a061b3c041b3e021d3e021b401b4219445d5d5d5d5d5d5d5d5d5d"},"~":{t:87,l:-1,w:57,h:19,m:"x161538050c121f30090a10252c0b080c2d260f060a332015020a371a19083f121b06450a1d02046d02046b04026b061d0e41081b143d08191a370a021520310c0411262b0e060d2c2510080b301d140c0538111a"},"!":{t:87,l:19,w:16,h:87,m:"y1b781d474c1d6d261d6d261d6d261d6d261d6d261d6d261d6d261d6d261d6d261d6d261d6d261d6d261d474c1d1b781d"},"@":{t:89,l:0,w:54,h:90,m:"y2a098220133a25241a19303b18161d2a47121221264f0e102322570a0e25205b080c271e5f060a291c6106082b1a6504082520251e2502061f281d2e1d02041b2c1938190204192e173c1904173015401702173215421502173215421502153415421502153415421517341740151538173c171538193a1502153a19361702153a1f2c1904153c251c210415366506153663081536610a15365d0e1536610a1734630817346506021534670402153469020217801b0204178219041784170419841506198215061b8015081d7c150a1f76170c2170190c2b621b02103b462302129f04149d041897061c9108208b0a26810e2c7712366718484924"},"#":{t:87,l:0,w:53,h:87,m:"y760928096e1120113c072c11161b360d2c110e2332112c11042d32112c4132112c413211244932111c513211125b3211085f06326f0e3265182e5f2224612a1a6530106f3006610811305d121130551a11304b241130432c1130432c11302b08112c11302310112c112e03191a112c11260b0f24112c111c15052e112c11121f32112c11082932112c4132112c413211264732111c513211125b32110a63327508326b122e651c2465261a6530126d300863041130610e1130571811304f201130452a1130432c11303102112c1130290a112c0f321f14112c073a151e116c0b28097432037a"},$:{t:87,l:-1,w:56,h:87,m:"y7c0b282a13401122241d3c151e202538171c1c2d34191a1a31321b181835301d1616392e1f14143b2e1f14143d2c211212412a211212412a231010452e1d10101d0c1d321b0e0e1b141b32190e0e19181934170e0e171c1932170e0e171e1732190c0c191e1932170c0c17221732170c0c17221732170c0c17241730170c0c17241730170c0c17241730170cafafafafafafafafaf0c172a1928170c0c172c1728170c0c172c1926170c0e152c1926150e0e152e1922170e0e172c1922170e0e172e191e190e10152e1b1c171010192a1b1a1910101f261d141b10122122210c1d121221244712141f244514161d264314161d283f16181b283d181a192a391a1c172c351c20132e311e2211302d20280b322724681f286e132e"},"%":{t:85,l:0,w:53,h:85,m:"y1215840c1f800a256a1308296615062d601904315a1d023554210235502502354e27131413482b111811442d02111811402d061118113c2d0a1118113a2b0e111811362b12131413322d140235302d1802352c2d1c02332c2b200431282b24062d262d260829242d2a0a25222d2e0e1d242b321215242b36462b3a422d3c3e2d403c2b1e1512382b1c1f0e342b1e250a302d1e29082c2d202d062a2b223104262b243502222b2835021e2b2c35021c2b2c131413182b30111811142b34111811102b381118110c2b3c1118110a2b3e111811062b42131413022b483502294c350225503304235431041f5a2d061b6029081766250a136e1d0e841512"},"^":{t:88,l:-1,w:56,h:45,m:"y4c030c4a070a480b084411064215043e1b023a2138233425023225042e27062c270828290a26290c222b0e2029121c2b14182d16162d18122f1a102f1c0c311e0a31200633220433243328312a2f2c2f2c312a33280433240633220a31200c311e102f1c122f1a162d18182d161c2b14202912222b0e26290c28290a2c27082e270632250434250238233a213e1b02421504441106480b084a070a4c030c"},"&":{t:88,l:-1,w:57,h:88,m:"y78152472211e6c2d181e1338331618212e39121429283d10122f20430e10351a470c0e3b144b0a0c410e4f080a47085108084b0653060871102504066f182104066b201d0404230e3b241d02041d1a33281b02021d202d2a1b02021b26272e190202192a272e19021730272a19193029281917322d26171730312417172e372017172c3b1e17172a411a17172a1904271817172819082716171726190e27121719221b1027101719201b16270c1702191c1b1a27081702021b181b1e29041702021d141d2227021702041f0c1f263d0204472c370404453035040641363104083d3a2d06083b3e2b060a374429040c334829020e2f3c3910292c4d12252c4f161d304f1c13344f624f6237021762330815622f10116229180f6223220b621b2c0962113a05ae03"},"*":{t:86,l:-1,w:56,h:56,m:"y32033c2e093a280f3a22153a1e1b381c1d381e1b2a030c1e1d26050c201b24090a201b220d08201b1e1108221b1a1506221b1819042419161b04241b10210226190e2526190c2728170a27022819042706281902250a2a3b0c2a37101b1231145b16571a531e51204d244d245120531e571a5b161b1231142a37102a3b0c281902250a281904270628170a270226190c2726190e25241b1021022419161b04221b181904221b1a1506201b1e1108201b220d08201b24090a1e1d26050c1e1b2a030c1c1d381e1b3822153a280f3a2e093a32033c"},_:{t:-9,l:-3,w:61,h:10,m:"x7b7b7b7b7b7b7b7b7b7b"},"+":{t:75,l:1,w:52,h:62,m:"y3415343415343415343415343415343415343415343415343415343415343415343415343415343415343415343415343415343415343415343415347d7d7d7d7d7d7d7d7d7d7d7d341534341534341534341534341534341534341534341534341534341534341534341534341534341534341534341534341534341534341534341534"},"`":{t:81,l:7,w:39,h:32,m:"y033e053c073a09380b360f321130132e152c172a19281d241f222120231e251c29182b162d142f123110330e370a39080437060835040c33021031142d18291c252021241d28192c153011340d38093c05"},"-":{t:37,l:1,w:52,h:13,m:"x69696969696969696969696969"},"=":{t:63,l:1,w:51,h:37,m:"x67676767676767676767676666666666666666666666666666666767676767676767676767"},'"':{t:81,l:9,w:36,h:26,m:"y353535353535353535353535353434343434343434343435353535353535353535353535"},"'":{t:81,l:20,w:14,h:34,m:"y4545454545454545454545454545"},"(":{t:87,l:10,w:33,h:88,m:"y4a1f4840333e3a3f38344b3230532e2c5b2a286326246b22226f201e771c1c7b1a18811816371a3714142f2e2f12122b3a2b10102744290e0c274c270c0a2554250a0a2358250808216023060621642106041f6a2104021f6e2102021d72211d761f1b7a1d197e1b198019178417158617158815138c13138e11"},")":{t:87,l:10,w:33,h:88,m:"y138e11138c13138a15158617178417198019197e1b1b7a1d1d761f021d7221021f6e2102041f6a21040621642106082160230608255825080a2554250a0c274c270c0e2944290e122b382d10142f2c311216371a37141881181c7b1a1e771c226f20246b222863262c5b2a30532e344b323a3f3840333e4a1f48"},"{":{t:89,l:1,w:52,h:90,m:"y50174e50174e50174e50174e50174e50174e50174e50174e50174e50174e4e194e4e1b4c4e1b4c4c1f4a4c1f4a48254842314222692a1a7d1e1489181091140e4d0249100c4f024b0e0a4f064b0c084f0a4b0a084b104b08064918490606412841060423602b04041d721f0404197a1b0402197e1b020219801902021782190202178417020217841702198419178817178817178817178817178817178817178817178817178817178817178817178817178817178817178817"},"}":{t:89,l:1,w:52,h:90,m:"y178817178817178817178817178817178817178817178817178817178817178817178817178817178817178817198419021784170202178417020217821902021980190202197e1b0204197a1b04041d721f040423602b0406412841060649184906084b104b08084f0a4b0a0a4f064b0c0c4f024b0e0e4d0249101091141489181a7d1e22692a4231424825484c1f4a4c1f4a4e1b4c4e1b4c4e194e50174e50174e50174e50174e50174e50174e50174e50174e50174e50174e"},"[":{t:88,l:6,w:42,h:88,m:"yb1b1b1b1b1b1b1b1b1b1b1b1178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417"},"]":{t:88,l:6,w:42,h:88,m:"y178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417b1b1b1b1b1b1b1b1b1b1b1b1"},"<":{t:84,l:0,w:55,h:81,m:"x6c0368076609640b600f5e115a155817541b521d501f4c234a2546294429024029063e29083c270c38290e3627123229143029162e271a2a291c2827202429222227261e29281c272c1a272e1629301427341029360e273a0a293c0827400627420227462748234c214e254a27480427440627420827400c273c0e273a1227361427341629301a272e1c272c2027282227262429222827202a271e2e271a30271832291436271238290e3c270c3e270a4029064427044627024a23024c21024e1f02521b025419025815025a13025c1102600d02620b026607026805026a0302"},">":{t:84,l:0,w:55,h:81,m:"x036c076809660b640f60115e155a17581b541d521f50234c254a294602294406294008293e0c273c0e29381227361429321629301a272e1c292a20272822292426272228291e2a291c2e271a3029163427143629103a270e3c290a3e290842270644290248274a254c234a2546294427044227063e29083c270c38290e3627123229143027182c291a2a291c2827202429222227261e29281c272c18292e1629301229341029360e273a0a293c0827400429420229442748254a214e1f501b5419561758135c115e0d620b640966056a036c"},"|":{t:89,l:21,w:11,h:109,m:"ydbdbdbdbdbdbdbdbdbdbdb"},":":{t:60,l:16,w:21,h:60,m:"x2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b"},";":{t:60,l:6,w:42,h:84,m:"ya405a0099c0d9811941590198c1d8821842580297c2d782f027431047033066c350868370a64390c603b0e5c3d10583f12544114543f1625303d1825303b1a2530391c2530371e25303520253033222530312425302f2625302d2825302b2a2530292c2530272e25302530253023322530213425301f3625301d3825301b3a2530193c2530173e"},".":{t:18,l:16,w:21,h:18,m:"x2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b"},",":{t:18,l:6,w:42,h:42,m:"y50054c09480d441140153c19381d342130252c29282d242f022031041c330618350814370a10390c0c3b0e083d10043f1241143f163d183b1a391c371e3520332231242f262d282b2a292c272e2530233221341f361d381b3a193c173e"},"\\":{t:88,l:4,w:45,h:89,m:"y05ae0ba80fa4159e199a1f94258e298a2f843380397a3d76063d700c3d6a103d66163d601a3d5c203d56263b522a3d4c303d46343d423a3d3c403b38443d324a3b2e4e3d28543d225a3b1e5e3d18643b14683d0e6e3b0a723d04783b7e358231882b8c279221981b9c17a211a60dac07"},"?":{t:89,l:0,w:55,h:89,m:"y22177a1c1d7a18217a14257a12277a10297a0e2b7a0c2d7a0a2f7a0a2f7a08317a08317a06337a06337a042b8404238c041f90021f92021d94021b96021b74231b76231b76231b46131e231942191e2319401b1e23193e1d1e23193c1f1e23193a211e231938231e231936251e231934271e231b32271e231b30291e2302192e2b1e23021b2a2d1e23021d262f1e23021d24232c2302211e213023042118233223042510255606555806555806535a084f5c0a4b5e0a49600c45620e4164103d6612376a14336c182b701c217622157c"},"/":{t:88,l:4,w:46,h:89,m:"yae05aa09a40f9e159a19941f90238a29842f80337a39763b02703d066a3d0c663b12603d165c3b1c563d20503d264c3d2a463d30423b363c3d3a363d40323d442c3d4a283d4e223d541c3d5a183d5e123d640e3d68083d6e023d743b78357e31822b88278c21921b98179c11a20da607ac03b0"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["12-10"]={h:90,w:60,g:{0:{t:89,l:-1,w:62,h:90,m:"y3e37402e5730246b261e791e18831a148d141093120e990e0c9d0c0aa10a08a50808a508063f2c3f06062d4e2f060425642504041f701f04041b761d04021b7a1d02021b7c1b020219801902021980190202198019020217821b19841919841919841919841919841919841919841919841919841919841919841919841919841919841919841919841919821902198219020219801902021980190202197e1b02021b7c1904021d781b04041f701f040425642306042f522b06063f32390608a50808a30a0aa10a0c9d0c0e990e129112168b141a831820771e28692432552e42353e"},1:{t:88,l:12,w:36,h:88,m:"y22236c22216e2021701e21721c21741a217618217818217816217a14217c12217e102180101f820e21820c21840a2186082188081f8a061f8c04218c02218e21901f92b1b1b1b1b1b1b1b1b1b1b1b1b1"},2:{t:90,l:2,w:56,h:90,m:"x2a1d2a1e3122183d1c1247180e4f140a5512065b10045f0e04610c04630a046508046508042b1429060423222504041b2c2304041734210204133a1f02040f3e1f02040b441d0204074a1d04034e1d541d561b561b561b561b561b561b561b541b02541b02521d02521d02501d044e1f044c1f064a210646230844230a42250a3e270c3a290e382910342b123229162e2b182a2d1a282b1e242d20222b242029281c2b2a1a292e18293016273414253812253a10253c0e23400e21420c21440a21460a1f48081f4a081d4c061d4e061b50041b52041b52041954021b54021b540219560219560219560219561b561b566f026f026f026f026f026f026f026f026f026f026f02026d02"},3:{t:88,l:0,w:59,h:89,m:"x6f086f086f086f086f086f086f086f086f086f086f086f084c23084a250848250a46250c44250e4223124023143e23163c23183a231a38231c36231e3423203223223023242e23262c23282a212c28212e2621302421322221342021361e2b2e1e33261e39201e3f1a1e43161e45141e47121e4b0e1e4d0c1e4d0c402d0a4629084c25064e2306522104541f04561d04581d02581d025a1b025a1d5c1b5c1b5c1b5c1b5c1b5c1b5c1b5c1b5a1d5a1d5a1b02581d02561f02561f02541f0403502104074a21060b42250611382708172e2b08211c310a6b0c690e67106512631461165d1a04551e084d220e432616332e221d38"},4:{t:88,l:0,w:59,h:88,m:"y6c1f26682326642726602b265c2f26583326543726503b264c3f26484326444726404b263c35021926383506192634350a192630350e19262c35121926283516192624351a192620351e19261c35221926183526192614352a192610352e19260c35321926083536192604353a1926353e1926314219262d461926294a1926254e1926215219261d561926195a1926153a63113e630d4263094663054a634e634e634e634e634e634e634e634e63721926721926721926721926721926721926721926721926721926721926721926"},5:{t:88,l:4,w:51,h:89,m:"x065d04065d04065d04065d04045f04045f04045f04045f04045f04045f04045f04045f0404194a04194a04194a04194a04194a04174c04174c02194c02194c02194c02194c02194c02194c02194c02194c02194c022d3802392c02412402471e024b1a024d18531455125710590e5b0c5d0a111e2f0a3629083c2506402106422104441f04461d04481d02481d024a1b024a1b024a1d4c1b4c1b4c1b4c1b4c1b4c1b4c1b4c1b4c1b4a1d4a1b024a1b02481d02481d02461d04441f044221044021063e23063c230838250a34290a302b0c28310e1e39105512531451164d1a4b1c472043243f28392e313627401552"},6:{t:88,l:-1,w:63,h:89,m:"y681d2e602d26583b2054431c4e4d184a5316485714445d124063103e670e3a6d0c38710a36730a323d122b08303b1c25082e392423062a392a21062839301f042639341d04243b341d04223b381d021e2302193c1b021c2304193c1b021a23041940190218210819401b16210a19401b14210c17441912210e17441910210e1944190e21101944190c1f141944190a1f16194419081f18194419061f1a194419041f1c194419021f1e1944191f201b42191d221b401b1b241b40190219281b3e1902172a1b3c1b02152c1d3a1b02152c1d381d0213301d341d0411321f301f040f341f2e1f060d38212821060b3a23242306093e251c250807402912290a0544610a05465d0c03485b0e4c590e4e5510505112524d1456451858411a5c391e6031226429266c192e"},7:{t:88,l:0,w:60,h:88,m:"y1998199819981998199819981998199819981998199819981998196c2d196237195a3f195445195049194c4d194851194455194059193e5b193a5f1938611934651932392e192e3536192c2f3e192a2d4219262d4619242b4a1922294e19202752191e2556191a27581918255c1916255e191425601912236419102366190e2368190c236a1908236e190425703f723d743b763978357c337e31802f822d842988278a238e21901b96159c"},8:{t:89,l:-1,w:62,h:90,m:"y7817267223206e2d1a6a35161e11383b14181d303f1214252a4310122b24470e102f204b0c0e331c4f0a0c3718510a0a3b1653080a3d125706083f10250e270606430e1f1a210606450a1f1e2104061d0c1f061d241f04041d121b061b281d04041b161b021b2c1d02021b1a352c1d0202191e31301b020219202d321b020217222d34190202172429361b192627361b192625381b172a233a19172a213c19172c1f3c19172c1d3e19172c1d3e19172c1d3e19172c1d3e19172a1f3e19172a213c19172a213c191728253a19192427381b021724293619020217222d34190202191e2f321b0202191e31301b0204191a352c1d02041b161b021d2a1d02041d121d041d261d04061f0a1f081d221f0406450a1f1e210406430e21182106084110230e2706083f1255080a3b1653080c371a4f0a0e331c4f0a0e31204b0c122b24470e14252a4310181d303f121e11383b146a35166e2d1a72251e781726"},9:{t:89,l:-1,w:63,h:89,m:"y30176c2827642231601e395c1a4158184754144d5212515010554e0e594c0c5d48030c5d46050a291029420708251c253e09082124213c0b06212821380d061f2c1f380d041f301f340f041d341d3211041b381b3013021b3c1b2c15021b3c1b2a17021b3c1b281902194019261b0219401b221d1b401b201f1944191e211944191c21021944191a210419441918210619441916210819441914210a19441912210c19441910210e1944190e21101944170e21121b40190a23141b40190823160219401906211a0219401904211c021b3c1902231e021b3c3b20021d383b22041d343b24041f32392604212e3928062128392c062324392e08251c3b30082b103d340a73360c6f380c6b3c0e673e106142125b46145748184f4c1a49501e3f5622375a282b6030196a"},A:{t:88,l:-1,w:63,h:88,m:"ya809a20f9a17921f8a27842d7c35743d6c45664b5e53565b4e634861084061103861183061202a5f28225f301a6532126d320c7332045b081932571019324f181932472019323f281932373019322f381932274019321f481932194e1932214619322b3c1932333419323b2c1932452219324d1a1932571019325f0819327f32047b320c7332146f2e1c6f26246f1e2c6f16346f0e3c6f06446d4c65545d5c55644d6c45743d7c35842d8c25941d9c15a40dac05"},B:{t:88,l:0,w:61,h:88,m:"yb1b1b1b1b1b1b1b1b1b1b1b11930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191b2e173a191b2e173a1902192e19361b021b2a1b361b021b2a1b361b021d261f321b02021d261f321b02041d22232e1d02041f1e272a1f020423162d261f0406250e3322210406691a2504086d0e2906084b0255080a490255080c4506510a0e43064f0c103f0a4b0e123b0e4710163510451218311441141c2b1a3918202320351a28152a2d1e6a232472132c"},C:{t:89,l:4,w:52,h:90,m:"y4825483c3f3a3251322c5d2c2669262271221e7b1c1a811a168916148d141293100e990e0c9d0c0c3d243d0c0a333c330a082d4c2d080629582906062562230604236a2104041f701f04041d741d04021d781d02021b7c1b0202197e1b021b801b1b801b1984191984191984191984191984191984191b801b1b801b1b801b021b7c1b02021d781d02021f741f020221701f04042564250404276027040625602506082360230808236023080a2160210a0c1f601f0c0e1d601d0e101b601b10121960191216156015161a116013182209600d1e"},D:{t:88,l:4,w:52,h:88,m:"yb1b1b1b1b1b1b1b1b1b1b1b11980191980191980191980190217801902197e1902197c190202197c190204197a190204197a1902041b761b02041b761904061b721b04061d701b04081b6e1b06081d6a1d060a1d681d060a1f641d080c1f601f080e215a1f0a0e23561f0c10254e230c12254a230e1427422510142d38291016312c2d1218371a35141a81161e7b1820771a22731c246d202867222c5f262e5b2834512c3849303e3d3644313c4e1d46"},E:{t:88,l:3,w:53,h:88,m:"x6902690269026902690269026902690269026902690269021952195219521952195219521952195219521952195219521952195219521952195219521952195219521952195219525d0e5d0e5d0e5d0e5d0e5d0e5d0e5d0e5d0e5d0e5d0e5d0e19521952195219521952195219521952195219521952195219521952195219521952195219521952195219521952195219521952195219526b6b6b6b6b6b6b6b6b6b6b6b"},F:{t:88,l:7,w:45,h:88,m:"yb1b1b1b1b1b1b1b1b1b1b1b1193019501930195019301950193019501930195019301950193019501930195019301950193019501930195019301950193019501930195019301950193019501930195019301950193019501930195019301950193019501930195019301950193019501930195019301950199819981998199819981998"},G:{t:89,l:1,w:58,h:90,m:"y442b463647382e57302a612a246d242075201e791e1a811a188518168b14148f1212931010970e0e39243d0e0c313a330c0c2b482d0a0a2754270a08255c250808216423060621682106061f6c1f06041f701f04041d741d04041b781d02021d7a1b02021b7c1b02021b7e190202193a192e1b1b3a192e1b1b3a192e1b193c193019193c193019193c193019193c193019193c193019193c193019193c193019193c193019193c193019193c1930191b3a192e1b02193a192e190202193a192e1902021b38192e1902021d36192e1902041f32192c1b020421305d04061f305d04061f305d04081d305d040a1b305b060c19305b060e17305b061015305b0612133059081411305908180d3059081c0930570a"},H:{t:88,l:2,w:55,h:88,m:"yb1b1b1b1b1b1b1b1b1b1b1b14a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194eb1b1b1b1b1b1b1b1b1b1b1b1"},I:{t:88,l:8,w:44,h:88,m:"y98199819198019198019198019198019198019198019198019198019198019198019198019198019198019198019b1b1b1b1b1b1b1b1b1b1b1b119801919801919801919801919801919801919801919801919801919801919801919801919801919801998199819"},J:{t:88,l:8,w:44,h:89,m:"y78192278211a782516782912782b10782d0e782f0c78310a7833087835067835067837047837048e2302921f02961b02961d981b981b9a199a199a199a199a199a199a19981b981902961b02961b02921f028e2104af04ad06ad06ab08a90aa90aa70ca310a1129d16991a9122"},K:{t:88,l:-3,w:67,h:88,m:"yb1b1b1b1b1b1b1b1b1b1b1b1461f4c44234a422748402b463e2f443c33423a3740383b3e363f3c34433a322302233830230623362e230a23342c230e23322a23122330282316232e26231a232c24231e232a222322232820232623261e232a23241c232e23221a23322320182336231e16233a231c14233e231a122342231810234623160e234a23140c234e23120a23522310082356230e06235a230c04235e230a022362230823662306216a23041f6e23021d72231b7621197a1f177e1d15821b138619118a170f8e150d92130b9611099a0f079e0d05a20b03a609aa07ac05ae03"},L:{t:88,l:1,w:57,h:88,m:"yb1b1b1b1b1b1b1b1b1b1b1b1981998199819981998199819981998199819981998199819981998199819981998199819981998199819981998199819981998199819981998199819981998199819981998199819981998199819981998199819981998199819"},M:{t:88,l:0,w:61,h:88,m:"yb1b1b1b1b1b1b1b1b1b1b1b11f92258c2d84337e3b76417049684f6206515a0c515412534c1853461e553e24533a2a4d3a32453a383f3a3e393a44333a3e393a383f3a32453a2a4d3a24533a1e553e18534612534c0c515406515a4f62496841703b76337e2d84258c1f92b1b1b1b1b1b1b1b1b1b1b1b1"},N:{t:88,l:1,w:57,h:88,m:"yb1b1b1b1b1b1b1b1b1b1b1b12d843180357c3978043974083b6e0e396a1239661639621a395e1e3b582439542839502c394c303948343b423a393e3e393a4239364639324a3b2c4e3b285439245839205c391c603b16643b126a390e6e390a723906763b7a378031b1b1b1b1b1b1b1b1b1b1b1b1"},O:{t:89,l:0,w:61,h:90,m:"y4a23483e3b3c364b3430572e2a6328266b242273201e7b1c1a811a188716168b141291121095100e3b26390e0c313e2f0c0a2b4c2b0a0a2558270808236023080621682106061f6e1f04041d741d04041b781b04021b7a1d02021b7c1b0202198019020219801b19821b1984191984191984191984191984191984191984191b801b1b801b0219801902021b7c1b02021d781d02041d761b04041f721d04061f6c2104062366210608236023080a275627080a2d4a2b0a0c313c310c0e3b243b0e109510129112148d141887161a811a1e7b1c227320266b242a632830572e364b343e3b3c4a2348"},P:{t:88,l:1,w:58,h:88,m:"yb1b1b1b1b1b1b1b1b1b1b1b11938194819381948193819481938194819381948193819481938194819381948193819481938194819381948193819481938194819381948193819481938194819381948193819481938194819381948193819481938194819361b481b341b481b34194a1b321b4a021b301b4a021b2e1d4a021d2c1b4c021f281d4c041f241f4c04231c214e062710274e065b500859500a55520a53540c51540e4d5610495812435c163d5e1839601c316422256a281970"},Q:{t:89,l:-3,w:66,h:89,m:"y40274c34413e2c5136265d3022652c1e6d281a7524187922147f2012851c10891a0e8d180c91160a392239160a2d3a2f140829462b12062552271006215a2310041f62210e041d661f0e021d3e052a1b0e021b4007281d0c021b4009281b0c0219420d26190c1b420f241b0a19441124190a19441520190a1944171e190a1944191c190a19441d18190a19441f16190a19442114190a19442510190a1b42270c1b0a021942290a190c021b422b041b0c021b4629021b0c041b46430c041d463f0e0421463b0e06234437100825423510082b3e31120a2f3c2b140c392439120e95100e990c12970a1497081697061899021c971e6d022722650825285b10212c51181f363f221d422732199c179e15a211a40fa60daa09ac07ae05"},R:{t:88,l:1,w:57,h:88,m:"yb1b1b1b1b1b1b1b1b1b1b1b11936194a1936194a1936194a1936194a1936194a1936194a1936194a1936194a1936194a1936194a1936194a19361b4819361f44193623401936273c19362b3819362d361b3233321b32372e1b323b2a021b2e4126021b2e4522021d2a4b1e021f261b02331c041f221d06331804211e1f0a331404271223103310065912350c085518350808551c35040a512233020c4d26330e4b2a2f1047302b12433627143d3c25183742211c2f4a1d2027521928175e159e13a20fa60baa07ac05"},S:{t:89,l:2,w:55,h:90,m:"y820f2482151e261548191a1e23421d161a2b3e1f1416333a21121437382310123b36250e103f34270c0e4332290a0c4730290a0a49302b080a4b2e2b08084f36230606513a1f0606230c253a1f04042114213c1d04041f1a1f3c1d02041b201f3c1b02021d221d3c1b02021b241d3e19020219281d3c1b02192a1b3c1b1b2a1d3c19192e1b3c19192e1d3a1919301b3a1919301d381919321b381919321d361919341b361919341d341919361b321b1b341d301b1b361d2c1b02021b341d2c1b02021b361d281d02021d341f261d02041d341f221d04041f32211c210404233023162106062928270e250606292a550808272c53080a252c510a0a252e4d0c0c23304b0c0e2132470e101f344310121d363f12141b38391618173c33181c133e2d1c220d442320781726"},T:{t:88,l:0,w:60,h:88,m:"y199819981998199819981998199819981998199819981998199819981998199819981998199819981998199819981998b1b1b1b1b1b1b1b1b1b1b1b1199819981998199819981998199819981998199819981998199819981998199819981998199819981998199819981998"},U:{t:88,l:1,w:58,h:89,m:"y892a9122951e991a9d169f14a112a310a50ea70ca90aab088229088a23068c2106901f04921d04941b04941d02961b02961b02981902981b981b9a199a199a199a199a199a199a199a199a199a19981b981b981902961b02961b02941d02941b04921d04901f048e1f068a2306842708ab08a90aa90aa70ca50ea310a1129d169b18971c9122872c"},V:{t:88,l:-2,w:65,h:88,m:"y05ac0da4159c1d94238e2b86337e3b76436e496851605958615006614a0c634214633a1c633224632a2c612434611c3a631442630c4a6304525f5a57624f6a47704178398031882990219819902188298031783970416a47624f5a57525f4a630442630c3a631434611c2c612424632a1c633214633a0c634206614a6150595851604968436e3b76337e2b86238e1d94159c0da405ac"},W:{t:88,l:-1,w:62,h:88,m:"y377a535e654c753c832e8f229b16a50cad04b1b1b12a874a67624f743d842d7e33783970416a47624f5c555459044e570c48551444511c44492444412c44393444313c44313c44393444412c44492444511c4855144e570c5459045c55624f6a47704178397e33842d743d624f4a672a87b1b1b1ad04a50c9b168f22832e753c654c535e377a"},X:{t:88,l:0,w:60,h:88,m:"y03ac0307a4070b9c0b0f940f138c131784171b7c1b1f741f236c232764272b5c2b2f542f334c3337443704373c370408373437080c372c370c103724371014371c371418371437181c370c371c20370437202469242861282c592c3051303449343841383c393c4031404031403c393c3841383449343051302c592c28612824692420370437201c370c371c183714371814371c371410372437100c372c370c083734370804373c3704374437334c332f542f2b5c2b276427236c231f741f1b7c1b178417138c130f940f0b9c0b07a40703ac03"},Y:{t:88,l:0,w:60,h:88,m:"y03ae07aa0ba60fa2139e179a1b961f92238e278a2b862f82337e377a0437760837720c376e10376a1437661837621c375e20375a2437562837522c853081347d38793c75407140713c753879347d30812c8528375224375620375a1c375e18376214376610376a0c376e083772043776377a337e2f822b86278a238e1f921b96179a139e0fa20ba607aa03ae"},Z:{t:88,l:4,w:52,h:88,m:"y9c159819197c1d197821197425197029196c2d196831196435196039195c3d195841195445195049194e4b194a4f19463704191942370819193e370c19193a37101919363714191932371819192e371c19192a37201919263724191922372819191e372c19191a37301919163734191912373819190e373c19190a374019190637441919023748194d4c194950194554194158193d5c193960193564193168192d6c192970192574192178191d7c191782199819981998199819"},a:{t:66,l:3,w:54,h:67,m:"x2a212222311a1c3d14184510144b0e124f0c10530a0e57080c5b060a271423060a21201f04081f281b04081d2c1904081b301902081b301902061b321902061b341702541954195419541954195419541954192c41224b1c5118551459105d0e5f0c610a6308650627281906212e19041f3219041d3419021d3619021b381902193a191b3a19193a1b193a1b193a1b193a1b19381d19381d19361f1b32211b322102193023021b2c25021d2629041d222b041f1c2f06231035066708650a4902190c4504190e3f081912390a1916310e191a271419221734"},b:{t:95,l:0,w:59,h:96,m:"ybf02bf02bf02bf02bf02bf02bf02bf02bf02bf02bf02bf024a251c290e481f2c230c461d341f0c441b3c1d0a4219441b084217481b0640174c190640174e19043e175019043e155417043c175419023c155817023c155817023c155a173a155c173a155c173a155c173a155c173a155c173a155c173a155c173a155c173a1758193a1758193a175817023c175419023c17521b023c19501b023c1b4c1b043e1b481d043e1d441d063e213c2106402334230842252c2708422f1a2d0a44710c466f0c486b0e4a67104c6114505b16525718564f1c5a4720603d2466312a701d34"},c:{t:66,l:4,w:52,h:67,m:"y341f342c312a243f242047201c4f1c185718165d141461121067100e6d0c0c6f0c0a730a0a2b1e2d08082332250606213a2106061d421f04041b4a1b0404194e190404175219020217541902021756170202155a17175a17175a17155e15155e15155e15155e15155e15155e15155e15155c17175a171758170202175419020219501b02021b4c1d02021d461f04041f3c25040421382506061f382506061f382308081d382308081d38210a0a1b381f0c0c19381d0e0e17381b1010153817141411381516180d38111a1c09380d1e5c0328"},d:{t:95,l:0,w:59,h:96,m:"y6e1f3464332a5e3f245a491e56511a5257184e5f144c63124a6710486b0e466f0c44710c422f1a2d0a42272a27084023362108401f3e1f063e1d441d063e1b481d043c1b4e19043c19501b023c175419023c175617023a175817023a175a173a175a173a155c173a155e153a155e153a155e153a155e153a155e153a155e153a155e153c155a15023c155a15023c155a15023c175615043e155615043e175217043e1750170640174c19064019481908421b421b08441b3e1b0a461d361d0c481f2c210e4a251c2710bf02bf02bf02bf02bf02bf02bf02bf02bf02bf02bf02bf02"},e:{t:66,l:1,w:57,h:67,m:"x2e192c26292420351e1c3d1a1a4316184714144d1212511010550e10570c0e2512250a0c211c210a0a1f241f080a1d281d08081b2e1d060819321b06061b341b040619361b0406173a190404193a1b0204193c190204173e190202193e190202193e190202193e1902027102717373737373737373731b581b581b581b581b58021958021958021b56021b56041956041b54041b54061b52061b52061d50081d4e081f2c1b060a1f281d060a23221f060c251c21060e29122308105b0810590a12570a14530c184d0e1a49101e4114223918282d1e301d26"},f:{t:95,l:5,w:49,h:95,m:"y3c176c3c176c3c176c3c176c3c176c3c176c3c176c3c176c3c176c3c176c3c176c3c176c3c176c3c176c3c176c3c176c3c176c3c176c26991ca318a714ab10af0eb10cb30ab508b706b906b904bb042316176c021f1c176c021d1e176c021b20176c021922176c1b22176c1924176c1924176c1726176c1726176c1726176c1726176c1726176c1726176c1726176c1726176c1726176c1726176c1726176c"},g:{t:66,l:2,w:56,h:88,m:"y2e1f64262f5c203d541a47300b16184d2c1110145528130e125926170a105d24170a0e612219080c65201b060a691e1b06086d1c1d04062d1a291c1d0406252a231a1d040421361f181f02041d3e1b1c1b02041b4219201702021b461920150202194a1722130202174e152215194e1522151752152213175215221315541522131556132213155613221315561322131556132213155613221315561322131556132213155613221302155213241302155213221502155213221504154e1324130204154c1524130204174a152215020617461524150208174215241702081b3a192417020a1b341b2417040c1f281f2419040e251825201f0402a90602a90602a70802a50a02a50a02a30c02a10e029f10029b1402991602931c028d22"},h:{t:95,l:4,w:51,h:95,m:"ybfbfbfbfbfbfbfbfbfbfbfbf462158441d5e4419624219644019664017683e19683e176a3e156c3c176c3c176c3c156e3a176e3a176e3a176e3a176e3a176e3a176e3a176e3a196c3a196c3a196c3a1b6a3c1b683c1d663c21623e235e3e81407f407f427d447b467948774a754c73506f546b5c63"},i:{t:95,l:13,w:34,h:95,m:"y3c196a3c196a3c196a3c196a3c196a3c196a3c196a3c196a3c196a3c196a3c196a3c196a3c196a3c196a3c196a3c196a211c196a211c196a211c196a211c196a211c196a211c83211c83211c83211c83211c83211c83211c83211c83211c83211c83211c83211c83211c83"},j:{t:95,l:12,w:36,h:118,m:"yd617d617d617d617d617d617d617d6173c1982173c1982173c1982173c1982173c1982173c1982173c1982173c1980193c1980193c198017023c197e1902211c197c1b02211c197a1d02211c19781d04211c19761f04211c19702504211cab06211cab06211ca908211ca908211ca70a211ca50c211ca30e211ca110211c9f12211c9b16211c971a211c8f22"},k:{t:95,l:1,w:57,h:95,m:"ybfbfbfbfbfbfbfbfbfbfbfbf6c1b386a1f36682334662732642b30622f2e60332c5e372a5c3b285a3f265843245621042322542108232052210c231e502110231c4e2114231a4c211823184a211c231648212023144621242312442128231042212c230e402130230c3e2134230a3c213823083c1f3c23063c1d4023043c1b4423023c1948233c174c213c15501f3c13541d3c11581b3c0f5c193c0d60173c0b64153c0968133c076c113c05700f3c03740db40bb609b807ba05bc03"},l:{t:95,l:12,w:36,h:95,m:"y9926a31ca916ad12af10b30cb50ab708b708b906bb04bb049825029c2102a01d02a21b02a41ba41ba619a619a619a817a817a817a817a817a817a817a817a817a817a817a817a817a817a817"},m:{t:66,l:-2,w:64,h:66,m:"y0283028302830283028302830283028302830283028302830a17640a116a08116c06116e041170040f72021172021172021172137213721570176e1b6a858585850283028302830481067f087d0a7b087d061d6204176a04156c02156e02137002117202117213721372137215701570176e1b6a8502830283028304810481067f087d0a7b0e771273186d"},n:{t:66,l:2,w:56,h:66,m:"y0283028302830283028302830283028302830283028302831023520e1d5a0c1d5c0a1b600a196208196406196606176804176a04156c04156c02156e02156e02156e02137015701570157015701570157015701570176e176e176e02176c02176c02196a021b68041d6404235e067f067f087d0a7b0c790e77107512731471186d1c692461"},o:{t:66,l:-1,w:62,h:67,m:"y341f342c2f2c263b262045221c4d1e1a531a165918145f141263121067100e6b0e0c6d0e0c2b182d0c0a252a250a0821362108081d3e1d08061d441b0606194a190604194e190404175217040415561504021756170202155a150202155a150202135e1302155e15155e15136213136213136213136213136213136213136213136213136015155e15155e130202135c150202155a150202155817020217561504041752170404194e1904041b4a1906061b461b06061f3e1d080821361f0a0a252c230a0a2d1c290c0c6d0e0e6910106512126114145d161857181a511c1e4b1e2243222639282e2b2e361b36"},p:{t:66,l:0,w:59,h:88,m:"y02af02af02af02af02af02af02af02af02af02af02af02af0e291a29380c232c21360a1f361f340a1b3e1d32081946193206194a193006174e1730041752172e041554172e041556152e02155a152c02155a152c02155a152c155e152a155e152a155e152a155e152a155e152a155e152a155e152a155e152a155e152a175a172a175a172a02155a152c021756172c021754192c021952192c04194e192e041b4a1b2e061b461b30061d401f30081f3a1f3208252e25320a2d1c2b340c6f360e6b3810693812633c145f3e165b401a53441e4b4822434c263b502c2f56361b60"},q:{t:66,l:0,w:59,h:88,m:"y361d5e2e2d56263b5022454a1e4d461a5542165b4014613c12653a1069380e6d360c6f360a2d1c2b3408272c25320821381f32061f401d30061b461b30041b4a1b2e04194e192e021952192c021954172c021756172c02155a152c175a172a175a172a155e152a155e152a155e152a155e152a155e152a155e152a155e152a155e152a02135e152a02155a152c02155a152c021558172c041556172c041752172e061552172e06174e173008174a193008194619320a1b3e1b340c1d361f340c212e21360e271c293802af02af02af02af02af02af02af02af02af02af02af02af"},r:{t:66,l:6,w:48,h:66,m:"y0283028302830283028302830283028302830283028302831021540e1b5c0c19600a176408176606176806156a04156c04136e02156e02137002137013721372137213721372137215701570176e196c021b68021f64022b580429580429580627580825580825580a23580c2158101d58121b581617581e0f58"},s:{t:66,l:3,w:54,h:67,m:"x2c1f2222311a1c3d14184510144b0e124f0c10530a0e57080c59080a5d060a23142706081f202304081d261f04081b2a1d04061b2c1d040619301b040619301b0406194e06194e06194e06194e061b4c061b4c081b4a081d480821440a253e0a2f340c372a0c3f220e431c10471612491216490e1a470c20430a263f082c3b063433063e2b044623044c1f02501b02501b02521b54195419541954191b3a191b3a190219381b021b361902021b341b02021d301d02041d2c1d0404212421040625162706066106085d080a590a0c530e0e4f10124714163f181c331e242128"},t:{t:85,l:5,w:49,h:86,m:"y261770261770261770261770261770261770261770261770261770261770261770261770261770088322068d1a069314069512049b0e049d0c049f0a04a10802a50602a50602a704a90426174e21022617521d0226175619022617581926175a1726175a1726175a1726175c1526175c1526175c1526175c1526175c1526175c1526175a1726175a1726175a150226175a15022617581702261758170226175617042617561704261754190426175417062617521906"},u:{t:65,l:2,w:56,h:66,m:"y63226b1a6f1673127510770e790c7b0a7d087f067f068104602104661d02681b026a19026c196c196e176e17701570157015701570157015701570157013026e15026e15026e15026c15046c15046a17046a150668170666170864190862190a60190c5c1d0c581f0e502510830283028302830283028302830283028302830283028302"},v:{t:65,l:-2,w:65,h:65,m:"y0380097a0f74156e1b682162255e2b583152374c3d464340473c4d36064d300c4d2a124d24184b201e4b1a244b142a4b0e304b083649043c474241483b4e35542f5a296023661d6c1770136c17661d60235a29542f4e35483b42413c47364904304b082a4b0e244b141e4b1a184b20124d240c4d2a064d304d36473c43403d46374c31522b58255e21621b68156e0f74097a0380"},w:{t:65,l:0,w:61,h:65,m:"y0f742162315243405330651e750e838383838310732261364d4a395e2560235a2952314c37443f3e4536490432450c323f1232371a32312032292832232e321b3632232e32292832312032371a323f1232450c3649043e45443f4c3752315a2960235e254a39364d226110738383838383750e651e53304340315221620f74"},x:{t:66,l:0,w:61,h:66,m:"y038003057c050974090b700b0f680f1164111360131758171954191b501b1f481f2144212340232738272934290229302902042b282b0408292429080a2920290a0e2918290e102914291014290c291416290829161a2704271a1c4d1c2045202241222639262a312a2c2d2c3025302c2d2c2a312a2639262241222045201c4d1c1a2704271a162908291614290c291410291429100e2918290e0a2920290a0829242908042b282b0402293029022934292738272340232144211f481f1b501b1954191758171360131164110f680f0b700b097409057c05038003"},y:{t:65,l:-3,w:66,h:87,m:"y05aa09a60ba40fa01386171782171980171d7c172178172574172772172b6e172f681933621902355c1d020435561f0208354e21040c3546250410334027061433382b061833322b081c332a2d0a2031242f0c22331c310e26331631102a330e31142e3108311832611c365b1e3a53223e4b2642432a463b2e4a333248313644313a42313c3e31403a314436314832314c2e31502c2f5428315624315a20315e1c3162183166162f6a122f6e0e2f720a317406317802317c2f802b842788238c1f901d921996159a119e0da209a605aa"},z:{t:65,l:4,w:51,h:65,m:"x045d06045d06045d06045d06045d06045d06045d06045d06045d06045d06045d06441d06421f06421d08401d0a3e1d0c3c1d0e3a1f0e381f10361f12361d14341d16321d18301f182e1f1a2c1f1c2c1d1e2a1d20281d22261d24241f24221f26201f28201d2a1e1d2c1c1d2e1a1d30181f30161f32161d34141d36121d38101d3a0e1f3a0c1f3c0c1d3e0a1d40081d42061d44041d46021f461f481d4a1b4c6767676767676767676767"},"~":{t:95,l:-2,w:64,h:22,m:"x1c1142050e161d3a090c1227340b0a102d2e0f080e332813060c392217040a3f1c1b020847141f064f0a210206770404770602790602210a4d081f14450a1d1a3f0c0219203b0c041526350e06112c2d12080d3227140a0b361f180c073e151c0e0370"},"!":{t:95,l:21,w:18,h:95,m:"y1b861f4f521f79281f79281f79281f79281f79281f79281f79281f79281f79281f79281f79281f79281f79281f79281f4f521f1b861f"},"@":{t:97,l:0,w:59,h:98,m:"y26133e27282019343d1c1a1f2c4b1618212855101425245b0e122722610a10292065080e2b1e69060c2d1c6b060a2f1c6d0408311a272227040823281f322102061f2c1b3c1d02061d2e19421902041b32174619041934154819021b34154a17021936154a17021936154a17021738154a17021738174817193a154619173c17441702173e193e1902173e1b3a1b0217401f301d041742271e2504173c6d06173c6b08173c690a173c650e173c670c173c690a193a6b0802173a6d0602173a6f04021938710202198c1d0204198e190204199019041b9017061b8e17061d8c17081f88170a1f84190a2380190c277819020e2f6a1d0210434a270212af0416ab0418a7061ca108209b0a24950c2a8b10327f143c6f1a504d28"},"#":{t:95,l:0,w:59,h:95,m:"y84072e077c0f260f460330131c19400930131421381130130c2938113013023338113047381130473811284f381120573811166138110e6702381104670c38731438691e3069262669301c6f341477340a69061334026710133461181334572213344f2a133449301334493013342f0a113013342712113013341d1c1130132a0b132611301320150b2e113013161f381130130e2738113013043138113047381130473811284f381120573811166138110c6b3811046d06387710386d1a2e6f22266d2c1c6f341279340a6b0413346b0e133463161334592013344f2a133449301334493013343504113013342b0e11300f38211811300740172211760f2a0b7c05340384"},$:{t:95,l:-1,w:62,h:95,m:"y3011480d2a281f42112624273e1522222d3a191e1e33381b1c1c37361d1a1a3b341f18183f3221161641322116164330231414472e251214472e2512124b2e251012210c1f361d10121d141d361b10101d181b381b0e101b1c1b361b0e1019201938190e0e1b2219361b0c0e1b221938190c0e19241938190c0e19261936190c0e19261936190c0e19281934190c0c1b281934190c0c1b281934190cbfbfbfbfbfbfbfbfbfbf0e192e1b2c170e0e1930192c170e0e19301b28190e0e19301b28190e1017321b26190e1017321b26190e1019301b2419101019321b2219101219301d201910121b301b1e191212212a1d1a1b121425261f141d12142526230c1f141623284b14182128491618212a47161a1f2a45181c1d2c411a1e1b2e3d1c22172e3d1c241530391e28113233222c0d362d24702926741f2c7a1332"},"%":{t:93,l:0,w:59,h:93,m:"y180d96121b8e0e2378130a297217082f6c190633661d0437602104375c25023b5827023b542b02151215502f1516134c3102131a13482f06131a13442f0a131a1340310c131a133c3110131a113c2f14151613382f180215101734311a023b30311e0239302f2204372c2f2604352a3128063128312c082d282f300a29262f340e23243136121b24313a4e2f3e4a2f42462f464231220f18402f201b123c2f20230e382f202b0a3431202f08322f2233062e2f2635042a2f28370426312a3902242f2c3b02202f301512171c2f34131615182f36131a13162f38131a13122f3c131a130e2f40131a130a2f44131a13082f48131615042f4c170e17022f503b022b56370429583704255e330621642f081d6a2d081b6e270c1776210e901714"},"^":{t:96,l:0,w:61,h:49,m:"y54030c50090a4e0d084a1306481704441d0242213e253a27023827043429063229082e2b0a2c2b0c282d0e262d10222f12202f141c31161a311816331a14331c1033200e33220a352408352604372802372a372c352e3330352e372c02372a0437280835260a35240e332210332014331c16331a1a31181c3116202f14222f12262d10282d0e2c2b0c2e2b0a3229083429063827043a27023e254221441d024817044a13064e0d0850090a54030c"},"&":{t:96,l:-1,w:63,h:97,m:"y84152a7c2522782f1c221340351a1c1f363d1618292e411414312649101237204d0e103d1a510c0e4116550a0c4710570a0a4d0a5b080a4f065f060853042710290608791a2504067720230406230e43281f040421183b2c1f02041d2035301d02021d262f321d02021b2c29361b02021b2e29341d02193429321b1b3629301b19362f2c1b1934332c19193239281919323b26191930412219192e452019192c1d022b1e19192a1d082b1a19192a1b0c2b18191b261b122b14191b241d142b101b021b201d182d0c1902021b1e1d1e2b0a1902021d1a1d222d041b02041f1221262b021b0204230a232a4304044d303f040649343b06064738390608433e33080a3f4231080a3d482b0a0c394c2d060e35502d0410314a3702122b4243021427305702181f3457021e133a57026a57026a57026a3b0419026a370c15026a331213026a2f1a0f026a2b200d026a232a0b026a1d3407026a13400502"},"*":{t:94,l:0,w:61,h:62,m:"y360542300d402c1140261740221d3e201f3e201f3e221d2c050e221f28090c241d260b0c241d240f0a241f1e1508261d1c1708261d1a1b06281b181f04281d1421042a1b1027022a1b0e2b2a1d0a2b022c1b0829062c1b042b082e1902290c2e3f10303b121f1237166518611c5d205b225726532a57265b225d20611c65181f123716303b122e3f102e1902290c2c1b042b082c1b0829062a1d0a2b022a1b0e2b2a1b102702281d142104281b181f04261d1a1b06261d1c1708241f1e1508241d240f0a241d260b0c221f28090c221d2c050e201f3e201f3e221d3e2617402c1140300d40360542"},_:{t:-10,l:-4,w:69,h:11,m:"x8b8b8b8b8b8b8b8b8b8b8b"},"+":{t:82,l:1,w:57,h:68,m:"y38193838193838193838193838193838193838193838193838193838193838193838193838193838193838193838193838193838193838193838193838193838193889898989898989898989898989381938381938381938381938381938381938381938381938381938381938381938381938381938381938381938381938381938381938381938381938381938381938"},"`":{t:90,l:8,w:44,h:35,m:"y034405420740093e0b3c0d3a1136133415321730192e1b2c1d2a2126232425222720291e2b1c2f183116331435123710390e3b0c3f08043d06083b040c390210371433182f1c2b20272423281f2c1b30173413380f3c0b40074403"},"-":{t:41,l:1,w:57,h:15,m:"x737373737373737373737373737373"},"=":{t:68,l:1,w:57,h:40,m:"x73737373737373737373737372727272727272727272727272727272737373737373737373737373"},'"':{t:90,l:10,w:40,h:29,m:"y3b3b3b3b3b3b3b3b3b3b3b3b3b3b3a3a3a3a3a3a3a3a3a3a3a3a3b3b3b3b3b3b3b3b3b3b3b3b3b3b"},"'":{t:90,l:23,w:14,h:38,m:"y4d4d4d4d4d4d4d4d4d4d4d4d4d4d"},"(":{t:95,l:12,w:36,h:96,m:"y521f5048334640433e3a4f38365734325f302e672c2a6f28267724247b2220831e1e871c1a8d1a183b1c3d161633303514142f3c3112102f462d100e2b502b0e0c2958290c0a295c290a0827642708082568270606237023060423742304022378230202217c232180211f841f1d861f1b8a1d198e1b179219179417159617159815139c13"},")":{t:95,l:11,w:37,h:96,m:"y139c13159815159617179417179219198e1b1b8a1d1d881d1d861f1f8221021f7e2302217a23020421762304062172230606256c250608256825080a2760270a0c275c270c0e2954290e102b4c2b10122d442d12142f3c2f1416352e33161a391c3b181c8b1a1e871c227f20247b222873262a6f282e672c325f303657343c4d3840433e483346521f50"},"{":{t:96,l:1,w:58,h:97,m:"y561954561954561954561954561954561954561954561954561954561954561954541d52541d52541d52541d5252215050254e4e294c463746246f301c852218911a14991610a1120e53044f100c5504510e0a5508510c0a530c510a08531051080651184d080649264906042b543b060421762504041d801f04041b841d04021b881d02021b8a1b0202198c1b0202198e190202198e190202198e190219901b199219199219199219199219199219199219199219199219199219199219199219199219199219199219199219199219"},"}":{t:96,l:1,w:58,h:97,m:"y19921919921919921919921919921919921919921919921919921919921919921919921919921919921919921919921919901b02198e190202198e190202198e190202198c1b02021b8a1b02021b881d02041b841d04041d801f040421762504042b543b0606492649060651184d0808531051080a530c510a0a5508510c0c5504510e0e53044f1010a11214991618911a1c8522246f304637464e294c50254e522150541d52541d52541d52541d52561954561954561954561954561954561954561954561954561954561954561954"},"[":{t:96,l:6,w:47,h:96,m:"yc1c1c1c1c1c1c1c1c1c1c1c1c1199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019"},"]":{t:96,l:7,w:46,h:96,m:"y199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019c1c1c1c1c1c1c1c1c1c1c1c1c1"},"<":{t:91,l:0,w:61,h:87,m:"x76057407700b6e0d6c0f681366156219601b5c1f5a2156255427502b4e2d4c2b04482d06462b0a422d0c402d0e3c2d123a2d14362d18342d1a302d1e2e2d202c2b24282d26262b2a222d2c202b301c2d321a2d34162d38142d3a102d3e0e2d400c2b44082d46062b4a022d4c2b502952255629522b50022d4c062b4a082d460a2d440e2b42102d3e142b3c162d381a2b361c2d32202b30222d2c262b2a282d262a2d242e2d20302d1e342d1a362d183a2d143c2d12402b10422d0c462b0a482d064a2d044e2d502b542756255a215c1f601b6219661568136a116e0d700b74077605"},">":{t:91,l:0,w:61,h:87,m:"x057607740b700d6e0f6c1368156619621b601f5c215a255627542b502d4e042b4c062d480a2b460c2d420e2d40122d3c142d3a182d361a2d341e2d30202d2e242b2c262d282a2b262c2d22302b20322d1c342d1a382d163a2d143e2d10402d0e442b0c462d084a2b064c2d02502b522956255229502b4c2d024a2b06462d08442d0a422b0e3e2d103c2b14382d16362b1a322d1c302b202c2d222a2b26262d28242d2a202d2e1e2d301a2d34182d36142d3a122d3c102b400c2d420a2b46062d48042d4a2d4e2b5027542556215a1f5c1b60196215661368116a0d6e0b7007740576"},"|":{t:96,l:23,w:13,h:117,m:"yebebebebebebebebebebebebeb"},":":{t:65,l:18,w:24,h:65,m:"x3131313131313131313131313131313131313131303030303030303030303030303030303030303030303030303131313131313131313131313131313131313131"},";":{t:65,l:6,w:47,h:90,m:"yb203ae07aa0ba60fa2139e179a1b961f92238e278a2b862f82337e35027a3704763906723b086e3d0a6a3f0c66410e6243105e45125a471427344516273443182734411a27343f1c27343d1e27343b20273439222734372427343526273433282734312a27342f2c27342d2e27342b30273429322734273427342536273423382734213a27341f3c27341d3e27341b40273419425a1744"},".":{t:20,l:18,w:24,h:20,m:"x3131313131313131313131313131313131313131"},",":{t:20,l:6,w:47,h:45,m:"y58035407500b4c0f48134417401b3c1f38233427302b2c2f28332435022037041c3906183b08143d0a103f0c0c410e084310044512471445164318411a3f1c3d1e3b203922372435263328312a2f2c2d2e2b302932273425362338213a1f3c1d3e1b4019421744"},"\\":{t:95,l:5,w:50,h:96,m:"y05bc0bb60fb215ac19a81fa2239e29982d94338e378a3d84418004437a0a41760e437014416c1a41661e416224415c2841582e415232414e3841483c414442413e46413a4c413450413056412a5a412660412064411c6a41166e431074410c7843067e4102843d88398e33922f98299c25a21fa61bac15b011b60bba07"},"?":{t:96,l:0,w:61,h:96,m:"y2419841e1f841a2384162784142984122b84102d840e2f840c31840c31840a338408358408358406378406378406378404279604239a04219c02219e021fa0021da2021d7e25021b80251d80251d4c1520251b4a1920251b461d20251b441f20251b422120251b402320251b3e2520251b3c2720251b3c2720251b3a2920251d362b20251d342d20251d322f2025021d2e312025021d2c332025021f283520250221242730250421202732250425182934250429102b5a065f5c065d5e065b600857620855640a53640c4f660c4d680e496a10436e123f70143b721833761a2d7a1e257e261586"},"/":{t:95,l:5,w:50,h:96,m:"yba07b60bb011ac15a61ba21f9c259829922f8e338839843d7e41027a410674410c7041106a411666411a6041205c412456412a52412e4c413448413842413e3e414238414834414c2e415228435624415c1e43601a416614436a1041700a437406417a437e3d843988338e2f922998259c1fa21ba615ac11b00bb607ba"}}},BWIPJS.bwipp.renlinear=function(){function a(){this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2
1
+ function BWIPJS(){this.ptr=0,this.stk=[],this.dict={},this.dstk=[this.dict],this.gstk=[],this.bmap=null,this.dstk.get=function(a){for(var b=this.length-1;b>=0;b--)if(void 0!==this[b][a])return this[b][a]},this.greset()}BWIPJS.bwipp={},BWIPJS.fonts={},BWIPJS.print=function(){},BWIPJS.debug=function(){},BWIPJS.psarray=function(a){if(!(this instanceof BWIPJS.psarray))return new BWIPJS.psarray(a);if("number"==typeof a){for(var b=[],c=0;a>c;c++)b[c]=null;this.value=b,this.length=a,this.offset=0}else if(a instanceof Array)this.value=a,this.offset=0,this.length=a.length;else{this.value=[],this.length=a.length,this.offset=0;for(var c=0;c<a.length;c++)this.value[c]=a.value[a.offset+c]}for(var c=0;c<this.length;c++)this[c]=void 0},BWIPJS.psarray.prototype.toString=function(){for(var a="",b=this.offset;b<this.offset+this.length;b++)a+=" "+BWIPJS.pstostring(this.value[b]);return"["+a.substr(1)+"]"},BWIPJS.psarray.prototype.valueOf=function(){for(var a="",b=this.offset;b<this.offset+this.length;b++)a+=" "+BWIPJS.pstostring(this.value[b]);return"["+a.substr(1)+"]"},BWIPJS.psarray.prototype.get=function(a){return this.value[this.offset+parseFloat(a)]},BWIPJS.psarray.prototype.set=function(a,b){this.value[this.offset+parseFloat(a)]=b},BWIPJS.psarray.prototype.subset=function(a,b){(isNaN(b)||a+b>this.length)&&(b=this.length-a);var c=new BWIPJS.psarray(b);return c.value=this.value,c.offset=this.offset+a,c},BWIPJS.psarray.prototype.assign=function(a,b){if(b instanceof Array)if(this.length==this.value.length&&this.length==b.length)this.value=b;else for(var c=0;c<b.length;c++)this.value[this.offset+a+c]=b[c];else for(var c=0;c<b.length;c++)this.value[this.offset+a+c]=b.value[b.offset+c]},BWIPJS.psstring=function(a){if(!(this instanceof BWIPJS.psstring))return new BWIPJS.psstring(a);if("number"==typeof a){this.value=[],this.length=a,this.offset=0;for(var b=0;a>b;b++)this.value[b]=0}else if("string"==typeof a){this.value=[],this.length=a.length,this.offset=0;for(var b=0;b<a.length;b++)this.value[b]=a.charCodeAt(b)}else{this.value=[],this.length=a.length,this.offset=0;for(var b=0;b<a.length;b++)this.value[b]=a.value[a.offset+b]}for(var b=0;b<this.length;b++)this[b]=0/0},BWIPJS.psstring.prototype.toString=function(){for(var a="",b=this.offset;b<this.offset+this.length;b++)a+=String.fromCharCode(this.value[b]);return a},BWIPJS.psstring.prototype.valueOf=function(){for(var a="",b=this.offset;b<this.offset+this.length;b++)a+=String.fromCharCode(this.value[b]);return a},BWIPJS.psstring.prototype.get=function(a){return this.value[this.offset+parseFloat(a)]},BWIPJS.psstring.prototype.set=function(a,b){this.value[this.offset+parseFloat(a)]=b},BWIPJS.psstring.prototype.subset=function(a,b){(isNaN(b)||a+b>this.length)&&(b=this.length-a);var c=new BWIPJS.psstring(b);return c.value=this.value,c.offset=this.offset+a,c},BWIPJS.psstring.prototype.assign=function(a,b){if("string"==typeof b)for(var c=0;c<b.length;c++)this.value[this.offset+a+c]=b.charCodeAt(c);else for(var c=0;c<b.length;c++)this.value[this.offset+a+c]=b.value[b.offset+c]},BWIPJS.psstring.prototype.indexOf=function(a){return this.toString().indexOf(a.toString())},BWIPJS.pstype=function(a){if(null===a||void 0===a)return"nulltype";var b=typeof a;return"number"==b?a%1?"realtype":"integertype":"boolean"==b?"booleantype":a instanceof BWIPJS.psarray?"arraytype":a instanceof BWIPJS.psstring?"stringtype":"dicttype"},BWIPJS.pstostring=function(a){if(null===a)return"null";if("function"==typeof a)return"--function--";if(a instanceof BWIPJS.psarray)return a.toString();if(a instanceof BWIPJS.psstring){for(var b="(",c=0;c<a.length;c++){var d=a.value[a.offset+c];switch(d){case 92:b+="\\\\";break;case 10:b+="\\n";break;case 13:b+="\\r";break;case 9:b+="\\t";break;case 8:b+="\\b";break;case 40:b+="\\(";break;case 41:b+="\\)";break;default:b+=32>d||d>127?"\\"+function(a){return"000".substr(a.length)+a}(d.toString(8)):String.fromCharCode(d)}}return b+")"}if("object"==typeof a){var b="";for(var c in a)b+=" /"+c+" "+BWIPJS.pstostring(a[c]);return"<<"+b+" >>"}return"number"==typeof a&&a%1?a.toPrecision(12).replace(/0*$/,""):""+a},BWIPJS.prototype.bitmap=function(a){return a?(this.bmap=a,void 0):this.bmap},BWIPJS.prototype.value=function(a){if(a===!0||a===!1||null===a)return a;var b=typeof a;return"number"==b?a:"string"==b?BWIPJS.psstring(a):a instanceof Array?BWIPJS.psarray(a):a},BWIPJS.prototype.push=function(a){this.stk[this.ptr++]=this.value(a)},BWIPJS.prototype.pop=function(){if(this.ptr<=0)throw"--underflow--";return this.stk[--this.ptr]},BWIPJS.prototype.call=function(a){if(BWIPJS.bwipp[a]||BWIPJS.load("bwipp/"+a+".js"),!BWIPJS.bwipp[a])throw a+": --undefined--";this.dict[a]=BWIPJS.bwipp[a],BWIPJS.bwipp[a].call(this)},BWIPJS.prototype.eval=function(a){if(a=a.toString(),!/^<(([0-9A-F][0-9A-F])*)>$/i.test(a))throw"eval: not a hex string literal";for(var b=new BWIPJS.psstring((a.length-2)/2),c=0,d=1;d<a.length-1;d+=2)b.set(c++,parseInt(a.substr(d,2),16));this.stk[this.ptr++]=b},BWIPJS.prototype.greset=function(){this.g_tdx=0,this.g_tdy=0,this.g_tsx=1,this.g_tsy=1,this.g_posx=0,this.g_posy=0,this.g_penw=1,this.g_path=[],this.g_font=null,this.g_rgb=[0,0,0]},BWIPJS.prototype.currentpoint=function(){return{x:(this.g_posx-this.g_tdx)/this.g_tsx,y:(this.g_posy-this.g_tdy)/this.g_tsy}},BWIPJS.prototype.currentfont=function(){return this.g_font},BWIPJS.prototype.findfont=function(a){return{FontName:a}},BWIPJS.prototype.dtransform=function(a,b,c){return{dx:b,dy:c}},BWIPJS.prototype.translate=function(a,b){this.g_tdx=this.g_tsx*a,this.g_tdy=this.g_tsy*b},BWIPJS.prototype.scale=function(a,b){this.g_tsx*=a,this.g_tsy*=b},BWIPJS.prototype.setlinewidth=function(a){this.g_penw=a},BWIPJS.prototype.setfont=function(a){this.g_font=a},BWIPJS.prototype.setrgb=function(a,b,c){var a=Math.round(255*a),b=Math.round(255*b),c=Math.round(255*c);this.bmap.color(a,b,c),this.g_rgb=[a,b,c]},BWIPJS.prototype.setcmyk=function(a,b,c,d){var e=Math.round((1-a)*(1-d)*255),f=Math.round((1-b)*(1-d)*255),g=Math.round((1-c)*(1-d)*255);this.bmap.color(e,f,g),this.g_rgb=[e,f,g]},BWIPJS.prototype.newpath=function(){this.g_path=[]},BWIPJS.prototype.closepath=function(){if(this.g_path.length){var a=this.g_path[0],b=this.g_path[this.g_path.length-1];this.g_path.push([b[0],b[1]]),this.g_path.push(["c"]),this.g_path.push([a[0],a[1]])}},BWIPJS.prototype.moveto=function(a,b){this.g_posx=this.g_tdx+this.g_tsx*a,this.g_posy=this.g_tdy+this.g_tsy*b,BWIPJS.debug("moveto: posx,posy=("+this.g_posx+","+this.g_posy+")")},BWIPJS.prototype.rmoveto=function(a,b){this.g_posx+=this.g_tsx*a,this.g_posy+=this.g_tsy*b,BWIPJS.debug("rmoveto: posx,posy=("+this.g_posx+","+this.g_posy+")")},BWIPJS.prototype.lineto=function(a,b){this.g_path.push([this.g_posx,this.g_posy]),this.g_path.push(["l"]),this.g_posx=this.g_tdx+this.g_tsx*a,this.g_posy=this.g_tdy+this.g_tsy*b,this.g_path.push([this.g_posx,this.g_posy]),BWIPJS.debug("lineto: posx,posy=("+this.g_posx+","+this.g_posy+")")},BWIPJS.prototype.rlineto=function(a,b){this.g_path.push([this.g_posx,this.g_posy]),this.g_path.push(["l"]),this.g_posx+=this.g_tsx*a,this.g_posy+=this.g_tsy*b,this.g_path.push([this.g_posx,this.g_posy]),BWIPJS.debug("rlineto: posx,posy=("+this.g_posx+","+this.g_posy+")")},BWIPJS.prototype.arc=function(a,b,c,d,e,f){if(d!=e){if(0!=d&&360!=d||0!=e&&360!=e)throw"arc: not a full circle ("+d+","+e+")";a=this.g_tdx+this.g_tsx*a,b=this.g_tdy+this.g_tsy*b;var g=c*this.g_tsx,h=c*this.g_tsy;this.g_path.push([a-g,b-h]),this.g_path.push(["a",{x:a,y:b,rx:g,ry:h,sa:d,ea:e,ccw:f}]),this.g_path.push([a+g,b+h])}},BWIPJS.prototype.getfont=function(){var a=Math.floor(this.g_tsx);1>a?a=1:a>10&&(a=10);var b=this.g_font.FontSize+(10>a?"-0":"-")+a;return BWIPJS.fonts.OCRB&&BWIPJS.fonts.OCRB[b]||BWIPJS.load("fonts/ocrb"+b+".js"),BWIPJS.fonts.OCRB?BWIPJS.fonts.OCRB[b]:void 0},BWIPJS.prototype.stringwidth=function(a){var b=this.getfont();if(!b)return{w:0,h:0};for(var c=0,d=0,e=0,f=0;f<a.length;f++){var g=String.fromCharCode(a.get(f)),h=b.g[g];h?(c+=Math.max(h.l+h.w,b.w),h.t<0?e<h.h-h.t&&(e=h.h-h.t):(d<h.t&&(d=h.t),e<h.h-h.t&&(e=h.h-h.t))):c+=b.w}return c+=(a.length-1)*Math.floor(b.w/4),{w:c/this.g_tsx,h:(d+e)/this.g_tsy}},BWIPJS.prototype.charpath=function(a){var b=this.stringwidth(a);this.rlineto(b.w,0),this.rlineto(0,b.h),this.rlineto(-b.w,0)},BWIPJS.prototype.pathbbox=function(){if(!this.g_path.length)throw"pathbbox: --nocurrentpoint--";for(var a=this.g_path,b=a[0][0],c=a[0][1],d=0,e=0,f=2,g=2;f<a.length;f+=g)b>a[f][0]&&(b=a[f][0]),d<a[f][0]&&(d=a[f][0]),c>a[f][1]&&(c=a[f][1]),e<a[f][1]&&(e=a[f][1]),g=2==g?1:2;return{llx:(b-this.g_tdx)/this.g_tsx,lly:(c-this.g_tdy)/this.g_tsy,urx:(d-this.g_tdx)/this.g_tsx,ury:(e-this.g_tdy)/this.g_tsy}},BWIPJS.prototype.gsave=function(){var a={};for(id in this)0==id.indexOf("g_")&&(a[id]=this.gclone(this[id]));this.gstk.push(a)},BWIPJS.prototype.grestore=function(){if(!this.gstk.length)throw"grestore: stack underflow";var a=this.gstk.pop();for(id in a)this[id]=a[id];this.bmap.color(this.g_rgb[0],this.g_rgb[1],this.g_rgb[2])},BWIPJS.prototype.stroke=function(){var a=this.g_penw*this.g_tsx,b=this.g_penw*this.g_tsy,c=this.g_path.length/3;"c"==this.g_path[this.g_path.length-2][0]&&c--;for(var d=0;d<this.g_path.length;){var e=this.g_path[d++],f=this.g_path[d++],g=this.g_path[d++];switch(f[0]){case"l":this.drawline(!0,e[0],e[1],g[0],g[1],a,b,c>1);break;case"a":this.drawarc(e[0],e[1],g[0],g[1],f[1].sa,f[1].se,a,b);break;case"c":break;default:throw"stroke: undefined opcode: "+f[0]}}this.g_path=[]},BWIPJS.prototype.fill=function(){if(this.g_path.length){"c"!=this.g_path[this.g_path.length-2][0]&&this.closepath();var a=this.bmap;this.bmap=new BWIPJS.fillmap;for(var b=0;b<this.g_path.length;){var c=this.g_path[b++],d=this.g_path[b++],e=this.g_path[b++];switch(d[0]){case"l":this.drawline(!1,c[0],c[1],e[0],e[1],1,1);break;case"a":this.drawarc(c[0],c[1],e[0],e[1],d[1].sa,d[1].se,1,1);break;case"c":this.bmap.fill();break;default:throw"fill: undefined opcode: "+d[0]}}this.bmap.xfer(a),this.bmap=a,this.g_path=[]}},BWIPJS.prototype.imagemask=function(a,b,c,d,e){for(var f=d.get(0),g=d.get(1),h=d.get(2),i=d.get(3),j=d.get(4),k=d.get(5),l=this.g_tsx,m=this.g_tsy,n=a*a,o=b*b,p=0>f?1:0,q=0>g?1:0,r=0>h?1:0,s=0>i?1:0,t=Math.ceil(a/8),u=0;b>u;u++)for(var v=0;a>v;v++){var w=e.get(u*t+Math.floor(v/8)),x=w&1<<7-v%8;if(!(x&&!c||!x&&c))for(var y=Math.floor(this.g_tdx+((v+p-j)*f+(u+r-k)*h)*l/n),z=Math.floor(this.g_tdy+((u+s-k)*i+(v+q-j)*g)*m/o),A=Math.floor(y+l/a),B=Math.floor(z+m/b),C=z;B>C;C++)for(var D=y;A>D;D++)this.bmap.set(D,C)}},BWIPJS.prototype.show=function(a,b,c){var d=this.getfont();if(d){b=this.g_tsx*b,c=this.g_tsy*c;for(var e=0;e<a.length;e++){var f=String.fromCharCode(a.get(e)),g=d.g[f];if(g){var h,i,j=g.m,k=this.g_posx+g.l,l=this.g_posy+g.t+c-2,m=j.charAt(0),n=l-g.h,o=k+g.w,p=1;if("b"==m)for(var q=l;q>n;q--)for(var r=0;r<g.w;r++)r%8||(h=parseInt(j.charAt(p),16)<<4|parseInt(j.charAt(p+1),16),p+=2),128&h&&this.bmap.set(k+r,q),h<<=1;else if("x"==m)for(var q=l;q>n;q--)for(var r=k;o>r;)if(h=parseInt(j.charAt(p),16)<<4|parseInt(j.charAt(p+1),16),i=h>>1,p+=2,1&h)for(;i--;)this.bmap.set(r++,q);else r+=i;else{if("y"!=m)throw"unknown font bitmap encoding: "+m;for(var r=k;o>r;r++)for(var q=l;q>n;)if(h=parseInt(j.charAt(p),16)<<4|parseInt(j.charAt(p+1),16),i=h>>1,p+=2,1&h)for(;i--;)this.bmap.set(r,q--);else q-=i}this.g_posx+=Math.max(g.l+g.w,d.w)+Math.floor(d.w/4)+b}else this.g_posx+=d.w+Math.floor(d.w/4)+b}}},BWIPJS.prototype.gclone=function(a){if(a instanceof Array){for(var b=[],c=0;c<a.length;c++)b[c]=this.gclone(a[c]);return b}if(a instanceof Object){var b={};for(c in a)b[c]=this.gclone(a[c]);return b}return a},BWIPJS.prototype.drawline=function(a,b,c,d,e,f,g,h){if(!a||b!=d&&c!=e){b=Math.floor(b),d=Math.floor(d),c=Math.floor(c),e=Math.floor(e);var i=Math.abs(d-b),j=Math.abs(e-c),k=b>d?-1:1,l=c>e?-1:1,m=b,n=c,o=0,p=Math.floor(Math.sqrt(f*f+g*g)),q=Math.round(Math.sqrt(p*p/(j*j/(i*i)+1)))||1,r=Math.round(Math.sqrt(p*p-q*q))||1;if(i>=j){for(;m!=d;){for(var s=0;q>s;s++)this.bmap.set(m,n+s);o+=j,o>=i&&(o-=i,n+=l),m+=k}for(var s=0;q>s;s++)this.bmap.set(m,n+s)}else{for(;n!=e;){for(var s=0;r>s;s++)this.bmap.set(m+s,n);o+=i,o>=j&&(o-=j,m+=k),n+=l}for(var s=0;r>s;s++)this.bmap.set(m+s,n)}}else{var t=Math.round(f),u=Math.round(g);if(c>e){var v=c;c=e,e=v}if(b>d){var v=b;b=d,d=v}b==d?(b=Math.round(b-t/2),d=Math.round(d+t/2),c=Math.round(c-(h?u/2:0)),e=Math.round(e+(h?u/2:0))):(c=Math.round(c-u/2),e=Math.round(e+u/2),b=Math.round(b-(h?t/2:0)),d=Math.round(d+(h?t/2:0)));for(var n=c;e>n;n++)for(var m=b;d>m;m++)this.bmap.set(m,n)}},BWIPJS.prototype.drawarc=function(a,b,c,d){var e,f=Math.abs(c-a),g=Math.abs(d-b),h=1&g,i=4*(1-f)*g*g,j=4*(h+1)*f*f,k=i+j+h*f*f;a>c&&(a=c,c+=f),b>d&&(b=d),b+=Math.floor((g+1)/2),d=b-h,f*=8*f,h=8*g*g;do this.bmap.set(c,b),this.bmap.set(a,b),this.bmap.set(a,d),this.bmap.set(c,d),e=2*k,e>=i&&(a++,c--,i+=h,k+=i),j>=e&&(b++,d--,j+=f,k+=j);while(c>=a);for(;g>b-d;)this.bmap.set(a-1,b),this.bmap.set(c+1,b++),this.bmap.set(a-1,d),this.bmap.set(c+1,d--)},BWIPJS.fillmap=function(){function a(a,b){return c[b][a]}function b(a,b){c[b][a]=1==c[b][a]?void 0:1}var c=[],d=1/0,e=1/0,f=-1/0,g=-1/0;this.set=function(a,b){a=~~a,b=~~b,c[b]||(c[b]=[]),c[b][a]=0,d>a&&(d=a),a>f&&(f=a),e>b&&(e=b),b>g&&(g=b)},this.fill=function(){for(var c=(Math.floor(d+(f-d)/2),Math.floor(e+(g-e)/2)),h=c;g>=h;h++){for(var i=d;f>=i&&0!==a(i,h);i++);for(var j=f;j>=d&&0!==a(j,h);j--);for(;j>=i;)b(i++,h)}for(var h=c-1;h>=e;h--){for(var i=d;f>=i&&0!==a(i,h);i++);for(var j=f;j>=d&&0!==a(j,h);j--);for(;j>=i;)b(i++,h)}},this.xfer=function(b){for(var c=d,h=f,i=e,j=g,k="",l=i;j>=l;l++){for(var m=c;h>=m;m++)1===a(m,l)&&b.set(m,l),k+=1===a(m,l)?"X":"0";k+="\r\n"}}},BWIPJS.load=function(){},function(a,b){"undefined"!=typeof module?module.exports=b():"function"==typeof define&&"object"==typeof define.amd?define(b):this[a]=b()}("bwip",function(){var a=function(){var a=[0,0,0],b=[],c=1/0,d=1/0,e=0,f=0;this.color=function(b,c,d){a=[b,c,d]},this.set=function(g,h){g=Math.floor(g),h=Math.floor(h),b.push([g,h,a]),c>g&&(c=g),d>h&&(d=h),g>e&&(e=g),h>f&&(f=h)},this.error=function(a){a.width=64,a.height=64;var b=a.getContext("2d");return b.beginPath(),b.rect(0,0,a.width,a.height),b.moveTo(0,0),b.lineTo(a.width,a.height),b.moveTo(a.width,0),b.lineTo(0,a.height),b.lineWidth=5,b.strokeStyle="#ff0000",b.stroke(),a.toDataURL()},this.draw=function(a,g){if(0==b.length)return a.width=32,a.height=32,a.getContext("2d").clearRect(0,0,a.width,a.height),a.style.visibility="visible",void 0;if("R"==g||"L"==g)var h=e-c+1,i=f-d+1;else var i=e-c+1,h=f-d+1;a.width=i,a.height=h;var j=a.getContext("2d");j.fillStyle="#fff",j.fillRect(0,0,a.width,a.height),j.fillStyle="#000";for(var k=j.getImageData(0,0,a.width,a.height),l=k.data,m=0;m<b.length;m++){var n=b[m][0]-c,o=b[m][1]-d,p=b[m][2];if("N"==g)o=h-o-1;else if("I"==g)n=i-n-1;else if(o=i-o,"L"==g){var q=o;o=h-n-1,n=q-1}else{var q=n;n=i-o,o=q}var r=4*(o*k.width+n);l[r++]=p[0],l[r++]=p[1],l[r++]=p[2],l[r]=255}return j.putImageData(k,0,0),a.toDataURL()}};return BWIPJS.print=function(a){console.log(a)},BWIPJS.debug=function(){},BWIPJS.imageUrl=function(b){for(var c,d="includetext includecheck includecheckintext",e=b.symbol,f=b.text,g=b.alttext,h=b.scale_h,i=b.scale_w,j=b.rotation,k=new BWIPJS,l=0;l<symdesc.length;l++){var m=symdesc[l];if(m.sym===e){c=m;break}}var n=d.split(" ");d={};for(var l=0;l<n.length;l++)if(n[l]){var o=n[l].indexOf("=");-1==o?d[n[l]]=k.value(!0):d[n[l].substr(0,o)]=k.value(n[l].substr(o+1))}g&&(d.alttext=k.value(g)),d.inkspread=k.value(0),!needyoffset[c.sym]||d.textxalign||d.textyalign||d.alttext||void 0!==d.textyoffset||(d.textyoffset=k.value(-10)),k.bitmap(new a),k.scale(i,h),k.push(f),k.push(d),BWIPJS.cvs||(BWIPJS.cvs=document.createElement("canvas"),BWIPJS.cvs.style.display="none",document.body.appendChild(BWIPJS.cvs));try{k.call(c.sym)}catch(p){console.error(p);var q=k.bitmap();return q.error(BWIPJS.cvs,j)}return k.bitmap().draw(BWIPJS.cvs,j)},BWIPJS});var symdesc=[{sym:"ean5",desc:"EAN-5 (5 digit addon)",text:"90200",opts:"includetext guardwhitespace"},{sym:"ean2",desc:"EAN-2 (2 digit addon)",text:"05",opts:"includetext guardwhitespace"},{sym:"ean13",desc:"EAN-13",text:"2071473968010",opts:"includetext guardwhitespace"},{sym:"ean8",desc:"EAN-8",text:"01335583",opts:"includetext guardwhitespace height=0.5"},{sym:"upca",desc:"UPC-A",text:"488581014973",opts:"includetext"},{sym:"upce",desc:"UPC-E",text:"00123457",opts:"includetext height=0.4"},{sym:"isbn",desc:"ISBN",text:"978-1-56592-479 54495",opts:"includetext guardwhitespace"},{sym:"ismn",desc:"ISMN",text:"979-0-2600-0043",opts:"includetext guardwhitespace"},{sym:"issn",desc:"ISSN",text:"0317-8471 00 05",opts:"includetext guardwhitespace"},{sym:"code128",desc:"Code 128",text:"Count01234567^FNC2!",opts:"includetext parsefnc"},{sym:"gs1-128",desc:"GS1-128",text:"(01)95012345678903(3103)000123",opts:"includetext"},{sym:"ean14",desc:"GS1-14",text:"(01)04601234567893",opts:"includetext"},{sym:"sscc18",desc:"SSCC-18",text:"(00)006141411234567890",opts:"includetext"},{sym:"code39",desc:"Code 39",text:"THIS IS CODE 39",opts:"includetext includecheck includecheckintext"},{sym:"code39ext",desc:"Code 39 Extended",text:"Code39 Ext!",opts:"includetext includecheck includecheckintext"},{sym:"code32",desc:"Italian PharmaCode",text:"01234567",opts:"includetext"},{sym:"pzn",desc:"Pharmazentralnummer (PZN)",text:"123456",opts:"includetext"},{sym:"code93",desc:"Code 93",text:"THIS IS CODE 93",opts:"includetext includecheck"},{sym:"code93ext",desc:"Code 93 Extended",text:"Code93 Ext!",opts:"includetext includecheck"},{sym:"interleaved2of5",desc:"Interleaved 2 of 5 (ITF)",text:"2401234567",opts:"height=0.5 includecheck includetext includecheckintext"},{sym:"itf14",desc:"ITF-14",text:"04601234567893",opts:"includetext"},{sym:"identcode",desc:"Deutsche Post Identcode",text:"563102430313",opts:"includetext"},{sym:"leitcode",desc:"Deutsche Post Leitcode",text:"21348075016401",opts:"includetext"},{sym:"databaromni",desc:"GS1 DataBar Omnidirectional",text:"(01)24012345678905",opts:""},{sym:"databarstacked",desc:"GS1 DataBar Stacked",text:"(01)24012345678905",opts:""},{sym:"databarstackedomni",desc:"GS1 DataBar Stacked Omnidirectional",text:"(01)24012345678905",opts:""},{sym:"databartruncated",desc:"GS1 DataBar Truncated",text:"(01)24012345678905",opts:""},{sym:"databarlimited",desc:"GS1 DataBar Limited",text:"(01)15012345678907",opts:""},{sym:"databarexpanded",desc:"GS1 DataBar Expanded",text:"(01)95012345678903(3103)000123",opts:""},{sym:"databarexpandedstacked",desc:"GS1 DataBar Expanded Stacked",text:"(01)95012345678903(3103)000123",opts:"segments=4"},{sym:"pharmacode",desc:"Pharmaceutical Binary Code",text:"117480",opts:"showborder"},{sym:"pharmacode2",desc:"Two-track Pharmacode",text:"117480",opts:"includetext showborder"},{sym:"code2of5",desc:"Code 25",text:"01234567",opts:"version=iata includetext includecheck includecheckintext"},{sym:"code11",desc:"Code 11",text:"0123456789",opts:"includetext includecheck includecheckintext"},{sym:"bc412",desc:"BC412",text:"BC412",opts:"semi includetext includecheckintext"},{sym:"rationalizedCodabar",desc:"Rationalized Codabar",text:"A0123456789B",opts:"includetext includecheck includecheckintext"},{sym:"onecode",desc:"United States Postal Service Intelligent Mail",text:"0123456709498765432101234567891",opts:"barcolor=FF0000"},{sym:"postnet",desc:"United States Postal Service POSTNET",text:"01234",opts:"includetext includecheckintext"},{sym:"planet",desc:"United States Postal Service PLANET",text:"01234567890",opts:"includetext includecheckintext"},{sym:"royalmail",desc:"Royal Mail 4 State Customer Code (RM4SCC)",text:"LE28HS9Z",opts:"includetext includecheckintext barcolor=FF0000"},{sym:"auspost",desc:"AusPost 4 State Customer Code",text:"5956439111ABA 9",opts:"includetext custinfoenc=character"},{sym:"kix",desc:"Royal Dutch TPG Post KIX 4-State Barcode",text:"1231FZ13XHS",opts:"includetext includecheckintext"},{sym:"japanpost",desc:"Japan Post 4 State Customer Code",text:"6540123789-A-K-Z",opts:"includetext includecheckintext"},{sym:"msi",desc:"MSI Modified Plessey",text:"0123456789",opts:"includetext includecheck includecheckintext"},{sym:"plessey",desc:"Plessey UK",text:"01234ABCD",opts:"includetext includecheckintext"},{sym:"telepen",desc:"Telepen",text:"123456",opts:"numeric includetext"},{sym:"posicode",desc:"PosiCode",text:"ABC123",opts:"version=b inkspread=-0.5 parsefnc includetext"},{sym:"codablockf",desc:"Codablock F",text:"CODABLOCK F 34567890123456789010040digit",opts:"columns=8"},{sym:"code16k",desc:"Code 16K",text:"Abcd-1234567890-wxyZ",opts:""},{sym:"code49",desc:"Code 49",text:"MULTIPLE ROWS IN CODE 49",opts:""},{sym:"channelcode",desc:"Channel Code",text:"3493",opts:"height=0.5 includetext "},{sym:"flattermarken",desc:"Flattermarken",text:"12345",opts:"inkspread=-0.25"},{sym:"raw",desc:"Raw bar space succession for custom symbologies ",text:"331132131313411122131311333213114131131221323",opts:"height=0.5"},{sym:"daft",desc:"Raw DAFT succession for custom 4 state symbologies",text:"FATDAFTDAD",opts:""},{sym:"symbol",desc:"Miscellaneous symbols",text:"fima",opts:"backgroundcolor=DD000011"},{sym:"pdf417",desc:"PDF417",text:"This is PDF417",opts:""},{sym:"micropdf417",desc:"MicroPDF417",text:"MicroPDF417",opts:""},{sym:"datamatrix",desc:"Data Matrix",text:"This is Data Matrix!",opts:"rows=32 columns=32"},{sym:"qrcode",desc:"QR Code",text:"http://www.terryburton.co.uk/barcodewriter/",opts:"eclevel=M"},{sym:"maxicode",desc:"MaxiCode",text:"[)>^03001^02996152382802^029840^029001^0291Z00004951^029UPSN^02906X610^029159^0291234567^0291/1^029^029Y^029634 ALPHA DR^029PITTSBURGH^029PA^029^004",opts:"mode=2 parse"},{sym:"azteccode",desc:"Aztec Code",text:"This is Aztec Code",opts:"format=full"},{sym:"codeone",desc:"Code One",text:"Code One",opts:"version=B"},{sym:"gs1-cc",desc:"GS1 Composite 2D Component",text:"(01)95012345678903(3103)000123",opts:"ccversion=b cccolumns=4"},{sym:"ean13composite",desc:"EAN-13 Composite",text:"2112345678900|(99)1234-abcd",opts:"includetext"},{sym:"ean8composite",desc:"EAN-8 Composite",text:"02345673|(21)A12345678",opts:"includetext"},{sym:"upcacomposite",desc:"UPC-A Composite",text:"416000336108|(99)1234-abcd",opts:"includetext"},{sym:"upcecomposite",desc:"UPC-E Composite",text:"00123457|(15)021231",opts:"includetext"},{sym:"databaromnicomposite",desc:"GS1 DataBar Omnidirectional Composite",text:"(01)03612345678904|(11)990102",opts:""},{sym:"databarstackedcomposite",desc:"GS1 DataBar Stacked Composite",text:"(01)03412345678900|(17)010200",opts:""},{sym:"databarstackedomnicomposite",desc:"GS1 DataBar Stacked Omnidirectional Composite",text:"(01)03612345678904|(11)990102",opts:""},{sym:"databartruncatedcomposite",desc:"GS1 DataBar Truncated Composite",text:"(01)03612345678904|(11)990102",opts:""},{sym:"databarlimitedcomposite",desc:"GS1 DataBar Limited Composite",text:"(01)03512345678907|(21)abcdefghijklmnopqrstuv",opts:""},{sym:"databarexpandedcomposite",desc:"GS1 DataBar Expanded Composite",text:"(01)93712345678904(3103)001234|(91)1A2B3C4D5E",opts:""},{sym:"databarexpandedstackedcomposite",desc:"GS1 DataBar Expanded Stacked Composite",text:"(01)00012345678905(10)ABCDEF|(21)12345678",opts:"segments=4 "},{sym:"gs1-128composite",desc:"GS1-128 Composite",text:"(00)030123456789012340|(02)13012345678909(37)24(10)1234567ABCDEFG",opts:"ccversion=c"},{sym:"gs1datamatrix",desc:"GS1 Data Matrix",text:"(01)03453120000011(17)120508(10)ABCD1234(410)9501101020917",opts:""},{sym:"hibccode39",desc:"HIBC Code 39",text:"A123BJC5D6E71",opts:"includetext"},{sym:"hibccode128",desc:"HIBC Code 128",text:"A123BJC5D6E71",opts:"includetext"},{sym:"hibcdatamatrix",desc:"HIBC Data Matrix",text:"A123BJC5D6E71",opts:""},{sym:"hibcpdf417",desc:"HIBC PDF417",text:"A123BJC5D6E71",opts:""},{sym:"hibcmicropdf417",desc:"HIBC MicroPDF417",text:"A123BJC5D6E71",opts:""},{sym:"hibcqrcode",desc:"HIBC QR Code",text:"A123BJC5D6E71",opts:""},{sym:"hibccodablockf",desc:"HIBC Codablock F",text:"A123BJC5D6E71",opts:""},null],baropts={ean5:{includetext:!1,height:.7},ean2:{includetext:!1,height:.7},ean13:{includetext:!1,height:1,addongap:12},ean8:{includetext:!1,height:1,addongap:12},upca:{includetext:!1,height:1,addongap:12},upce:{includetext:!1,height:1,addongap:12},isbn:{includetext:!1,height:1,addongap:12,legacy:!1},ismn:{includetext:!1,height:1,addongap:12,legacy:!1},issn:{includetext:!1,height:1,addongap:12},code128:{includetext:!1,height:1,encoding:"auto",raw:!1,parse:!1,parsefnc:!1},"gs1-128":{includetext:!1,height:.5,linkagea:!1,linkagec:!1},ean14:{includetext:!1,height:1},sscc18:{includetext:!1,height:1},code39:{includecheck:!1,includetext:!1,includecheckintext:!1,hidestars:!1,height:1},code39ext:{includetext:!1,parse:!1},code32:{includetext:!1,height:1},pzn:{includetext:!1,height:1,pzn8:!1},code93:{includecheck:!1,includetext:!1,height:1,parsefnc:!1},code93ext:{includetext:!1,parse:!1},interleaved2of5:{includecheck:!1,includetext:!1,includecheckintext:!1,height:1},itf14:{includetext:!1,height:1},identcode:{includetext:!1,height:1},leitcode:{includetext:!1,height:1},databaromni:{height:33,linkage:!1,format:"omni"},databarstacked:{},databarstackedomni:{},databartruncated:{},databarlimited:{height:10,linkage:!1},databarexpanded:{height:34,format:"expanded",segments:-1,linkage:!1},databarexpandedstacked:{},pharmacode:{height:8,nwidth:.5,wwidth:1.5,swidth:1},pharmacode2:{includetext:!1,height:4},code2of5:{includecheck:!1,includetext:!1,includecheckintext:!1,height:1,version:"industrial"},code11:{includecheck:!1,includetext:!1,includecheckintext:!1,height:1},bc412:{includecheck:!1,includetext:!1,includecheckintext:!1,includestartstop:!1,semi:!1,height:1},rationalizedCodabar:{includecheck:!1,includetext:!1,includecheckintext:!1,height:1},onecode:{height:.15},postnet:{includetext:!1,includecheckintext:!1,height:.125},planet:{includetext:!1,includecheckintext:!1,height:.125},royalmail:{includetext:!1,includecheckintext:!1,height:.175},auspost:{includetext:!1,height:.175,custinfoenc:"character"},kix:{includetext:!1,includecheckintext:!1,height:.175},japanpost:{includetext:!1,includecheckintext:!1,height:.175},msi:{includecheck:!1,includetext:!1,includecheckintext:!1,checktype:"mod10",badmod11:!1,height:1},plessey:{includetext:!1,includecheckintext:!1,unidirectional:!1,height:1},telepen:{numeric:!1,includetext:!1,height:1,parse:!1},posicode:{includetext:!1,height:1,encoding:"auto",version:"a",checkoffset:0,raw:!1,parse:!1,parsefnc:!1},codablockf:{rows:-1,columns:8,rowheight:10,sepheight:1,encoding:"auto",parse:!1,parsefnc:!1},code16k:{mode:-1,pos:-1,rows:0,rowheight:8,sepheight:1,encoding:"auto",raw:!1,parse:!1,parsefnc:!1},code49:{mode:-1,pos:-1,rows:0,rowheight:8,sepheight:1,parse:!1,parsefnc:!1},channelcode:{shortfinder:!1,includetext:!1,includecheck:!1,height:1},flattermarken:{includetext:!1,height:.3},raw:{height:1},daft:{height:.175},symbol:{},pdf417:{compact:!1,eclevel:-1,columns:0,rows:0,rowmult:3,ccc:!1,raw:!1,parse:!1},micropdf417:{columns:0,rows:0,rowmult:2,cca:!1,ccb:!1,raw:!1,parse:!1},datamatrix:{columns:0,rows:0,encoding:"ascii",raw:!1,parse:!1,parsefnc:!1},qrcode:{format:"full",version:"unset",eclevel:"unset",encoding:"unset",raw:!1,parse:!1},maxicode:{mode:-1,sam:-1,parse:!1},azteccode:{format:"unset",readerinit:!1,layers:-1,eclevel:23,ecaddchars:3,raw:!1,parse:!1},codeone:{version:"unset",encoding:"ascii",raw:!1,parse:!1},"gs1-cc":{ccversion:"a",cccolumns:-1,lintype:"",linwidth:-1},ean13composite:{},ean8composite:{},upcacomposite:{},upcecomposite:{},databaromnicomposite:{},databarstackedcomposite:{},databarstackedomnicomposite:{},databartruncatedcomposite:{},databarlimitedcomposite:{},databarexpandedcomposite:{},databarexpandedstackedcomposite:{},"gs1-128composite":{},gs1datamatrix:{},hibccode39:{},hibccode128:{},hibcdatamatrix:{},hibcpdf417:{columns:2},hibcmicropdf417:{columns:2},hibcqrcode:{},hibccodablockf:{}},needyoffset={auspost:!0,bc412:!0,code11:!0,code2of5:!0,code39:!0,code39ext:!0,code93:!0,code93ext:!0,flattermarken:!0,itf14:!0,interleaved2of5:!0,japanpost:!0,msi:!0,plessey:!0,rationalizedCodabar:!0,royalmail:!0,kix:!0,telepen:!0,planet:!0,postnet:!0};BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["10-01"]={h:7,w:5,g:{0:{t:7,l:0,w:5,h:7,m:"b70888888888870"},1:{t:7,l:1,w:3,h:7,m:"y04030802030a0f"},2:{t:7,l:0,w:5,h:7,m:"b708808304080f8"},3:{t:7,l:0,w:4,h:7,m:"bf01020601010e0"},4:{t:7,l:0,w:5,h:7,m:"b20204090f81010"},5:{t:7,l:0,w:5,h:7,m:"bf880f0080810e0"},6:{t:7,l:0,w:5,h:7,m:"b10204070888870"},7:{t:7,l:0,w:5,h:7,m:"bf8081020404040"},8:{t:7,l:0,w:5,h:7,m:"b70888870888870"},9:{t:7,l:0,w:5,h:7,m:"b70888870102040"},A:{t:7,l:0,w:5,h:7,m:"b20205050708888"},B:{t:7,l:0,w:5,h:7,m:"bf08888f08888f0"},C:{t:7,l:0,w:5,h:7,m:"b70888080808870"},D:{t:7,l:0,w:5,h:7,m:"be09088888890e0"},E:{t:7,l:0,w:5,h:7,m:"bf88080f08080f8"},F:{t:7,l:0,w:4,h:7,m:"bf08080e0808080"},G:{t:7,l:0,w:5,h:7,m:"b708880b8888870"},H:{t:7,l:0,w:5,h:7,m:"b888888f8888888"},I:{t:7,l:1,w:3,h:7,m:"y030a030f030a03"},J:{t:7,l:0,w:4,h:7,m:"b10101010109060"},K:{t:7,l:0,w:5,h:7,m:"b8890a0c0a09088"},L:{t:7,l:0,w:5,h:7,m:"b808080808080f8"},M:{t:7,l:0,w:5,h:7,m:"b88d8d8a8a88888"},N:{t:7,l:0,w:5,h:7,m:"b88c8c8a8989888"},O:{t:7,l:0,w:5,h:7,m:"b70508888885070"},P:{t:7,l:0,w:5,h:7,m:"bf08888f0808080"},Q:{t:7,l:0,w:5,h:7,m:"b705088a8a85078"},R:{t:7,l:0,w:5,h:7,m:"bf08888f0a09088"},S:{t:7,l:0,w:5,h:7,m:"b70888070088870"},T:{t:7,l:0,w:5,h:7,m:"bf8202020202020"},U:{t:7,l:0,w:5,h:7,m:"b88888888888870"},V:{t:7,l:0,w:5,h:7,m:"b88888850502020"},W:{t:7,l:0,w:5,h:7,m:"b888888a8a85050"},X:{t:7,l:0,w:5,h:7,m:"b88885020508888"},Y:{t:7,l:0,w:5,h:7,m:"b88505020202020"},Z:{t:7,l:0,w:4,h:7,m:"bf01020604080f0"},a:{t:5,l:0,w:5,h:5,m:"b7008788878"},b:{t:8,l:0,w:5,h:8,m:"b808080b0c888c8b0"},c:{t:5,l:0,w:5,h:5,m:"b7088808870"},d:{t:8,l:0,w:5,h:8,m:"b0808086898889868"},e:{t:5,l:0,w:5,h:5,m:"b7088f88078"},f:{t:8,l:0,w:4,h:8,m:"b304040f040404040"},g:{t:5,l:0,w:5,h:7,m:"b708888986808f0"},h:{t:8,l:0,w:5,h:8,m:"b808080b0c8888888"},i:{t:8,l:1,w:3,h:8,m:"b606000e020202020"},j:{t:8,l:0,w:4,h:10,m:"b303000701010101010e0"},k:{t:8,l:0,w:4,h:8,m:"b80808090a0c0a090"},l:{t:8,l:1,w:3,h:8,m:"y0f020e030e03"},m:{t:5,l:0,w:5,h:5,m:"bd0a8a8a8a8"},n:{t:5,l:0,w:5,h:5,m:"bb0c8888888"},o:{t:5,l:0,w:5,h:5,m:"b7088888870"},p:{t:5,l:0,w:5,h:7,m:"bb0c888c8b08080"},q:{t:5,l:0,w:5,h:7,m:"b68988898680808"},r:{t:5,l:0,w:5,h:5,m:"bb0c8808080"},s:{t:5,l:0,w:5,h:5,m:"b78807008f0"},t:{t:6,l:0,w:4,h:6,m:"b40f040404030"},u:{t:5,l:0,w:5,h:5,m:"b8888889868"},v:{t:5,l:0,w:5,h:5,m:"b8888505020"},w:{t:5,l:0,w:5,h:5,m:"b88a8a85050"},x:{t:5,l:0,w:5,h:5,m:"b8850205088"},y:{t:5,l:0,w:5,h:7,m:"b88505020204080"},z:{t:5,l:0,w:4,h:5,m:"bf0106080f0"},"~":{t:7,l:0,w:5,h:2,m:"b68b0"},"!":{t:7,l:1,w:2,h:7,m:"y090205090205"},"@":{t:7,l:0,w:5,h:7,m:"b70880868a8a850"},"#":{t:7,l:0,w:5,h:7,m:"b2828f850f8a0a0"},$:{t:7,l:0,w:5,h:8,m:"b2070a86030a87020"},"%":{t:7,l:0,w:5,h:7,m:"bc8d01020405898"},"^":{t:7,l:0,w:5,h:4,m:"b20705088"},"&":{t:7,l:0,w:5,h:7,m:"b60909060a89068"},"*":{t:7,l:0,w:5,h:5,m:"b20a8707088"},_:{t:-1,l:0,w:5,h:1,m:"x0b"},"+":{t:6,l:0,w:5,h:5,m:"b2020f82020"},"`":{t:7,l:1,w:3,h:3,m:"bc06020"},"-":{t:4,l:0,w:5,h:1,m:"x0b"},"=":{t:5,l:0,w:5,h:3,m:"x0b0a0b"},'"':{t:7,l:0,w:5,h:3,m:"bd8d8d8"},"'":{t:7,l:1,w:2,h:4,m:"y0909"},"(":{t:7,l:1,w:3,h:7,m:"b20408080804020"},")":{t:7,l:1,w:3,h:7,m:"b80402020204080"},"{":{t:7,l:0,w:5,h:7,m:"b182020c0202018"},"}":{t:7,l:0,w:5,h:7,m:"bc02020182020c0"},"[":{t:7,l:0,w:4,h:7,m:"bf08080808080f0"},"]":{t:7,l:0,w:4,h:7,m:"bf01010101010f0"},"<":{t:7,l:0,w:5,h:7,m:"b183060c0603018"},">":{t:7,l:0,w:5,h:7,m:"bc06030183060c0"},"|":{t:7,l:2,w:1,h:9,m:"y13"},":":{t:6,l:1,w:2,h:6,m:"y050405050405"},";":{t:6,l:1,w:3,h:8,m:"b606000006060c080"},".":{t:2,l:1,w:2,h:2,m:"y0505"},",":{t:2,l:1,w:3,h:4,m:"b6060c080"},"\\":{t:7,l:0,w:5,h:7,m:"b80404020101008"},"?":{t:7,l:0,w:5,h:8,m:"b7088081030003030"},"/":{t:7,l:0,w:5,h:7,m:"b08101020404080"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["10-02"]={h:14,w:10,g:{0:{t:14,l:0,w:10,h:14,m:"b3f007f80e1c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0e1c07f803f00"},1:{t:14,l:2,w:6,h:14,m:"y06071004071202071407161d1d"},2:{t:14,l:1,w:8,h:14,m:"b7cfec70303070e1c3870e0c0ffff"},3:{t:14,l:0,w:9,h:14,m:"bff00ff0007000e001c003e003f000380018001800180c380ff007e00"},4:{t:14,l:0,w:9,h:14,m:"b0c000c00180018003000300066006600c600ff80ff80060006000600"},5:{t:14,l:1,w:8,h:14,m:"bffffc0c0c0fcfe070303070efcf8"},6:{t:14,l:0,w:10,h:14,m:"b038007000e001c0038007f007f80e1c0c0c0c0c0c0c0e1c07f803f00"},7:{t:14,l:0,w:9,h:14,m:"y05180518050e0b050a0f0506090a0504070e0502051209140716"},8:{t:14,l:0,w:10,h:14,m:"b1e003f007380618073803f003f007380e1c0c0c0c0c0e1c07f803f00"},9:{t:14,l:0,w:10,h:14,m:"b3f007f80e1c0c0c0c0c0c0c0e1c07f803f8007000e001c0038007000"},A:{t:14,l:0,w:9,h:14,m:"y14090c110411080d040508050c05080d0405080411080c111409"},B:{t:14,l:0,w:10,h:14,m:"bfe00ff00c380c180c180c300ff00ff80c1c0c0c0c0c0c1c0ff80ff00"},C:{t:14,l:0,w:9,h:14,m:"b3e007f00e380c180c000c000c000c000c000c000c180e3807f003e00"},D:{t:14,l:0,w:9,h:14,m:"y1d1d05140505140507100702051005020209080902041504080d08"},E:{t:14,l:0,w:9,h:14,m:"x1313050e050e050e050e11021102050e050e050e050e1313"},F:{t:14,l:1,w:8,h:14,m:"bffffc0c0c0c0fefec0c0c0c0c0c0"},G:{t:14,l:0,w:9,h:14,m:"b3e007f00e380c180c000c000cf80cf80c180c180c180e1807f803f00"},H:{t:14,l:0,w:9,h:14,m:"y1d1d0c050c0c050c0c050c0c050c0c050c1d1d"},I:{t:14,l:1,w:8,h:14,m:"bffff18181818181818181818ffff"},J:{t:14,l:1,w:8,h:14,m:"b030303030303030303c3c3c3ff7e"},K:{t:14,l:0,w:9,h:14,m:"bc180c380c700ce00dc00f800f000f000f800dc00ce00c700c380c180"},L:{t:14,l:0,w:9,h:14,m:"y1d1d1805180518051805180518051805"},M:{t:14,l:0,w:9,h:14,m:"y1d1d0b12040d0c0a090a040d0c0b121d1d"},N:{t:14,l:0,w:9,h:14,m:"y1d1d02091206090e0a090a0e09061209021d1d"},O:{t:14,l:0,w:10,h:14,m:"b1e003f0061806180c0c0c0c0c0c0c0c0c0c0c0c0618061803f001e00"},P:{t:14,l:0,w:9,h:14,m:"y1d1d0508050c0508050c0508050c0508050c0704070c020d0e040910"},Q:{t:14,l:0,w:10,h:14,m:"b1c003e0063006300c180c180c180c180cd80cf80670063803fc01cc0"},R:{t:14,l:1,w:8,h:14,m:"bfcfec7c3c3c7fefccccec6c7c3c3"},S:{t:14,l:0,w:9,h:14,m:"b3e007f00e380c180c000f0007c001f0007800180c180e3807f003e00"},T:{t:14,l:0,w:10,h:14,m:"y05180518051805181d1d0518051805180518"},U:{t:14,l:0,w:9,h:14,m:"y19041b02160718051805180516071b021904"},V:{t:14,l:0,w:10,h:14,m:"y09140f0e060f080c0d04120b120b0c0d04060f080f0e0914"},W:{t:14,l:0,w:10,h:14,m:"y15081904120b100d0a0d060a0d06100d120b19041508"},X:{t:14,l:0,w:10,h:14,m:"bc0c0e1c06180738033003f001e001e003f00330073806180e1c0c0c0"},Y:{t:14,l:0,w:10,h:14,m:"y05180914020b10060b0c0a130a13060b0c020b1009140518"},Z:{t:14,l:1,w:8,h:14,m:"bffff06060c0c181830306060ffff"},a:{t:10,l:0,w:9,h:10,m:"b3e007f00e38001803f807f80e180c380ff807d80"},b:{t:14,l:0,w:9,h:14,m:"bc000c000c000c000dc00ff00e300c180c180c180c180e300ff00dc00"},c:{t:10,l:1,w:8,h:10,m:"b1c7f63c0c0c0c0637f1c"},d:{t:14,l:0,w:9,h:14,m:"b01800180018001801d807f806380c180c180c180c18063807f801d80"},e:{t:10,l:0,w:9,h:10,m:"b1c007f006300c180ff80ff80c00061807f801e00"},f:{t:14,l:1,w:8,h:14,m:"b070f1c1818ffff18181818181818"},g:{t:10,l:0,w:9,h:13,m:"b1d807f806380c180c180c18063807f801d800180c3807f003e00"},h:{t:14,l:1,w:8,h:14,m:"bc0c0c0c0deffe3c3c3c3c3c3c3c3"},i:{t:14,l:2,w:5,h:14,m:"b3838380000f8f818181818181818"},j:{t:14,l:2,w:6,h:18,m:"b1c1c1c00007c7c0c0c0c0c0c0c0c0c1cf8f0"},k:{t:14,l:1,w:8,h:14,m:"bc0c0c0c0c7cedcf8f0f8dccec7c3"},l:{t:14,l:2,w:6,h:14,m:"y19041b021607180518051805"},m:{t:10,l:0,w:10,h:10,m:"y151502050e0510150213070e0510150213"},n:{t:10,l:0,w:9,h:10,m:"y151502050e051005100510070e02130411"},o:{t:10,l:0,w:10,h:10,m:"b1e007f806180c0c0c0c0c0c0c0c061807f801e00"},p:{t:10,l:0,w:9,h:13,m:"bdc00ff00e300c180c180c180c180e300ff00dc00c000c000c000"},q:{t:10,l:0,w:9,h:13,m:"b1d807f806380c180c180c180c18063807f801d80018001800180"},r:{t:10,l:0,w:9,h:10,m:"y151502050e0510051005100510070e02050e"},s:{t:10,l:0,w:9,h:10,m:"b3c007e00e300c0007e003f000380c1807f003e00"},t:{t:14,l:1,w:8,h:14,m:"b303030ffff303030303030303f1f"},u:{t:10,l:0,w:9,h:10,m:"y0f0613020e05021005100510050e05021515"},v:{t:10,l:0,w:9,h:10,m:"bc180c180e38063006300770036003e001c000800"},w:{t:10,l:0,w:10,h:10,m:"bc0c0c0c0c0c0ccc0ccc0ccc0ffc07f8033003300"},x:{t:10,l:1,w:7,h:10,m:"bc6c66c6c38386c6cc6c6"},y:{t:10,l:0,w:9,h:14,m:"y07160b0e05040b06090813020a0d06080b0a040b0e0b120716"},z:{t:10,l:1,w:8,h:10,m:"bffff070e1c3870e0ffff"},"~":{t:14,l:0,w:10,h:4,m:"b38c07dc0ef80c700"},"!":{t:14,l:3,w:3,h:14,m:"y110607110607110607"},"@":{t:14,l:0,w:10,h:14,m:"b3e00ff80c18000c000c06cc0fcc0dcc0ccc0ccc0ccc0dd80ff807700"},"#":{t:14,l:0,w:10,h:15,m:"b0cc00cc01dc019807fc07fc03b8033007700ff80ff806600ee00cc00cc00"},$:{t:14,l:0,w:10,h:15,m:"b0c003f007fc0ecc0cc00ec007c003f000f800dc00cc0cdc0ff803f000c00"},"%":{t:14,l:0,w:10,h:14,m:"b7180fb80db00fb0076000e000c000c001c001b8037c036c077c06380"},"^":{t:14,l:1,w:8,h:8,m:"b18183c3c7e66c381"},"&":{t:14,l:0,w:10,h:14,m:"b3c007e00e700c300e7007e003c007800fcc0cfc0c780e3807fc03cc0"},"*":{t:14,l:1,w:8,h:9,m:"b1818dbff7e3c7ee766"},_:{t:-1,l:0,w:10,h:2,m:"x1515"},"+":{t:13,l:0,w:10,h:10,m:"b0c000c000c000c00ffc0ffc00c000c000c000c00"},"`":{t:14,l:2,w:6,h:6,m:"bf0f078381c0c"},"-":{t:8,l:0,w:10,h:3,m:"x151515"},"=":{t:11,l:0,w:9,h:7,m:"x13131212121313"},'"':{t:14,l:1,w:8,h:5,m:"be7e7e7e7e7"},"'":{t:14,l:3,w:3,h:7,m:"y0f0f0f"},"(":{t:14,l:2,w:6,h:14,m:"b0c1c306060c0c0c0c06060301c0c"},")":{t:14,l:2,w:6,h:14,m:"bc0e03018180c0c0c0c181830e0c0"},"{":{t:14,l:0,w:9,h:14,m:"b07800f800c00180018003800f000f0003800180018000c000f800780"},"}":{t:14,l:0,w:9,h:14,m:"bf000f80018000c000c000e00078007800e000c000c001800f800f000"},"[":{t:14,l:1,w:7,h:14,m:"bfefec0c0c0c0c0c0c0c0c0c0fefe"},"]":{t:14,l:1,w:7,h:14,m:"bfefe06060606060606060606fefe"},"<":{t:14,l:0,w:10,h:13,m:"b00c001c007800f003c007800f00078003c000f00078001c000c0"},">":{t:14,l:0,w:10,h:13,m:"bc000e00078003c000f00078003c007800f003c007800e000c000"},"|":{t:14,l:4,w:2,h:17,m:"y2323"},":":{t:11,l:3,w:4,h:11,m:"x0909090808080808090909"},";":{t:11,l:2,w:6,h:14,m:"b3c3c3c00000000003c3c7c78f0e0"},".":{t:3,l:3,w:4,h:3,m:"x090909"},",":{t:3,l:2,w:6,h:6,m:"b3c3c7c78f0e0"},"\\":{t:14,l:1,w:8,h:14,m:"bc0e060703038181c0c0e06070303"},"?":{t:14,l:0,w:11,h:15,m:"b0f003fc071e0e0e0e0e001c0038007000e000e00000000000f000f000f00"},"/":{t:14,l:1,w:8,h:14,m:"b0307060e0c1c1838307060e0c0c0"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["10-03"]={h:21,w:15,g:{0:{t:21,l:0,w:15,h:21,m:"b1ff03ff87ffc701c701ce00ee00ee00ee00ee00ee00ee00ee00ee00ee00ee00e701c701c7ffc3ff81ff0"},1:{t:21,l:3,w:8,h:21,m:"y08091a06091c04091e02092009222b2b2b"},2:{t:21,l:1,w:13,h:21,m:"b3f80ffe0fff0e078003800380038007800f001e007c00f801e003c0078007000e000e000fff8fff8fff8"},3:{t:21,l:0,w:14,h:21,m:"bfff8fff8fff800f801f003e007c00f801f001fe01ff000f8003c001c001c001c003cc078fff0ffe03f80"},4:{t:21,l:0,w:14,h:21,m:"b03800380070007000e000e001c001c003800380070e070e0e0e0e0e0fffcfffcfffc00e000e000e000e0"},5:{t:21,l:1,w:13,h:21,m:"b7ff0fff0fff0e000e000e000e000ff00ffc0ffe000f00078003800380038007800f003f0ffe0ff80fe00"},6:{t:21,l:0,w:15,h:21,m:"b00f001e003c007800f000e001c003fe03ff07ff8783cf01ee00ee00ee00ee00ef01e783c7ff83ff00fe0"},7:{t:21,l:0,w:14,h:21,m:"y07240724072407160f071213070e17070a0d0e07080b120706091607040918111a0f1c0d1e0922"},8:{t:21,l:0,w:15,h:21,m:"b0fe03ff83ff8783c701c701c38383ef80fe00fe01ff07c7c701ce00ee00ee00ee00ef83e7ffc3ff80fe0"},9:{t:21,l:0,w:15,h:21,m:"b0fe01ff83ffc783cf01ee00ee00ee00ee00ef01e783c3ffc1ff80ff8007000e001e003c007800f001e00"},A:{t:21,l:0,w:15,h:21,m:"b038007c007c006c00ee00ee00ee01c701c701c703c7838383ff83ff87ffc783c701c701cf01ee00ee00e"},B:{t:21,l:0,w:15,h:21,m:"bffc0fff0fff8e078e01ce01ce01ce01ce03cfff8fff0fff8e03ce01ee00ee00ee00ee03cfffcfff8ffe0"},C:{t:21,l:1,w:13,h:21,m:"b07c01fe03ff0387870387000f000e000e000e000e000e000e000e000f000700070383c783ff01ff007c0"},D:{t:21,l:1,w:13,h:21,m:"y2b2b2b071e07071e07071e07091a070202071a07020209160704040b0e0b04061f060a170a0e0f0e"},E:{t:21,l:1,w:12,h:21,m:"x191919071207120712071207120712170217021702071207120712071207120712191919"},F:{t:21,l:2,w:11,h:21,m:"y2b2b2b070c0712070c0712070c0712070c0712070c0712070c0712070c07120724"},G:{t:21,l:0,w:14,h:21,m:"b07e01ff83ffc3c1c78007000f000e000e000e000e1fce1fce1fce01cf01c701c781c3c1c3ffc1ffc07f0"},H:{t:21,l:1,w:13,h:21,m:"y2b2b2b1207121207121207121207121207121207121207122b2b2b"},I:{t:21,l:2,w:11,h:21,m:"y071e07071e07071e07071e072b2b2b071e07071e07071e07071e07"},J:{t:21,l:2,w:11,h:21,m:"y1c09061c0d021c0d0222092407240724072209290229022506"},K:{t:21,l:0,w:16,h:21,m:"be01ee03ce078e0f0e1e0e3c0e780ef00fe00fc00fc00fe00ef00e780e3c0e1e0e0f0e078e03ce01ee00f"},L:{t:21,l:1,w:13,h:21,m:"y2b2b2b2407240724072407240724072407240724072407"},M:{t:21,l:0,w:15,h:21,m:"y2b2b2b0b20111a0415120a130e100d0e0a130e041512111a0b202b2b2b"},N:{t:21,l:1,w:13,h:21,m:"y2b2b2b0d1e040f18080f140e0f0e120f0a180f041c0f2b2b2b"},O:{t:21,l:0,w:15,h:21,m:"b07c01ff03ff83c78783c701c701ce00ee00ee00ee00ee00ee00ee00ef01c701c783c3c783ff81ff007c0"},P:{t:21,l:0,w:14,h:21,m:"bffc0fff0fff8e038e01ce01ce01ce01ce01ce078fff8fff0ffc0e000e000e000e000e000e000e000e000"},Q:{t:21,l:0,w:16,h:21,m:"b07801fe03ff0787870387038e01ce01ce01ce01ce01ce79ce3dce1dc71f870f878783ff81ffc079e000f"},R:{t:21,l:0,w:14,h:21,m:"bff80ffe0fff0e0f0e078e038e038e038e038e0f0fff0ffe0ff80e380e3c0e1c0e0e0e0f0e070e078e03c"},S:{t:21,l:1,w:13,h:21,m:"b0fc03fe07ff0f078e038e038f00078003e001f800fc003e000f000780038e038e038f0787ff03fe00f80"},T:{t:21,l:0,w:14,h:21,m:"y072407240724072407242b2b2b072407240724072407240724"},U:{t:21,l:0,w:14,h:21,m:"y230827042902200902220924072407240724072209200902290227042308"},V:{t:21,l:0,w:15,h:21,m:"y07240f1c171406190c0c190614171c0f22091c0f14170c190606190c17140f1c0724"},W:{t:21,l:0,w:15,h:21,m:"y171423082b16151c0f1615101308100d0e10130816151c0f16152b25061714"},X:{t:21,l:0,w:15,h:21,m:"bf01e701c783c38383c781c701ef01ef00fe00fe007c00fe00fe01ef01ef01c703c783838783c701cf01e"},Y:{t:21,l:0,w:15,h:21,m:"y0328072409220d1e040d1a080d160c1f101b0c1f080d16040d1a0d1e0b2007240328"},Z:{t:21,l:1,w:13,h:21,m:"b7ff07ff07ff000f000e001e001c003c00380070007000e001e001c003c00380078007000fff8fff8fff8"},a:{t:15,l:1,w:13,h:15,m:"b0fe03ff07ff8703800380ff83ff87ff8f038e038e078f0f8fff87ff81f38"},b:{t:22,l:0,w:14,h:22,m:"be000e000e000e000e000e000e000e7c0fff0fff8f878f03ce01ce01ce01ce01ce01cf03cf878fff8fff0e7c0"},c:{t:15,l:1,w:12,h:15,m:"b0f803fe07fe078f0f070e000e000e000e000e000f07078f07fe03fe00f80"},d:{t:21,l:0,w:14,h:21,m:"b001c001c001c001c001c001c0f9c3ffc7ffc787cf03ce01ce01ce01ce01ce01cf03c787c7ffc3ffc0f9c"},e:{t:15,l:1,w:13,h:15,m:"b0f803fe07ff07070e038fff8fff8fff8e000e000f00078007ff83ff00fe0"},f:{t:21,l:2,w:11,h:21,m:"y0e07160e07160e07160e071606250229022909060716070807160708071607080716"},g:{t:15,l:0,w:14,h:20,m:"b0f9c3ffc7ffc787cf03ce01ce01ce01ce01cf03c787c7ffc3ffc0f9c001c001c703c7ff83ff81fe0"},h:{t:21,l:1,w:12,h:21,m:"y2b2b2b0e07160c07180c07180c07180c07180c09160e1d0e1d1219"},i:{t:21,l:3,w:8,h:21,m:"b0f0f0f0f000000ffffff0707070707070707070707"},j:{t:21,l:3,w:8,h:26,m:"b0f0f0f0f0000003f3f3f0707070707070707070707070ffffef8"},k:{t:21,l:1,w:13,h:21,m:"y2b2b2b16090c140d0a12110810090409060e090809040c090c09020c0710090c0514070c0318052803"},l:{t:21,l:3,w:9,h:21,m:"y250629022902220924072407240724072407"},m:{t:15,l:0,w:15,h:15,m:"y1f1f1f020518071807181f1f021d0718071807181f021d041b"},n:{t:15,l:1,w:13,h:15,m:"y1f1f1f02091402071607180718071807180916021d021d0619"},o:{t:15,l:0,w:15,h:15,m:"b07c01ff03ff8783c701ce00ee00ee00ee00ee00e701c783c3ff81ff007c0"},p:{t:15,l:0,w:14,h:20,m:"be7c0fff0fff0f878f038e01ce01ce01ce01ce01cf038f878fff0fff0e7c0e000e000e000e000e000"},q:{t:15,l:0,w:14,h:20,m:"b0f9c3ffc3ffc787c703ce01ce01ce01ce01ce01cf03c787c7ffc3ffc0f9c001c001c001c001c001c"},r:{t:15,l:1,w:12,h:15,m:"y1f1f1f02091402071607180718071809160b14020914040714"},s:{t:15,l:1,w:13,h:15,m:"b1fe07ff0fff8f038e000f0007f803fe00ff000780038e078fff87ff01fc0"},t:{t:19,l:2,w:11,h:19,m:"y08071808071808071823042502270807120708071207080712070807120708071207"},u:{t:15,l:1,w:13,h:15,m:"y19061d021d02160918071807180718071607021409021f1f1f"},v:{t:15,l:1,w:13,h:15,m:"y07180d12130c0613060c13120d1807120d0c13061306130c0d120718"},w:{t:15,l:0,w:15,h:15,m:"be00ee00ee00ee00ee00e701c739c739c77dc76dc3ef83ef83ef83c783c78"},x:{t:15,l:1,w:13,h:15,m:"bf07878f038e03de01dc00f800f8007000f800f801dc03de038e078f0f078"},y:{t:15,l:0,w:15,h:20,m:"bf00e700e781c381c1c381c380e700f7007e003e003c003c00380078007000f001e007c0078007000"},z:{t:15,l:1,w:12,h:15,m:"b7ff07ff07ff000f001e003c007800f001e003c007800f000fff0fff0fff0"},"~":{t:21,l:0,w:15,h:5,m:"b3c0e7f8efffee3fce078"},"!":{t:21,l:5,w:4,h:21,m:"y1b08091b08091b08091b0809"},"@":{t:21,l:0,w:15,h:21,m:"b0fe03ff07ff8707ce01ce01c000e000e3dce7fce7fcef3cee1cee1cee1cee1cee1cef3ce7ffc7ffc3e78"},"#":{t:21,l:0,w:15,h:21,m:"b070e070e070e0e1c0e1c7ffe7ffe7ffe1c381c38183038703870fffcfffcfffc70e070e0e1c0e1c0e1c0"},$:{t:21,l:0,w:15,h:22,m:"b03800fe03ff87ffcf39ee38ee380f3807b807f801fe007f803fc039e038e038ee38ef39c7ffc7ff80fe00380"},"%":{t:21,l:0,w:15,h:21,m:"b3c1c7e1c7e3ce738e778e7707ee07ee03dc003c00380078007780efc0efc1dce3dce39ce78fc70fc7078"},"^":{t:21,l:0,w:14,h:11,m:"b030007800fc00fc01fe03ff03cf07878f03ce01cc00c"},"&":{t:21,l:0,w:15,h:21,m:"b0fc01ff03ff078787038707838f03be01fc01f803f007f0e778ee3cee1eee0fcf07c787c7ff83ffc0fde"},"*":{t:21,l:0,w:15,h:14,m:"b0380038003800380638cfffefffe3ff807c007e00fe01ef03c781830"},_:{t:-2,l:0,w:16,h:3,m:"x212121"},"+":{t:19,l:0,w:15,h:16,m:"b038003800380038003800380fffefffefffe0380038003800380038003800380"},"`":{t:21,l:3,w:9,h:8,m:"bfc00fc007e003e001f000f0007800380"},"-":{t:12,l:0,w:14,h:3,m:"x1d1d1d"},"=":{t:16,l:1,w:13,h:10,m:"x1b1b1b1a1a1a1a1b1b1b"},'"':{t:21,l:2,w:11,h:7,m:"y0f0f0f0f0e0e0e0f0f0f0f"},"'":{t:21,l:5,w:4,h:9,m:"y13131313"},"(":{t:21,l:3,w:9,h:21,m:"y100b100a170a081b08060b0a0b0604091209040209160902091a09071e07052205"},")":{t:21,l:3,w:9,h:21,m:"y052205071e07091a0902091609020409120904060b0a0b06081b080a170a100b10"},"{":{t:21,l:0,w:14,h:21,m:"b01f807f807f80f000e000e000e001e00fc00f800f800fc001e000e000e000e000e000f0007fc07fc01fc"},"}":{t:21,l:1,w:13,h:21,m:"bfc00ff00ff00078003800380038003c001f800f800f801f803c003800380038003800780ff00ff00fc00"},"[":{t:21,l:2,w:11,h:21,m:"y2b2b2b071e07071e07071e07071e07071e07071e07071e07071e07"},"]":{t:21,l:2,w:11,h:21,m:"y071e07071e07071e07071e07071e07071e07071e07071e072b2b2b"},"<":{t:21,l:0,w:14,h:20,m:"b0004001c003c00fc01f007e00f803f007c00f800f8007c003f000f8007e001f000fc003c001c0004"},">":{t:21,l:0,w:14,h:20,m:"b8000e000f000fc003e001f8007c003f000f8007c007c00f803f007c01f803e00fc00f000e0008000"},"|":{t:21,l:6,w:3,h:26,m:"y353535"},":":{t:15,l:4,w:6,h:15,m:"x0d0d0d0d0d0c0c0c0c0c0d0d0d0d0d"},";":{t:15,l:2,w:11,h:21,m:"y28032407200b1c0d02180f040b0a11060b0a0f080b0a0d0a0b0a0b0c0b0a090e0b0a0710"},".":{t:5,l:4,w:6,h:5,m:"x0d0d0d0d0d"},",":{t:6,l:2,w:11,h:11,m:"b07e007e00fe00fc01f801f003e003c0078007000e000"},"\\":{t:21,l:2,w:10,h:21,m:"y09220d1e13180611140a130e10110a1413041a111e0d2407"},"?":{t:21,l:0,w:14,h:21,m:"b0fc03ff07ff8f87cf03cf03ce03c003c007800f801f003e003c003c000000000000007c007c007c007c0"},"/":{t:21,l:2,w:10,h:21,m:"y24071e0d1a1114130410110a0a130e06111413180d1e0922"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["10-04"]={h:28,w:20,g:{0:{t:28,l:0,w:20,h:28,m:"y0e1d0e082908043104023502020f180f020b240b0928090928090928090928090928090928090928090928090b240902020f1a0d02023502043104082908101b0e"},1:{t:28,l:4,w:12,h:28,m:"y0e0b200c0b220a0b24080b26060b28040b2a020b2c0b2e39393939"},2:{t:28,l:1,w:18,h:28,m:"x08130a021d06021f0423020d0c0b0207140b1c091c091c091a0b180b02160d02140d04120d060e0f080a0f0c080f0e060d12040d14040b16020b1802091a0b1a0b1a25252525"},3:{t:28,l:0,w:19,h:28,m:"x2502250225022502180b04160b06140b08120b0a100b0c0e0b0e0c0b100a110c0a17060a1904160f021a0b021c0b1e091e091e091e091c0b1a0b0207100f02230421061d0a06130e"},4:{t:28,l:0,w:20,h:28,m:"y220b0c1e0f0c1a130c16170c121b0c0e1304090c0a1308090c06130c090c021310090c1114090c0d18090c091c090c05161f1a1f1a1f1a1f24090c24090c24090c24090c"},5:{t:28,l:1,w:17,h:28,m:"x021f02021f02021f02021f020209180209180b18091a091a150e1b081d061f04120f02160b02180b1a091a091a091a091a09180902160b02140b040e0f061b08170c1112"},6:{t:28,l:0,w:20,h:28,m:"b001f00003e00007c0000f80001f00003e00007c0000f80000f00001f00001ffc003fff003fff807fffc07e07e0fc03e0f801f0f000f0f000f0f000f0f000f0f801f07c03e07e07e03fffc01fff800fff0003fc00"},7:{t:28,l:0,w:20,h:28,m:"y09300930093009300930091e1309181909141d091021090e1112090c0f16090a0d1a09080b1e09060b2009040b221524132611280f2a0b2e"},8:{t:28,l:0,w:20,h:28,m:"b03fc000fff003fffc03fffc07e07e07801e07801e07801e03c03c03f0fc01fff8007fe0003fc000fff001fff803f0fc07c03e07801e0f000f0f000f0f000f0f000f0f801f07e07e07fffe03fffc01fff8003fc00"},9:{t:28,l:0,w:20,h:28,m:"b03fc000fff001fff803fffc07e07e07c03e0f801f0f000f0f000f0f000f0f000f0f801f07c03f07e07e03fffe01fffc00fffc003ff80000f80000f00001f00003e00007c0000f80001f00003e00007c0000f8000"},A:{t:28,l:0,w:20,h:28,m:"y32072a0f24151c1d1421040e210a0623101d040910150c09100b1609100b160910150c09101d0409100623100e210a1421041c1d24152a0f3207"},B:{t:28,l:0,w:20,h:28,m:"y393939390910091009091009100909100910090910091009091009100909100910090910091009091009100909100910090b0c0d0c0b020b080f0c0b0223080b0204330206150417040a0d0a1306240b0a"},C:{t:28,l:1,w:17,h:28,m:"y1019100a250a062d060431040211141102020b200b020b240b0928090928090928090928090b240b020b200b02020b200b02040920090406072007060a0320030a"},D:{t:28,l:1,w:17,h:28,m:"y393939390928090928090928090209240b02092409020409200b02040b1c0b04060d140f04080f0c11060a27080c230a101b0e160f14"},E:{t:28,l:1,w:17,h:28,m:"x23232323091a091a091a091a091a091a091a091a1f041f041f041f04091a091a091a091a091a091a091a091a23232323"},F:{t:28,l:2,w:15,h:28,m:"y3939393909100918091009180910091809100918091009180910091809100918091009180910091809300930"},G:{t:28,l:0,w:19,h:28,m:"y1017120c210c082908062d06040f121104020d1c0d02020b200b020b240b0928090912090e090912090e090912090e090912090e090912090e09020910090e09020b0e1f04090e1f06070e1d0208050e1d02"},H:{t:28,l:1,w:18,h:28,m:"y3939393918091818091818091818091818091818091818091818091818091818091839393939"},I:{t:28,l:3,w:14,h:28,m:"y3009092809092809092809092809393939390928090928090928090928093009"},J:{t:28,l:3,w:14,h:28,m:"y260b08260f042611022611022e0b30093009300930092e0b3702370235043108"},K:{t:28,l:0,w:21,h:28,m:"y39393939160b18140f16121314100b020b120e0b060b100c0b0a0b0e0a0b0e0b0c080b120b0a060b160b08040b1a0b06020b1e0b040b220b0209260b072a09052e070332053603"},L:{t:28,l:1,w:18,h:28,m:"y3939393930093009300930093009300930093009300930093009300930093009"},M:{t:28,l:0,w:20,h:28,m:"y393939390f2a15241b1e061b180c1b121215121215120c1b12061b181b1e15240f2a39393939"},N:{t:28,l:1,w:18,h:28,m:"y39393939112804132208131e0c15181015141415101a130c1e1308221304261339393939"},O:{t:28,l:0,w:20,h:28,m:"y1413120c210c082908062d060411101104020d1c0d0202092409020b240b0928090928090928090928090b240b0209240902020d1c0d020411101104062d060829080c210c121512"},P:{t:28,l:0,w:19,h:28,m:"y393939390912091609120916091209160912091609120916091209160912091609120916091209160b0e0b16020b0a0b18021f18041b1a06171c0a0f20"},Q:{t:28,l:0,w:21,h:28,m:"b03f0000ffc001ffe003fff003e1f007c0f80780780780780f807c0f003c0f003c0f003c0f003c0f003c0f3c3c0f3e3c0f3f3c0f9ffc078ff80787f807c3f803e1f003fff801fffc00fffe003f3f00001f80000f8"},R:{t:28,l:1,w:17,h:28,m:"y393939390912091609120916091209160912091609120b1409120f100912130c0b0e1908020b0a0b021304021f0613041b0c0f0617120b0a0f1a07"},S:{t:28,l:1,w:18,h:28,m:"b03f0000ffc001ffe003fff003e1f807c07807807807800007800007c00003e00001f80000fe00007f80001fe00003f00000f800007800003c00003c0f003c0f803c0f807c07e0f807fff803fff001ffe0003f000"},T:{t:28,l:0,w:20,h:28,m:"y093009300930093009300930093009303939393909300930093009300930093009300930"},U:{t:28,l:1,w:18,h:28,m:"y2f0a3306350437022c0b022e0b3009300930093009300930092e0b2c0b023702350433062f0a"},V:{t:28,l:0,w:20,h:28,m:"y09300f2a17221f1a0621120e1f0c161f041e1b24152c0d2c0d24151c1d161d060e1f0c061f141d1c17220f2a0732"},W:{t:28,l:0,w:20,h:28,m:"y1b1e2b0e3504391a1f2a0f24151c1d161b08161310161310161b081c1d24152a0f1a1f3935042b0e1b1e"},X:{t:28,l:0,w:20,h:28,m:"y033403072c070b240b0f1c0f13141304130c130408130413080c210c1019101411141411141019100c210c081304130804130c13041314130f1c0f0b240b072c07033403"},Y:{t:28,l:0,w:20,h:28,m:"y033607320b2e0f2a13260413220811200c111c10291425142510290c111c08112004132213260f2a0b2e07320336"},Z:{t:28,l:2,w:16,h:28,m:"bfffefffefffefffe003c003c0078007800f000f001e001e003c003c0078007800f000f001e001e003c003c0078007800ffffffffffffffff"},a:{t:20,l:1,w:17,h:20,m:"x0a1108041b04021f02020b0c0b020910091a091a090a19061d041f02210d0e090b100909120909100b090e0d02090811022104150209080d0609"},b:{t:30,l:0,w:19,h:30,m:"y3d3d3d3d180b0c0b04160b100b0216091409021409180914091809140918091409180914091809140b140b160b100b02160d0c0d021821041a1d061c190820110c"},c:{t:20,l:1,w:17,h:20,m:"x0c0d0a081506061904041d02020d080b0202090e0b0b18091a091a091a091a091a091a0b1802090e0b020d080b02041d020619040815060c0d0a"},d:{t:30,l:0,w:19,h:30,m:"y20110c1c19081a1d06182104160d0c0d021609120b02140b140b14091809140918091409180914091809140918091609140902160b100b02180b0c0b043d3d3d3d"},e:{t:20,l:1,w:18,h:20,m:"x0c0f0a081706061b04041d04020b0c0b0202091009020207140925252525091c091c0b1a02091a020d16041f02061d020819040c1108"},f:{t:30,l:2,w:16,h:30,m:"y1409201409201409201409201409201409200a3306370439023b0d0809200b0a0920090c0920090c0920090c0920090c0920"},g:{t:20,l:1,w:18,h:27,m:"y0c0f1c06190e0506041f0a09020223080902020d0c0b080b0b140908090b14090a070918070a070918070a070918070a070918070a070b14070c07020914070a09040b0c090a09023502330431062f08"},h:{t:30,l:2,w:16,h:30,m:"y3d3d3d3d18091c16091e140920140920140920140920140920140b1e1627162718251c21"},i:{t:30,l:4,w:11,h:30,m:"y1409201409201409201409201409200b0a09200b0a09200b0a290b0a290b0a290b0a29"},j:{t:30,l:4,w:12,h:37,m:"y4209420942091409260914092609140926091409240b0b0a09220b020b0a35020b0a35020b0a33040b0a2f08"},k:{t:30,l:1,w:18,h:30,m:"y3d3d3d3d220912200d101e110e1c150c1a0b040b0a180b080b08160b0c0b06140b100b04120b140b021209180b12071c0912052007120324053a03"},l:{t:30,l:4,w:12,h:30,m:"y350839043b023b02300d320b340934093409340934093409"},m:{t:20,l:0,w:20,h:20,m:"y29292929020720020522072207222929290227020720072207220722292902270425"},n:{t:20,l:1,w:18,h:20,m:"y29292929040b1a020b1c0b1e0920092009200920092009200b1e0227042506230821"},o:{t:20,l:0,w:20,h:20,m:"b03fc000fff001fff803f0fc07c03e07801e0f801f0f000f0f000f0f000f0f000f0f000f0f000f0f801e07801e07c03c03f0fc01fff800fff0003fc00"},p:{t:20,l:0,w:19,h:27,m:"y37373737040b0c0b12020b100b1002091409100918090e0918090e0918090e0918090e0918090e0b140b0e0209140910020d0c0d10042112061d140819160e0d1c"},q:{t:20,l:0,w:19,h:27,m:"y0e0f1a081916061d14042112020d0c0d1002091409100b140b0e0918090e0918090e0918090e0918090e0918090e0209140910020b100b10040b0c0b1237373737"},r:{t:20,l:2,w:16,h:20,m:"y2929292904091c02091e0920072207220722072209200d1c020b1c04091c06071c"},s:{t:20,l:1,w:17,h:20,m:"x08110a041906021d040d0a0b0209100902091a091a0b1802111002170a0619040e1302160d1a091a090912090b0c0d2102021d04061508"},t:{t:26,l:2,w:16,h:26,m:"b0f000f000f000f000f00ffffffffffffffff0f000f000f000f000f000f000f000f000f000f000f000f000f8007ff07ff03ff00fe"},u:{t:20,l:1,w:18,h:20,m:"y21082504270227021e0b2009200920092009200920091e09021c0b021a0b0429292929"},v:{t:20,l:0,w:20,h:20,m:"y07220b1e1118171204170e0819080e190214151a0f200920091a0f14150e190208190804170e151411180b1e0722"},w:{t:20,l:0,w:20,h:20,m:"y092019102702290a1f1e0b18111415101306100b0e100b0e101306141518111e0b0a1f29270219100920"},x:{t:20,l:0,w:19,h:20,m:"bf803e07c07c03c07801e0f001f1f000f1e0007bc0003f80003f80001f00001f00003f80003f80007bc000f1e001f1f001e0f003c07807c07c0f803e0"},y:{t:20,l:0,w:21,h:27,m:"y03340728090b24090f2009111c0b0411140d0208110e0d040c11060f06101d0a14170c16130e1411121011160c111a08111e04112211260d2a0b2c07300334"},z:{t:20,l:2,w:16,h:20,m:"bffffffffffffffff001f003e007c00f801f003e007c00f801f003e007c00f800ffffffffffffffff"},"~":{t:30,l:0,w:20,h:7,m:"b0f00403fc0e07ff1f0fffff0f8ffe0703fc0200f00"},"!":{t:30,l:7,w:6,h:30,m:"y191a0b270c0b270c0b270c0b270c0b191a0b"},"@":{t:30,l:0,w:20,h:30,m:"y0a07121308060b0e1b04040d0c1f02020d0c2102020910090e0d0912071409091207140907140714090716090e0b0714210207141f040912210209122302092c07020b2a07040f220906370833020c2d04122308"},"#":{t:30,l:1,w:18,h:30,m:"y2607080912070e171207081d1229020c250c2d101f080710190e07100b08070e071012070e07080912070e171207081d1229020c250c2d101f080710190e07100b080724"},$:{t:30,l:0,w:20,h:30,m:"b00f00000f00007fc001fff803fffc07fffe0f8f3f0f0f1f0f0f1f0f0f000f0f0007cf0007ff0001ff8000ffe0001ff8000ffc000f7e000f1f000f0f000f0f0f0f0f0f0f1f0f8f3e07fffe03fffc01fff0007fc0000f00000f000"},"%":{t:29,l:0,w:19,h:29,m:"y06092c02112009151c0b070807180f070807141102070807120f06150e0f0a02110c0f0e06090c1110180f14140f0a090610110811020e0f0a150a0f0e070807060f120708070211140708070f18150b1e110207260906"},"^":{t:30,l:0,w:19,h:15,m:"b00400000e00001f00001f00003f80007fc0007fc000ffe001fbf001f1f003e0f807c07c07803c0f001e07001c0"},"&":{t:30,l:0,w:20,h:30,m:"b03f0000ffc001fff003fff007e1f807c0780780780780780780780780f003c1e003c7c001ef8001ff0000fe0000f80003fc0003fe0f07df0f078f0f0f0f8f0f07ce0f03fe0f01fe0f81fc07e0fc07fffc03fffc01fffe007f9f0"},"*":{t:29,l:0,w:20,h:19,m:"b00f00000f00000f00000f00000f00070f0e07cf3e0fffff0fffff01fff8001f80001f80003fc00079e000f9f001f0f803e07c00e0700040200"},_:{t:-3,l:-1,w:22,h:4,m:"x2d2d2d2d"},"+":{t:26,l:1,w:18,h:22,m:"y1209121209121209121209121209121209121209122d2d2d2d120912120912120912120912120912120912120912"},"`":{t:28,l:4,w:12,h:10,m:"bff00ff007f803f801fc00fc007e003e001f000f0"},"-":{t:17,l:1,w:18,h:5,m:"x2525252525"},"=":{t:21,l:1,w:18,h:12,m:"x252525252424242425252525"},'"':{t:28,l:3,w:14,h:9,m:"y1313131313121212121313131313"},"'":{t:28,l:7,w:5,h:12,m:"y1919191919"},"(":{t:30,l:4,w:12,h:30,m:"y161116101d100e230c0a290a080f100f08060d180d06040b200b04020b240b020b280b092c09092c09073007"},")":{t:30,l:4,w:12,h:30,m:"y073007092c09092c090b280b020b240b02040b200b04060d180d06080f100f080a290a0e230c101d10161116"},"{":{t:30,l:1,w:18,h:30,m:"y1a091a1a091a1a091a1a091a1a091a180d18082b0a043306021b04190402190819020d240b020b280b092c09092c09092c09092c09092c09092c09"},"}":{t:30,l:1,w:18,h:30,m:"y092e07092e07092e07092e07092e07092e070b2a090d2609020219081902021b041904043306082b0a180d181a091a1a091a1a091a1a091a1a091a"},"[":{t:30,l:3,w:14,h:30,m:"y3d3d3d3d092c09092c09092c09092c09092c09092c09092c09092c09092c09092c09"},"]":{t:30,l:2,w:15,h:30,m:"y092c09092c09092c09092c09092c09092c09092c09092c09092c09092c09092c093d3d3d3d"},"<":{t:28,l:0,w:20,h:27,m:"x2603240520091c0d1a0f161102140f06100f0a0e0f0c0a0f10080f12040f16020f180d1c020f18040f16080f120a0f100e0f0c100f0a140d08160f041a0d021c0b021e0902220502240302"},">":{t:28,l:0,w:20,h:27,m:"x0326052409200d1c0f1a021116060f140a0f100c0f0e100f0a120f08160f04180f021c0d180f02160f04120f08100f0a0c0f0e0a0f10080d14040f16020d1a020b1c02091e020522020324"},"|":{t:30,l:8,w:4,h:37,m:"y4b4b4b4b"},":":{t:21,l:6,w:8,h:21,m:"x111111111111101010101010101010111111111111"},";":{t:21,l:3,w:14,h:28,m:"y360332072e0b2a0f26132215021e17040d1215060d1213080d12110a0d120f0c0d120d0e0d120b100d120912"},".":{t:6,l:6,w:8,h:6,m:"x111111111111"},",":{t:6,l:3,w:14,h:13,m:"b03fc03fc07fc07fc0ff80ff01fe01fc03f803f007e007c00f800"},"\\":{t:30,l:2,w:16,h:30,m:"y033a09340d30132a0215260617200c151c1017161615121a150e2015082415042a132e0f34093805"},"?":{t:30,l:0,w:19,h:30,m:"y080b2a060d2a040f2a02112a020d2e0209320b3209280d0916090a0d09140b0a0d09120d0a0d09100f0a0d0b0c110a0d020b080d100d021d1e021b200417220613240a0b28"},"/":{t:30,l:2,w:16,h:30,m:"y3a033409300d2a132615022015081c150c1815101215160e151a081520041524132a0f2e0b320538"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["10-05"]={h:35,w:25,g:{0:{t:35,l:0,w:25,h:35,m:"y141f140c2f0c063908043f0402430202151a1502020d2a0d020d2e0d0b320b0b320b0b320b0b320b0b320b0b320b0b320b0b320b0b320b0d2e0d020d2a0d0202151a1502024302043f040837080c2f0c141f14"},1:{t:35,l:5,w:15,h:35,m:"y100f280e0f2a0c0f2c0a0f2e080f30060f32040f34020f360f380d3a4747474747"},2:{t:35,l:0,w:24,h:35,m:"x0c170e06210a0229062d042f0211100f02091a0f03220d260b260b260b260b240b02220d02200d041e0d061a0f0816110a12130c0e13100c11140a0f18080d1c060d1e040d20020d22020d22020b240d240d242f022f022f022f022f02"},3:{t:35,l:0,w:25,h:35,m:"x2f042f042f042f042f04200f041e0f061c0f081a0f0a180f0c160f0e140f10120f12100f140e15100e1b0a0e1d080e1f061e1104220f02260b02260d280b280b280b280b260d240d02220f02091413042f042d06290a250e0a1514"},4:{t:35,l:0,w:24,h:35,m:"y2a0d102611102215101e19101a1d101621101217040b100e17080b100a170c0b100617100b100217140b1015180b10111c0b100d200b1009240b10051a291e291e291e291e292c0b102c0b102c0b102c0b10"},5:{t:35,l:2,w:21,h:35,m:"x022702022702022702022702022702020b1e0d1e0b200b200b200b2019121f0c230825062704031411041a0f021e0b021e0d200b200b200b200b200b1e0d1e0b021c0d021a0d0416110410150623081f0c1b101516"},6:{t:35,l:0,w:25,h:35,m:"y261110201d0a1c2308182906142f0412190a0f041017120d020e17160b020c19160d0a191a0b080f020b1a0b060f040b1a0b040f060b1a0b020f080b1a0b0f0a0b1a0b0d0c0b1a0b0b0e0d160d09120b160b0207140d120d0205180f0a0f04031a27041e2306201f0824170c280f10"},7:{t:35,l:0,w:25,h:35,m:"y0b3c0b3c0b3c0b3c0b3c0b3c0b28150b201d0b1c210b1a230b16270b1415140b10131a0b0e111e0b0c0f220b0a0f240b080d280b060d2a0b020f2c192e1730153213340f380b3c"},8:{t:35,l:0,w:25,h:35,m:"x1011120a1d0c06250804290604290602110e0f04020d140d04020b180b04020b180b04020b180b04040b140b06040f0c0f0606110411080a1f0a0c1b0c0e170e0c1b0c0823080611061106040f0e0f04020f120f02020d160d020d1a0d0b1e0b0b1e0b0b1e0b0b1e0b0d1a0d0f160f02110e1102022f02042b040627060a1f0a101310"},9:{t:35,l:0,w:25,h:35,m:"y100f280c1724081f2006231e04271a03040f0a0f1805020d120d1407020b160b12090d160d0e0b0b1a0b0c0d0b1a0b0a0f0b1a0b080f020b1a0b060f040b1a0b040f060b1a0b020f080b1a190a0d16190c020b16170e020d121710040f0a1912042d1606271a08211e0c1922101126"},A:{t:35,l:0,w:25,h:35,m:"y42053a0d32152a1d22251a2b02122b0a0a2b1202311423060b141b0e0b1413160b140d1c0b1413160b141b0e0b1423060b140231140a2b12122b0a1a2b0222252a1d32153a0d4205"},B:{t:35,l:0,w:25,h:35,m:"x2310270c2b082d062f040b160f040b1a0d020b1c0b020b1c0b020b1c0b020b1c0b020b1c0b020b1a0b040b160f042d062b08290a2b082d060b160f040b1a0d020b1c0b020b1c0d0b1e0b0b1e0b0b1e0b0b1c0d0b1c0d0b1a0d020b1611022f042d062b08290a250e"},C:{t:35,l:2,w:21,h:35,m:"y1817181027100c2f0c083708063b0604151615040211221102020d2a0d02020b2e0b020b320b0b320b0b320b0b320b0b320b0b320b020b2e0b02020f260f02040d260d04040d260d04060b260b060a0726070a"},D:{t:35,l:2,w:21,h:35,m:"y47474747470b320b0b320b0b320b020b300b020b2e0b02020d2c0b02040d280d02040f240d04060f200f0408111811060a131013080c310a0e2d0c122510161d141a1518"},E:{t:35,l:1,w:22,h:35,m:"x2b022b022b022b022b020b220b220b220b220b220b220b220b220b22270627062706270627060b220b220b220b220b220b220b220b220b220b220b222d2d2d2d2d"},F:{t:35,l:3,w:18,h:35,m:"y47474747470b120b200b120b200b120b200b120b200b120b200b120b200b120b200b120b200b120b200b120b200b120b200b3c0b3c"},G:{t:35,l:0,w:24,h:35,m:"x14110c1019080c21040a250208270206110e0d040f140b040d20020d22020d22020b240d240b260b260b260b260b0c1b0b0c1b0b0c1b0b0c1b0b0c1b0b1c0b0d1a0b020b1a0b020b1a0b020d180b020d180b040d160b040f140b0611100b082908290c250e2314130a"},H:{t:35,l:1,w:22,h:35,m:"y47474747471c0b201c0b201c0b201c0b201c0b201c0b201c0b201c0b201c0b201c0b201c0b201c0b204747474747"},I:{t:35,l:3,w:19,h:35,m:"y0b320b0b320b0b320b0b320b0b320b0b320b0b320b47474747470b320b0b320b0b320b0b320b0b320b0b320b0b320b"},J:{t:35,l:3,w:18,h:35,m:"y300d0a3011063013043015023015023a0d3c0b3c0b3c0b3c0b3c0b3a0d3a0d45024502430441063d0a"},K:{t:35,l:-1,w:27,h:35,m:"y47474747471c0d1e1a111c18151a161918140d020f16120d060f14100d0a0f120e0d0e0f100c0d120f0e0a0d160f0c080d1a0f0a060d1e0f08040d220f06020d260f040d2a0f020b2e0f09320d07360b053a09033e0742054403"},L:{t:35,l:1,w:23,h:35,m:"y47474747473c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b"},M:{t:35,l:0,w:24,h:35,m:"y47474747470f3817301d2a0421220a211c101f18181718181718101f180a211c0421221d2a17300f384747474747"},N:{t:35,l:1,w:23,h:35,m:"y47474747471532192e04192a0a17260e172212171e1619181c171420171024170c2817082c170430174747474747"},O:{t:35,l:0,w:25,h:35,m:"y1817181223120e2b0e0a330a0837080613161306040f220f04020d2a0d02020b2e0b020d2e0d0b320b0b320b0b320b0b320b0b320b0d2e0d020b2e0b02020d2a0d02040f220f0406151413060837080a330a0e2b0e122312181718"},P:{t:35,l:1,w:23,h:35,m:"y47474747470b160b1c0b160b1c0b160b1c0b160b1c0b160b1c0b160b1c0b160b1c0b160b1c0b160b1c0b160b1c0d120d1c020d0e0d1e020f0a0f1e042320042320061f220a17260e0f2a"},Q:{t:35,l:-1,w:27,h:35,m:"y16171a0e27120a2d1008330c06370a041314150802111e0f08020d260d06020b18050e0b060b1a070c0d040b1a090c0b040b1a0b0a0b040b1a0d080b040b1c0d060b040b1e0d040b04020b1e1904020d1e150602111c13060415121508063b06083b040c39021025060d1617100b3e0940074205"},R:{t:35,l:1,w:22,h:35,m:"y47474747470b140b1e0b140b1e0b140b1e0b140b1e0b140b1e0b140f1a0b1413160b1417120d101d0e0d10210a020f080d06170602230a1702041f1015061b161108171c0d0e0d24094205"},S:{t:35,l:1,w:22,h:35,m:"b00ff0003ffc00fffe01ffff03ffff83f81fc7e00fc7c007c7c00007c00007c00007e00003f00003fc0001ff0000ffc0003ff0000ffc0003fe0000ff00003f80001f80000fc00007c00007c00007cf8007cfc00fcfe01fc7f03f87ffff83ffff01fffe007ff8001fe00"},T:{t:35,l:0,w:24,h:35,m:"y0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c47474747470b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c0b3c"},U:{t:35,l:1,w:23,h:35,m:"y390e3d0a410643044304360f02380d023a0d3c0b3c0b3c0b3c0b3c0b3c0b3c0b3a0d380d02360f024304430441063d0a390e"},V:{t:35,l:0,w:26,h:35,m:"y07400f3815321d2a2324291e08291610290e182906202726212e19380f380f2e1926212027182906102b0c082b142d1a25221d2a15320f380740"},W:{t:35,l:0,w:25,h:35,m:"y1f2831163d0a47471c2b32152e19281f2221041a230a1a1b121a15181a1b121a230a202304281f2e1932151c2b47473d0a31161f28"},X:{t:35,l:0,w:25,h:35,m:"y034203073a070b320b0f2a0f132213171a17041712170408170a17080c1702170c102710141f141817181a131a181718141f141027100c1702170c08170a17080417121704171a171322130f2a0f0b320b073a07034203"},Y:{t:35,l:0,w:25,h:35,m:"y034407400b3c0f381334173004172c0817280c17241017201433182f1a2d182f14331017200c172408172804172c173013340f380b3c07400344"},Z:{t:35,l:2,w:21,h:35,m:"y0b320b0b2e0f0b2a130b26170b221b0b1e1f0b1a15040b0b1813080b0b14130c0b0b1013100b0b0c13140b0b0a13160b0b06131a0b0b02131e0b1b220b19240b15280b112c0b0d300b0b320b3c0b"},a:{t:26,l:1,w:22,h:26,m:"x0e130c081f06062304042702040d0e0d02020d120d220b220b220b220b0e1f082506270429020f120b020b160b0b180b0b180b0b160d0b160d0d1011020d0a15022b04290619040b0c0f080b"},b:{t:38,l:0,w:24,h:38,m:"y4d4d4d4d4d1c110c11041c0d140d041a0d180d021a0b1c0b02180b200b180b200b180b200b180b200b180b200b180b200b180d1c0d180d1a0d021a0f140f021a130c11041c2d041e2906202508241d0c2a1112"},c:{t:26,l:2,w:21,h:26,m:"x100f0c0c1906081f04062302042502040f0a0f020d120b020b1e020b1e0b200b200b200b200b200b200b200b20020b1e020b140b020d100d040f0a0f042502062104081f040a19080e110c"},d:{t:38,l:0,w:24,h:38,m:"y2a1310241d0c2025081e29061c2d041a130c11041a0f140f021a0b1a0d02180d1c0d180b200b180b200b180b200b180b200b180b200b180b200b1a0b1c0b021a0d180d021c0d140d041c0f0e11044d4d4d4d4d"},e:{t:26,l:1,w:23,h:26,m:"x10110e0c190a081f08062306042704040d0e0d04020d120d02020b160b0202091a09020b1a0b2f2f2f2f2f0b240b24020b22020b22020d20040f0e0d020427040625040821060c1b0810130c"},f:{t:38,l:2,w:20,h:38,m:"y180b2a180b2a180b2a180b2a180b2a180b2a180b2a0c41084506470449024b020d0a0b2a0d0c0b2a0b0e0b2a0b0e0b2a0b0e0b2a0b0e0b2a0b0e0b2a0b0e0b2a"},g:{t:26,l:1,w:23,h:35,m:"b01fc3e07ffbe1ffffe1ffffe3f83fe7e00fe7c007e7c007ef8003ef8003ef8003ef8003ef8003ef8003ef8003ef8003e7c007e7c007e7e00fe3f83fe1ffffe0ffffe07ffbe01fc3e00003e00003e00003e00003e7c003e7e007c7f01fc3ffff83ffff00fffe003ff00"},h:{t:38,l:2,w:21,h:38,m:"y4d4d4d4d4d1c0d241a0d261a0b28180b2a180b2a180b2a180b2a180b2a180b2a180d28180f261a331a331c311e2f222b"},i:{t:38,l:5,w:14,h:38,m:"y180b2a180b2a180b2a180b2a180b2a180b2a180b2a0f0a0b2a0f0a0b2a0f0a350f0a350f0a350f0a350f0a35"},j:{t:38,l:5,w:14,h:47,m:"y540b540b540b180b320b180b320b180b320b180b320b0f0a0b300d0f0a0b2e0d020f0a45020f0a43040f0a43040f0a41060f0a3d0a"},k:{t:38,l:1,w:23,h:38,m:"y4d4d4d4d4d2a0d16281114261512241910221d0e200f040f0c1e0f080f0a1c0f0c0f081a0f100f06180f140f04180d180f02180b1c0f1809200d1807240b1805280918032c0748054a03"},l:{t:38,l:5,w:15,h:38,m:"y410c470649044b024b023c11400d400d420b420b420b420b420b420b420b"},m:{t:26,l:0,w:25,h:26,m:"y353535353504072a02072c092c092c0b2a35353502330233020b28092c092c092c0b2a353502330431062f"},n:{t:26,l:1,w:23,h:26,m:"y3535353535060d22040d24020d26020b28020b280b2a0b2a0b2a0b2a0b2a0b2a0d28020d2602330431062f082d0c29"},o:{t:26,l:0,w:25,h:26,m:"y1211120c1d0c0a210a062708062906040f100f04020d180d02020b1c0b0202092009020b200b09240909240909240909240909240909220b0b200902020b1c0b02020d180d02040f100f04042b060627080a210a0c1b0e121112"},p:{t:26,l:0,w:24,h:35,m:"y474747474704110c1116040d140f14020b1c0b14020b1c0b140b200b120b200b120b200b120b200b120b200b120b200b120d1c0d12020b1c0b14020d180d14040f100f16042d160629180a231a0c1d1e121124"},q:{t:26,l:0,w:24,h:35,m:"y1211240c1d1e0a231a062918042d1604110e0f16020f160d14020b1c0b140d1c0d120b200b120b200b120b200b120b200b120b200b120b200b12020b1c0b14020b1c0b14040d160b16040f100f164747474747"},r:{t:26,l:2,w:20,h:26,m:"y3535353535040d2404092802092a02092a092c092c092c092c0b2a0d28020f24020f24040d24060b24080924"},s:{t:26,l:1,w:22,h:26,m:"b01ff800fffe01ffff03ffff87f01f87e00f87c00007c00007c00007e00003fc0001ffe000fffc003fff0003ff80001f80000fc00007c00007cf8007c7c00fc7e03f87ffff83ffff00fffc003fe00"},t:{t:33,l:2,w:20,h:33,m:"y0e0b2a0e0b2a0e0b2a0e0b2a0e0b2a02370a3d063f04410241020e0b1e0d0e0b1e0d0e0b200b0e0b200b0e0b200b0e0b200b0e0b200b0e0b200b0e0b2009020e0b200902"},u:{t:26,l:1,w:23,h:26,m:"y2b0a2f06310433023302260f280d2a0b2a0b2a0b2a0b2a0b2a0b280b02280b02260d02240d04220d063535353535"},v:{t:26,l:0,w:26,h:26,m:"y0530092c0d281322191c041b16081d100e1b0c141b06181d1e172411280d280d24111e17181d141b060e1b0c081d10041d141b1a152011240b2a0530"},w:{t:26,l:0,w:25,h:26,m:"y0d281d182d0835350c291a1b260f20151a1b141b0614150c14111014150c141b061a1b2015260f1a1b0c2935352d081d180d28"},x:{t:26,l:0,w:24,h:26,m:"bfc003f7c003e3e007c1f00f81f00f80f81f007c3e007c3e003e7c001ff8001ff8000ff00007e00007e0000ff0001ff8001ff8003e7c007c3e007c3e00f81f01f00f81f00f83e007c7c003efc003f"},y:{t:26,l:0,w:26,h:35,m:"y0344054207360b0b320b0d300b112a0d0213240f06131c11020a131611040c150e1306101506150814270c181f101c17141c131818151a14151e1015220c152608152a04152e153211360d3a093e0542"},z:{t:26,l:2,w:21,h:26,m:"x022902290229022902291c0f1a0f02180f04160f06140f08120f0a100f0c0e0f0e0c0f100a0f12080f14060f16040f18020f1a0f1c0d1e2b2b2b2b2b"},"~":{t:38,l:0,w:25,h:8,m:"x080d160504061312070204190c0b023131020b0a1b0402071015060405140f08"},"!":{t:38,l:9,w:7,h:38,m:"y1b260d31100d31100d31100d31100d31100d1b260d"},"@":{t:39,l:0,w:25,h:39,m:"y0e0918150c0a0d122106061110250404130e290204110e2b02020d140d140d020b16091a0b0b18091c09091a091c09091c091a09091c0d120b02091a2b02091a2904091a29040b182b020b182d020b380b020d3809040d36090417280d0647020845020c3f041039061a290c"},"#":{t:38,l:1,w:23,h:38,m:"y30090a0b1609120902131609121d16090827163304122d0e0831142d040914230e09141f1209140f080912091407100912090a0b1609120902131609121d16090827163304122d0e0831142d040914230e09141f1209141106091209140710092e"},$:{t:38,l:0,w:26,h:38,m:"y100d1a07100e1118090e0c15160b0c0a19140d0a081d120f08080d060b120f08060d0a0b140d06060b0c0b160b06060b0e0b140b06060b0e0b140b060609100b140b064d4d4d4d4d0609140b120906060b120b100b06060b140b0e0b06060d120b0c0d06080f100d060d08080f101f080a0d121b0a0c0b12190c100714150e2e0d12"},"%":{t:37,l:1,w:23,h:37,m:"y060d30090215280d1922110b040b1e15070c071c1304070c071813080b040b14150a1910150e0215101312060d1013161e15181c131c18130e0d0614130e150210150e190e13120b040b0a1316070c0706131a070c0702151c0b040b1320190f2615020b2e0d060744"},"^":{t:39,l:0,w:25,h:21,m:"y2205042009021e0d1a0f02180f041411061211080e130a0a150c08150e041710021712171402171204171008150e0a150c0e130a121108141106180f041a0f021e0d200902220504"},"&":{t:38,l:0,w:25,h:38,m:"y320d0e0c0b16170a08150e1d06061b082104041f04230402310a0f02020f08190e0d02020b1013120d0d1211120d0b1413120b0b12190e0b0b121b0c0b0b100b0413080b0b0e0d0811060b0d0a0d0c13020b020d060d121902021d16170204191a1502041720110206131c190a0d14232a232a1704092a110c072a0b1603"},"*":{t:38,l:0,w:25,h:25,m:"y16031a12071a0e0d180e0d100306100b0e0704100d0a0b02120b080d02120b0611140b021102141906290a270c250e270c290a141906140b021102120b0611120b080d02100d0a0b02100b0e07040e0d1003060e0d1812071a16031a"},_:{t:-4,l:-1,w:27,h:4,m:"x37373737"},"+":{t:33,l:1,w:23,h:27,m:"y160b16160b16160b16160b16160b16160b16160b16160b16160b163737373737160b16160b16160b16160b16160b16160b16160b16160b16160b16"},"`":{t:35,l:3,w:18,h:14,m:"y031a0518071609140b120d100f0e110c130a15081706190404170208150c11100d14091805"},"-":{t:16,l:1,w:23,h:6,m:"x2f2f2f2f2f2f"},"=":{t:27,l:1,w:23,h:16,m:"x2f2f2f2f2f2e2e2e2e2e2e2f2f2f2f2f"},'"':{t:35,l:4,w:17,h:12,m:"y1919191919191818181818191919191919"},"'":{t:35,l:9,w:7,h:16,m:"y21212121212121"},"(":{t:38,l:5,w:15,h:38,m:"y1e131c181f16122912102f0e0c350c0a1510150a08111c1108060f240f06040f280f04020f2c0f020f300f0d340d0b380b093c09093c09"},")":{t:38,l:5,w:15,h:38,m:"y093c09093c090b380b0d340d0f300f020f2c0f02040f280f04060f240f0608111c11080a1510150a0c350c102f0e122912181f161e131c"},"{":{t:39,l:1,w:23,h:39,m:"y240b20240b20240b20240b20240b20240b20220f1e1c1b180a3b0a0623021f0604250221040423061f04021b161b02020d320d02020b360b020d360d0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b"},"}":{t:39,l:1,w:23,h:39,m:"y0b3c090b3c090b3c090b3c090b3c090b3c090b3c090d380b020b380902020d340b02021b161b020423061f0404250221040623021f060a3b0a1c191a220f1e240b20240b20240b20240b20240b20240b20"},"[":{t:38,l:3,w:19,h:38,m:"y4d4d4d4d4d0b380b0b380b0b380b0b380b0b380b0b380b0b380b0b380b0b380b0b380b0b380b0b380b0b380b0b380b"},"]":{t:38,l:3,w:18,h:38,m:"y0b380b0b380b0b380b0b380b0b380b0b380b0b380b0b380b0b380b0b380b0b380b0b380b0b380b4d4d4d4d4d"},"<":{t:36,l:0,w:25,h:34,m:"x2e052c07280b260d221120131c13041a130616130a14130c1013100e13120a131608131804131c02131e1122112202131e04131c0813180a13160e131210131014130c16130a1a13061c130420132211260d280b2c072e05"},">":{t:36,l:0,w:25,h:34,m:"x052e072c0b280d261122132004131c06131a0a13160c131410131014110e16130a1a11081c1304201102221122112011021c13041a110816130a14110e1013100e11140a131608131806111c02131e020f22020d24020b2602072a02052c"},"|":{t:39,l:10,w:5,h:48,m:"y6161616161"},":":{t:26,l:7,w:10,h:26,m:"x1515151515151515141414141414141414141515151515151515"},";":{t:26,l:3,w:19,h:37,m:"y460542093e0d3a1136153217022e19042a1b06241f0811141d0a11141b0c1114190e1114171011141512111413141114111611140f1811140d1a240b1c"},".":{t:8,l:7,w:10,h:8,m:"x1515151515151515"},",":{t:10,l:3,w:19,h:19,m:"y22051e091a0d161112150e17020a1904061b061f081d0a1b0c190e17101512131411160f180d1a0b1c"},"\\":{t:38,l:3,w:19,h:38,m:"y07460b42113c15381b32041b2e0a1b280e1b24141b1e181b1a1e1b14221b10281b0a2c1b06321b38153c11420b4607"},"?":{t:39,l:0,w:25,h:39,m:"y0e0d340a1134081334061534041734041734021538020f3e0d420d340f0b360f0b1e0b0e0f0b1c0d0e0f0b1a0f0e0f0b18110e0f0b16130e0f0d12150e0f020d0e0f160f020f0a0f26022726042328061f2a061d2c0a15300e0d34"},"/":{t:38,l:2,w:21,h:38,m:"y4a034607400d3c113617321b2e1906281b0a2419101e1b141a191a141b1e1019240a1b28061b2c1b321736113c0d400746034a"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["10-06"]={h:42,w:30,g:{0:{t:42,l:0,w:29,h:42,m:"y1825181035100a410a064906044d04044d04021920190202113011020f380f0d3c0d0d3c0d0d3c0d0d3c0d0d3c0d0d3c0d0d3c0d0d3c0d0d3c0d0d3c0d0d3c0d0f380f02113011020219201902044d04044d040649060a410a103510182518"},1:{t:42,l:6,w:18,h:42,m:"y1411301211321011340e11360c11380a113a08113c06113e04114002114211440f46555555555555"},2:{t:43,l:1,w:28,h:43,m:"x1215120a230c06290a0231060233040233040213101302020d1a0f020207220f0203260f2c0d2c0d2c0d2c0d2a0f2a0d02280f02260f04240f062011081c130a18150c1613101215121013160c131a0a131c081120061122060f24040f26040d28020d2a020d2a020b2c0d2c0d2c370237023702370237023702"},3:{t:42,l:0,w:29,h:42,m:"x37043704370437043704370424110622110820110a1e110c1c110e1a111018111216111414111612111810111a101b10101f0c102308102506221504280f042a0f022c0d022c0f2e0d2e0d2e0d2e0d2e0d2c0f2a0f02281102052213020d14170435063308310a2d0e0425120c1718"},4:{t:42,l:0,w:29,h:42,m:"y3211122e15122a1912261d122221121e25121a1b020d12161b060d12121b0a0d120e1b0e0d120a1b120d12061b160d12021b1a0d12191e0d1215220d1211260d120d2a0d12091e2f05222f262f262f262f262f360d12360d12360d12360d12360d12360d12"},5:{t:42,l:2,w:25,h:42,m:"x022f02022f02022f02022f02022f02022f02020d24020d24020d24020d24020b26020b260d260d261b182310270c2b082d062d061a1504201102220f02240d02240f260d260d260d260d260d240f240d02220f022011021e11041a1306121908290a270c23101f14171c"},6:{t:42,l:0,w:30,h:42,m:"y2e1314281f0e24270a202d081c33061a3704161f0a1304141d121102121d160f02101d1a0d020e11020d1a0f0c11020d1e0d0a11040d1e0d0811060d1e0d0611080d1e0d04110a0d1e0d02110c0d1e0d110e0d1e0d0f100d1e0d0d120f1a0d020b160d1a0d0209180f160f02071a11120f04051e130a130403222b06242b0626270828210c2c1b0e320f14"},7:{t:42,l:0,w:29,h:42,m:"y0d480d480d480d480d480d480d30190d28210d24250d20290d1e2b0d1a2f0d1819180d14171e0d1215220d1013260d0e112a0d0c112c0d0a112e0d0811300d0411341f361d381b3a193c173e154011440d48"},8:{t:42,l:0,w:30,h:42,m:"x1415140e210e0a290a082d080631060631060413101304040f180f04040d1c0d04040d1c0d04040d1c0d04040d1c0d04060d180d06061110110608110c11080a290a0c250c101d10121912101d100c250c0a290a08130813080611101106040f180f04020f1c0f02020d200d020f200f0d240d0d240d0d240d0d240d0f200f0f200f02111811020215101502043504043504063106082b0a0c230e121714"},9:{t:42,l:0,w:30,h:42,m:"y140f320e1b2c0c1f2a082726062b24062d200304130a131e05021112111a07020f160f1809020d1a0d160b0f1a0f120d0d1e0d100f0d1e0d0e110d1e0d0c11020d1e0d0a11040d1e0d0811060d1e0d0611080d1e0d04110a0d1e0d02110c0f1a0d02110e020d1a1d10020f161d120211121d1404130a1d1806351a06311e082d200c25240e1f28141130"},A:{t:42,l:0,w:30,h:42,m:"y50054a0b42133a1b32232c29242f021c2f0a142f120e2f180637182b060d18230e0d181b160d18131e0d180d240d18171a0d181f120d18270a0d183d180439180c371214370a1c370224312c2934213c1944114c09"},B:{t:42,l:0,w:30,h:42,m:"x27162d10310c330a330a35080d1813060d1c0f060d1e0f040d1e0f040d200d040d200d040d200d040d200d040d1e0f040d1c0f060d1a110635083508310c310c350837060d1a13040d1e11020d200f020d220f0d240d0d240d0d240d0d240d0d240d0d220f0d200f020d1e11020d1a1304390437063508330a2f0e2b12"},C:{t:42,l:2,w:25,h:42,m:"y1e191e1629161035100c3d0c0a410a084706061918190604152415040211301102020f340f02020d380d020d3a0f0d3c0d0d3c0d0d3c0d0d3c0d0d3a0f0f380f020f340f0202112e1302040f2e1104040f2e1104060d2e0f06080b2e0b0a0c072e090c"},D:{t:42,l:2,w:25,h:42,m:"y5555555555550d3c0d0d3c0d0d3c0d020b3c0d020d3a0b02020d380d02040d360d02040f320d04060f2e0f0406112a0f0608112611060a131e13080c1712170a0e3b0c10370e143110162b141c211822151e"},E:{t:42,l:2,w:25,h:42,m:"x3102310231023102310231020d260d260d260d260d260d260d260d260d260d260d262d062d062d062d062d062d060d260d260d260d260d260d260d260d260d260d260d260d260d26333333333333"},F:{t:42,l:4,w:21,h:42,m:"y5555555555550d160d260d160d260d160d260d160d260d160d260d160d260d160d260d160d260d160d260d160d260d160d260d160d260d480d480d48"},G:{t:42,l:1,w:28,h:42,m:"y1c1b1e142d141035100c3d0c0a410a0845080619161b06061324150404112c11040211301102020f340f02020d380d020f380f0d1a0d160d0d1a0d160d0d1a0d160d0d1a0d160d0d1a0d160d0d1a0d160d0d1a0d160d0f180d160d020d180d160d020f162d02040d162d02040d162d02060b162d020809162b040c05162b04"},H:{t:42,l:2,w:26,h:42,m:"y555555555555220d26220d26220d26220d26220d26220d26220d26220d26220d26220d26220d26220d26220d26220d26555555555555"},I:{t:42,l:4,w:22,h:42,m:"y480d0d3c0d0d3c0d0d3c0d0d3c0d0d3c0d0d3c0d0d3c0d5555555555550d3c0d0d3c0d0d3c0d0d3c0d0d3c0d0d3c0d0d3c0d480d"},J:{t:42,l:4,w:21,h:42,m:"y380f0e38130a381706381904381904381b02440f02460f480d480d480d480d480d460f440f025302510451044f064b0a470e"},K:{t:42,l:0,w:31,h:42,m:"y5555555555552211222015201e191e1c1d1c1a211a1811041118161108111614110c1114121110111210111411100e1118110e0c111c110c0a1120110a0811241108061128110604112c110402113011021134110f380f0d3c0d0b400b094409074807054c05035003"},L:{t:42,l:1,w:27,h:42,m:"y555555555555480d480d480d480d480d480d480d480d480d480d480d480d480d480d480d480d480d480d480d480d480d"},M:{t:42,l:0,w:29,h:42,m:"y5555555555551144193c1f36272e0629260c292014251c1a1f1c20191c1a1f1c14251c0c2920062926272e1f36193c1144555555555555"},N:{t:42,l:1,w:27,h:42,m:"y555555555555173e1b3a041d34081d300e1b2c121b28161d221c1b1e201b1a241d142a1b102e1b0c321d06361d023c19555555555555"},O:{t:42,l:0,w:29,h:42,m:"y1e191e1629161231120e390e0c3f0a08450806191819060415241504040f2e1104020f340f02020d380d020f380f0d3c0d0d3c0d0d3c0d0d3c0d0d3c0d0f380f020d380d02020f340f0204112c1104041524150406191819060845080c3f0a0e390e1231121629161e191e"},P:{t:42,l:1,w:28,h:42,m:"y5555555555550d1a0d220d1a0d220d1a0d220d1a0d220d1a0d220d1a0d220d1a0d220d1a0d220d1a0d220d1a0d220d1a0d220d1a0d220f160f220f160d24020f120f2402130a1324042b2606272808232a0a1f2c0c1b2e120f34"},Q:{t:42,l:-1,w:32,h:42,m:"y1a1b201429180e35120c3910083f0e06430c061716190a041324130802112c1106020f300f060f1c03160d060d1e07140d040d1e09120d040d1e0d0e0d040d1e0f0c0d040d1e110a0d040d1e15040f04020d1e15020d06020f1e21060211201b0804131e1908061716190a0847060a47040c47020e330213142908111c19140d4a0b4c0950055203"},R:{t:42,l:1,w:27,h:42,m:"y5555555555550d1a0d220d1a0d220d1a0d220d1a0d220d1a0d220d1a0f200d1a111e0d1a151a0d1a19160f161f120f162110020f120f02170c02130c0f061908042b0a1904042910190625141708211a130c1b200f120f2a0b4c095005"},S:{t:42,l:2,w:26,h:42,m:"x1411100e1d0a0a2308082706062b04042f0204130c1102040f140f020f180d020d1a0d020d26020d26020d26020f24040f2204112006131c0815180a17140c191010190c14170a1815081c1306201104221102260d02260f280d280d0d1c0d0d1c0d0f180f0f180f020f140f0202130c1302042d04042d040629060a210a0c1d0c121112"},T:{t:42,l:0,w:30,h:42,m:"y0d480d480d480d480d480d480d480d480d480d480d480d485555555555550d480d480d480d480d480d480d480d480d480d480d480d48"},U:{t:42,l:1,w:28,h:42,m:"y4312490c4b0a4d084f065104401104440f02440f02460f460f480d480d480d480d480d480d460f460f440f02440f0240110451044f064d084b0a490c4312"},V:{t:42,l:0,w:31,h:42,m:"y05500b4a13421b3a2332292c042d240a2f1c122f141a2f0c222f042a2b32233a1b4213460f42133a1b32232a2b222f041a2f0c122f140a2f1c042d24292c2134193c11440b4a0550"},W:{t:42,l:0,w:30,h:42,m:"y2134352043124d0855551e3734213e17361f2e27282b0222270c202312201b1a201b1a20231222270c2829042e27361f3e1734211e3755554d08431235202134"},X:{t:42,l:0,w:30,h:42,m:"y0350030748070b400b0f380f1330131728171b201b041b181b04081b101b080c1b081b0c103510142d141825181c1d1c2015202015201c1d1c182518142d141035100c1b081b0c081b101b08041b181b041b201b1728171330130f380f0b400b074807035003"},Y:{t:42,l:0,w:30,h:42,m:"y0352074e0b4a0f461342173e1b3a041b36081b320c1b2e101b2a141b26183d1c39203520351c39183d141b26101b2a0c1b2e081b32041b361b3a173e13420f460b4a074e0352"},Z:{t:42,l:2,w:25,h:42,m:"y0d3c0d0d38110d36130d32170d2e1b0d2a1f0d26230d2219020d0d1e19060d0d1a190a0d0d16190e0d0d1219120d0d0e19160d0d0a191a0d0d06191e0d0d0219220d23260d21280d1d2c0d19300d15340d11380d0d3c0d480d480d"},a:{t:31,l:2,w:26,h:31,m:"x10170e0a2308082706062b04042f020411100f02040d160f280d280d280d280d12230c29082d062f04310211160d020f180d0f1a0d0d1c0d0d1c0d0d1a0f0d1a0f0f16110f121502110a19023304310621020d0a19060d0e110a0d"},b:{t:46,l:1,w:28,h:46,m:"y5d5d5d5d5d5d2411101306220f181104220b200f02200d220d02200b240d021e0b280d1e0b280d1e0b280d1e0b280d1e0b280d1e0b280d1e0d240f1e0d240d02200d200f0220111813022213101504223506243306262f082a270c2e1f10341514"},c:{t:31,l:2,w:25,h:31,m:"x14110e0e1d080c21060a250408290206110c0f02040f120f040d160d020d24020d24020d240d260d260d260d260d260d260d260d260d26020d24020d24020d180d040d160d040f120f06110a1102062b020827040a23060e1b0a12130e"},d:{t:46,l:1,w:28,h:46,m:"y3415142e210e2a270c262f08243306223704221310150420111a1102200d220d021e0d240d021e0d260d1e0b2a0b1e0b2a0b1e0b2a0b1e0b2a0b1e0b2a0b1e0b2a0b200b260b02200b240d02220b200d04220f1a0f0424111211065d5d5d5d5d5d"},e:{t:31,l:1,w:27,h:31,m:"x1411120e1d0c0c210a082708062b06060f0e1104040d160d04040b1a0d02020d1a0d02020b1e0b02020b1e0d3737373737370d2a0d2a0d2a020b2a020d28020d28040d26040f140f0206110e0f04062d040829060c23080e1f0a141310"},f:{t:46,l:3,w:24,h:46,m:"y1e0d321e0d321e0d321e0d321e0d321e0d321e0d321e0d321e0d32104d0a53085506570459025b02110c0d32110e0d320f100d320d120d320d120d320d120d320d120d320d120d320d120d32"},g:{t:31,l:1,w:27,h:41,m:"y14132c0e1f1807080a27140906082b120b04062f100d0204330e0d02021312130c0d02020f1a0f0e0d020d1e0d0e0d0d220d0e0b0b240d0e0b0b260b0e0b0b260b0e0b0b260b0e0b0b260b0e0b0b260b0e0b020b220b100b020b220b0e0d020d1e0d0e0b02040d1a0d100b02060f1011100d0251024f044d064d06490a450e"},h:{t:46,l:2,w:25,h:46,m:"y5d5d5d5d5d5d22112a220d2e200d30200d30200b321e0d321e0d321e0d321e0d321e0d321e0f301e0f30200f2e203d223b223b243928352c31"},i:{t:46,l:7,w:15,h:46,m:"y1e0d321e0d321e0d321e0d321e0d321e0d321e0d32110e0d32110e0d32110e0d32110e3f110e3f110e3f110e3f110e3f"},j:{t:46,l:6,w:17,h:57,m:"y660d660d660d660d1e0d3c0d1e0d3c0d1e0d3c0d1e0d3c0d1e0d3a0f110e0d380f02110e0d341302110e5302110e5104110e5104110e4f06110e4b0a110e470e"},k:{t:46,l:1,w:27,h:46,m:"y5d5d5d5d5d5d340f1a3213183017162e1b142c1f122a11021110281106110e26110a110c24110e110a221112110820111611061e111a11041e0f1e11021e0d22111e0b260f1e092a0d1e072e0b1e0532091e03360758055a03"},l:{t:46,l:6,w:17,h:46,m:"y4d10530a570659045b025b024813024c114e0f500d500d500d500d500d500d500d500d"},m:{t:31,l:0,w:31,h:31,m:"y3f3f3f3f3f3f040b30020b320209340b340b340b340d323f3f3f023d023d043b020d30020b320b340b340b340d323f3f023d023d043b0837"},n:{t:31,l:1,w:27,h:31,m:"y3f3f3f3f3f3f061128040f2c040d2e020d30020b32020b320b340b340b340b340b340b340d320f30020f2e023d043b063908370a350e31"},o:{t:31,l:0,w:30,h:31,m:"y161316101f100c270c0a2b0a082f0806330604150e1504040f1a0f04020f1e0f02020d220d02020b260b020d260d0b2a0b0b2a0b0b2a0b0b2a0b0b2a0b0b2a0b0d260d0d260b02020d220d02020f1e0f02040f1a0f040415101304063306082f080a2b0a0c250e101f10161316"},p:{t:31,l:0,w:29,h:41,m:"y535353535353061112111a040f1a0f18020d220d16020b240d16020b260b160b280d140b2a0b140b2a0b140b2a0b140b2a0b140b2a0b140b2a0b140d260d14020b240d16020d220d16040f1a0f18041312131806331a082f1c0a2b1e0c2720101f2416132a"},q:{t:31,l:0,w:29,h:41,m:"y16132a101f240c27200a2b1e082f1c06331a0413121318040f1a1116020d220d16020d240b160d260d140b2a0b140b2a0b140b2a0b140b2a0b140b2a0b140b2a0b140b280d14020b260b16020d220d16040b220d16040f1a0f18061112111a535353535353"},r:{t:31,l:3,w:23,h:31,m:"y3f3f3f3f3f3f060f2a040d2e020d30020b32020b320b340b340b340b340d320f3002132a02132a04112a04112a080d2a0c092a"},s:{t:31,l:2,w:26,h:31,m:"x12150e0c2108082706062b04042d0402130e1102020f140f02020d180d02020d26020d26020d26040d2404131e061b1408210c0c2108121d061c1504240f02260f280d280d280d0d1a0f020d161102110e1302023102042d0406290608230a0e1710"},t:{t:41,l:3,w:24,h:41,m:"y120d34120d34120d34120d34120d34120d3402430e024908024b06024d0451025102120d260f120d280d120d2a0b120d2a0b120d2a0b120d2a0b120d2a0b120d2a0b120d280d120d280d120d280b02120d260d02"},u:{t:31,l:1,w:27,h:31,m:"y310e370839063b043d023d022e0f02320d320d340b340b340b340b340b340b320b02320b02300d022e0d042c0f042811063f3f3f3f3f3f"},v:{t:31,l:0,w:30,h:31,m:"y033c09360f30152a1b24211e0225180825120e250c1425061a25201f26192c13320d320d2c132619201f1a251425060e250c082512022518211e1b24152a0f300936033c"},w:{t:31,l:0,w:31,h:31,m:"y033c132c211e2f1039063f023d1629241b2c13241b1c23182502181d0a181512180f18181512181d0a1825021c23241b2c13241b1629023d3f39062f10211e132c033c"},x:{t:31,l:1,w:28,h:31,m:"y033a03073207092e090d260d0f220f111e11151615021512150204170a170408150615080a2b0a0e230e101f10141714141714101f100e230e0a2b0a081506150804170a17040215121502151615111e110f220f0d260d092e09073207033a03"},y:{t:31,l:0,w:30,h:42,m:"y035207420d0b3e0d0f3a0d13360d17300f1b2a0f02041b221302081b1a15040c1b121706101b0a1908141b02190c182f0e1c2712201f16201b1a1c1b1e181b22141b26101b2a0c1b2e081b32041b361b3a173e13420f460b4a074e0352"},z:{t:31,l:2,w:25,h:31,m:"x333333333333220f02200f041e0f061c0f081a0f0a180f0c160f0e140f10120f12100f140e0f160c0f180a0f1a080f1c060f1e040f20020f220f240d26333333333333"},"~":{t:46,l:0,w:31,h:10,m:"b01e0000007fc00301fff007c1fffc0fe3ffffbfc7ffffffcff0ffff8fe03fff03c00ffe018003fc0"},"!":{t:46,l:11,w:8,h:46,m:"y212e0f3b140f3b140f3b140f3b140f3b140f3b140f212e0f"},"@":{t:46,l:0,w:29,h:46,m:"y100b1a19100c0f1427080813102d0606150e310404170e33020411123502020f16111611020d180d1e0d020b1a0b220b0b1c0b220b0b1c0b220b0b1e0d1c0d0b1e11140f020b1c35020b1c33040b1c31060d1a33040d1a3502020d1837020d420d0211400b04133c0b061b2e0f08550a51020c4d04104706163f08202f0e"},"#":{t:46,l:0,w:29,h:46,m:"y40031605220316090e0d1c09160906151c0916231c0912271c0908311c390818331210331a063302091a2f0c091a2714091a1b020916091a130a091609180309140916090e0d1c09160906151c0916231c0910291c0906331c3b061835100e351a043502091a2f0c091a2714091a2516091a130a0916091a0b12091603201c033e"},$:{t:46,l:0,w:30,h:46,m:"y420714160d200b1010171c0d0e0e1b1a0f0c0c1f18110a0a231613080a231613080811080f1a0d08080f0c0d1a0f06080d100d1a0d06060f100d1a0d06060f120d180d06060d140d180d065d5d5d5d5d060d180d140d06080d160d140d06080d180d120b08080d180d100d08080f160f0e0d080a13120f0a0d0a0c1114230a0c1114210c0e0f161f0c120b181b0e14091a15123a0d16"},"%":{t:45,l:1,w:28,h:45,m:"y080f440417360b021b300f021b2c130d060d2815090e09241702090e09201706090e091c19080d060d18190c021b181710021b1417140417121718080f12191a26171e2217221e17100f081a190e17041817101b021417141b021017160d060d0c171a090e090a171c090e09061720090e090217240d060d152a1b02112e1b020f3217040b3a0f08"},"^":{t:46,l:0,w:29,h:23,m:"y260504240902200f1c131a13021615041415061017080e170a0a190c061b0e041b101d121b1419161b141d12041b10061b0e0a190c0e170a1017081415061615041a13021c13200f240902260504"},"&":{t:46,l:0,w:30,h:46,m:"y3c0f1238190c0e0d1a1f0a0a17122308081d0c27060621082b04042702130a1302043710110202110a1d140f02020f1017180f020d1415180f0d1a15160d0d1819140d0d161d120d0d16210e0d0d140d04150c0d0d120d0a15080d0f0e0f0c15060d020d0c0f1215020b02020f080f161f0202231a1d02041f201704061b2417020619221d0815162b0c0d1a2b322b321b060b32151007320d1a05"},"*":{t:45,l:0,w:29,h:29,m:"y18051e14091e0e0f1e100f1c100f120506120d100904120f0c0d02120f0a11140d0615140d041502161f060f081d082f0c2d0e29122d0e2f0c0f081d08161f06140d041502140d0615120f0a11120f0c0d02120d100904100f120506100f1c0e0f1e14091e18051e"},_:{t:-5,l:-1,w:33,h:5,m:"x4343434343"},"+":{t:39,l:1,w:28,h:32,m:"y1a0d1a1a0d1a1a0d1a1a0d1a1a0d1a1a0d1a1a0d1a1a0d1a1a0d1a1a0d1a1a0d1a4141414141411a0d1a1a0d1a1a0d1a1a0d1a1a0d1a1a0d1a1a0d1a1a0d1a1a0d1a1a0d1a1a0d1a"},"`":{t:42,l:4,w:21,h:17,m:"y051e071c091a0b180d160f1411121310150e170c190a1b081d06041b040819020c171013140f180b1c072003"},"-":{t:20,l:1,w:28,h:8,m:"x3939393939393939"},"=":{t:33,l:1,w:27,h:20,m:"x3737373737373636363636363636373737373737"},'"':{t:42,l:5,w:20,h:14,m:"y1d1d1d1d1d1d1d1c1c1c1c1c1c1d1d1d1d1d1d1d"},"'":{t:42,l:11,w:7,h:18,m:"y25252525252525"},"(":{t:46,l:6,w:17,h:46,m:"y2417221c251c182f16143514103d100e410e0c19141b0a08172017080615281506041330130402133413020211381102113c110f400f0d440d0b480b0b480b"},")":{t:46,l:6,w:17,h:46,m:"y0b480b0b480b0d440d0f400f0f3e11021138110202133413020413301304061528150608172017080c19141b0a0e410e103d10143514182f161c251c241524"},"{":{t:46,l:1,w:28,h:46,m:"y280d28280d28280d28280d28280d28280d28280d282611262219221631160e410e0a490a0825042508062508250604211421040411341104020f3c0f02020d400d020f400f0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d"},"}":{t:46,l:1,w:28,h:46,m:"y0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0f400f020d400d02020f3c0f0204113411040421142104062508250608250425080a490a0e410e163116221922261126280d28280d28280d28280d28280d28280d28280d28"},"[":{t:46,l:4,w:22,h:46,m:"y5d5d5d5d5d5d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d"},"]":{t:46,l:4,w:22,h:46,m:"y0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d0d440d5d5d5d5d5d5d"},"<":{t:44,l:0,w:30,h:42,m:"x3a0338053409320b2e0f2c1128152615022217042015081c170a1a150e1617101415141017160e151a0a171c0815200417220215261528132a17260415240617200a151e0c151c1015181215161417121815101a170c1e150a2017062415042615022a11022c0f022e0d02320902340702380302"},">":{t:44,l:0,w:30,h:42,m:"x033a053809340b320f2e112c15280215260417220815200a171c0e151a1017161415141617101a150e1c170a2015082217042615022815281526172217042017061c170a1a170c1617101417121017160e17180a171c08171e0417220217241528132a0f2e0d3009340736033a"},"|":{t:46,l:12,w:6,h:56,m:"y717171717171"},":":{t:31,l:9,w:11,h:31,m:"x17171717171717171716161616161616161616161617171717171717171717"},";":{t:32,l:4,w:22,h:43,m:"y540350074c0b480f441340173c1902381b04341d06301f082c210a131a1f0c131a1d0e131a1b10131a1912131a1714131a1516131a1318131a111a131a0f1c131a0d1e131a0b20"},".":{t:10,l:9,w:11,h:10,m:"x17171717171717171717"},",":{t:10,l:4,w:22,h:21,m:"y28032407200b1c0f181314171019020c1b04081d06041f08210a1f0c1d0e1b101912171415161318111a0f1c0d1e0b20"},"\\":{t:46,l:3,w:24,h:47,m:"y07580b54114e17481b44213e04213a0a2134101f3014212a1a1f261e2120241f1c2821162e1f1232210c381f083c2102421d48174c13520d56095c03"},"?":{t:46,l:0,w:30,h:46,m:"y120b400c11400a1340081540061740041940041940021b40021348020f4c0f4e0f3c130d240d0e130d220f0e130d20110e130d1e130e130d1e130e130d1c150e130d1a170e130f16111613020d14111813020f10111a1302130a112e042b2e0429300625320821340a1d360c173a100f3e"},"/":{t:46,l:3,w:24,h:47,m:"y5807540b4e114817441b3e213a1f0634210a2e21102a211424211a20211e1a2124161f2a10212e0a2134062138213e1d421748134c0d520758035c"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["10-07"]={h:49,w:35,g:{0:{t:49,l:0,w:35,h:49,m:"y1e271e143b140e470e0a4f0a065508065706045b04021f221f02021536150202113e1102020f420f021142110f460f0f460f0f460f0f460f0f460f0f460f0f460f0f460f0f460f0f460f0f460f11420f0211420f0202113e11020215361502021f221d04045b040657060853080a4f0a0e470e143b1420251e"},1:{t:49,l:7,w:20,h:49,m:"y12133e12133e1013400e13420c13440a13460a134608134806134a04134c02134e021150135063636363636363"},2:{t:50,l:1,w:32,h:50,m:"x1417160c2510082d0c04330a023708023906023b040217101702020f1c1302020924110202052a113011320f320f320f320f320f300f022e11022e0f042a130428130624150822150a1e170c1a171018171214171612151a0e171c0c15200a152208132608112806112a04112c040f2e020f30020f30020d32020d320f320f323f023f023f023f023f023f023f02"},3:{t:49,l:1,w:33,h:49,m:"x3f043f043f043f043f043f043f042a130628130826130a24130c22130e2013101e13121c13141a131618131816131a14131c12131e121d1412230e12270a122908122b062619042c13042e1302301102320f02340f340f340f340f340f340f3211320f023011022e1302072415040f161b043d063b08390a370c33100627160e191c"},4:{t:49,l:1,w:33,h:49,m:"y3c1314381714341b14301f142c2314282714242b14201f020f141c1f060f14181f0a0f14141f0e0f14101f120f140c1f160f14081f1a0f14041f1e0f141f220f141b260f14172a0f14132e0f140f320f140b2237072637032a372c372c372c372c37400f14400f14400f14400f14400f14400f14"},5:{t:49,l:3,w:29,h:49,m:"x043502023702023702023702023702023702023702020f2a020f2a020f2a020f2a020f2a020d2c0f2c0f2c0f2c1f1c27142b102f0c310a330835061e19042413042613022811022a0f022a112c0f2c0f2c0f2c0f2c0f2c0f2a112a0f022811022613022413042015061c1906141f08310a2d0e2b102714211a1922"},6:{t:49,l:0,w:35,h:49,m:"y3813183021122c290e28310a2437082239081e3f061c210c17041a1f141304162118130214211c11021221200f021013020f20110e13040f20110c13060d240f0a13060f240f0813080f240f06130a0f240f04130c0f240f02130e0f240f13100f240f11121120110f1411200f020d18111e0f020b1a111c1102091c131813020720131413040522170c1704032635062a31082c2d0a2e290c30250e341d123a1118"},7:{t:49,l:0,w:34,h:49,m:"y0f540f540f540f540f540f540f540f381d0f32230f2c290f282d0f24310f22330f1e370f1c1d1c0f181b220f1619260f14172a0f12152e0f1015300f0e13340f0c13360f0a13380f06153a0f04153c234021421f441d461b48194a174c13500d56"},8:{t:49,l:0,w:35,h:49,m:"x1817181223120e2b0e0a330a083708063b06063b06041712170404131a130404111e1104040f220f04040f220f04040f220f04060f1e0f06060f1c1106081116110808131015080a1706170a0c2f0c102710122312161b161221141027100c2f0c0a1902190a08170c1508061512150604131a130402131e11040211221102020f260f020f28110f2a0f0f2a0f0f2a0f0f2a0f1126111126110211221302151a15020219121902043f04043f04063b0608350a0c2f0c102710161918"},9:{t:49,l:0,w:35,h:49,m:"y18113a121d340e25300c292e0a2d2c08312a0635260304170c172205041314132007021318131c0902111c111a0b020f200f180d112011140f11201112110f240f10130f240f0e13020f240f0c13040f240f0a13060f240f0813080f240f06130a0f240d06130c11200f04130e11200f021310020f20211202111c211402131821160413141f1a04170c211c063f1e0839220a35240c2f280e292c122130181338"},A:{t:49,l:0,w:35,h:49,m:"y5c07540f4c17441f3c27342f2c37243f1c3f08143f100c3f1804431c37020f1c2f0a0f1c27120f1c1f1a0f1c17220f1c0f2a0f1c17220f1c1f1a0f1c27120f1c2f0a0f1c37020f1c04431c0c3f18143f101c3f08243f2c37342f3c27441f4c17540f5c07"},B:{t:49,l:0,w:35,h:49,m:"y636363636363630f1a0d200f0f1a0d200f0f1a0d200f0f1a0d200f0f1a0d200f0f1a0d200f0f1a0d200f0f1a0d200f0f1a0d200f0f1a0d200f0f1a0d200f0f1a0d200f0f1a0d200f0f1a0d200f11180d200f020f16111c11021114111c110213101518110202150a19181102043912130206390c15040627042f040a23042d060c1f08290810190c250a140f141f0e381b103e0f16"},C:{t:49,l:2,w:30,h:49,m:"y241b241a2f1a1639141043100e470e0a4f0a085308061f1a1f0604192a1904041532150402133a130202113e1102020f420f021142110f460f0f460f0f460f0f460f0f460f11421111421102113e11020215361502041336130404133613040611361106080f360f080a0d360d0a0e09360b0c4c0512"},D:{t:49,l:2,w:30,h:49,m:"y636363636363630f460f0f460f0f460f020d460f020d460f020f440d02020f420f02040f400f0204113c0f04060f3c0f04061138110408133211060a132e11080a172615080c191e170a0e1d121b0c10450e124110163b121835161c2d1a22231e2a1524"},E:{t:49,l:2,w:30,h:49,m:"x3b023b023b023b023b023b023b020f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e35083508350835083508350835080f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e0f2e3d3d3d3d3d3d3d"},F:{t:49,l:5,w:25,h:49,m:"y636363636363630f1a0f2c0f1a0f2c0f1a0f2c0f1a0f2c0f1a0f2c0f1a0f2c0f1a0f2c0f1a0f2c0f1a0f2c0f1a0f2c0f1a0f2c0f1a0f2c0f1a0f2c0f1a0f2c0f540f540f540f54"},G:{t:49,l:1,w:32,h:49,m:"y221f2218311a143b141043100e470e0c4d0a0a5108081d1a1d0806172819060415321504041336130402133a130202113e1102020f420f021142110f200f180f0f200f180f0f200f180f0f200f180f0f200f180f0f200f180f0f200f180f0f200f180f111e0f180f020f1e0f180f02111c3302040f1c3302040f1c3302060d1c3302080b1c31040a091c31040e051c3104"},H:{t:49,l:2,w:31,h:49,m:"y63636363636363280f2c280f2c280f2c280f2c280f2c280f2c280f2c280f2c280f2c280f2c280f2c280f2c280f2c280f2c280f2c280f2c280f2c63636363636363"},I:{t:49,l:5,w:25,h:49,m:"y540f540f0f460f0f460f0f460f0f460f0f460f0f460f0f460f636363636363630f460f0f460f0f460f0f460f0f460f0f460f0f460f540f540f"},J:{t:49,l:5,w:25,h:49,m:"y42111042150c421908421b06421d04421d04421f0250110252115211540f540f540f540f540f5211521150110261025f045f045d065b08570c5310"},K:{t:49,l:-1,w:37,h:49,m:"y63636363636363261528241926221d242021221e25201c291e1a1504151c181508151a16150c15181415101516121514151410151815120e151c15100c1520150e0a1524150c081528150a06152c15080415301506021534150415381502133c151140130f44110d480f0b4c0d09500b075409055807035c056003"},L:{t:49,l:1,w:32,h:49,m:"y63636363636363540f540f540f540f540f540f540f540f540f540f540f540f540f540f540f540f540f540f540f540f540f540f540f540f540f"},M:{t:49,l:1,w:33,h:49,m:"y6363636363636313501b4823402b38042d320a2f2a122f22182b20202320261d20202320182b201231200a3128042f302b3823401b48135063636363636363"},N:{t:49,l:1,w:32,h:49,m:"y636363636363631b481f44022140081f3c0c213610213214212e1a1f2a1e212422212026211c2a211830211234210e38210a3c21064221461d63636363636363"},O:{t:49,l:0,w:34,h:49,m:"y241b241c2b1c163716123f1210450e0c4b0c0a4f0a081d1a1d0806172a1706041532150404113a110402113e1102020f420f021142110f460f0f460f0f460f0f460f0f460f0f460f114211020f420f0202113e110204113a110404153215040619281706081d1a1d080a4f0a0c4b0c10450e123f121637161c2b1c241b24"},P:{t:49,l:1,w:33,h:49,m:"y636363636363630f1e0f280f1e0f280f1e0f280f1e0f280f1e0f280f1e0f280f1e0f280f1e0f280f1e0f280f1e0f280f1e0f280f1e0f280f1e0f280f1e0f28111a1128111a0f2a021116112a021312132a04130e132c04332c062f2e082b300a27320c2334101b3814133c"},Q:{t:49,l:-1,w:37,h:49,m:"y201d26182d1e1239180e41140c45120a4910084d0e061d181d0c041728170a041330130a0211361308020f22031611081122051611060f2409140f060f240b120f060f240d100f060f24110c0f060f24130a0f060f2415080f06112219040f06020f262508021324230804132421080417221d0a061d1c190c0853080a53060c5304105312390415182f0a13201f1411560d580b5a095c076003"},R:{t:49,l:1,w:32,h:49,m:"y636363636363630f1e0f280f1e0f280f1e0f280f1e0f280f1e0f280f1e0f280f1e11260f1e13240f1e17200f1e1b1c0f1e1f18111a2514111a27120211160f041b0e02131211061d0a04150c130a1d060431101d02062f121d082b18190a271e150c232411101b2a0f1411340b5c075e05"},S:{t:49,l:2,w:31,h:49,m:"x181314121d1010230c0c290a0a2d0808310608330406150c15040611141302041118110204111a0f02040f1c0f02040f2c040f2c040f2c04112a060f2a0611280615240817200a191c0c1b18101b14121d10161b0e1a1b0a1e19082217062615042a11042c11022e0f022e11300f300f0f220f11200f11200f111e11131a1102021316130202170e1702043704063306082f080a2b0a0c270c101f10161316"},T:{t:49,l:1,w:33,h:49,m:"y0f540f540f540f540f540f540f540f540f540f540f540f540f54636363636363630f540f540f540f540f540f540f540f540f540f540f540f540f54"},U:{t:49,l:1,w:33,h:49,m:"y4f145310570c590a5b085d065f044a15044e1302501102520f0252115211540f540f540f540f540f540f540f52115211520f025011024e13024a15045f045d065b08590a570c53104f14"},V:{t:49,l:0,w:36,h:49,m:"y095a1152194a1f44273c2f34372c0637260e371e1637161e370e2635082c37342f3c27441f4c1752114e15461d3e25362d2e3528350620350e18351610351e083724372c2f34273c2142194a11520b580360"},W:{t:49,l:0,w:35,h:49,m:"y1f44352e451e51125b08636322413a29481b441f3c27362d2e330228310a262b1226231a261b2226211c26291426310c2e3104342f3c2742214a193c27224163635f04550e491a3b28253e"},X:{t:49,l:0,w:35,h:49,m:"y035e030756070b4e0b0f460f114013153a151932191d2a1d021d241d04041f1c1f06081f141f0a0c1f0e1d0e101f061d1214391618311a1a2b1e1e2322221b262021221c291e18311a1439161219081f120e1b0e1f0e0a1b161d0c061b1e1d080419241f041b2a1f17321b133a170f42130b4a0f09500b0558075e05"},Y:{t:49,l:0,w:34,h:49,m:"y055e095a0d561152154e194a1d46021f42061f3e0a1d3c0e1d38121d34161d301a491e452241263d22411e451a49161d30121d340e1d380a1f3a061f3e021f421d46194a154e11520d560b58075c0360"},Z:{t:49,l:3,w:29,h:49,m:"y560d0f44110f40150f3c190f381d0f34210f30250f2c290f282d0f261d040f0f221d080f0f1e1d0c0f0f1a1d100f0f161d140f0f121d180f0f0e1f1a0f0f0a1f1e0f0f061f220f0f021f260f2b2a0f272e0f23320f1f360f1b3a0f173e0f13420f0f460f540f540f"},a:{t:37,l:2,w:30,h:37,m:"x1417120e230c0a2b08082f0606330406130e15020411161102040f1a0f0202111c0f020f1e0f2e0f2e0f2e0f2e0f14290e2f0a330835063704390215180f02111c0f111e0f111e0f0f200f0f1e110f1e110f1e110f1c131118150211121902130c1d043906370825020f0c1d060f10130c0f"},b:{t:53,l:1,w:33,h:53,m:"y6b6b6b6b6b6b6b281512170626111e1106240f260f04240d2a0f02220f2a0f02220d2e0d02200f2e0f200d320d200d320d200d320d200d320d200d320d200d320d200f2e0f200f2e0d02220f2a0f02221126110222151e13042419121904263f06283b082a370a2c330c302b103423143c151a"},c:{t:37,l:3,w:29,h:37,m:"y1a171a142314102b100c330c0a3908083d06063f06041716170404112213020211261102020f2a0f020f2e0f0f2e0f0d320d0d320d0d320d0d320d0d320d0f2e0f0f2e0f020f2a0f02021322130202132013040411201304060f201106060f200f080a0b200d0a0c09200b0c1203200512"},d:{t:53,l:1,w:33,h:53,m:"y3a171a342512302d0e2c330c2a370a283b08263f06241912190422151e13042211241302220f2a0f02200f2c0f02200f2e0f200d300f200d320d200d320d200d320d200d320d200d320d200f2e0d02220d2e0d02220f2a0f02240d2a0d04240f24110426111e110628151215086b6b6b6b6b6b6b"},e:{t:37,l:1,w:32,h:37,m:"x181316121f100e270c0c2b0a0a2f0808330606150c15060611141304040f1a1104040d1e1102020f200f02020d220f02020d2211020d22114141414141410f320f320f320f32020f30020f30020f30040f2e04112c061314110406170e13040835040a31060c2d080e290a12210e181514"},f:{t:53,l:3,w:28,h:53,m:"y200d3e200d3e200d3e200d3e200d3e200d3e200d3e200d3e200d3e200d3e200d3e12590c5f0863066504670467026902110e0d3e020f100d3e0f120d3e0f120d3e0d140d3e0d140d3e0d140d3e0d140d3e0d140d3e0d140d3e"},g:{t:37,l:1,w:32,h:49,m:"y18153612232e0e2b18090a0a33140b080837120d06063b100f04043f0e1102041714150e1102021320110c11020211240f100d02020f280d120d0f2c0d120b0f2c0d120b0d300b120b0d300b120b0d300b120b0d300b120b0d300b120b0d300b120b020d2c0b140b020d2c0b120d020f280b140d040f240d140b0204111e0f140d02061512131211025f045f045d065b08590a570c5310"},h:{t:53,l:3,w:28,h:53,m:"y6b6b6b6b6b6b6b261332241136240f38220f3a220f3a200f3c200f3c200f3c200f3c200f3c200f3c20113a201338221336224922492447264528432c3f303b"},i:{t:53,l:8,w:19,h:53,m:"y200f3c200f3c200f3c200f3c200f3c200f3c200f3c200f3c200f3c130e0f3c130e0f3c130e0f3c130e4b130e4b130e4b130e4b130e4b130e4b130e4b"},j:{t:53,l:7,w:20,h:66,m:"y780d780d780d780d200f4a0d200f4a0d200f4a0d200f4a0d200f4a0d200f480f200f460f02130e0f441102130e0f421302130e6302130e6104130e5f06130e5f06130e5d08130e590c130e5510"},k:{t:53,l:1,w:33,h:53,m:"y6b6b6b6b6b6b6b3a112038151e36191c341d1a3221183025162e29142c150415122a1508151028150c150e261510150c241514150a221518150820151c150620132015042011241502200f2815200d2c13200b30112009340f2007380d20053c0b20034009640766056803"},l:{t:53,l:7,w:20,h:53,m:"y59125f0c630865066704690269025613025a115c0f5c0f5e0d5e0d5e0d5e0d5e0d5e0d5e0d5e0d5e0d"},m:{t:37,l:0,w:36,h:37,m:"y4b4b4b4b4b4b4b040d3a04093e0209400209400b400b400b400f3c4b4b4b0249024904470447020f3a020b3e0b400b400b400b400d3e4b4b02490249044706450a41"},n:{t:37,l:2,w:31,h:37,m:"y4b4b4b4b4b4b4b081330061134040f38040d3a020f3a020d3c020d3c0d3e0d3e0d3e0d3e0d3e0d3e0f3c0f3c020f3a02133602490447064508430a410c3f1239"},o:{t:37,l:0,w:35,h:37,m:"y1a171a142314102b100c310e0a370a083b08063d08061712170604131e1304040f260f04020f2a0f02020d2e0d02020b320b020d320d0b360b0b360b0b360b0b360b0b360b0b360b0b360b0d320d020b320b02020d2e0d02020f2a0f02040f260f0404131e13040617141506063d0808390a0a350c0e2f0e102912161f161c131c"},p:{t:37,l:1,w:33,h:49,m:"y63636363636363061712171e04131e131c040f260f1c020f2a0f1a020d2e0d1a020d2e0d1a0d320d180d320d180d320d180d320d180d320d180d320d180d320d180f2e0f18020d2e0d1a020f2a0f1a021126111a04131e131c041914171c063f1e083b200a37220c3324102b2814232c1c1334"},q:{t:37,l:1,w:33,h:49,m:"y1c153214232c102b280c33240a3722083b20063f1e041914171c04131e131c021126111a020f2a0f1a020d2e0d1a0f2e0f180d320d180d320d180d320d180d320d180d320d180d320d180d320d18020d2e0d1a020d2e0d1a040d2a0f1a040f260f1c06111e111e061712171e63636363636363"},r:{t:37,l:4,w:27,h:37,m:"y4b4b4b4b4b4b4b081132060d38040d3a020d3c020b3e020b3e0b400b400b400b400d3e0d3e113a0217320217320415320415320613320a0f320e0b32"},s:{t:37,l:2,w:31,h:37,m:"x16171210230c0c290a0a2d0808310606330606130e15040411161104040f1a0f04040f1a0f04040f2c040f2c04112a04112a061326061b1e0823140a270e0e270a122706182304201d022a13022e112e11300f300f300f11200f020f1e1102111a11020215101702043704063306082d0a0c250e121914"},t:{t:47,l:3,w:28,h:47,m:"y140d3e140d3e140d3e140d3e140d3e140d3e140d3e140d3e024d1002530a02550859065b045d025d02140d2c1102140d300f140d300f140d320d140d320d140d320d140d320d140d320d140d320d140d300f140d300d02140d300d02140d2e0f02"},u:{t:37,l:2,w:31,h:37,m:"y3b103f0c430845064704470449023811023a113c0f3c0f3e0d3e0d3e0d3e0d3e0d3e0d3c0d023c0d023a0f023a0d04380f043411063013084b4b4b4b4b4b4b"},v:{t:37,l:0,w:36,h:37,m:"y07440d3e133819321d2e23282922042b1c0a2b16102b10162b0a1c2906222928232e1d34173a11400b3a113615301b2a2124271e270618270c1427100e271608271c02272223281f2c193213380d3e07440348"},w:{t:37,l:0,w:35,h:37,m:"y074417342724371447044b4b06451c2f301b34172e1d28232227021e25081e1d101e17161e0f1e1e15181e1d101e230a20270426252e1d3417361522290e3d4b4b4b3d0e2b2019320942"},x:{t:37,l:0,w:34,h:37,m:"y054205073e070b360b0d320d0f2c11132613152215191a17021b1617040419101708061b0a170a0a1904170e0c2d12102714141f18161b1a1a151c181b181421161227120e1702170e0a1906170c08170c1908041912170619181902171c191324151128130d300f0b340d073a0b05400746054803"},y:{t:37,l:-1,w:37,h:49,m:"y055e095a0b4c0d0f480d13440d17400d1b3c0d1d380f021f301102061f2815020a1f2017040e1f181b04121d141b06161d0c1b0a1a1d041d0c1e3510222d142625182a1d1c281b20241b24201d261c1d2a181d2e161b32121b360e1b3a0a1b3e061b42021b461b48174c13500f540b58075c0360"},z:{t:37,l:3,w:29,h:37,m:"x02350402350402350402350402350402350426110424110622130622110820110a1e110c1c110e1a11101a111018111216111414111612111810111a10111a0e111c0c111e0a1120081122081122061124041126021128112a0f2c3b3b3b3b3b3b"},"~":{t:53,l:-1,w:38,h:11,m:"x0e112205080a1b1a09060821140d0406270e1102042f041702490217042f0402110e2706040d14210806091a1b0a080520130e"},"!":{t:53,l:12,w:10,h:53,m:"y1b3e134316134316134316134316134316134316134316134316131b3e13"},"@":{t:54,l:1,w:33,h:54,m:"y120d221b120e111a290c0a1516310808171437040619123904041b123b020413181516130202111c0f2011020f1e0d240f020d200d260d0f200d260d0d220d260d0d240d240d0d240f200d020d26131413020d223b040d2239060d2239060d223b040f203d02020d203d02020f4e0f020f500d04114c0d04134a0d0617420f081f34130a61020c5f021059041451081a490a263512"},"#":{t:53,l:1,w:33,h:53,m:"y48051a0526031a0b120d20091a0b08171e0b1a291e0b1a291e0b12311e0b083b1e430a1c3d12143b1c0a431e3d060b1e33100b1e2b180b1e291a0b1e150a0b1a0b1e0d120b1a0b140b031c0b1a0b0a151e0b1a0b021d1e0b1a291e0b12311e0b083b1e47061e3d10143f180a431e023d040b1e350e0b1e2b180b1e291a0b1e19060b1a0b1e0f100b1a032607180548"},$:{t:53,l:0,w:36,h:53,m:"y180f2609161417220b14101d200f100e211e110e0e231c110e0c251c130c0a291a130c0a1108131a130a0a0f0e0f1e0f0a080f100f1e1108080f120f1e0f08080d140f1e0f08080d160f1c0f08080d160f1c0f08060f160f1c0f086b6b6b6b6b6b080d1a11180d08080d1c0f180d08080d1c0f180d08080f1a11140f080a0d1c0f140f080a0f1a11100f0a0a1516110e0f0a0c13161308110c0c1318290c0e1118270e100f1a250e140b1c211016091e1d123e1716420f1a"},"%":{t:52,l:1,w:33,h:52,m:"y0811500617400d041b3a11021f36132132170d0a0d2c1b0b0e0b281d020b0e0b261b060b0e0b221b0a0b0c0d1e1b0e211c1d10021f1a1b14021d181b180419161b1c0813141b2010031a1b22281b26241b120d0c201b1217061e1b121b041a1b141f02161b181f02121b1a0f060f10191e0b0e0b0c1b200b0e0b081b240b0e0b041b280b0e0b02192c2319301f0215341d04113a1b040d401508520b0c"},"^":{t:54,l:0,w:34,h:28,m:"y2c07062a0b0426110222172017021c19041a1906161b08141b0a101b0e0e1b100a1d12081d14041f1621181f1a1d1c1f1a021f18041f16081d140a1d120e1b10101b0e14190c161b081a19061c19042017022217261102280d042c07062e0506"},"&":{t:54,l:0,w:35,h:54,m:"y481114421b10120f20210c0c1918270a0a21102b0808250c2f06062b063304062f02130c1504044312130202150a231811020211121f181102020f18191c11111c171a110f1e1b180f0f1e1d160f0f1c21140f0f1a27100f0f181104170e0f0f180f08190a0f0f160f0c19080f11120f1219040f02110e111419020d02021308131a230204291e21020427221d040623281904081f2c1902081d26230c151c31100f1e313c313c1f060d3c1b0c0b3c1516073c0d2005"},"*":{t:53,l:0,w:35,h:34,m:"y1e03241a0922140f221211221411201411160506160f140904160f120d0216110e11180f0a15180f08171a0f0417021a25061c2108390c370e3312311433123510390c1c21081a25061a0f04170218110617180f0a1516110c1316110e0f0214111409041411160506141120121320140f221a09221e0324"},_:{t:-5,l:-2,w:39,h:7,m:"x4f4f4f4f4f4f4f"},"+":{t:46,l:1,w:33,h:38,m:"y200d20200d20200d20200d20200d20200d20200d20200d20200d20200d20200d20200d20200d204d4d4d4d4d4d4d200d20200d20200d20200d20200d20200d20200d20200d20200d20200d20200d20200d20200d20"},"`":{t:49,l:6,w:23,h:19,m:"y091e0b1c0d1a0f181116131415121710190e1b0c1d0a1f0821062304042102081f0c1b10171413180f1c0b20072403"},"-":{t:23,l:1,w:33,h:9,m:"x434343434343434343"},"=":{t:38,l:1,w:32,h:22,m:"x41414141414141404040404040404041414141414141"},'"':{t:49,l:6,w:23,h:17,m:"y2323232323232323222222222222222323232323232323"},"'":{t:49,l:13,w:9,h:21,m:"y2b2b2b2b2b2b2b2b2b"},"(":{t:53,l:7,w:20,h:53,m:"y2a172a2227221e311c1a3918164114124712104d0e0e1f141f0c0a1b221b0a08192a1908061732170604153a150402153e15020213421302134613114a110f4e0f0d500f0d520d0b560b"},")":{t:53,l:7,w:20,h:53,m:"y0b560b0d520d0d500f0f4e0f114a11134613021342130202153e150204153a1504061732170608192a19080a1b221b0a0e1f141f0c104d0e1247121641141a39181e311c2227222a172a"},"{":{t:54,l:1,w:33,h:55,m:"y300f30300f30300f30300f30300f30300f30300f302e11302e132e2c172c242328104b140c550e082f022d0a0631022f08062f062f06042d0e2d040221242504021344150202114a1102020f4e0f02114e0f020f520f0f520f0f520f0f520f0f520f0f520f0f520f0f520f0f520f0f520f600f"},"}":{t:54,l:1,w:33,h:54,m:"y600d0f520d0f520d0f520d0f520d0f520d0f520d0f520d0f520d0f520d0f520d114e0d02020f4e0d0202114a0f020213441302041f242304042d0e2b04062f062d060631022d08082f022b0a0c550c1049142423262c172a2e132c2e112e300f2e300f2e300f2e300f2e300f2e300f2e300f2e"},"[":{t:54,l:4,w:26,h:54,m:"y6d6d6d6d6d6d6d0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f"},"]":{t:54,l:4,w:26,h:54,m:"y0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f6d6d6d6d6d6d6d"},"<":{t:51,l:0,w:35,h:49,m:"x420540073e093a0d380f341332152e192c1902281b04261908221b0a20190e1c1b101a1914161b1614191a101b1c0e19200a1b22081926041b2802192c17301532192e02192c0619280819260c19220e192012191c14191a161b161a19141c191220190e22190c2619082819062c19022e1702301502341102360f023a0b023c0902400502420302"},">":{t:51,l:0,w:35,h:49,m:"x05420740093e0d3a0f3813341532192e02192c041b280819260a1b220e1920101b1c14191a161b161a19141c1b1020190e221b0a261908281b042c19022e1930172e192a1b02281906241b0822190c1e1b0e1c1912181b14161918121b1a10191e0c1b200a1924061b2604192a1b2c1730153211360f380b3c093e05420344"},"|":{t:54,l:14,w:7,h:66,m:"y85858585858585"},":":{t:37,l:10,w:14,h:37,m:"x1d1d1d1d1d1d1d1d1d1d1d1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1d1d1d1d1d1d1d1d1d1d1d"},";":{t:37,l:4,w:26,h:51,m:"y640360075c0b580f541350174c1b481d02441f044021063c230838250a34270c34250e171e2310171e2112171e1f14171e1d16171e1b18171e191a171e171c171e151e171e1320171e1122171e0f24171e0d26"},".":{t:11,l:10,w:14,h:11,m:"x1d1d1d1d1d1d1d1d1d1d1d"},",":{t:11,l:4,w:26,h:25,m:"y30032c07280b240f20131c17181b141d02101f040c210608230804250a270c250e231021121f141d161b18191a171c151e132011220f240d26"},"\\":{t:54,l:3,w:28,h:55,m:"y07680b64115e155a1b541f50254a0425460827400e253c1425361825321e252c2225282825222c251e3225183625143c250e40250a4625044a25501f541b5a15600f640b6a05"},"?":{t:54,l:1,w:33,h:54,m:"y140f4a0e154a0a194a081b4a061d4a061d4a041f4a041f4a02214a02175402115a135a1148151148150f2c0d12150f281112150f261312150f241512150f221712150f20191215111c1b1215020f1a1d1215021116151c15021312151e1502170a1734043336043138062d3a08293c0a253e0c21400e1b44140f4a"},"/":{t:54,l:3,w:28,h:55,m:"y6a05640b600f5a155619501f4a254625044027083c250e3625143225182c251e2627222225281c272c1825321227360e253c082542022746234c1f501956155a0f600b64056a"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["10-08"]={h:56,w:40,g:{0:{t:56,l:0,w:39,h:56,m:"y242924184118104f120c590c0a5d0a066308066506046904042324230402193c1902021348130202114c110202114c13114e13115011115011115011115011115011115011115011115011115011115011115011114e13134c110202114c1102021348130202193c190204232423040469040665060861080a5d0a0e570c124d121a3f18242924"},1:{t:56,l:8,w:23,h:56,m:"y16154614154812174812154a10154c0e154e0c15500a15520a155208155406155604155802155a02155a155c7171717171717171"},2:{t:57,l:2,w:36,h:57,m:"x1819180e29120a310e06370c023d0a023f08024106024304021b10190402131c1702020d24150202072c15020332133613381138113811381138113611023611023413023213043015042c17062a170826190a24190c2019101c1b121a1916161b1814191c1019200e19220c17260a17280a132c08132e061330061132041134041134021136021136020f38020f381138113847024702470247024702470247024702"},3:{t:56,l:1,w:37,h:56,m:"x470447044704470447044704470447042e17062c17082a170a28170c26170e2417102217122017141e17161c17181a171a18171c16171e141720141d1a14251214290e142b0c142d0a142f082a1b063017043215043613023613023811023a113a113a113a113a113a1138133813381102361302341502033015040926190411181d0645064308410a3d0e3b10023514082b18121920"},4:{t:56,l:1,w:38,h:56,m:"y4415184019183c1d183821183425183029182c2d18283118242104111820210811181c210c11181821101118142114111810211811180c211c111808212011180421241118212811181d2c11181930111815341118113811180d263f092a3f052e3f323f323f323f323f323f481118481118481118481118481118481118481118481118"},5:{t:56,l:3,w:34,h:57,m:"x043d04043d04043d04043d04043d04023f04023f04023f04021132021132021132021132021132021132021132020f34020f34113423222d1831143510390c3b0a3d083f0603201d062819042c15043013023013023211023213341134113411341134113411341132133211023013022e13042c15042a1506261906201d0818230a390c370e33122f162b1a25201d280342"},6:{t:56,l:0,w:39,h:56,m:"y40151c382514322f102e350e2c390c283f0a26430822490620270c1b041c271417041a251a150418271c15021627201302141502112411021215041124130e17041128110c17061128110a150a11281108150c11281106150e1128110415101128110215121128111514112811131613241311181324130f1c112411020d1e132013020b20151c15020924151815040924171417040728190c1906052a3d06032e390832350a34310c362d0e3827123c211442151a"},7:{t:56,l:1,w:38,h:56,m:"y1160116011601160116011601160116011421f113a2711342d113031112c3511283911263b11223f1120231e111c1f26111a1d2a1118193011141b32111219361110173a110e173c110c173e110a174011081544110417462948274a254c234e21501d541b561958155c0f62"},8:{t:56,l:0,w:39,h:56,m:"x1c171c142714102f100c370c0a3b0a083f08064306064306041b12190604151e150404132213040411261104041126110404112611040411261104061122110606131e130608131a130808151417080a170c190a0c1b021b0c0e330e122b12142714181f18162316122b120e31100c370c0a1b061b0a08190e1908061716170604151c170404132213040213261302021128130202112a1102112e11112e11112e11112e11112e11112e11132a13152615021522150202171e1702021d121d02044704064306064306083f080c370c0e330e1229141a191c"},9:{t:56,l:0,w:39,h:56,m:"y1c1342161f3c1227380e2d360c31340a353208392e03063d2a0506190c19280704171417260704151815240902151c15200b021320131e0d021124111c0f1324131811132413161311281114151128111215021128111015041128110e15061128110c15081128110a150a11281106170c11281104170e13241104151202112411021514021320271602151e251804151a251a041714271c06190c27200649220843260a3f280c392c0e3330122b341623381c1540"},A:{t:56,l:0,w:40,h:56,m:"y680960115819521f4a27422f3a37343d2c3d08243d101c3d18163b200e4320064b20390811203110112029181120212011201928112011301120113011201928112021201120291811203110112039081120064b200e4320163b201c3d18243d102c3d08343d3a37422f4a27521f581960116809"},B:{t:56,l:0,w:39,h:56,m:"y7171717171717171111e0f2411111e0f2411111e0f2411111e0f2411111e0f2411111e0f2411111e0f2411111e0f2411111e0f2411111e0f2411111e0f2411111e0f2411111e0f2411111e0f2411111e0f2411111e0f2411131c0f241102111a132013021318132013021514171c13020217101b18150204170a2114170204450c1904062f023704082d0235060a290631080c250a2d0a0e210e290c121b12231018111a1b1446111a"},C:{t:56,l:3,w:34,h:56,m:"y2a1d2a2031201a3d1a164714124f100e550e0c590c0a5d0a08231c2308061d2c1d06041938190404154015040215441502021348130202114c1102134c13115011115011115011115011115011115011134c1302134813020213481302021740170204173c170404173c170406153c150608133c13080a113c110a0c0f3c0f0c100b3c0b10560714"},D:{t:56,l:3,w:34,h:56,m:"y7171717171717171115011115011115011020f5011020f501102114e0f0202114c110204114a110204114a110204134611040613421304061540110608153c13060a153813080a193017080c192c170a0e1d22190c1021141f0e124f10144b121845141a41161e391a22311e28252430172a"},E:{t:56,l:3,w:34,h:56,m:"x430243024302430243024302430243021134113411341134113411341134113411341134113411341134113411343d083d083d083d083d083d083d083d08113411341134113411341134113411341134113411341134113411341134113411344545454545454545"},F:{t:56,l:5,w:29,h:56,m:"y7171717171717171111e1132111e1132111e1132111e1132111e1132111e1132111e1132111e1132111e1132111e1132111e1132111e1132111e1132111e1132111e1132111e1132111e11321160116011601160"},G:{t:56,l:1,w:37,h:56,m:"y2821281e351e184118144914124d120e550e0c590c0a5d0a08231a2508081b2c1d06061934190604173c170404154015040413441502021348130202114c110202114c131322111a131124111c111124111c111124111c111124111c111124111c111124111c111124111c111124111c111322111c11021122111c11021320111c0f0202151e3b0204131e3b0204131e3b0206111e3b02080f1e39040a0d1e39040c0b1e390410071e3904"},H:{t:56,l:2,w:35,h:56,m:"y71717171717171712e11322e11322e11322e11322e11322e11322e11322e11322e11322e11322e11322e11322e11322e11322e11322e11322e11322e11322e11327171717171717171"},I:{t:56,l:6,w:28,h:56,m:"y6011115011115011115011115011115011115011115011115011115011717171717171717111501111501111501111501111501111501111501111501160116011"},J:{t:56,l:6,w:28,h:56,m:"y4c11144c170e4c1b0a4c1d084c1f064c21044c21044c23025a15025e11025e136011601160116011601160115e135e11025a15026f026d046d046b066908670a630e5d14"},K:{t:56,l:-1,w:42,h:56,m:"y71717171717171712c172e2a1b2c281f2a262328242726222b2420170217221e170617201c170a171e1a170e171c181712171a161716171814171a171612171e171410172217120e172617100c172a170e0a172e170c081732170a061736170804173a170602173e170417421702154617134a15114e130f52110d560f0b5a0d095e0b076209056607036a056e03"},L:{t:56,l:2,w:36,h:56,m:"y71717171717171716011601160116011601160116011601160116011601160116011601160116011601160116011601160116011601160116011601160116011"},M:{t:56,l:0,w:39,h:56,m:"y7171717171717171155c1d54254c2b46333e0435380c35301237281835241e2f242627242c21242627241e2f241835241237280a392e043736333e2b46254c1d54155c7171717171717171"},N:{t:56,l:1,w:37,h:56,m:"y71717171717171711d54215002254a0625460a25420e253e12253a1825341c253020252c2425282825242e251e32251a3625163a25123e250e4227084825044c2550217171717171717171"},O:{t:56,l:0,w:39,h:56,m:"y2c1b2a222f201c391c184316144b121051100e550e0c5b0a0a211c2308081b2c1d06061738170604154015040413441502021348130202114c110202114c13115011115011115011115011115011115011134e11134c1302114c11020213481302041344150204173c17040619361706081b2c1d060a231a23080c5b0a0e570c105110144b121843161c391c222d222a1d2a"},P:{t:56,l:1,w:37,h:56,m:"y71717171717171711122112e1122112e1122112e1122112e1122112e1122112e1122112e1122112e1122112e1122112e1122112e1122112e1122112e1122112e1122112e131e132e131e113002111c133002131a1330021516153004170e1732043b320637340833360a2f380c2b3a0e273c121f40181346"},Q:{t:56,l:-1,w:43,h:56,m:"y261f2c1c3322163f1c12451a104b160c51140a551208591006231a210e061b2a1b0c041734190a04153a150a0213401508021128031a13081328051a1108112a07181306112a0b161106112a0d141106112a0f121106112a130e1106112a150c1106112a170a11060211281b04130602112a1b02110802132c290804152a2708041928230a061b261f0c08211e1f0c0a5d0a0c5d080e5f04105f02145d183d06171e310e1526211813620f640d660b6a076c056e03"},R:{t:56,l:1,w:37,h:56,m:"y71717171717171711122112e1122112e1122112e1122112e1122112e1122112e1122112e1122132c1122172811221b2411221d221122211e131e271a131e2b1602111c311202131a1104210e02151613081f0c04170e150c210804391021040635162108331a1d0a2f1e1b0c2b24170e252c13121f301118133a0d68096c056e03"},S:{t:56,l:2,w:35,h:56,m:"x1c1318161f1212270e102b0c0c310a0a3508083906083b0406190e1704061516130406131a130204131e11020411201102041120110204113204113204113204133006113006132e06152c0817280a19240a1d200e1d1c101f18141f141621101a1f0e201d0a241b082819062a19042e15043015023213023411023413361136113611112611112611132213132015151e13020217161702021b0e1904043f04043d0606390808350a0c2f0c0e2b0e1223121a131a"},T:{t:56,l:1,w:38,h:56,m:"y1160116011601160116011601160116011601160116011601160116011607171717171717171116011601160116011601160116011601160116011601160116011601160"},U:{t:56,l:1,w:37,h:56,m:"y59185f12630e650c670a69086b066b065419045815045a15025c13025e11025e136011601160116011601160116011601160115e135e11025c13025a15025817025419046d046b066908670a650c630e5f125918"},V:{t:56,l:0,w:41,h:56,m:"y056c0d64135e1b56234e2b46333e3938023f300a3f28123f201a3f18223d12283f0a303f02383940314829502158195e135a17521f4a27422f3a37323d022c3b0a243d101c3d18143d200c3d28043f2e3b36333e2b46234e1d54155c0d64056c"},W:{t:56,l:0,w:39,h:56,m:"y234e3b364b265918630e6d0471712849422f521f4e23482940313a373239062c370e2c2f162c271e2c1f262c25202c2d182c351032370838394031462b4e23541d422f264b717171670a5d144f223f322948"},X:{t:56,l:0,w:39,h:56,m:"y0568050960090b5a0d0f540f134c131744171b3c1b1d361f212e23022326230406232021080a2318210c0c2312211010230a21141423022118183d1c1c3520202f2224272626212a242528202d241e33201a3b1c161f022318121f0a23140e1f1223100c1d1a230c081f202308041f2823041f30231b3621173e1d154419114c150d5411095c0d056409036a05"},Y:{t:56,l:0,w:39,h:56,m:"y056c09680d641160155c19581d541f52234e04234a0823460c234210233e14233a1823361c552051244d28492849244d20511c5518233616213a12213e0e21420a214606214a02234c21501d541958155c11600d640968056c036e"},Z:{t:56,l:3,w:33,h:56,m:"y620f114e13114a1711461b11421f113e23113a2711362b11322f112e33112a23041111262308111122230c11111e231011111a23141111162318111114211c111110212011110c21241111082128111104212c113130112d3411293811253c112140111d4411194811154c11115011601160116011"},a:{t:41,l:3,w:34,h:41,m:"x18191410290c0c2f0a0a3506083706063b04041910170204131a130204111e11020213201134113411341134113411182d12330c390a3b083d063f04171a1102151e110213201102112211112411112411112213112213112213112015131c17131a190213141d02170c210441063f082b02110a2704110e1f081114130e11"},b:{t:60,l:1,w:38,h:61,m:"y790279027902790279027902790279022e1914170a2c152013082c112811062a112c11042a0f300f042811301102280f340f02280f340f02260f380f260f380f260f380f260f380f260f380f260f380f260f3611261134112611340f02281130110228132c130228152813042a172017042a1d141b062c49062e450830410a323d0c3635103831123e251846171e"},c:{t:41,l:3,w:33,h:41,m:"x1a151414210e10270c0e2d080c31060a350408370408170c1702061514130204131a110204111c1304112e0211300211300211301132113211321132113211321132113211321132113202113002113002113002131e1104111c1304131a1102061512150206190c17020837040a33060c2f080e2b0a10270c141f101a1316"},d:{t:60,l:1,w:38,h:60,m:"y44171e3c2716382f1234370e323b0c303f0a2e43082c47062a1d121b062a171e1704281526130428132a130228112e1102261130110226113211260f3411260f360f260f360f260f360f260f360f260f360f260f360f280f320f02280f320f02280f30110228112e0f042a112a11042a132611062c151e15062e191219087979797979797979"},e:{t:41,l:2,w:36,h:41,m:"x1c131a1421141227100e2f0c0c330a0a3708083b060815101706061318150404131c13040411201302040f241102020f261102020f261102020f2811494949494949491138113811381138020f380211360211360411340413320415300615181304061b0e1704083d040a39060c35080e310a122b0c1623101c1716"},f:{t:60,l:4,w:31,h:60,m:"y260f44260f44260f44260f44260f44260f44260f44260f44260f44260f44260f44166310690c6d087106730673047502770215100f440211140f4413140f4411160f4411160f440f180f440f180f440f180f440f180f440f180f440f180f440f180f44"},g:{t:41,l:2,w:36,h:55,m:"y1a173e142536102d1e090c0c351a0d080a39180f06083d16110406411411040445121302041914191213020215201510130202112811140f02020f2c0f160f0f2e11140f0f300f160d0d320f160d0d340d160d0d340d160d0d340d160d0d340d160d0d340d160d0d340d160d020d300d180d020d300d160f020f2c0f160f040d2a0f180d0204112411160f0206112011161102081512171613026b046b0469066708650a630c610e5b14"},h:{t:60,l:4,w:32,h:60,m:"y79797979797979792c15382a133c2a113e28133e28114028114026114226114226114226114226114226114226134026134026153e28173a28512a4f2a4f2c4d2e4b304934453841"},i:{t:60,l:10,w:20,h:60,m:"y26114226114226114226114226114226114226114226114226114215121142151211421512114215121142151253151253151253151253151253151253151253"},j:{t:60,l:8,w:23,h:74,m:"y860f860f860f860f860f2611500f2611500f2611500f2611500f2611500f26114e1126114e111512114c11021512114a130215121146170215126b0415126b041512690615126906151267081512650a1512610e15125d12"},k:{t:60,l:2,w:36,h:60,m:"y79797979797979794411244215224019203e1d1e3c211c3a251a3829183615041516341508151432150c151230151015102e1514150e2c1518150c2a151c150a28152015082615241506261328150426112c1502260f3015260d3413260b381126093c0f2607400d2605440b26034809720774057603"},l:{t:60,l:8,w:23,h:60,m:"y63166b0e6f0a710873067504750477026017026413026613681168116a0f6a0f6a0f6a0f6a0f6a0f6a0f6a0f6a0f6a0f"},m:{t:41,l:0,w:40,h:41,m:"y5353535353535353060d40040b44020d44020b46020b460d460d4611425353535302510251044f044f021140020d44020d440d460d460d460f441142535302510251044f064d084b0c47"},n:{t:41,l:2,w:35,h:41,m:"y535353535353535308173406133a06113c04113e040f40020f42020f42020f420f440f440f440f440f440f440f441142114202114002153c0251044f064d064d084b0c470e45143f"},o:{t:41,l:0,w:39,h:41,m:"y1e171e182318122d141033100c390e0a3d0c08410a084308061b121b0604171e1704041326130402112e0f040211300f02020f320f02020d360d020f360f0d3a0d0d3a0d0d3a0d0d3a0d0d3a0d0d3a0d0d3a0d0f360f0f360d02020d340f02020f320f0202112e0f0404132613040415221306061b14190608430808410a0a3d0c0c390e103310142b14182318201320"},p:{t:41,l:1,w:38,h:55,m:"y6f6f6f6f6f6f6f6f081912192406151e1522041326132004112a112002112e111e020f320f1e020f320f1e0f34111c0f360f1c0f360f1c0f360f1c0f360f1c0f360f1c0f360f1c0f34111c1132111c020f320f1e02112e111e02132a131e041326132004171e1720061b1419220647220843240a3f260c3b2810332c142b3018233420153a"},q:{t:41,l:1,w:38,h:55,m:"y20153a182334142d2e10332c0c3b280a3f26084324064722061b1419220417201520041326132002132a131e02112e111e020f320f1e1132111c11340f1c0f360f1c0f360f1c0f360f1c0f360f1c0f360f1c0f360f1c020d34111c020f320f1e020f320f1e040f2e111e04112a1120061126132006151e152208171419246f6f6f6f6f6f6f6f"},r:{t:41,l:4,w:31,h:41,m:"y535353535353535308153606113c060f3e040f40020f42020d44020d440d460d460d460d460d460f44114213400219380219380417380417380615380813380c0f38100b38"},s:{t:41,l:2,w:35,h:41,m:"x1a191412270e0e2f0a0a35080839060839060617101704061318130404131c110404111e110404113204113204113204133004133006152c061d2408251a0a2b120c2f0c102d0a142d061c2704241f042e17023213023413361136113611112611021122130211221302131c15020219121902043f04063b060837080a310c0e2910161918"},t:{t:54,l:4,w:31,h:54,m:"y180f46180f46180f46180f46180f46180f46180f46180f46045514045b0e045f0a0263080265060267040269026b02180f321302180f3413180f3611180f380f180f380f180f380f180f380f180f380f180f380f180f380f180f3611180f360f02180f360f02180f341102180f341102"},u:{t:41,l:2,w:35,h:41,m:"y4112450e490a4b084d064f044f0451023e1302401342114211440f440f440f440f440f440f440d02420f02420f02401102400f043e11043c11063813083417085353535353535353"},v:{t:41,l:0,w:41,h:41,m:"y0350094a0f44153e1b381f34252e2b283122062f1e0c2f18122f12182f0c1e2f06222f02282b2e25341f3a194013460d42113c17361d32212c27262b02202b081a2d0c162b12102b180a2b1e042d222b28252e1f341b38153e0f44094a054e"},w:{t:41,l:0,w:39,h:41,m:"y0b481b382b283b184b085353530e452231361d3a19341f2e25262d202d0620270c201f1420191a20112220171c201d1620250e202b08262d2c27341f3a193c17282b163d02515353510241122f241f340f44"},x:{t:41,l:0,w:39,h:41,m:"y034e03054a050942090b3e0b0d3a0d113211132e131528171922191b1e19021d181906041d121908061d0c190c0a1d06190e0c1d021712102f1414271816231a1a1b1e1c191e1a1d1c182318142916122f120e190419100a1b081b0c081910190a041b141b061b1c190419201b172419132c151130130d36110b3c0d07420b0546094e055003"},y:{t:41,l:-1,w:43,h:55,m:"y036c056a09660d540f11500f134e0f174a0f1b460f1f4011213c13042134150208212c19020c212619040e21201b061221181d081621101f0a1a210a1f0c1e1f041f102239142631182a2b1a2e231e2e1f222a1f26261f2a221f2e1e1f321c1f34181f38141f3c101f400c1f44081f48061d4c021d501d521956155a115e0d620966056a036c"},z:{t:41,l:3,w:33,h:41,m:"x043b04043b04043b04043b04043b04043b04043b042c13042a130628150628130826130a24130c22130e2013101e13121c15121a15141a131618131816131a14131c12151c10151e0e15200c15220a15240a132608132806152804152a02152c152e133043434343434343"},"~":{t:60,l:0,w:41,h:13,m:"x10112605080c1b2007060a211a0b0408271411062d0e13064b02044d020217043304150e2b060211142508040d1a1f0a080720190c0a03280f10"},"!":{t:60,l:14,w:11,h:60,m:"y1b4a154b1a154b1a154b1a154b1a154b1a154b1a154b1a154b1a154b1a151b4a15"},"@":{t:62,l:0,w:39,h:62,m:"y220358160f261d1610151e2d0e0e1718370a0a1b163d06081d144104061f124304061f12450204151c191817020411201324130211221128110211220f2c0f020f240f2c0f11240f2c0f0f26112a0f0f281126110f28132211020f2a171815020f2645040f2643060f2641080f2643061124450411244702020f2447020211581302135a0f0413580f0415560f0617520f08194c1108273815020c6f020e6b041069041463061a590a204f0e2e3916"},"#":{t:60,l:1,w:37,h:60,m:"y52051c072c031e0b140f26091e0b0a19220d1e0b0221220d1e2d220d1833220d0e3d220d064104224b0c20431616451e0e49220443060b223f0e0b2235180b222f1e0b2221020d1e0b22170c0d1e0b20030f140d1e0b180b051e0d1e0b0e15220d1e0b041f220d1e2d220d1833220d103b220d0645224f0820471218451c0e49220445040b22410c0b2237160b222f1e0b222f1e0b221b080d1e092411120d1e032a091a0750"},$:{t:60,l:0,w:40,h:60,m:"y1c0f2c091a1817280d16141d260f14122124131010252213100e2920150e0e2b1e170c0c2d1e170c0c130a131e170a0a11101122130a0a11121122110a0a0f141122130808111611221108081116112211080811180f22110808111811201108080f1a1120110879797979797979080f1e131a110808111e111a110808111e111a11080a0f1e13180f0a0a0f201116110a0a111e1314110a0c111e1310110c0c1718170a130c0c171a2f0e0e151a2f0e10131c2b1012111e2712140f202314160d221f161a09241b184a111e"},"%":{t:59,l:2,w:36,h:59,m:"y0a135a061b480f041f441102233e1502233a1927341d0d0e0d321f0b120b2e1f040b120b2a1f080b120b261f0c0d0e0d241f0e27201f1202231e1f1602231a1f1a041f1a1d1e061b181f200a13181f24301f282e1d2c2a1f12130a261f121b06221f141f04201d1623021c1f182302181f1a27141f1e0d0e0d121d220b120b0e1d260b120b0a1f280b120b061f2c0d0e0d041d30271d3623021b382302173e1f0413441b060f4c130a"},"^":{t:61,l:0,w:39,h:31,m:"y3405063209042e0d042c110228172619221b02201b041c1d06181f08161d0c121f0e101f100c21120a2114062316042318251a231c211e231c251a0423180623160a21140c2112101f10121f0e161d0c181d0a1c1b081e1d04221b02241b28172c11022e0f02320904340506"},"&":{t:61,l:0,w:40,h:61,m:"y5211184c1d12140f26250e10191e290c0c23142f0a0a290e3308082d0a37060633063904063502170c1904044b14170204170a29181502021514211c13020213181d201302111e1b1e131322191c1311221f1a111120231811111e291411111c2d1211111c11041d0e11111a110a1b0c111316130c1b0a1102111413121b061102131013161b040f02021708151a2b02042f202702042d24250206292a1f0406272e1d040823321d020a1f32210e172e29120f2437443744374423060f44210c0b441b140944151e05440d2803"},"*":{t:60,l:0,w:40,h:39,m:"y2205281c0b28180f2814152616132616131c030818111a07061813140d041a111211021a111013021c110a191c11081b1c11061b021e110219061e290820230c410e3d1239163718371839163d12410e20230c1e29081e110219061c11061b021c11081b1c110a191a111013021a111211021813140d0418111a070616131c0308161326141526180f281c0b28220528"},_:{t:-6,l:-2,w:44,h:7,m:"x59595959595959"},"+":{t:52,l:1,w:37,h:43,m:"y240f24240f24240f24240f24240f24240f24240f24240f24240f24240f24240f24240f24240f24240f24240f245757575757575757240f24240f24240f24240f24240f24240f24240f24240f24240f24240f24240f24240f24240f24240f24"},"`":{t:56,l:6,w:28,h:22,m:"y032a0528072609240b220f1e111c131a1518171619141b121f0e210c230a25080225060623040823020c21101d141916171a131e0f220b26072805"},"-":{t:26,l:1,w:37,h:10,m:"x4b4b4b4b4b4b4b4b4b4b"},"=":{t:43,l:1,w:37,h:25,m:"x4b4b4b4b4b4b4b4b4a4a4a4a4a4a4a4a4a4b4b4b4b4b4b4b4b"},'"':{t:56,l:7,w:25,h:19,m:"y27272727272727272726262626262626272727272727272727"},"'":{t:56,l:15,w:9,h:24,m:"y313131313131313131"},"(":{t:60,l:8,w:23,h:61,m:"y3219302a2928243522203d1e1c451a184d16165114125712102316250e0e1d261f0c0a1d2e1d0a081b361b0806193e19060617421904041548170402154c1702155017135415115813115a110f5e0f0d600f0d620d"},")":{t:60,l:8,w:23,h:61,m:"y0d620d0d600f0f5e0f115a1111581313541515501702154c17020415481704041942190406193e1906081b361b080a1d2e1d0a0e1d261f0c102316250e125712165114184d161c451a203d1e2435222a2928321930"},"{":{t:61,l:1,w:37,h:61,m:"y3611343611343611343611343611343611343611343611343415323415323219302e1f2e16491c1059120c630c0a670a083504330806350833060433103104042b20290402174a17020213521302021156110202115611020211561102115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11"},"}":{t:61,l:1,w:37,h:61,m:"y115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11021156110202115611020211561102021352130202174a1702042b2029040433103104063508330608350433080a670a0c630c10591216491c2e1f2e321930341532341532361134361134361134361134361134361134361134361134"},"[":{t:61,l:5,w:29,h:61,m:"y7b7b7b7b7b7b7b7b115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11"},"]":{t:61,l:5,w:29,h:61,m:"y115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a11115a117b7b7b7b7b7b7b7b"},"<":{t:58,l:0,w:39,h:56,m:"x4c034a054609440b400f3e113a153817341b321d2e1d042c1d06281d0a261d0c221d10201d121e1b161a1d18181d1a141d1e121d200e1d240c1d26081d2a061d2c021d301d3219361b341d32041d2e061d2c0a1d280c1d26101d22121d20161b1e181d1a1c1b181e1d14201d12241d0e261d0c2a1d082c1d06301d02321d361938173c133e11420d440b46094a054c03"},">":{t:58,l:0,w:39,h:56,m:"x034c054a09460b440f40113e153a17381b341d32041d2e061d2c0a1d280c1d26101d22121d20161b1e181d1a1a1d181e1d14201d12241d0e261d0c2a1d082c1d06301d02321d3619341b321d2e1d042c1d06281d0a261d0c221d10201d121e1b161a1d18181b1c141d1e121d200e1d240c1d26081d2a061d2c021d301d3219361738133c113e0d420b440946054a034c"},"|":{t:61,l:16,w:8,h:75,m:"y9797979797979797"},":":{t:42,l:12,w:15,h:42,m:"x1f1f1f1f1f1f1f1f1f1f1f1f1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1e1f1f1f1f1f1f1f1f1f1f1f1f1f"},";":{t:42,l:5,w:30,h:58,m:"y72036e076a0b660f62135e175a1b561f5221024e23044a250646270842290a3e2b0c3a2d0e19222b10192229121922271419222516192223181922211a19221f1c19221d1e19221b20192219221922172419221526192213281922112a19220f2c"},".":{t:13,l:12,w:15,h:13,m:"x1f1f1f1f1f1f1f1f1f1f1f1f1f"},",":{t:13,l:5,w:30,h:29,m:"y38033407300b2c0f28132417201b1c1f1821021423041025060c270808290a042b0c2d0e2b102912271425162318211a1f1c1d1e1b201922172415261328112a0f2c"},"\\":{t:61,l:4,w:32,h:62,m:"y05780b720f6e156819641f5e235a2954042950082b4a0e2946122b4018293c1c2b36222932262b2c2c2928302b2236291e3a2b1840291446290e4a290a50290454295a235e1f641968156e0f720b7805"},"?":{t:62,l:0,w:39,h:62,m:"y1613541217540e1b540c1d540a1f5408215406235406235404255404255404196002176402156602136813541713541711561711320f1617112e131617112c151617112a171617112819161711261b161713221d161713201f161702131c21161702131a192017021714192217021b0c1b3a043d3c043b3e0637400635420831440a2d460c29480e234c121b50161354"},"/":{t:61,l:4,w:32,h:62,m:"y780574096e0f6a1364195e1f5a2354295029044a2b0846290e402b123c2918362b1c302b222c2b26262b2c222b301c2b3618293c122b400c2b46082b4a022b502954235a1f5e196415680f6e0b720578"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["10-09"]={h:63,w:45,g:{0:{t:63,l:0,w:44,h:63,m:"y282d2a1c471c145516105f100c670c0a6b0a086f08067306042b222b04041b401d0402174c190202155215020213561302021356130202135615135a13135a13135a13135a13135a13135a13135a13135a13135a13135a13135a13135a13135a13135a131358130202135613020213561302021552150202194a1704041d401b040429262706067306086f080a6b0a0c670c105f101655141e451c2a2d28"},1:{t:63,l:9,w:26,h:63,m:"y18194e1817501617521419521219541217561017580e19580c195a0c175c0a175e081760061960061762041764021766196617687f7f7f7f7f7f7f7f"},2:{t:64,l:2,w:40,h:64,m:"x1a1b1c1229160c3312063d0e04410c02450a024708024906024b04021d121d040215201902020f281702020b2e150202053615020338153e133e133e133e133e133e133c13023c13023a15023815043617043417063217082e190a2c1b0a281b0e241d10221d121e1d161c1d18181d1c161b20121d22101b260e1b280c192c0a192e0a153208153406153606133804153804133a04113c02133c02113e02113e02113e133e133e4f024f024f024f024f024f024f024f024f02"},3:{t:63,l:1,w:43,h:63,m:"x51065106510651065106510651065106510636190834190a32190c30190e2e19102c19122a191428191626191824191a22191c20191e1e19201c19221a1924181926162120162918162d1416311016350c16370a163908302106361b063a19043e15044015024213024213024413441344134413441344134215421542154015023e17023c190205341b040b2a1d06151a23064f084d0a4b0c490e47104314043b180a2f1e141d26"},4:{t:63,l:1,w:42,h:63,m:"y4e171a4a1b1a461f1a42231a3e271a3a2b1a362f1a32331a2e371a2a2702131a262706131a22270a131a1e270e131a1a2712131a162716131a12271a131a0e271e131a0a2722131a062726131a02272a131a252e131a2132131a1d36131a193a131a153e131a1142131a0d2c470930470336473847384738473847384752131a52131a52131a52131a52131a52131a52131a52131a"},5:{t:63,l:3,w:38,h:64,m:"x04450404450404450404450404450404450404450404450402470402133802133802133802133802133802133802133802133802113a02113a02113a02113a022526311c37163b123d10410c430a450845082423062c1d0430190434170236150238130238153a133a133a133a133a133a133a133a1338153813023615023417023217043019042c1b06281d082223081a290a410c3d103b123716331a2f1e29241f2e0944"},6:{t:63,l:0,w:44,h:63,m:"y4817204027183a3114363910323f0e30430c2c490a2a4d08265306242b0e1d062229161b041e291e17041c292217021a2926150218170213261502141902132a1302121904132a15101906132a150e1908112e130c1908132e130a190a132e1308190c132e1306190e132e13041910132e13021912132e131914132e131716152a151518152a1302131c132a1302111e152615020f20172217020d24152215040b26171c190409281b161906072c1d0e1d06053043080332410a363f0a383b0c3a370e3e2f12402b144423184c1320"},7:{t:63,l:1,w:43,h:63,m:"y136c136c136c136c136c136c136c136c136c134a2313402d133a3313363713323b132e3f132c41132845132625221322232813201f2e131c1f32131a1d3613181b3a13161b3c1314194013121942130e1b44130c1948130a194a1308194c1306194e2f502d522b5429562758255a215e1f601d621b641768116e"},8:{t:63,l:0,w:44,h:63,m:"x20172218271a1233141039100c3f0e0a430c08470a084908064b08061b161b080417221706041526150604132a130604112e110604112e110604112e110604112e110606112a11080613261308081322130a08171a170a0a1912190c0c1b0a1b0e0e3b10123512142f161829181a231c18271a142f161233140e3b100c3f0e0a1f0a1b0c081d121b08061b18190806172017060417241704041528150402152c150202133013021530130213341313341313341313341313341313341315301515301502152c15020219261702021b201b020421121f04045104064d06064b0808470a0c410c0e3d0e123512162b181e1b20"},9:{t:63,l:0,w:45,h:63,m:"y20134c1a2144162940122f3e10353a0c3b380a3f360a3f36081b0e1b3203061916192e0506171a172c0704171e17280904152215260b02152615220d02152615200f02132a131e1102132a151a13132e131815132e131617132e131419132e13121902132e13101904132e130e1906132e130c1908132e130a190a132e1308190c132e1108190e152a1306191002132a130417140215282b160215262b180217222b1a041720291c04191a2b1e0619162922061d0e2b24085126084d2a0a492c0c43300e3d34123538162d3c1a2342221548"},A:{t:63,l:0,w:46,h:63,m:"y7a05740b6c13641b5e2156294e314639403f38473047082847102245181a45201249240a512404410413243d0c1324351413242d1c1324252413241d2c132415341324153413241f2a1324272213242f1a132439101324410813245b240457240c512214511a1c511224510a2c5102344b3c43443b4c33542b5c23641b6c13740b7c03"},B:{t:63,l:1,w:43,h:63,m:"y7f7f7f7f7f7f7f7f132211281313221128131322112813132211281313221128131322112813132211281313221128131322112813132211281313221128131322112813132211281313221128131322112813132211281313221128131520112813152011261502131e15241502151c15241502151a19201502021718192015020417121f1c1702041b0c25141904064d0c1d040637023b060833043b060a310439080c2d08350a0e290c310c1223102b10161b1627121c111e1d1850111e"},C:{t:64,l:3,w:38,h:65,m:"y321f322835262043201a4f1a165716125f121063100c6b0c0a6f0a082b1e2b080623322108061d3e1d06041b461b0404174e17040217521702021556150202135a1302155a15135e13135e13135e13135e13135e13135e13155a15155a150215561502021752170202194c1b02041b441d04041b441d040619441b0608174419080a1544170a0c1344150c0e1144130e120d440f121609440b16"},D:{t:63,l:4,w:37,h:63,m:"y7f7f7f7f7f7f7f7f135c11135a13135a13135a1302115a1302135811020213581102021356130204135413020415501304061350130406154c1504081548150608174417060a174017080c193a19080c1b36190a0e1d2e1b0c1021241d0e122516250e145b101655141a4f161c4b1820431c243d1e2833242e2928361930"},E:{t:63,l:3,w:38,h:63,m:"x4b024b024b024b024b024b024b024b024b02113c113c113c113c113c113c113c113c113c113c113c113c113c113c113c113c113c450845084508450845084508450845084508113c113c113c113c113c113c113c113c113c113c113c113c113c113c113c113c113c113c113c4d4d4d4d4d4d4d4d4d"},F:{t:63,l:6,w:32,h:63,m:"y7f7f7f7f7f7f7f7f1322133813221338132213381322133813221338132213381322133813221338132213381322133813221338132213381322133813221338132213381322133813221338132213381322133813221338136c136c136c136c"},G:{t:64,l:1,w:42,h:65,m:"y2e25302439261e471e1a4f1a165716145d121063100e670e0c6b0c0a291c2b0a0a212e2308081d3a1d08061b421b06061948190404174e170404155215040217541502021556150202135a130202135a151528132015132a132213132a132213132a132213132a132213132a132213132a132213132a132213132a132213132a1322130213281322110202132813201302021526132013020415241320130204172245020615224304061522430408132243040a112241060c0f224106100b2241061407223f08"},H:{t:63,l:2,w:40,h:63,m:"y7f7f7f7f7f7f7f7f3413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413387f7f7f7f7f7f7f7f"},I:{t:63,l:6,w:32,h:63,m:"y6c136c13135a13135a13135a13135a13135a13135a13135a13135a13135a137f7f7f7f7f7f7f7f135a13135a13135a13135a13135a13135a13135a13135a13135a13135a13135a136c136c13"},J:{t:63,l:6,w:32,h:64,m:"y561516561912561d0e56210a5623085625065625065627046619026a15026c13026c156e136e136e136e136e136e136e136e136c156c13026a15026619027d047b067b067908770a730e6f126b16"},K:{t:63,l:-1,w:47,h:63,m:"y7f7f7f7f7f7f7f7f321736301b342e1f322c23302a272e282b2c262f2a2419021928221906192620190a19241e190e19221c191219201a1916191e18191a191c16191e191a1419221918121926191610192a19140e192e19120c193219100a1936190e08193a190c06193e190a04194219080219461906194a1904174e1902155219135617115a150f5e130d62110b660f096a0d076e0b0572090376077a057c03"},L:{t:63,l:2,w:41,h:63,m:"y7f7f7f7f7f7f7f7f6c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c13"},M:{t:63,l:0,w:44,h:63,m:"y7f7f7f7f7f7f7f7f17681d62255a2b54314e3748043b400a3b3a103b34163d2c1c392a22332a282d2a2e272a2e272a282d2a22332a1c392a163d2c103d320a3d38043b403946314e2b54255a1d6217687f7f7f7f7f7f7f7f"},N:{t:63,l:2,w:41,h:63,m:"y7f7f7f7f7f7f7f7f215e255a295604295208294e0c294a10294614294218293e1c293a202b34242b30282b2c2c2b283229243629203a291c3e29184229144629104a290c4e2908522b0256295a257f7f7f7f7f7f7f7f"},O:{t:64,l:0,w:44,h:65,m:"y321f32283328223f221e491c1a5118165914125f1210650e0c6b0c0a291e290a0821322108081b3e1d06061946190604174e170404155215040215561502021358150202135a1302135c15135e13135e13135e13135e13135e13135e13155a1502135a130202155615020215561502041552150404194c17040619461906081d3c1d060a213021080a291e290a0c6b0c10650e125f121659141853181e491c223f22283328321f32"},P:{t:63,l:2,w:41,h:63,m:"y7f7f7f7f7f7f7f7f132613341326133413261334132613341326133413261334132613341326133413261334132613341326133413261334132613341326133413261334132613341326133415221534152213361520153602151e153602171a17360417161738041b0e1b38063f3a063f3a083b3c0a373e0c33400e2f42122746161f4a1c1350"},Q:{t:64,l:-1,w:48,h:64,m:"y2c23322237281c4322184b1e14531a1059180e5f140c63120a671008271c290e06212e210c061b3a1b0c041942190a041548170a02154c170802152c051e150802132e071e1308152e091c150613300d1a130613300f18130613301116130613301512130613301710130613301b0c1306152e1d0815060213301d061308021530330802153231080417302d0a041932290a061b30250c06212c210e08291c290c0a6d0a0c6d080e6f04126d02146d1849061b1c410c19223714152e2120137011740d760b78097c057e03"},R:{t:63,l:2,w:40,h:63,m:"y7f7f7f7f7f7f7f7f1326133413261334132613341326133413261334132613341326133413261334132615321326192e13261d2a13262126132625221522292015222d1c021322311802151e371402171a15042510021916150a230e041b0e190c250a0441102506063d16250208391c230a371e210c33241d0e2d2c1912273017161f38131c13420f740b76097a05"},S:{t:64,l:3,w:39,h:65,m:"y5e0d185e11141a11341510141d2e170e10252a190c0e29281b0a0c2d261d080a31241f060835221f060637241f04063928190404190c192a1702041710172c1502021714172a1502021518152c1502131c152a15151e132c131320152a131322132a131322152813132413281313241526131326132613132615221515261322151526151e1502021328151c15020215261718170202172617141704041924190c1b04041f1e3d06061d203b06081b223708081b24330a0a1924310c0c17282b0e10132a251212112e1f14180b34131a"},T:{t:63,l:1,w:42,h:63,m:"y136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c7f7f7f7f7f7f7f7f136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c"},U:{t:63,l:1,w:42,h:64,m:"y631e6b166f127110730e770a770a79085e1d066417066617046815046a15026a15026c13026c156e136e136e136e136e136e136e136e136e136e136c156c13026a15026a1502681702661704641904601b067b067908770a750c730e6f126b16631e"},V:{t:63,l:0,w:46,h:63,m:"y07780f7017681d62255a2d52354a3d42433c0447340c472c1447241c471c2445162a470e3247063a45423d4a35522d5827601f68176817601f5827522d4a35423d3a430232430a2a45102245181a45201445260c452e044536413e3b44334c2b54235c1d62156a0d72057a"},W:{t:63,l:0,w:44,h:63,m:"y255a3d424f305d226916750a7d027f05205b3c434c3358275c23542b4e3146393e41383f08303f10303718302f2030272830252a302d2230351a303d12363f0a3e3f02443b4c33522d5a255c234e313c43051e5d7f7f77086d12631c552a433c2d52"},X:{t:63,l:0,w:45,h:63,m:"y037a03057605096e090d660d115e111358151750191b4a1b1f421f233a2325342702272c270406272427080a271c270c0e2716251010271025141427082518184b1c1c4320203b24243328262f2a2a272e2a272e262f2a243526203d221c451e182304271a16210c251812211227140e211a27100a2320270c062328270804213027042138271d40231b461f174e1b1354190f5c150d6211096a0d0572097a05"},Y:{t:63,l:1,w:43,h:63,m:"y057a09760d72116e156a19661b641f60235c27580427540827500c274c1027481427441a25401e253c225d26592a552e512e512a552659225d1e253c1a25401625441225480e254c0a2550062554022558255a215e1d621966156a116e0d7209760778037c"},Z:{t:63,l:4,w:37,h:63,m:"y6e1113581513541913501d134e1f134a2313462713422b133e2f133a331336371332270213132e270613132c250a131328250e1313242512131320251613131c251a131318251e1313142720131310272413130c272813130a252c1313062530131302253413353813313c132d4013294413254813214c131d5013195413175613135a136c136c13"},a:{t:47,l:3,w:38,h:48,m:"x1c1b1614291010310c0e37080a3d060a3d06084104061d10170406171a150206152011020415221102041326113c113c113c113c113c113c111e2f1637103d0e3f0a4308450647041b1e1104152411021526110213281102112a11112c11112a13112a13112a1311281511281513241713221902131e1b0215181f02190e2504490647083302110a2d06110c29081110210c11181322"},b:{t:68,l:1,w:42,h:69,m:"y890289028902890289028902890289023619161d0a341522190832132a150830113213062e113613042e113811042c113a13022c0f3e11022c0f3e11022a1140112a0f42112a0f42112a0f42112a0f42112a0f42112a0f42112a0f42112a113e132a113e11022c113a13022c113a13022c133613042e133215042e172a17063019221b06301f161f08324f0a344b0c36470e3a41103c3d1242331646291c4e1924"},c:{t:47,l:4,w:37,h:48,m:"y2419241c291c183316143b121041100e470c0c4b0a0a4f08081d181f06061728170604153015040413341304021338130202113c1102020f400f02020f40110f440f0f440f0f440f0f440f0f440f0f440f0f440f114011113e1302113c1102021336150202153217020219281b040417281b0406152819060615281708081328150a0a1128130c0c0f28110e100b280f101407280916"},d:{t:68,l:1,w:42,h:69,m:"y4e1b2246291c4035163c3d123a411036470e344b0c324f0a321f141f0830192419062e172c15062e133215042c133613042c113a13022c113c11022a11400f022a1140112a0f42112a0f440f2a0f440f2a0f440f2a0f440f2a0f440f2a0f440f2a11400f022c0f400f022c0f400f022c113c0f042e113811042e11361106301132130632132c1308321724150a341b161b0c89028902890289028902890289028902"},e:{t:46,l:2,w:41,h:47,m:"x20151e182516142d1212311010370c0c3d0a0c3f080a1b0e190808171a150608151e130606152213040613261104041328130204132a110202132c110202132c110202132c13025153535353535353134013401340134002114002133e02133e02133e04133c04133c04153a061522150206171e150408191817040a1d0e1b040c41060e3f06103b0812370a162f0e1a271222171a"},f:{t:68,l:5,w:35,h:68,m:"y2c114c2c114c2c114c2c114c2c114c2c114c2c114c2c114c2c114c2c114c2c114c2c114c2c114c1a6f12770e7b0a7f0881068306830485021912114c021516114c021318114c131a114c131a114c131a114c111c114c111c114c111c114c111c114c111c114c111c114c111c114c111c114c"},g:{t:47,l:2,w:40,h:62,m:"y20174618273e143122090e10391e0d0a0c3f1c0f080a451811060849161304064b161304061d141d1415020417221912150204152815121502021330131213020211341114130211341116111138111411113811160f0f3c0f160f0f3c0f160f0f3c0f160f0f3c0f160f0f3c0f160f0f3c0f160f0f3c0f160f113811160f020f380f180f020f380f161102113411160f0204113011180f0206112c13180f0206132813181102081520151813020a19141918130402770402750602730802730802710a026d0e026b10026516"},h:{t:68,l:4,w:37,h:68,m:"y898989898989898932193e3215423015442e15462e13482c134a2c134a2c134a2c114c2a134c2a134c2a134c2a134c2a134c2a134c2a134c2a154a2a154a2c15482c17462c1b422e5b305930593257345538513c4d4247"},i:{t:68,l:10,w:24,h:68,m:"y2c134a2c134a2c134a2c134a2c134a2c134a2c134a2c134a2c134a2c134a2c134a1914134a1914134a1914134a1914134a1914134a19145d19145d19145d19145d19145d19145d19145d19145d"},j:{t:68,l:10,w:25,h:84,m:"y9811981198119811981198112c135a112c135a112c135a112c135a112c135a112c1358132c135813191413561302191413561302191413541502191413501704191479041914790419147706191475081914730a1914710c19146d1019146716"},k:{t:68,l:3,w:39,h:68,m:"y89898989898989894e13284c17264a1b24481f2246232044271e422b1c401702171a3e170617183c170a17163a170e17143817121712361716171034171a170e32171e170c301722170a2e172617082c172a17062c152e17042c133217022c1136172c0f3a152c0d3e132c0b42112c09460f2c074a0d2c054e0b2c035209820784058603"},l:{t:68,l:9,w:26,h:68,m:"y6f1a77127b0e7f0a81088306850485046c1b02701702741302741576137613781178117811781178117811781178117811781178117811"},m:{t:47,l:0,w:45,h:47,m:"y025d025d025d025d025d025d025d025d080f48060d4c040d4e040b50020d50020d500f500f50114e134c5f5f5f025d025d045b0659065904154604114a020f4e020f4e0f500f500f500f500f50114e134c5f025d025d045b065908570a55104f"},n:{t:47,l:2,w:40,h:47,m:"y025d025d025d025d025d025d025d025d0c173c0a154008134406134606114804114a040f4c02114c020f4e020f4e0f500f500f500f500f500f500f500f50114e114e02114c02134a0215480417440659065908570a550c530e51124d1847"},o:{t:47,l:0,w:44,h:48,m:"y2419241c291c1831181439141041100e450e0c490c0a4d0a081f141f08081920190806172a150604153015040413341304041138110402113c110202113c1102020f400f021140110f440f0f440f0f440f0f440f0f440f0f440f0f440f0f440f11401111400f02020f3e110202113c110202133811040411361304041530130606152c15060619241708081f161b0a0a4d0a0c490c0e4310103f121439141831181e251e261526"},p:{t:47,l:1,w:42,h:62,m:"y027b027b027b027b027b027b027b027b0a1d161b26081724172406152c152206113411220411381120040f3c0f2002113c111e020f400f1e020f400f1e0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c1140111c020f400f1e02113c111e02113c111e0411381120041334132006152c15220619241922081d181d240a4d260c49280e452a10412c1439301831341e253a261542"},q:{t:47,l:1,w:42,h:62,m:"y2617401e273818313414393010412c0e452a0c49280a4d26081f161d24061926172206152e13220413341320041138112002113c111e02113c111e020f400f1e1140111c0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c020f400f1e020f400f1e02113c111e040f3c0f200411381120061134112208132c152208172417240a1b181b26027b027b027b027b027b027b027b027b"},r:{t:47,l:5,w:34,h:47,m:"y025d025d025d025d025d025d025d025d0a173e08134408114606114804114a040f4c020f4e020f4e0f500f500f500f500f500f50114e114e02114c021548021d40041b40041b400619400817400a15400e1140140b40"},s:{t:47,l:3,w:38,h:48,m:"x1c19181429100e330c0c370a083d080641060641060419121b0404151a170402132015040213221304021124130402113a02113a02113a021338021338041336041930061f2806291e082f160a33100e330c12310a182f061e2906282104301b023615023a11023a133c113c113c11132a1113281313281315241302171e1702021b121b04024704044306063f08083b0a0c330e102914161b1c"},t:{t:60,l:5,w:35,h:61,m:"y1a11501a11501a11501a11501a11501a11501a11501a11501a1150045f18046710026d0c026f0a0271087506770477041a113817021a113c13021a113e131a1140111a1140111a11420f1a11420f1a11420f1a11420f1a11420f1a1140111a1140111a11400f021a113e11021a113e11021a113c11041a113c11041a113a1106"},u:{t:46,l:2,w:40,h:47,m:"y49164d12510e550a5708590659065b044617024a13024c11024e114e114e11500f500f500f500f500f500f500f4e0f024e0f024e0f024c11024c0f044a110448110646130644130840150a3a190c5d025d025d025d025d025d025d025d02"},v:{t:46,l:0,w:46,h:46,m:"y05580b52114c17461b42213c27362d30312c0235260637200c371a1237141835101e350a2435042a33302d36273c21421b48154e0f4c114617421b3c213627302d2c2f02262f0820310c1a3112162f1810311c0a31220431282f2e2b3225381f3e194415480f4e09540558"},w:{t:46,l:0,w:44,h:46,m:"y0f4e1f3e2f2e3f1e4f0e5d5d5d5d124b26373a2344193c213627302d2a3102243108242910242316241d1c241524241722241d1c242514242b0e2431082a33322b38253e1f46173a232637124b5d5d5d5d4f0e3d202d301d400b52"},x:{t:46,l:0,w:44,h:46,m:"y035803055207094c090b480b0f400f113c11133813173017192c191b261d1f201d02211c1b060221161d080621101b0c0a1f0a1d0e0c21041b12103914123318162d1a1a251e1c2120201b22201d201c251c1a291a163116123714101d041d100c1d0a1d0e081f0e1f0a061d161d08021f1a1f041d201f021b261d172c1b1532171336150f3c130d420f09480d074c0b03540758055a03"},y:{t:46,l:-1,w:48,h:62,m:"y037a07760b720f5e11115c111558111954111b52111f4e112348132740150204253c17020825341b020c252c1d041025241f061423201f08162518210a1a2510230c1e2508250e22230225122641162a391a2e311e3229223425243025282e232c2a23302623342223381e233c1c233e18234214234610234a0c234e0a2152062156022358215c1d6019641568116c0d700b720776037a"},z:{t:46,l:4,w:37,h:46,m:"x0443040443040443040443040443040443040443040443043215043015062e17062c17082a170a2a150c28150e2615102415122217122017141e17161c17181a171a1a151c18151e1615201417201217221017240e17260c17280a172a0a152c08152e06172e041730021732173415364b4b4b4b4b4b4b4b"},"~":{t:68,l:0,w:46,h:15,m:"x140f2e030a10172807080c21200b060a271c0d04082d16110206330e1704590259025904190c33060213142d08040f1a270a060b20210c0807261b0e0a032e1112"},"!":{t:68,l:16,w:13,h:68,m:"y1b58174b2817571c17571c17571c17571c17571c17571c17571c17571c17571c174b28171b5817"},"@":{t:69,l:1,w:43,h:70,m:"y1e092e1f1a16112431121215203b0c0e191c43080c1b1a47060a1d184b04081f164d040621161b181d02061b1c13261702041720112e150413241130130213260f34110213260f34110211280f34110211280f34111328113211112c112e13112c132a1302112e15241502112e1b181904112a4d06112a4b08112a490a112a4b08112a4d0613284f0402112851020211641502021366130413661104156411061562110617601108195a130a1d5213020c2b3a1b020e7d021277041473061a6b081e630c265710363d1a"},"#":{t:68,l:1,w:42,h:68,m:"y5c072007560d16112c09220d0e19280d220d0621280d2233280d2233280d183d280d0e47280d06490628530e264b181e4b20144f260a4b020d26024b0a0d2643140d263b1c0d2635220d2625040d220d261d0c0d220d2613160d220d1c0b0b1e0d220d1413280d220d0a1d280d2233280d2233280d1a3b280d1243280d084d285908284f12204f1a164f240e5526044d060d2647100d263f180d2635220d2635220d2623060d220d2619100d22072c11180b560722055c"},$:{t:68,l:0,w:45,h:68,m:"y200f320b1e1c192c0f1a181f2a111816232813161229261514122b241712102f2219100e33201b0e0e33201b0e0c170a1722170e0c15101326150c0c13141326130c0c13161126130c0a13181126150a0a13181326130a0a131a1126130a0a131a1324130a0a131a1324130a0a131c1124130a898989898989890a1320131e130a0a1320131e130a0a1322131c130a0a1322131c130a0c1122131c110c0c11241318130c0c13221318130c0e171e1314130e0e1b1a1510150e10191c170a170e10191c351012171e331014151e31121613202d1418112229161a0f242518200926211a501b1e561122"},"%":{t:66,l:1,w:43,h:66,m:"y100b6a0a1764061d540f04234c1302274617022744192b3e1d110a113a210d120d3623020d120d3421060d120d3023080d120d2c230c0d120d282310110a112621142b222316022720231a02251e231e04231c2122061d1c21260a171a2328100b1c232c34213030211a0b102c2316170a2823161d08262118230422211a27021e231c27021a231e2b182122110a111421260d120d1023280d120d0c232c0d120d0a21300d120d0621340d120d022336110a11213a2b1d40270219442504154a2304134e1d080f56170a6a0b10"},"^":{t:68,l:0,w:45,h:35,m:"y3a0508380906340f043213022e192c1b281d02261d04221f06201f081c210a18230c16230e1225101025120c27140a271606291804291a2b1c291e272025222720291e2b1c04291a0629180a27160c271410251212251016230e18230c1c210a201f08221f06261d04281d022c1b2e19321302340f043809063a0508"},"&":{t:68,l:0,w:45,h:68,m:"y5c131a561f1416112c2512121b222d0e0e251a310c0c2b14350a0a2f10390808350a3d06063b043f0606570c1d04045514190404190c2f181902021914271c170202151a232015020213201f221515241d201513261f1e151326231c131324271a1313222d16131320311413131e15041d1213131e13081f0e13151a130c1f0c13151815101f081302151415141f0613021710151a1d04110202190a171e2f020435222d02043526270406312a2504082b3023040829361f040a253a1f020c21322b1019243d1411283d4c3d4c3d4c2904114c250c0d4c1f140b4c191c094c0f2a058603"},"*":{t:67,l:1,w:43,h:44,m:"y2405301e0d2e1a112e16152e16172c181520030a18151e07081a151a09081a15160f061c131413041c151015041e130c1b021e130a1f2013061d042013041d06202f0a222b0c49104712431641183d1c4118431647124910222b0c202f0a2013041d062013061d041e130a1f1e130c1b021c151015041c131413041a15160f061a151a090818151e0708181520030a16172c16152e1a112e1e0d2e240530"},_:{t:-7,l:-2,w:49,h:8,m:"x6363636363636363"},"+":{t:59,l:1,w:42,h:49,m:"y2a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11286363636363636363632a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a1128"},"`":{t:63,l:6,w:32,h:25,m:"y0330052e072c0b280d260f2411221320151e171c1b181d161f1421122310250e290a2b08022b060629040829020c271023141f181b1a191e152211260d280b2c073003"},"-":{t:29,l:1,w:42,h:11,m:"x5555555555555555555555"},"=":{t:49,l:2,w:41,h:29,m:"x5353535353535353535252525252525252525252535353535353535353"},'"':{t:63,l:8,w:29,h:21,m:"y2b2b2b2b2b2b2b2b2b2b2a2a2a2a2a2a2a2a2a2b2b2b2b2b2b2b2b2b2b"},"'":{t:63,l:17,w:11,h:26,m:"y3535353535353535353535"},"(":{t:68,l:9,w:26,h:69,m:"y3a1938302d2e2a39282641242249201e511c1a571a185d1614631412291629120e2526250e0c2132210c0a1f3a1f0a081d421d08061d461d0606194e190604195219040219561902195a19175e17156215136415116813116a110f6e0f0f6e0f"},")":{t:68,l:9,w:26,h:69,m:"y0f6e0f0f6e0f116a11116813136415156215175e17195a190219561902041952190406194e1906061d461d06081d421d080a1f3a1f0a0c2132210c0e2526250e1229162b10146314185d161a571a1e511c2249202641242a3928302d2e3a1938"},"{":{t:69,l:1,w:42,h:70,m:"y3e133c3e133c3e133c3e133c3e133c3e133c3e133c3e133c3e133c3c173a3c173a3a1b38381f362c2f32165d1a1069140c730e0a3d02390c083d06390a083d063b08063b0c3b0604391439040423342f04021956190402175c17020215601502021364130202136413021564151368131368131368131368131368131368131368131368131368131368131368131368137a13"},"}":{t:69,l:1,w:42,h:70,m:"y7a131368131368131368131368131368131368131368131368131368131368131368131368131564130202136413020213641302021560150202175c170204175619040423342f040439143706063b0c3b06083d063b08083d06390a0a3d02390c0e710e106914165b1c2c2f32381f363a1b383c173a3c173a3e133c3e133c3e133c3e133c3e133c3e133c3e133c3e133c3e133c"},"[":{t:68,l:6,w:33,h:68,m:"y898989898989898989136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413"},"]":{t:68,l:6,w:33,h:68,m:"y136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413898989898989898989"},"<":{t:65,l:0,w:44,h:62,m:"x5405520750094c0d4a0f4613441540193e1b3a1f38213421043221062e210a2c210c282110262112241f162021181e1f1c1a211e181f22142124121f280e212a0c1f2e082130061f340221361f3a1d3c1d3c1f3a021f38061f34081f320c1f2e0e1f2c102128141f261621221a1f201c1f1e201f1a221f18242114281f122a210e2e1f0c302108341f06362102381f023c1b023e1902421502441302480f024a0d024c0b02500702520502"},">":{t:65,l:0,w:44,h:62,m:"x0554075209500d4c0f4a1346154419401b3e1f3a21380421340621320a212e0c212c102128122126161f241821201c1f1e1e211a221f18242114281f122a210e2e1f0c302108341f0636210238213c1d3c1d3a1f362102341f063021082e1f0c2a210e281f12242114221f181e211a1c211c1821201621221221261021280c212c0a212e062132042134021f381f3a1b3e19401544134611480d4c0b4e07520554"},"|":{t:69,l:18,w:9,h:84,m:"ya9a9a9a9a9a9a9a9a9"},":":{t:47,l:14,w:17,h:47,m:"x2323232323232323232323232323222222222222222222222222222222222222222323232323232323232323232323"},";":{t:47,l:6,w:33,h:65,m:"y7e057a09760d72116e156a19661d62215e255a2702562904522b064e2d084a2f0a46310c42330e1d2631101d262f121d262d141d262b161d2629181d26271a1d26251c1d26231e1d2621201d261f221d261d241d261b261d2619281d26172a1d26152c1d26132e1d261130"},".":{t:14,l:14,w:17,h:14,m:"x2323232323232323232323232323"},",":{t:14,l:6,w:33,h:32,m:"y3c053809340d30112c152819241d20211c25182702142904102b060c2d08082f0a04310c330e31102f122d142b162918271a251c231e21201f221d241b261928172a152c132e1130"},"\\":{t:68,l:4,w:37,h:69,m:"y038807840d7e117a17741b70216a25662b602f5c062f560a2f52102f4c142f481a2f421e2f3e242f38282f342e2f2e322f2a382f243c2f20422f1a462f164c2f10502f0c562f065c2d02602b66256a21701b74177a117e0d84078803"},"?":{t:69,l:0,w:44,h:69,m:"y1a1160141760101b600e1d600c1f600a2160082360082360062560062560042760042166021b6e021970021772021772175a1b175a1b155c1b153411181b153213181b152e17181b152c19181b152a1b181b15281d181b15281d181b17241f181b172221181b02171e23181b02191a25181b021b141d241b021f0c1f261b044542044344063f46063d4808394a08394a0a334e0c2f500e2b52102556141d5a1a1160"},"/":{t:68,l:4,w:37,h:69,m:"y880382097e0d781374176e1d6a216427602b5a2f02562f06502f0c4c2f10462f16422f1a3c2f20382f24322f2a2e2f2e282f342231381e2f3e183142142f480e314c0a2f520431562f5c2b602566216a1b701774117a0d7e07840388"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["10-10"]={h:70,w:50,g:{0:{t:71,l:1,w:48,h:72,m:"y303130224d221a5d1a1469141071100c790c0a7d0a088108068506062f28310404214623040419561b0402195c1902021760170202156415020215641502021564171568151568151568151568151568151568151568151568151568151568151568151568151568151568151566150202156415020215641502021760170202195c1704041b541b04042346210404312c2b060685060881080a7d0a0c790c1071101469141a5d1a244b22322f30"},1:{t:70,l:10,w:29,h:70,m:"y1c1b561a1b58181b5a18195c161b5c141b5e121b601219621019640e1b640c1b660c19680a196a081b6a061b6c06196e041970021b701b7219748d8d8d8d8d8d8d8d8d"},2:{t:71,l:3,w:44,h:71,m:"x1e1b20142d180e371408411004470e024b0c024d0a024f0802510602530402211221040217221d0202112a1b02020d3019020209361902053c1742174415441544154415441544154215024215024017024015043e17043c17063a1906361b08341b0a301d0c2e1d0e2a1f10262112241f162021181e1f1c1a1f20181f22161d26121f28101d2c0e1d2e0c1b320c19340a193608193808173a06173c06153e041540041540041342021542021344021344021344154415445702570257025702570257025702570257025702"},3:{t:70,l:1,w:48,h:71,m:"x5b065b065b065b065b065b065b065b065b065b06401b063c1d083a1d0a381d0c361d0e341d10321d12301d142e1b182c1b1a2a1b1c261d1e241d20221d22201d241e1b281c1b2a1a1d2a1a291e1a2f181a33141a37101a390e1a3b0c1a3d0a3623083c1f06401b064419044617044817024817024a15024a174c154c154c154c154c154c154c154a174a17481702481702461902441904053e1b040b341d06112a2106191a2708570a570a550c530e4f124d140445180a391e102d241a1b2c"},4:{t:70,l:1,w:47,h:70,m:"y541b1e501f1e4e211e4a251e46291e422d1e3e311e3a351e36391e323d1e2e2b02151e2a2b06151e262b0a151e222b0e151e1e2b12151e1a2b16151e162b1a151e14291e151e102922151e0c2926151e08292a151e04292e151e2932151e2536151e213a151e1d3e151e1942151e1546151e114a151e0d324f09364f053a4f3e4f3e4f3e4f3e4f3e4f3e4f5a151e5a151e5a151e5a151e5a151e5a151e5a151e5a151e5a151e"},5:{t:70,l:4,w:42,h:71,m:"x044d04044d04044d04044d04044d04044d04044d04044d04044d04044d0404133e02153e02153e02153e02153e02153e02153e02153e02153e02153e02134002134002134002272c02332002391a3f1643124510470e490c4b0a4d08282706301f06341d043819043a19023c17023e15023e15023e17401540154015401540154015401540153e15023e15023c17023c17023a1704381904361906321b08301d082a210a24250c1c2b0e451043123f163b1a371e33222b2a23320d48"},6:{t:70,l:0,w:50,h:71,m:"y5219244a291c443318403b143c431038490e344f0c32530a2e570a2c5b0828310e2306262f181d06242d1e1d04222d2419041e2f2817041c312819021a312c1702181b0215301502161b0415301502141b0615301712190a1334150e1b0a1534150c1b0c1534150a1b0e153415081b10153415061b12153415041b14153415041916153415021918153415191a173215171c173017151e173015021322172e15021124172c17020f26192819020d2a172817040b2c19241904092e1b1e1b0607321d181d0605361f0e210805364d08033a490a3e450c40410e423d104439124635144a2d184e251c561524"},7:{t:70,l:1,w:48,h:70,m:"y15781578157815781578157815781578157815781578155227154a2f154237153e3b153a3f153643153247153049152c4d15282b261526272c1524233215202336151e213a151c1f3e15181f4215161f4415141d4815121d4a15101b4e150e1b50150c1b52150a1b5415061d5615021f58335a2f5e2d602b62296427662568236a1f6e1d701974117c"},8:{t:70,l:0,w:49,h:71,m:"y5e131e581f18542912160f2c2f10121924330e0e211e370c0c251a3b0a0a29163f08082d124306082f0e450606310e1b0e1f0406330a19161b0404190a1508171a190404170e1306171e19020217121302172019020217142724170202151625261702021518232817171a1f2a17151c1f2a17151c1d2e15151e1b2e15151e193015152017301515201532151520153215151e193015151e193015151c1d2e15151c1d2e151718212a1702151823281502021516252815020217142724170202171213021722170204170e1504171e17040419081708171a190406330a19161b0406330c1b0e1d06082f104306082d1241080a29163f080c251a3b0a0e211e370c121924330e16112a2f105429125821165e131e"},9:{t:70,l:0,w:50,h:70,m:"y2415541c234e182b4a143346123744103d400e413e0c433e0a473a03081f0e1f3605081b161d320706191e193009041922192e09041726172c0b041726172a0d02172a17260f02172a17241102152e15221302152e171e15172e171c171532151a1915321518190215321516190415321514190615321512190815321510190a1532150e190c1532150c190e153215081b10172e15081b12172e15061b1402152e15041b1602172c311802172a311a021926311c0417262f1e0419222f20041d1c2d24061d162f2606210e312808592c0a552e0c4f320e4b34104538123f3c1637401831441e254a261552"},A:{t:70,l:0,w:50,h:70,m:"y86077e0f7815701d6825602d5a33523b4a43424b3a4f04344d0c2c4d14244d1c1c4d24164f280e57280649021528470a15283f121528371a15282f221528272a15281f321528173a1528173a15282130152829281528312015283b161528430e15284b0615286528065f280e592618571e20591428590c3059043855404d4845503d5835602d6825701d7815800d8805"},B:{t:70,l:1,w:48,h:70,m:"y8d8d8d8d8d8d8d8d8d1526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151724112e151724112c17021522152a17021720152a1702191c19261702021b181b261702041b141f221902041f0c251e19040651161d0406550e1f06083b0243060a370441080c33083d0a0e31083b0c102d0c370e1425123310181f162f121e13202716541f1a581322"},C:{t:71,l:4,w:42,h:72,m:"y3821382c392c26472420531e1a5d1a166516146b121071100e750e0c790c0a2f202f0a08273427080623402306061d4c1d06041b541b04041958190402195c19020217601702021564150217641715681515681515681515681515681515681515681517641717641502021760170202195c1902021d541d02041f4c1f04041f4c1f04061d4c1d06081b4c1b080a194c1b080c174c190a0e154c150e10134c1310140f4c11121a094c0b18"},D:{t:70,l:4,w:41,h:70,m:"y8d8d8d8d8d8d8d8d8d1368131566131564151564150213641502136413020215621302021560150204155e150204155e150204175a150406175815040617561704081752170608194e19060a1b4819080c1b441b080c1d401b0a0e1f381d0c102130210c122526230e142b1629101665121861141c59181e551a224f1c2449202a3f242e3728342b2e3c1b36"},E:{t:70,l:4,w:42,h:70,m:"x51045104510451045104510451045104510451041342134213421342134213421342134213421342134213421342134213421342134213421342490c490c490c490c490c490c490c490c490c490c13421342134213421342134213421342134213421342134213421342134213421342134213421342134255555555555555555555"},F:{t:70,l:7,w:35,h:70,m:"y8d8d8d8d8d8d8d8d8d1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e15781578157815781578"},G:{t:71,l:2,w:46,h:72,m:"y342736283f2a224b241e551e1a5d1a166516146914126f1010730e0e770c0c2d1e310a0a2532270a08213e2308081d481f06061d4c1d060619541b04041958190404175c170402195e17020217601702021762150202156417172e152217172e15241515301524151530152415153015241515301524151530152415153015241515301524151530152415153015241502152e1524130202152e1524130202172c1522150204192815221502041b264b020619264904081726490408172649040a152647060c13264706100f264706120d2645081807264508"},H:{t:70,l:3,w:44,h:70,m:"y8d8d8d8d8d8d8d8d8d3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e8d8d8d8d8d8d8d8d8d"},I:{t:70,l:8,w:34,h:70,m:"y781578151564151564151564151564151564151564151564151564151564151564158d8d8d8d8d8d8d8d8d15641515641515641515641515641515641515641515641515641515641515641578157815"},J:{t:70,l:7,w:35,h:71,m:"y5e171a5e1d145e21105e230e5e270a5e29085e2b065e2b065e2d0472190474190276170278150278177a157a157a157a157a157a157a157817781502761702741902701b048b04890689068708850a830c7f107b14751a"},K:{t:70,l:-1,w:52,h:70,m:"y8d8d8d8d8d8d8d8d8d38193c361d3a3421383225363029342e2d322c31302a352e281b041b2c261b081b2a241b0c1b28221b101b26201b141b241e1b181b221c1b1c1b201a1b201b1e181b241b1c161b281b1a141b2c1b18121b301b16101b341b140e1b381b120c1b3c1b100a1b401b0e081b441b0c061b481b0a041b4c1b08021b501b061b541b0419581b02175c1b1560191364171168150f6c130d70110b740f09780d077c0b05800903840788058a03"},L:{t:70,l:2,w:45,h:70,m:"y8d8d8d8d8d8d8d8d8d781578157815781578157815781578157815781578157815781578157815781578157815781578157815781578157815781578157815781578157815781578157815781578157815"},M:{t:70,l:1,w:48,h:70,m:"y8d8d8d8d8d8d8d8d8d1974216c27662f5e35583b5202414a0841440e433c1443361a452e203f2e26392e2e312e342b2e342b2e2e312e26392e203f2e1a452e1445340e433c064542434a3d5035582f5e2766216c19748d8d8d8d8d8d8d8d8d"},N:{t:70,l:2,w:46,h:70,m:"y8d8d8d8d8d8d8d8d8d236a27662b62022f5c062f580a2f540e2f50122f4c162f481a2f441e2f40242d3c282d382c2d34302d30342d2c382d283c2d24402d20442f1a482f164c2f12502f0e542f0a582f065c2f02602d64298d8d8d8d8d8d8d8d8d"},O:{t:71,l:1,w:48,h:72,m:"y3a1f382e372c284326224f201e571c1a5f18166516126d121071100e750e0c2d202f0a0a2536230a0821421f08061d4c1d060619541b04041958190404175c19020217601702021564150202156417156617156815156815156815156815156815156815176417021564170217621502021760170204175c19020419581904061b501d04061f4a1d0608214021080a253427080c2d202f0a0e770c107110126d121667141a5f181e571c224d222843262e352e382138"},P:{t:70,l:2,w:45,h:70,m:"y8d8d8d8d8d8d8d8d8d152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152a17381728153a1728153a021724173a021722193a02191e193c041b181b3c041f101f3c06493e0845400845400a41420c3d440e394612314a142d4c182550201558"},Q:{t:71,l:-1,w:53,h:71,m:"y32233a263b2e2047281c5122185720145f1c12631a0e69180c6f140a7312082d1e2b120823322310061f3c210e041d461d0c04194c1b0c021952190a0217320520170a021534071e170a1734091e150a17340d1a170815360f1a150815361118150815361514150815361712150815361910150815361d0c150815361f0a1508021534210617080215382102150a021738350a041738330a041b362f0c061b382b0c062134270e08253023100a2d1e2d0e0c770c0e7908107906127904147b1857021f1c4f081d20470e1b28391817322524157c13800f820d840b88078a058c03"},R:{t:70,l:2,w:45,h:70,m:"y8d8d8d8d8d8d8d8d8d152a153a152a153a152a153a152a153a152a153a152a153a152a153a152a153a152a153a152a1936152a1b34152a1f30152a232c152a272815282d24172631201726331e021722391a0217223d1602191e15062912041b18170a290e041f0e1d0e290a0645122b06064516290408411c290a3d22250c3926230e352c1f1031321b142b381718233e151e154a11800d840986078a03"},S:{t:71,l:3,w:43,h:72,m:"y680d1c6813161c133a1712161f3419101227301b0e102b2e1d0c0e312a1f0a0c332a21080a37282108083b262306083d282104063f2e1b04041d0c1b2e1904041912193019020417181730170202171c1730150202171c173017021520172e17172215301515241530151526152e151526152e151528152c151528152c15152a152a15152a172617152c152617172a1724150202152c1720170202172a171e190202172c1918190402192a1b141b04041b281d0c1f040421244306061f244108081d263f08081d283b0a0a1b2a370c0c192c330e0e172e2f1012133227141411361f181a0b3c131e"},T:{t:70,l:1,w:47,h:70,m:"y15781578157815781578157815781578157815781578157815781578157815781578157815788d8d8d8d8d8d8d8d8d1578157815781578157815781578157815781578157815781578157815781578157815781578"},U:{t:70,l:2,w:46,h:71,m:"y6f20751a79167d127f10810e830c850a87086821066e1b0672190474170474190276170278150278150278177a157a157a157a157a157a157a157a157a157a157817781502781502761702741902741704701b046e1b066a1f0687088708850a830c810e7d127b14751a6d22"},V:{t:70,l:0,w:51,h:70,m:"y038a0b82137a1974216c2964315c39543f4e47464f3e084f36104f2e184d28204d20264f182e4f10364f083e4d0246474e3f56375c3164296c21741974196c2164295e2f56374e3f46473e4b04364b0c2e4b14264d1a1e4d22184b2a104b32084d384d4045483d5037562f5e27661f6e1974117c0984"},W:{t:70,l:0,w:50,h:70,m:"y2766414c533a612c6f1e7914830a8d8d0522673e4f503d5c31662764295c315637503d48454245063a450e36411636391e363126362b2c36292e362f28363720363f1838451040450846474e3f54395c31622b6a235e2f503d3e4f051e6b8d8d87067d10731a6726593447462f5e"},X:{t:70,l:0,w:50,h:70,m:"y0388030780070b780b0f700f116a13156217195c191d541d214c21234625273e292b362b02042b2e2b06062d28290a0a2b22290e0e2b1a2912122b122916162b0a291a1a2b02291e1c512020492424412828392c2c31303029343029342c313028392c2441282049241e4f201a25082b1c16270e2b181227162b1410251e2b100c25242d0c08252c2d080425342b0602253a2b022342291f4a251b5221175a1d1560191168150d6e1309760f057e0b0384078a03"},Y:{t:70,l:1,w:47,h:70,m:"y058809840d800f7e137a17761b721f6e236a27662b62042b5e082b5a0c2b56102b5214295018294c1c2948202944246928652e5f325b3657325b2e5f286524692029441c294818294c142b4e102b520c2b56082b5a042b5e2b622766236a216c1d7019741578117c0d8009840588"},Z:{t:70,l:4,w:41,h:70,m:"y7a13156217155e1b155a1f155821155425155029154c2d154831154435154039153c3d15382b021515342b061515302b0a15152c2b0e1515282b121515242b161515202b1a15151e291e15151a29221515162926151512292a15150e292e15150a29321515062936151502293a153b3e153742153346152f4a152b4e152752152356151f5a151b5e15176215136615781578157815"},a:{t:53,l:4,w:42,h:54,m:"x201b1a182b1214330e10390c0e3d0a0c41080a4506084904081d121b04061b1c170206172215020615261302041726130204152a1342134213421342134213421342132035183d144110450c490a4b084d064f041d22130419261302172a1302152c1302132e13152e13133013132e15132e15132c17132c17132a1915261b17221d0215201f02191823021d0e290451064f083902130a3504130c31061310290a1314210e131a1526"},b:{t:75,l:2,w:46,h:76,m:"y970297029702970297029702970297029702381f16210c3619261b0a34172e1908341336170632133a150630133e150430134013042e134215022e114613022e114613022c1348132c114a132c114a132c114a132c114a132c114a132c114a132c114a132c1346152c134613022e114415022e134215022e153e17022e173a17043017361904301b2e1b06321d261f063423162508345b0a36570c3a510e3c4d103e471442411648371a4c2d20561b28"},c:{t:53,l:4,w:41,h:54,m:"y2a192a202d201c371a183f16144712104d100e530c0c570a0a5b0808211c2108061b2c1b060617341904041738170404133e1702021540150202134413020211481102134813114c11114c11114c11114c11114c11114c11114c1113481313481315441302021342150202153e17020219361904041b2c1f04041b2c1d0606192c1d0606192c1b0808172c190a0a152c170c0c132c150e0e112c1310120d2c0f1416092c0b18"},d:{t:75,l:2,w:46,h:76,m:"y561b284c2d2046391a4241163e49123c4d103a510e38550c36590a3423182308321d261f06301b30190630173619042e173c15042e154015022e134215022e134413022c1348132c1348132c114a132c114c112c114c112c114c112c114c112c114c112c114c112c134811022e114811022e114811022e134411043011421304301340110632133c1306321536150834173017083619261b0a381f181f0c970297029702970297029702970297029702"},e:{t:52,l:2,w:46,h:53,m:"x2417221c271a182f16143712123b10103f0e0e430c0c470a0a1f0e1f080a191a1b0608191e19060815241904061528170406152a150404152c170204152e1502041330150202153015020215301702153017025b5d5d5d5d5d5d5d15481548154815481548021348021546021546021546041544041544041742061740061924150608192017060a1b1a19060a21101d060c49080e470810430a123f0c16390e1833121e291626191e"},f:{t:75,l:5,w:39,h:75,m:"y2e11582e11582e11582e11582e11582e11582e11582e11582e11582e11582e11582e11582e11582e11581c7b148310870c8b0a8d088f06910691049304191211580217161158021518115802131a1158131c1158131c1158131c1158111e1158111e1158111e1158111e1158111e1158111e1158111e1158111e1158111e1158"},g:{t:53,l:3,w:44,h:70,m:"y241b4e1c2b461637280910123f240d0c10452011080e491e11080c4d1c13060a511a1504085518150406211821161702041d241b16170204192c19141702021734151615020215381516130202133c13181302113e1318131340131811134013181111441118111144111811114411181111441118111144111811114411181111441118111144111811021140111a1102114011181302133c1318110204113c111a1102041338131a1102061334131a130208152c151c13020a1724171c13040c1b161d1a170402850602850602830802810a02810a027f0c027b1002771402711a"},h:{t:75,l:4,w:41,h:75,m:"y979797979797979797361b4634174c34154e3215503015523013542e13562e13562e13562e11582c13582c13582c13582c13582c13582c13582c13582c15562c15562e15542e17522e1950301b4c306732653265346336613a5d3c5b40574651"},i:{t:75,l:12,w:26,h:75,m:"y2e15542e15542e15542e15542e15542e15542e15542e15542e15542e15542e15542e15541b1415541b1415541b1415541b1415541b1415541b14691b14691b14691b14691b14691b14691b14691b14691b1469"},j:{t:75,l:11,w:28,h:93,m:"yaa11aa11aa11aa11aa11aa11aa112e1568112e1568112e1568112e1568112e1568112e1568112e1566132e156611021b14156413021b14156215021b14156017021b14155a1b041b1489041b1487061b1487061b1485081b14830a1b14810c1b147f0e1b147b121b147518"},k:{t:75,l:3,w:44,h:75,m:"y97979797979797979754172c521b2a501f284e23264c27244a2b22482f2046331e441b021b1c421b061b1a401b0a1b183e1b0e1b163c1b121b143a1b161b12381b1a1b10361b1e1b0e341b221b0c321b261b0a301b2a1b082e1b2e1b062e19321b042e17361b022e153a1b2e133e192e1142172e0f46152e0d4a132e0b4e112e09520f2e07560d2e055a0b2e035e09900792059403"},l:{t:75,l:10,w:29,h:75,m:"y7b1c831487108b0c8d0a8f089106930493047a1b027e170280150282158413841384138611861186118611861186118611861186118611861186118611"},m:{t:53,l:0,w:51,h:53,m:"y026902690269026902690269026902690269081350080f54060f56040f58020f5a020f5a020f5a115a115a1358135817546b6b6b026902690467066508630665061550041354021356021158020f5a115a115a115a115a1358135817546b026902690467046706650a610c5f1259"},n:{t:53,l:3,w:44,h:53,m:"y0269026902690269026902690269026902690c1d420a19480a154c08154e061352061352041354041156021356021158021158115a115a115a115a115a115a115a115a13581358021158021356021554041552041b4c0665066508630a610c5f0e5d125916551c4f"},o:{t:53,l:0,w:50,h:54,m:"y2a192a202b221c351c183d18144514124912104d100e510e0c550c0a2314230a081d241d0808192c19080617341706041738150604153c150404134013040213441302021344130202114811020211481102134813114c11114c11114c11114c11114c11114c11114c11114c11114a1313481102021148110202114613020213441302021540130404133e150404173815060617341706061b2e1708081d241d080a2316210a0c550c0e510e104d10124912144316183b1a1c331e2229222a192a"},p:{t:53,l:2,w:46,h:70,m:"y028b028b028b028b028b028b028b028b028b0c1f181f2c0a1928192a0817301728061538152606133c132604134013240411441124021344132202114811220211481122114c1120114c1120114c1120114c1120114c1120114c1120114c1120114c112013481320021148112202114613220213441322021540152204153c152404173817240619301926081b281b2808231a21280a592a0c552c0e512e124b30144534183d381c353c2229422a194a"},q:{t:53,l:2,w:46,h:70,m:"y2a194a222b401c353c183f36144534104d300e512e0c552c0a592a0823182328081b281d260619321726041738172404153c1524041340152202134413220213461122021148112213481320114c1120114c1120114c1120114c1120114c1120114c1120114c1120114c11200211481122021148112202134413220411441124041340132406133c1326081338152608173017280a1928192a0c1f181f2c028b028b028b028b028b028b028b028b028b"},r:{t:53,l:6,w:38,h:53,m:"y0269026902690269026902690269026902690c1b440a174a08154e081350061352041354041156021158021158021158115a115a115a115a115a1358135815560215540219080346022346042146061f46061f46081d460a1b460e1746121346180d46"},s:{t:53,l:4,w:42,h:54,m:"x201b1a162b141233100e3b0c0a410a084508084508064906041d121d0604171c1b04041522170402152417040213281504021328150402134002134002134002153e02153e04153c041938061f30062728082f1e0a33180c37120e390e14370a183508202f06282904321f043a19023e150240130240154213421342134213133013152c15152a171726170219201b02021d161d04024f04044b0606470808430a0a3d0e0e3512122d161a1b20"},t:{t:67,l:5,w:39,h:68,m:"y1e115a1e115a1e115a1e115a1e115a1e115a1e115a1e115a1e115a1e115a06691a04711404751004790c027d0a027f0802810602830485041e113e1b021e114415021e114613021e1148131e1148131e114a111e114a111e114a111e114a111e114a111e114a111e114a111e1148131e114811021e114811021e114613021e114613021e114413041e114215041e11421306"},u:{t:52,l:3,w:44,h:53,m:"y511a57145b105f0c610a63086506650667044e1904521702541502561302581358135a115a115a115a115a115a115a115a115811025811025811025611045611045413045213065015064e15084c150a48170c421d0c690269026902690269026902690269026902"},v:{t:52,l:0,w:51,h:52,m:"y036609600d5c135619501f4a25442b3e2f3a35343b2e043d280a3d22103d1c163b181c3b12223b0c283b062e3b34353a2f402946234c1d52175811561352174c1d462340293a2f34353035042a350a24370e1e371418371a1237200e372408372a02373033362d3c294023461d4c175211580d5c0762"},w:{t:52,l:0,w:49,h:52,m:"y056415542544353445245514650469696906631a4f2e3b42274c1d46233e2b383132372a390628350c282d1428271a281f2228172a28192828212028271a282f1228350c2c390432373a2f402948214e1b422730391c4d0861696969670255144524333623461158"},x:{t:52,l:1,w:48,h:52,m:"y056005075c070958090d500d0f4c0f134413154015173a191b341b1d301d1f2a2123241f04251e21060425181f0a062512210c0a230e1f100c25081f121023021f16143b1a16371c1a2f201e2922202326241d282421242027221e2d1e1a331c163b18141f02211410210621120c210e210e0a2112210c06211a210802231e2106212423021f2a211b301f19341d153c191340170f48130d4c1109520f07580b035e0962076603"},y:{t:52,l:-1,w:52,h:70,m:"y058809840d800f6e11136a111766111b62111d6011215c112556132950152b4c1502042b441902082b3c1d020c2b341f04102b2c2106142926250618291e27081c2916290a20290e290e2427082b1028270229142c491830411c3439203831243c292838292c3429303229322e29362a293a26293e2229421e29461c274a18274e1427521027560c275a08275e0427620227642568216c1d7019741578117c0d8009840588"},z:{t:52,l:4,w:41,h:52,m:"x044b04044b04044b04044b04044b04044b04044b04044b0438170436190434190632190832170a30170c2e190c2c190e2a191028191228171426191424191622191820191a20171c1e171e1c191e1a192018192216192416172614192612192810192a0e192c0c192e0c17300a1930081932061934041936041738021938193a173c5353535353535353"},"~":{t:76,l:0,w:51,h:17,m:"x180b44141530050a101d2a09080e25220d060c2b1c11040a31161502083710190641041d0461020261041d063f0619103708021516310a04111c2b0c060d22250e08092a1b120a05301316"},"!":{t:75,l:18,w:14,h:75,m:"y1b64194d32195f20195f20195f20195f20195f20195f20195f20195f20195f20195f20194d32191b6419"},"@":{t:77,l:1,w:47,h:78,m:"y220b32211e1a13283514141922410e121b1e470c0e1f1c4d080c211a51060a2318550408251657040627161f1a2102061d20172a19020419241532150204172613361502172811381502152a113a1302152a113a1302132c113a13152c133813133011381313301334130213301530150213321928170213341d1a1d04132e5706132e5508132e530a132e530a132e5508152c570602132c590402132c5b0202156e170204157015041572130417701306196c1308196a13081f62150a235a15020c33401d020e8d02128704148306187d081e750a246b0e2c5f123c431e"},"#":{t:76,l:2,w:46,h:76,m:"y66092209600f18133407260f101b2c0f260f08232c0f26392c0f26392c0f203f2c0f16492c0f0e512c0f0453082c5b122a551a22532418572a0e612a0653080f2a4f120f2a471a0f2a3d240f2a3b260f2a29040f260f2a1f0e0f260f280315180f260f200b0d200f260f1615032a0f260f0c1f2c0f260f02292c0f26392c0f223d2c0f1a452c0f104f2c0f0657022c630a2c591424571e1a5926125d2a0855040f2a550c0f2a4b160f2a431e0f2a3b260f2a3b260f2a25080f260f2a1d100f260732131a0f5e09240766"},$:{t:75,l:0,w:50,h:75,m:"y240f380b221e1b320f1e1a2130131a18272c1518162b2a1716142d2a19141231281b121035261d101037241d100e39241f0e0e170c19261b0e0e1512152a190c0c1516152a170c0c1318152c150c0c131a132c170a0a151a152c150a0a151c132c150a0a131e152a150a0a131e152a150a0a1320132a150a0a1320132a150a97979797979797970a13241722150a0a13261522150a0a13261522130c0c11261720130c0c1326151e150c0c1326171c150c0c1328151c130e0e13261718150e0e1d1e1714170e0e1d1e19101710101b20190c1910101b203b121219223912141722371416152433161813262f181a11262f181c0f2a271c200b2c231e581d225e1128"},"%":{t:74,l:1,w:47,h:74,m:"y120f740c197008215c110625561504295019042b4c1b022d481f022f42231110113e270f140f3c25040f160d3827060f160d34270a0f140f30270e11120f2e2512130c132a2516022f262718022d24271c0429242520062720252408231e27260a1d1e272a0e171c272e3e25323a2536362738322718170e30251a1d0a2c251a230828271a270624271e29042225202d021e25222f021a2526130c131627280f121114252c0f140f1025300d160f0c25340f140f0827360f140f06253a11101102253e2f0223442d0221462b041d4c290419522506155821081160190c740f12"},"^":{t:76,l:1,w:48,h:39,m:"y4007083e0b063a1104381502341902321d2e1f022c1f0428210624230822230a1e250c1c250e1827101627121229141029160c291a082b1c062b1e022d202d222b24292629262b24022b22042d1e082b1c0a2b1a0e29181029161427141627121a25101c250e20230c22230a2621082a21042c2102301f321d3617023813043c0f043e0b06420508"},"&":{t:76,l:0,w:50,h:76,m:"y66151e6021185c29141a112e2f12141d26350e10271e390c0e2d183d0a0c331241080a370e4308083d084706083f041f0c2104065f141d04065b1c1904041d0c332019020419162b22190202191c252617020217202328170215262126171728212417152a252215152829201515262f1c151526311a1515243716151522170421141515201708231015151e170c230e15171c1512210c1502151a1714230815021716171a21061302021912171e3702021d0a19223502043b28310204392c2d0406353229040831362506082f3a25040a2b4023020c273c2b0e233435121b284518112c4554455445542d061354290e0f5425140d541f1e0954192607540f3205"},"*":{t:75,l:1,w:48,h:49,m:"y2a0534240d321e13321a17321a17321c17301c1722050a1e152009081e171a0f061e171811062015161504201712190222150e1f22150c2124150821022415061f062613041f0826310c262f0e21062b124f144b18491a451e451e491a4b184f1421062b12262f0e26310c2613041f082415061f06241508210222150c2122150e1f201712190220151615041e171811061e171a0f061e152009081c1722050a1c17301a17321a17321e1332240d322a0534"},_:{t:-8,l:-2,w:54,h:9,m:"x6d6d6d6d6d6d6d6d6d"},"+":{t:65,l:2,w:46,h:54,m:"y2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c6d6d6d6d6d6d6d6d6d6d2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c"},"`":{t:70,l:7,w:35,h:27,m:"y033405320730092e0b2c0d2a1126132415221720191e1b1c1f182116231425122710290e2b0c2f08022f06042f04082d020c2b1027142316211a1d1e1922152611280f2c0b30073403"},"-":{t:32,l:2,w:46,h:12,m:"x5d5d5d5d5d5d5d5d5d5d5d5d"},"=":{t:54,l:2,w:45,h:32,m:"x5b5b5b5b5b5b5b5b5b5b5a5a5a5a5a5a5a5a5a5a5a5a5b5b5b5b5b5b5b5b5b5b"},'"':{t:70,l:9,w:32,h:23,m:"y2f2f2f2f2f2f2f2f2f2f2f2e2e2e2e2e2e2e2e2e2e2f2f2f2f2f2f2f2f2f2f2f"},"'":{t:70,l:19,w:11,h:30,m:"y3d3d3d3d3d3d3d3d3d3d3d"},"(":{t:76,l:10,w:29,h:77,m:"y401d3e382d36303d2e2c452a284d26245522205d1e1c631c1a6918186d16142f182d1412272a2910102336250e0e213e230c0c1f46210a0a1d4e1f08081d521d08061d561d06041b5c1d04021b601d020219641d19681b176c19176e17157215137415117813117a110f7e0f"},")":{t:76,l:10,w:29,h:77,m:"y0f7e0f117a11117813137415157215176e17176c1919681b0219641d021b601d02041b5c1d04061d561d06081d521d080a1f4a21080c1f46210a0e213e230c102336250e12272a2910142f182d14186d161a69181c631c205d1e245522284d262c452a303d2e382d36401d3e"},"{":{t:76,l:2,w:46,h:78,m:"y461542461542461542461542461542461542461542461542461542441742441940441940421d3e40213c3a293a1e5b24166f18107b120e810e0c43043f0c0a4504410a084508410806430e4106063f163d0604332c3704041b5c1f040219661b0202176a190202176c1702021570150202157015021770171574151574151574151574151574151574151574151574151574151574151574151574151574158815"},"}":{t:76,l:2,w:46,h:78,m:"y88151574151574151574151574151574151574151574151574151574151574151574151574151574151770170215701502021570150202176c170202176a19020219661b02041b5c1f0404332c3704063f163d0606430e410608450841080a4504410a0c43043f0c0e810e107b12166f181e5b243a293a40213c421d3e441940441940441742461542461542461542461542461542461542461542461542461542"},"[":{t:76,l:6,w:37,h:76,m:"y99999999999999999999157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015"},"]":{t:76,l:6,w:37,h:76,m:"y15701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701599999999999999999999"},"<":{t:73,l:0,w:49,h:70,m:"x60035e055a09580b560d521150134c174a19461d441f40233e23023a250438230834250a32230e2e25102c231428251626251824231c20251e1e23221a252418232814252a12232e0e25300c233408253606233a02253c234021421f44234002233e04253a0823380a23360e233210233014232c16232a1a23261c23241e252022231e24251a2823182a25142e231230250e34230c3625083a23063c250240234221441f481b4a194e155013540f560d5a095c076003"},">":{t:73,l:0,w:49,h:70,m:"x0360055e095a0b580d5611521350174c194a1d461f44234002233e04253a0823380a25340e233210252e14232c1625281a23261c232420232022231e26231a2823182c23142e231232230e34230c3625083a23063c250240234221441f42213e23023c230438230836230a34210e3023102e23122a231628231824231c22231e1e23221c232418252616232a14232c1023300e23320a233608233804253a02233e022140021d44021b4602174a02154c021150020f52020d5402095802075a02035e"},"|":{t:77,l:20,w:10,h:94,m:"ybdbdbdbdbdbdbdbdbdbd"},":":{t:52,l:15,w:19,h:52,m:"x27272727272727272727272727272727262626262626262626262626262626262626262627272727272727272727272727272727"},";":{t:52,l:6,w:37,h:72,m:"y8c058809840d80117c157819741d70216c256829642b02602d045c2f0658310854330a50350c4c370e4839104837121f2a35141f2a33161f2a31181f2a2f1a1f2a2d1c1f2a2b1e1f2a29201f2a27221f2a25241f2a23261f2a21281f2a1f2a1f2a1d2c1f2a1b2e1f2a19301f2a17321f2a15341f2a1336"},".":{t:16,l:15,w:19,h:16,m:"x27272727272727272727272727272727"},",":{t:16,l:6,w:37,h:36,m:"y440540093c0d3811341530192c1d2821242520291c2b02182d04142f061031080c330a08350c04370e391037123514331631182f1a2d1c2b1e292027222524232621281f2a1d2c1b2e1930173215341336"},"\\":{t:76,l:4,w:41,h:77,m:"y039807940d8e138817841d7e217a27742b70316a35660635600a355c1035561435521a354c1e35482435422a333e2e353834333438352e3e332a4235244833204c351a5233165635105c330c6035066633026c2f702b76257a21801b84178a118e0d94079803"},"?":{t:77,l:0,w:49,h:77,m:"y20116a18196a141d6a121f6a0e236a0c256a0c256a0a276a08296a08296a062b6a062b6a042d6a042176021f7a021b7e0219800219800217661d19661d19661d173c131a1d1738171a1d1736191a1d17341b1a1d17321d1a1d17301f1a1d172e211a1d172c231a1d192a231a1d1928251a1d021924271a1d021b20291a1d021d1c2b1a1d021f1621281d04210e232a1d044f48044d4a06494c06474e0843500a3f520a3d540c39560e3558102f5c14295e181f641e136a"},"/":{t:76,l:4,w:41,h:77,m:"y980394078e0d8a118417801b7a217427702b6a316633026035065c330c5635105233164c351a4833204235243c352a38352e3235342e353828353e2435421e35481a334e1435520e35580a355c04356235662f6c2b702576217a1b801784118a0d8e07940398"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["12-01"]={h:9,w:6,g:{0:{t:9,l:0,w:6,h:9,m:"b788484848484848478"},1:{t:9,l:1,w:4,h:9,m:"y04030c02030e031013"},2:{t:9,l:0,w:6,h:9,m:"b7884040810204080fc"},3:{t:9,l:0,w:6,h:9,m:"bfc08103804040404f8"},4:{t:9,l:0,w:6,h:9,m:"b102020404888fc0808"},5:{t:9,l:0,w:6,h:9,m:"bfc8080f804040408f0"},6:{t:9,l:0,w:6,h:9,m:"b102040788484848478"},7:{t:9,l:0,w:6,h:9,m:"bfc0408101020202020"},8:{t:9,l:0,w:6,h:9,m:"b788484847884848478"},9:{t:9,l:0,w:6,h:9,m:"b788484848478081020"},A:{t:9,l:0,w:7,h:9,m:"b10282844447c448282"},B:{t:9,l:0,w:6,h:9,m:"bf8848484f8848484f8"},C:{t:9,l:0,w:6,h:9,m:"b384480808080804438"},D:{t:9,l:0,w:6,h:9,m:"be090888484848890e0"},E:{t:9,l:0,w:6,h:9,m:"bfc808080f8808080fc"},F:{t:9,l:0,w:5,h:9,m:"bf8808080f080808080"},G:{t:9,l:0,w:6,h:9,m:"b384480809c8484443c"},H:{t:9,l:0,w:6,h:9,m:"b84848484fc84848484"},I:{t:9,l:0,w:5,h:9,m:"bf820202020202020f8"},J:{t:9,l:0,w:6,h:9,m:"b040404040404848478"},K:{t:9,l:0,w:6,h:9,m:"b848890a0c0a0908884"},L:{t:9,l:0,w:6,h:9,m:"b8080808080808080fc"},M:{t:9,l:0,w:7,h:9,m:"bc6c6aaaa9292828282"},N:{t:9,l:0,w:6,h:9,m:"bc4c4a4a494948c8c84"},O:{t:9,l:0,w:6,h:9,m:"b304884848484844830"},P:{t:9,l:0,w:6,h:9,m:"bf8848484f880808080"},Q:{t:9,l:0,w:6,h:9,m:"b3048848484a4944834"},R:{t:9,l:0,w:6,h:9,m:"bf8848484f890888484"},S:{t:9,l:0,w:6,h:9,m:"b788480807804048478"},T:{t:9,l:0,w:7,h:9,m:"bfe1010101010101010"},U:{t:9,l:0,w:6,h:9,m:"b848484848484848478"},V:{t:9,l:0,w:7,h:9,m:"b828244442828281010"},W:{t:9,l:0,w:7,h:9,m:"b8282828292aaaa4444"},X:{t:9,l:0,w:6,h:9,m:"b844848303030484884"},Y:{t:9,l:0,w:7,h:9,m:"b824444281010101010"},Z:{t:9,l:0,w:6,h:9,m:"bfc04081010204080fc"},a:{t:6,l:0,w:6,h:6,m:"b78047c848c74"},b:{t:9,l:0,w:6,h:9,m:"b808080b8c48484c4b8"},c:{t:6,l:0,w:6,h:6,m:"b788480808478"},d:{t:9,l:0,w:6,h:9,m:"b040404748c84848c74"},e:{t:6,l:0,w:6,h:6,m:"b7884fc80807c"},f:{t:9,l:0,w:5,h:9,m:"b182020f82020202020"},g:{t:6,l:0,w:6,h:8,m:"b788484848c7404f8"},h:{t:9,l:0,w:6,h:9,m:"b808080b8c484848484"},i:{t:9,l:1,w:3,h:9,m:"b606000e02020202020"},j:{t:9,l:1,w:4,h:11,m:"b30300070101010101010e0"},k:{t:9,l:0,w:5,h:9,m:"b80808090a0c0a09088"},l:{t:9,l:1,w:4,h:9,m:"y1102100310031003"},m:{t:6,l:0,w:7,h:6,m:"bacd292929292"},n:{t:6,l:0,w:6,h:6,m:"bb8c484848484"},o:{t:6,l:0,w:6,h:6,m:"b788484848478"},p:{t:6,l:0,w:6,h:8,m:"bb8c48484c4b88080"},q:{t:6,l:0,w:6,h:8,m:"b748c84848c740404"},r:{t:6,l:0,w:5,h:6,m:"bb0c880808080"},s:{t:6,l:0,w:6,h:6,m:"b788460188478"},t:{t:8,l:0,w:5,h:8,m:"b4040f84040404038"},u:{t:6,l:0,w:6,h:6,m:"b848484848c74"},v:{t:6,l:0,w:7,h:6,m:"b824444282810"},w:{t:6,l:0,w:7,h:6,m:"b828292aa4444"},x:{t:6,l:0,w:6,h:6,m:"b844830304884"},y:{t:6,l:0,w:6,h:8,m:"b84442810102020c0"},z:{t:6,l:0,w:5,h:6,m:"bf808102040f8"},"~":{t:9,l:0,w:6,h:2,m:"b6498"},"!":{t:9,l:2,w:2,h:9,m:"y0b04050b0405"},"@":{t:9,l:0,w:6,h:9,m:"b78840474949494b468"},"#":{t:9,l:0,w:6,h:10,m:"b1414287c2850f850a0a0"},$:{t:9,l:0,w:5,h:10,m:"b2070a8a0603028a87020"},"%":{t:9,l:0,w:6,h:9,m:"b44a848103020485488"},"^":{t:9,l:0,w:5,h:5,m:"b207050d888"},"&":{t:9,l:0,w:6,h:9,m:"b7088885060a4948874"},"*":{t:9,l:0,w:5,h:5,m:"b20a8707088"},_:{t:-1,l:0,w:6,h:1,m:"x0d"},"+":{t:6,l:0,w:5,h:5,m:"b2020f82020"},"`":{t:9,l:1,w:3,h:3,m:"bc06020"},"-":{t:4,l:0,w:6,h:1,m:"x0d"},"=":{t:6,l:0,w:6,h:4,m:"x0d0c0c0d"},'"':{t:9,l:0,w:5,h:4,m:"bd8d8d8d8"},"'":{t:9,l:2,w:2,h:5,m:"y0b0b"},"(":{t:9,l:1,w:3,h:9,m:"b204040808080404020"},")":{t:9,l:1,w:3,h:9,m:"b804040202020404080"},"{":{t:9,l:0,w:5,h:9,m:"b18202020c020202018"},"}":{t:9,l:0,w:5,h:9,m:"bc020202018202020c0"},"[":{t:9,l:0,w:5,h:9,m:"bf880808080808080f8"},"]":{t:9,l:0,w:5,h:9,m:"bf808080808080808f8"},"<":{t:8,l:0,w:6,h:7,m:"b04186080601804"},">":{t:8,l:0,w:6,h:7,m:"b80601804186080"},"|":{t:9,l:2,w:1,h:11,m:"y17"},":":{t:6,l:2,w:2,h:6,m:"y050405050405"},";":{t:6,l:1,w:3,h:9,m:"b60600000006060c080"},".":{t:2,l:2,w:2,h:2,m:"y0505"},",":{t:1,l:1,w:3,h:4,m:"b6060c080"},"\\":{t:9,l:0,w:5,h:9,m:"b808040402020101008"},"?":{t:9,l:0,w:6,h:9,m:"b788484081030003030"},"/":{t:9,l:0,w:5,h:9,m:"b080810102020404080"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["12-02"]={h:18,w:12,g:{0:{t:18,l:0,w:12,h:18,m:"b0f003fc070e06060c030c030c030c030c030c030c030c030c030c030606070e03fc00f00"},1:{t:18,l:2,w:7,h:18,m:"y08071606071804071a02071c071e2525"},2:{t:18,l:0,w:11,h:18,m:"b3e007f80e1c0c0e000600060006000c001c0038007000e001c0038007000e000ffe0ffe0"},3:{t:18,l:0,w:11,h:18,m:"bffe0ffe001c0038007000e001c003e003f8003c000e000600060006000e0c1c0ff807e00"},4:{t:18,l:0,w:12,h:18,m:"b0300070006000e000c001c001800380030c070c060c0e0c0fff0fff000c000c000c000c0"},5:{t:18,l:0,w:11,h:18,m:"bffc0ffc0c000c000c000c000fe00ff8003c000e000600060006000e003c00f80fe00f800"},6:{t:18,l:0,w:12,h:18,m:"b01c0038007000e001c0038003f007fc070e0e060c030c030c030c030606070e03fc00f00"},7:{t:18,l:0,w:12,h:18,m:"y05200520052005200520051011050a1705060b10050407160502051a091c071e"},8:{t:18,l:0,w:12,h:18,m:"b1f803fc070e06060606070e03fc01f803fc070e06060c030c030c030606070e03fc00f00"},9:{t:18,l:0,w:12,h:18,m:"b0f003fc070e06060c030c030c030c030606070e03fc00fc0038007000e001c0038007000"},A:{t:18,l:0,w:12,h:18,m:"b0600060006000f000f000f001f801980198039c030c030c07fe07fe06060e070c030c030"},B:{t:18,l:0,w:12,h:18,m:"bff00ffc0c0c0c060c060c060c0c0ffc0ffc0c0e0c070c030c030c030c070c0e0ffc0ff00"},C:{t:18,l:0,w:12,h:18,m:"b0f803fe078f06030e000c000c000c000c000c000c000c000c000e000603078f03fe00f80"},D:{t:18,l:0,w:12,h:18,m:"y2525051c05051c05051c05051c05051c050718070207140702040b080b040619060c0d0c"},E:{t:18,l:0,w:11,h:18,m:"x1717051205120512051205121502150205120512051205120512051205121717"},F:{t:18,l:1,w:10,h:18,m:"y2525050a0512050a0512050a0512050a0512050a0512050a051205200520"},G:{t:18,l:0,w:12,h:18,m:"b0f803fe070706030c000c000c000c000c3f0c3f0c030c030c030c030603070703ff00fe0"},H:{t:18,l:0,w:12,h:18,m:"y25250e05120e05120e05120e05120e05120e05120e05120e05122525"},I:{t:18,l:1,w:10,h:18,m:"y051c05051c05051c05051c052525051c05051c05051c05051c05"},J:{t:18,l:1,w:9,h:18,m:"y180904180b021e072005200520051e0723022104"},K:{t:18,l:0,w:12,h:18,m:"bc070c0e0c1c0c380c700ce00dc00f800f000f000f800dc00ce00c700c380c1c0c0e0c070"},L:{t:18,l:0,w:12,h:18,m:"y25252005200520052005200520052005200520052005"},M:{t:18,l:0,w:12,h:18,m:"y25250b1a040d14080d100e0b0c0e0b0c080d10040d140b1a2525"},N:{t:18,l:0,w:12,h:18,m:"y25250b1a040b16080b120c0b0e100b0a140b06180b021c092525"},O:{t:18,l:0,w:12,h:18,m:"b0f001f8039c070e060606060c030c030c030c030c030c0306060606070e039c01f800f00"},P:{t:18,l:0,w:11,h:18,m:"bff00ffc0c0c0c060c060c060c060c0c0ffc0ff00c000c000c000c000c000c000c000c000"},Q:{t:18,l:0,w:12,h:18,m:"b0f001f8039c070e060606060e070c030c030c030c330e37061e061e070e039e01fb00f30"},R:{t:18,l:0,w:12,h:18,m:"bff80ffe0c060c030c030c030c030c060ffe0ff80c700c380c1c0c1c0c0e0c0e0c070c070"},S:{t:18,l:0,w:11,h:18,m:"b3f807fc0e0e0c060c000c000e00078003e000f8003c000e000600060c060e0e07fc03f80"},T:{t:18,l:0,w:12,h:18,m:"y05200520052005200520252505200520052005200520"},U:{t:18,l:0,w:12,h:18,m:"y1d0821041c07021e050220052005200520051e05021c070221041d08"},V:{t:18,l:0,w:11,h:18,m:"y071e0f1604130e0a150612131c0912130a150604130e0f16091c"},W:{t:18,l:0,w:12,h:18,m:"y170e210412131a0b140d040e0f080e0f08140d041a0b12132104170e"},X:{t:18,l:0,w:12,h:18,m:"be070e07070e070e039c039c01f801f800f000f001f801f8039c039c070e070e0e070e070"},Y:{t:18,l:0,w:12,h:18,m:"y0520091c0d18040d14080d100c190c19080d10040d140d18091c0520"},Z:{t:18,l:0,w:11,h:18,m:"bffe0ffe001c001c003800380070007000e000e001c001c003800380070007000ffe0ffe0"},a:{t:13,l:0,w:11,h:13,m:"b3f807fc0e0e0006000603fe07fe0e060c060c060e0e07fe03f60"},b:{t:18,l:0,w:11,h:18,m:"bc000c000c000c000c000df00ff80f1c0e0c0c060c060c060c060c060e0c0f1c0ff80df00"},c:{t:13,l:0,w:11,h:13,m:"b1f803fc070e06000c000c000c000c000c000600070e03fc01f80"},d:{t:18,l:0,w:11,h:18,m:"b006000600060006000600e603fe071e060e0c060c060c060c060c06060e071e03fe00e60"},e:{t:13,l:0,w:12,h:13,m:"b1f803fc070e06060c030fff0fff0c000c000600070703fe01fc0"},f:{t:18,l:1,w:10,h:18,m:"y0c05140c05140c05140c05140421022307060514050805140508051405080514"},g:{t:13,l:0,w:11,h:17,m:"b0e603fe071e060e0c060c060c060c06060e071e03fe00e6000600060e0e07fc03f80"},h:{t:18,l:0,w:11,h:18,m:"y25250c05140a05160a05160a05160a05160a05160a07140c190e17"},i:{t:18,l:3,w:6,h:18,m:"b3c3c3c000000fcfc0c0c0c0c0c0c0c0c0c0c"},j:{t:18,l:2,w:7,h:23,m:"b1e1e1e0000007e7e0606060606060606060606060efcf8"},k:{t:18,l:1,w:10,h:18,m:"y252512090a100d080e070407060c070807040a070c07020a0510070a0314052203"},l:{t:18,l:2,w:7,h:18,m:"y210423021e072005200520052005"},m:{t:13,l:0,w:12,h:13,m:"y1b1b020514051605161b02190714051605161b0219"},n:{t:13,l:0,w:11,h:13,m:"y1b1b02051405160516051605160516071402190417"},o:{t:13,l:0,w:12,h:13,m:"b0f003fc070e06060c030c030c030c030c030606070e03fc00f00"},p:{t:13,l:0,w:12,h:17,m:"bcf00ffc0f0e0e060c030c030c030c030c030e060f0e0ffc0cf00c000c000c000c000"},q:{t:13,l:0,w:12,h:17,m:"b0f303ff070f06070c030c030c030c030c030607070f03ff00f300030003000300030"},r:{t:13,l:1,w:10,h:13,m:"y1b1b020514051605160516051605160714020514"},s:{t:13,l:0,w:11,h:13,m:"b3f007f80e1c0c000e00078003f8007c000e00060e0e07fc03f00"},t:{t:17,l:1,w:10,h:17,m:"y0805160805160805161f0421020805100708051205080512050805120508051205"},u:{t:13,l:0,w:11,h:13,m:"y170419021407160516051605160516051405021b1b"},v:{t:13,l:0,w:11,h:13,m:"y07140d0e040f080a0d040e0d12090e0d0a0d04040f080d0e0714"},w:{t:13,l:0,w:12,h:13,m:"bc030c030c030c030c030e670e6706f606f607fe079e030c030c0"},x:{t:13,l:1,w:9,h:13,m:"bc180e3806300770036003e003e003e00360077006300e380c180"},y:{t:13,l:0,w:11,h:18,m:"y071a050b1407040b0e09080b060b020c1306100b0a0c0b0e080b12040b160b1a071e"},z:{t:13,l:1,w:10,h:13,m:"bffc0ffc001c0038007000e000e001c00380038007000ffc0ffc0"},"~":{t:18,l:0,w:12,h:4,m:"b38307e70e7e0c1c0"},"!":{t:18,l:4,w:3,h:18,m:"y170807170807170807"},"@":{t:18,l:0,w:11,h:18,m:"b1f007fc0e0c0c06000600060006036607e606e60c660c660c660c660c6606ec07fc03b80"},"#":{t:18,l:0,w:11,h:18,m:"b0c600c601ce018c018c07fe07fe039c0318031807380ffc0ffc063006300e700c600c600"},$:{t:18,l:0,w:12,h:19,m:"b06001f807fe076f0e670c600e60076007e001f8007e006e006700630e670f6e07fe01f800600"},"%":{t:18,l:0,w:11,h:18,m:"b70e0f8e0d9c0d9c0db80fb80770007000e000e001c001dc03be03b6073607360e3e0e1c0"},"^":{t:18,l:1,w:10,h:10,m:"b0c000c001e001e003f00330073806180c0c08040"},"&":{t:18,l:0,w:12,h:18,m:"b1e007f80e1c0c0c0c0c0e1c073803f001e003c007e00e700c3b0c1f0c0e0e1e07ff03f30"},"*":{t:17,l:0,w:11,h:11,m:"b0e000e004e40eee0ffe07fc01f003f807bc071c03180"},_:{t:-2,l:0,w:12,h:2,m:"x1919"},"+":{t:17,l:0,w:12,h:14,m:"b060006000600060006000600fff0fff0060006000600060006000600"},"`":{t:18,l:2,w:7,h:7,m:"bf8f87c3c1e0e06"},"-":{t:11,l:0,w:12,h:3,m:"x191919"},"=":{t:14,l:0,w:12,h:9,m:"x191919181818191919"},'"':{t:18,l:2,w:8,h:6,m:"be7e7e7e7e7e7"},"'":{t:18,l:4,w:3,h:8,m:"y111111"},"(":{t:18,l:2,w:7,h:18,m:"b0e1c18307060e0c0c0c0c0e0607030381c0e"},")":{t:18,l:2,w:7,h:18,m:"be07038181c0c0e060606060e0c1c183870e0"},"{":{t:18,l:1,w:10,h:18,m:"y1005101005100e090e061906020d080d020205180502051c05051c05051c05051c05"},"}":{t:18,l:1,w:10,h:18,m:"y051c05051c05051c05051c050205180502020d080d020619060e090e100510100510"},"[":{t:18,l:1,w:9,h:18,m:"y2525051c05051c05051c05051c05051c05051c05051c05"},"]":{t:18,l:1,w:9,h:18,m:"y051c05051c05051c05051c05051c05051c05051c052525"},"<":{t:18,l:0,w:12,h:17,m:"b0010003000f001e007c00f003e007800f00078003e000f0007c001e000f000300010"},">":{t:18,l:0,w:12,h:17,m:"b8000c000f00078003e000f0007c001e000f001e007c00f003e007800f000c0008000"},"|":{t:20,l:5,w:2,h:24,m:"y3131"},":":{t:13,l:3,w:5,h:13,m:"x0b0b0b0b0a0a0a0a0a0b0b0b0b"},";":{t:13,l:1,w:9,h:18,m:"y22031e071a0b160d02090a0f04090a0d06090a0b08090a090a090a070c"},".":{t:4,l:3,w:5,h:4,m:"x0b0b0b0b"},",":{t:4,l:1,w:9,h:9,m:"b0f800f801f801f003e003c0078007000e000"},"\\":{t:18,l:1,w:9,h:18,m:"y071e0b1a1114060f100c0f0a100f06160f1a0b2005"},"?":{t:18,l:0,w:12,h:18,m:"b0f003fc070e0e070e070007000e001c00380070007000700000000000f800f800f800f80"},"/":{t:18,l:1,w:9,h:18,m:"y20051a0b160f100f060c0f0a060f1011140b1a071e"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["12-03"]={h:27,w:18,g:{0:{t:27,l:0,w:18,h:27,m:"y0e1b0e062b06042f04023302020d1a0d020b220b0926090926090926090926090926090926090b220b020d1a0d02023302042f04062b060e1b0e"},1:{t:27,l:4,w:10,h:27,m:"y0a0b22080b24060b26040b28020b2a0b2c37373737"},2:{t:27,l:0,w:17,h:27,m:"x08110a041906021d042102090e0b0205140b1a091a091a091a09180902140d02100f040e0d080a0f0a080d0e060b12040b14040916020918020918091a091a23232323"},3:{t:27,l:0,w:18,h:27,m:"x2302230223022302180b02160b04140b06120b08100b0a0e0b0c0a0d0e0a110a0a15060a1704160d021a09021c091c091c091c091a0b180b0205120d0221041f061d0806110e"},4:{t:27,l:0,w:18,h:27,m:"y200b0c1c0f0c18130c14170c101102090c0c1106090c08110a090c04110e090c1112090c0d16090c091a090c05141f181f181f181f22090c22090c22090c"},5:{t:27,l:1,w:16,h:27,m:"b7ffe7ffe7ffe7ffe7000f000f000f000f000ff80fff0fff8fffc007e001e001f000f000f000f000f001f001e007c01fcfff0ffe0ff00"},6:{t:27,l:0,w:18,h:27,m:"y1e0f0a181906141f041025020e130a0b020c130e0b0a150e0b080b02091209060b04091209040b06091209020b080912090b0a0b0e0b090c0b0e090207100b0a0b0205141b0403161b041a15081e0f0a"},7:{t:27,l:0,w:18,h:27,m:"y092e092e092e092e091c1309161909121d090e21090c1112090a0f1609080d1a09060b1e09040b201522132411260f280b2c"},8:{t:27,l:0,w:18,h:27,m:"b07f8001ffe003fff007fff807c0f807807807807807807803c0f003f3f000ffc0007f8000ffc001ffe003f3f007c0f80780780f003c0f003c0f003c0f003c0f807c07c0f807fff803fff001ffe0007f800"},9:{t:27,l:0,w:18,h:27,m:"y0c0d1e08151a041b18041b1603020b0a0b120502090e0910070b0e0b0c090912090a0b091209080b02091209060b04091209040b060b0e0b020b0802090e150a020b0a150c04250e0421120819160c0f1c"},A:{t:27,l:0,w:18,h:27,m:"y2e0926111e1916210e21080621101d020910150a09100b1409100b140910150a09101d0209100621100e210816211e1926112e09"},B:{t:27,l:0,w:19,h:27,m:"y37373737090e091009090e091009090e091009090e091009090e091009090e091009090e091009090e0910090b0a0b1009020b060f0c0b0221080b0204310206130417040a0b0a1306200d0a"},C:{t:27,l:1,w:16,h:27,m:"b03f00ffc1ffe1ffe3e1f7c0f780078007800f000f000f000f000f000f000f000f000f0007800780078007c0f3e1f1fff1ffe0ffc03f0"},D:{t:27,l:1,w:16,h:27,m:"y373737370926090926090926090926090209220902020b1e0b02040b1a0b04060d120d060827080a230a0e1b0e121312"},E:{t:27,l:1,w:16,h:27,m:"x1f021f021f021f0209180918091809180918091809181d041d041d041d040918091809180918091809180918091821212121"},F:{t:27,l:2,w:13,h:27,m:"y37373737090e0918090e0918090e0918090e0918090e0918090e0918090e0918092e092e"},G:{t:27,l:0,w:17,h:27,m:"y1017100a230a082906062d04040f120f04020b1e0b0202092209020b24090912090c090912090c090912090c090912090c090912090c090209101d0209101b020407101b020605101b02"},H:{t:27,l:1,w:16,h:27,m:"y3737373716091816091816091816091816091816091816091816091837373737"},I:{t:27,l:2,w:14,h:27,m:"y09260909260909260909260909260937373737092609092609092609092609092609"},J:{t:27,l:2,w:13,h:27,m:"y240b08240f042411022411022c0b2e092e092e092c0b3502350233042f08"},K:{t:27,l:-1,w:20,h:27,m:"y37373737140d161211141015120e0b040b100c0b080b0e0a0b0c0b0c080b100b0a060b140b08040b180b06020b1c0b040b200b0209240b072809052c070330053403"},L:{t:27,l:0,w:17,h:27,m:"y373737372e092e092e092e092e092e092e092e092e092e092e092e092e09"},M:{t:27,l:0,w:18,h:27,m:"y373737370d2a1522021b1a0a1b121213121213120a1b12021b1a15220d2a37373737"},N:{t:27,l:0,w:17,h:27,m:"y37373737112604112208111e0c131812111416130e1c110a201304261137373737"},O:{t:27,l:0,w:18,h:27,m:"y1213120c1f0c082708062b06040f120f04020b1e0b020b220b0926090926090926090926090b220b020b1e0b02040f120f04062b060827080c1f0c121312"},P:{t:27,l:0,w:18,h:27,m:"y3737373709100916091009160910091609100916091009160910091609100916091009160b0c0b16020b080b18021d1804191a06151c0a0d20"},Q:{t:27,l:0,w:19,h:27,m:"y1015120a210c062908042d06020f140f04020b1c0b040b1207080b0209140908090209140b06090209160b0409020b161502020b161104020f140d06042f04062f020a2d1015080b2e093007"},R:{t:27,l:0,w:17,h:27,m:"y373737370910091609100916091009160910091609100d120910110e0b0c170a020b080b021106021b08110204190c0f0615120b0a0d18093205"},S:{t:27,l:1,w:16,h:27,m:"b07e01ff83ffc7ffe7c1ef80ff00ff000f00078007e003f801fe007f801fc007e001e000f000f000ff00ff01f783e7ffe3ffc1ff807e0"},T:{t:27,l:0,w:18,h:27,m:"y092e092e092e092e092e092e092e37373737092e092e092e092e092e092e092e"},U:{t:27,l:0,w:18,h:27,m:"y2d0a3106330435022a0b022c0b2e092e092e092e092e092e092c0b2a0b023502330431062d0a"},V:{t:27,l:0,w:18,h:27,m:"y092e1126191e21160a1f0e121f061a1d22152a0d2a0d22151a1d121f060a1f0e2116191e1126092e"},W:{t:27,l:0,w:18,h:27,m:"y1b1c2b0c37371e1924131c1b141d06141310141310141b081c1b24131e1937372b0c1b1c"},X:{t:27,l:0,w:18,h:27,m:"y052e050926090d1e0d11161102130e130206130613060a230a0e1b0e1213121213120e1b0e0a230a061306130602130e13021116110d1e0d092609052e05"},Y:{t:27,l:0,w:18,h:27,m:"y0532092e0d2a112602132206131e0a131a0e29122512250e290a131a06131e02132211260d2a092e0532"},Z:{t:27,l:1,w:16,h:27,m:"b7ffe7ffe7ffe7ffe003c003c0078007800f000f001e001e003c003c0078007800f001f001e003e003c007c007800ffffffffffffffff"},a:{t:20,l:1,w:16,h:20,m:"b0ff03ffc7ffefc1ef00f000f000f000f07ff3fff7fff7ffff80ff00ff00ff01ff83f7fff3fff0fcf"},b:{t:27,l:0,w:18,h:27,m:"y37373737120b0c0b04100914090210091409020e0918090e0918090e0918090e0918090e0b140b0e0b140902100d0c0d02102304121f061619081a110c"},c:{t:20,l:1,w:15,h:20,m:"b07e00ff83ffc3ffe7c1e7800f800f000f000f000f000f000f000f800781e7c3e3ffc3ffc1ff807e0"},d:{t:27,l:0,w:18,h:27,m:"y1a110c161908122104102304100d0c0d020e0b1409020e0b140b0e0918090e0918090e0918090e09180910091409021009120b02120b0c0b0437373737"},e:{t:20,l:0,w:17,h:20,m:"x0c0d0a081506061904041d02020b0c09020209100909140723232323091a091a091a020918020d0c09041f041d020817040c0f08"},f:{t:27,l:1,w:15,h:27,m:"y12091c12091c12091c12091c12091c12091c082f0433023502350b08091c090a091c090a091c090a091c090a091c"},g:{t:20,l:0,w:17,h:27,m:"y0c0f1c061b0c0704041f0a09020223080902020d0c0b0a090b14090a070918070a070918070a070918070a070918070a070916090a07020912090a09040b0a0b0a09023502330433042f08"},h:{t:27,l:1,w:15,h:27,m:"y37373737100b1c10091e0e09200e09200e09200e09200e0b1e0e29102712251621"},i:{t:27,l:4,w:9,h:27,m:"y12091c12091c12091c12091c0b08091c0b08250b08250b08250b0825"},j:{t:27,l:4,w:10,h:34,m:"y3c093c091209220912092209120922090b0809200b0b0831020b0831020b082f040b082b08"},k:{t:27,l:0,w:17,h:27,m:"y373737371c0b101a0f0e18130c160b020b0a140b060b08120b0a0b06100b0e0b040e0b120b020e09160b0e071a090e051e070e0322053403"},l:{t:27,l:4,w:10,h:27,m:"y2f083304350235022c0b2e092e092e092e092e09"},m:{t:20,l:0,w:19,h:20,m:"y29292929020720072207222929290227020720072207220722292902270425"},n:{t:20,l:1,w:16,h:20,m:"y29292929040b1a02091e02091e09200920092009200b1e0227022704250821"},o:{t:20,l:0,w:18,h:20,m:"b03f0000ffc001ffe003e1f007c0f80780780f807c0f003c0f003c0f003c0f003c0f003c0f003c0f807c07807807c0f803e1f001ffe000ffc0003f000"},p:{t:20,l:0,w:18,h:27,m:"y37373737040b0c0b12020914091002091409100918090e0918090e0918090e0918090e0b140b0e0209140910020d0c0d10042112061d140819160c111a"},q:{t:20,l:0,w:18,h:27,m:"y0e0f1a081916061d14042112020d0c0d1002091409100b140b0e0918090e0918090e0918090e0918090e02091409100209140910040b0c0b1237373737"},r:{t:20,l:1,w:15,h:20,m:"y2929292904091c020720092007220722072209200d1c020b1c04091c06071c"},s:{t:20,l:1,w:16,h:20,m:"b0ff03ffc7ffef81ff00ff000f800fc007ff03ffc07fe003f001f000f000ff00ff81f7ffe3ffc0ff0"},t:{t:25,l:2,w:14,h:25,m:"y0a09200a09200a09202b082f043102330a09160b0a0918090a0918090a0918090a0918090a0918090a09180702"},u:{t:20,l:1,w:16,h:20,m:"y210825042702291e0b20092009200920091e09021e09021a0b0429292929"},v:{t:20,l:0,w:18,h:20,m:"y07220d1c1316191006190a0c190414151a0f200920091a0f14150c190406190a191013160d1c0722"},w:{t:20,l:0,w:18,h:20,m:"y0f1a2108292914151a0f1415101306100b0e100b0e10130614151a0f1415292921080f1a"},x:{t:20,l:1,w:16,h:20,m:"bf00f781e781e3c3c3c3c1e781e780ff00ff007e007e00ff00ff01e781e783c3c3c3c781e781ef00f"},y:{t:20,l:0,w:19,h:27,m:"y05320728090b24090f200902111a0b0611120d020a0f0c0f040e0f041106121b0a14150e1213120e13160a111c0611200211240f280b2c07300532"},z:{t:20,l:1,w:16,h:20,m:"b7fff7fff7fff7fff001f003e007c00f801f003e007c00f801f003e007c00f800ffffffffffffffff"},"~":{t:26,l:0,w:18,h:6,m:"b1f81c07fc1c0ffe3c0f1ffc0e0ff80e07e00"},"!":{t:27,l:6,w:5,h:27,m:"y210a0d210a0d210a0d210a0d210a0d"},"@":{t:27,l:0,w:18,h:27,m:"y0a090a1308060d061b04040f041f02020b082302090a0912090b0a071607090c071607090c091209090e1f02090c1f040b0a210202090a23020b2209040f1a0b0433082d020c2704121d08"},"#":{t:27,l:0,w:18,h:27,m:"y200906090c090c170c09061d0c2b062908290e1b06090e150c090e0706090c090e0c090c0906090c090c170c09061d0c2b062b06290e1b06090e150c090e07060922"},$:{t:27,l:0,w:18,h:28,m:"b01e00001e0000ffc003fff007fff807fff80f9e7c0f1e3c0f1e000f1e000f9e0007fe0003fe0001ff80007fe0001ff0001ff8001e7c001e3c001e3c0f1e3c0f9e7c07fff807fff803fff000ffc0001e00001e000"},"%":{t:27,l:0,w:18,h:27,m:"y040b28020f2007131a0b070607160f0706071213130e1304020f0c1308040b0a130c1413101013140c130a0b0408130c0f0204130e1313120706070f160706070b1a1307200f02280b04"},"^":{t:27,l:0,w:18,h:15,m:"b00c00001e00001e00003f00007f80007f8000ffc001ffe001f3e003e1f007c0f80780780f003c0f003c0600180"},"&":{t:27,l:0,w:18,h:27,m:"b03f0000ffc001ffe003ffe007e1f007c0f00781e00383e003c7c003df8001fe0000fc0001f80003f80007fc3c07be3c0f9e3c0f0f3c0f0fbc0f07b80f03f80f83f807c1f007fff003fff801fffc007f3c0"},"*":{t:26,l:0,w:18,h:18,m:"b01e00001e00001e00001e00041e08079e780ffffc0ffffc03fff000ffc0003f00007f8000ffc000f3c001e1e003e1f001c0e000c0c00"},_:{t:-3,l:-1,w:21,h:3,m:"x2b2b2b"},"+":{t:25,l:0,w:18,h:21,m:"y1009121009121009121009121009121009121009122b2b2b2b100912100912100912100912100912100912100912"},"`":{t:27,l:3,w:12,h:11,m:"bff00ff007f803f801fc00fc007e003e001f000f00070"},"-":{t:17,l:0,w:18,h:4,m:"x25252525"},"=":{t:21,l:0,w:17,h:12,m:"x232323232222222223232323"},'"':{t:27,l:2,w:14,h:9,m:"y1313131313121212121313131313"},"'":{t:27,l:6,w:5,h:12,m:"y1919191919"},"(":{t:27,l:4,w:10,h:27,m:"y160d141017100c1f0c08270806110a1106040d160d04020b1e0b020b220b092609072a07"},")":{t:27,l:4,w:10,h:27,m:"y072a070926090b220b020b1e0b02040d160d0406110a11060827080c1f0c101710160d14"},"{":{t:27,l:0,w:17,h:27,m:"y160918160918160918160918140d16101512082708042f040215081702020d180f020b220b092609092609092609092609092609092609"},"}":{t:27,l:0,w:17,h:27,m:"y0926090926090926090926090926090926090b220b020d180f020215081702042f04082708101512140d16160918160918160918160918"},"[":{t:27,l:2,w:14,h:27,m:"y37373737092609092609092609092609092609092609092609092609092609092609"},"]":{t:27,l:2,w:14,h:27,m:"y09260909260909260909260909260909260909260909260909260909260937373737"},"<":{t:26,l:0,w:18,h:25,m:"x20051e071a0b180d140f02120f040e0f080c0f0a080f0e060f10020f140f160b1a0f16020f14060f10080f0e0c0f0a0e0f08120f04140f02180d1a0b1e072005"},">":{t:26,l:0,w:18,h:25,m:"x0520071e0b1a0d18020f14040f12080f0e0a0f0c0e0f08100f06140f02160f1a0b160f140f02100f060e0f080a0f0c080f0e040f12020f140d180b1a071e0520"},"|":{t:27,l:7,w:4,h:34,m:"y45454545"},":":{t:20,l:5,w:7,h:20,m:"x0f0f0f0f0f0f0e0e0e0e0e0e0e0e0f0f0f0f0f0f"},";":{t:20,l:2,w:13,h:27,m:"y32052e092a0d260f022211041e13060d0e15080d0e130a0d0e110c0d0e0f0e0d0e0d100d0e0b120d0e0914"},".":{t:6,l:5,w:7,h:6,m:"x0f0f0f0f0f0f"},",":{t:7,l:2,w:13,h:14,m:"b03f803f807f807f80ff00fe01fc01f803f003e007c007800f000e000"},"\\":{t:27,l:1,w:16,h:27,m:"y07300b2c0f28132404132008131c0c131810131414131018130c1c13082013042413280f2c0b3007"},"?":{t:27,l:0,w:18,h:27,m:"y0c0922080d22060f22041122020d2802092c0b200d09220d091409060d09120b060d09100d060d0b0c0f060d02090c0b0a0d020d060b18021b1a04171c06131e0a0b22"},"/":{t:27,l:1,w:16,h:27,m:"y30072c0b280f24132013041c130818130c1413101013140c131808131c04132013240f280b2c0730"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["12-04"]={h:36,w:24,g:{0:{t:36,l:0,w:24,h:36,m:"y1421140c310c063d0604410402450202151c1502020d2c0d020d300d0b340b0b340b0b340b0b340b0b340b0b340b0b340b0b340b0d300d020d2c0d0202151c1502024304044104083b060c310c142114"},1:{t:36,l:4,w:15,h:36,m:"y0e0d2e0c0f2e0a0f300a0d32080d34060f34040f36040d38020d3a0d3c4949494949"},2:{t:36,l:1,w:22,h:36,m:"x0c130e061d0a022506022704022902020d0e0f020207160f02031c0d220b220b220b220b200d200b021e0d021a0f04180f0614110812110a0e110e0c11100a0f14080d18060d1a040d1c040b1e020b20020b200209220b220b222d2d2d2d2d"},3:{t:36,l:0,w:24,h:36,m:"x2d042d042d042d042d041e0f041c0f061a0f08180f0a160f0c140f0e120f10100f120e0f140c15100c1b0a0c1d080c1f061c1104200f02240b02240d260b260b260b260b240d240d220d02031e0f020b1211042b062b06270a02210e0a1314"},4:{t:36,l:0,w:24,h:36,m:"y2a0f102613102217101e1b101a1f101615040b101215080b100e150c0b100a15100b100615140b100215180b10131c0b100f200b100b240b10071a29031e292029202920292e0b102e0b102e0b102e0b102e0b10"},5:{t:36,l:2,w:20,h:36,m:"x022502022502022502022502022502020b1c020b1c02091e02091e02091e0b1e0b1e17121d0c2108230625041411041a0d021c0b021c0d1e0b1e0b1e0b1e0b1e0b1c0d1c0b021a0d02180d0414110410130621081d0c19101316"},6:{t:36,l:0,w:24,h:36,m:"y281110201f0a1c25081a2906162f0414190a11021019120d020e19160b020c1b160d0a0d040b1a0b080d060b1a0b060d080b1a0b040d0a0b1a0b020d0c0b1a0b0d0e0b1a0b0b100d160d09140b160b0207160d120d02051a0f0a0f04031c2704202306221f0826170c2a0f10"},7:{t:36,l:0,w:24,h:36,m:"y0b3e0b3e0b3e0b3e0b3e0b28170b221d0b1e210b1a250b16290b1415160b12111c0b0e11200b0c11220b0a0f260b080f280b060f2a0b020f2e19301732153413360f3a0b3e"},8:{t:36,l:0,w:24,h:36,m:"b00ff0007ffe01ffff83ffffc3ffffc7f81fe7e007e7c003e7c003e7c003e3e007c3f00fc1fc3f80ffff007ffe001ff8003ff8007ffe01ffff03fc3f83f00fc7e007e7c003ef8003ff8001ff8001ff8001ff8001ffc003f7e007f7f81fe7ffffe3ffffc1ffff807ffe001ff00"},9:{t:36,l:0,w:24,h:36,m:"y100f2a0c1924081f2206232004271c03040f0a0f1a05020d120d1607020b160b14090d160d100b0b1a0b0e0d0b1a0b0c0d020b1a0b0a0d040b1a0b080d060b1a0b060d080b1a0b020f0a0d161b0c020b16190e020d121712040f0a1914042f1606291a08231e0c1b22101128"},A:{t:36,l:0,w:24,h:36,m:"y40093811301926231e2b162f040e2f0c062f143514210a0b1419120b140f1c0b140f1c0b1419120b14210a0b143514062f140e2f0c162f041e2b2623301938114009"},B:{t:36,l:0,w:24,h:36,m:"x230e270a29082b062d040b1411020b180d020b1a0d0b1c0b0b1c0b0b1c0b0b1c0b0b1a0d0b1a0b020b160f022d042b06270a2b062d040b160f020b180d020b1a0d0b1c0b0b1c0b0b1c0b0b1c0b0b1c0b0b1a0d0b180d020b160f022d042d042b06270a230e"},C:{t:36,l:1,w:21,h:36,m:"y1819181029100c310c083908063d0604151617040211241102020d2c0d020d300d0b340b0b340b0b340b0b340b0b340b0d300d020f280f02020f280f02040d280d04060b280b06080928090838050c"},D:{t:36,l:1,w:21,h:36,m:"y49494949490b340b0b340b0b340b020b320b020b300b02020d2e0b02040d2a0d02040f260d04060f220f0408111a11060a151013080c330a0e2f0c122710161f141c131a"},E:{t:36,l:1,w:21,h:36,m:"x2b2b2b2b2b0b200b200b200b200b200b200b200b200b200b20270427042704270427040b200b200b200b200b200b200b200b200b200b200b202b2b2b2b2b"},F:{t:36,l:3,w:18,h:36,m:"y49494949490b140b200b140b200b140b200b140b200b140b200b140b200b140b200b140b200b140b200b140b200b3e0b3e0b3e"},G:{t:36,l:0,w:23,h:36,m:"y161b181029100c310c0a350a083b060613161506040f221104020f280f02020d2c0d02020b300b020d300d0b180b120b0b180b120b0b180b120b0b180b120b0b180b120b0b180b120b020b160b120b020d1427020d142502040b14250206091425020a05142502"},H:{t:36,l:1,w:22,h:36,m:"y49494949491e0b201e0b201e0b201e0b201e0b201e0b201e0b201e0b201e0b201e0b201e0b201e0b204949494949"},I:{t:36,l:3,w:18,h:36,m:"y0b340b0b340b0b340b0b340b0b340b0b340b49494949490b340b0b340b0b340b0b340b0b340b0b340b3e0b"},J:{t:36,l:3,w:17,h:36,m:"y300d0c3011083015043017023017023a0f3e0b3e0b3e0b3e0b3e0b3a0f47024702450443063d0c"},K:{t:36,l:-1,w:26,h:36,m:"y49494949491c111c1a151a181918161d16140f040f14120f080f12100f0c0f100e0f100f0e0c0f140f0c0a0f180f0a080f1c0f08060f200f06040f240f04020f280f020f2c0f0d300d0b340b093809073c07054005034403"},L:{t:36,l:0,w:23,h:36,m:"y49494949493e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b"},M:{t:36,l:0,w:24,h:36,m:"y49494949490f3a17321f2a0421240a231c121f181a17181a1718121f180a231c0421241f2a17320f3a4949494949"},N:{t:36,l:1,w:22,h:36,m:"y4949494949153402173006192a0c172610192014191c1a17181e191224170e2819082e170432174949494949"},O:{t:36,l:0,w:24,h:36,m:"y1a17181225120e2d0e0a350a0839080615161504040f240f04020d2c0d02020b300b020d300d0b340b0b340b0b340b0b340b0d300d020b300b02020d2c0d02040f240f0406151615040839080a350a0e2d0e1225121a151a"},P:{t:36,l:0,w:23,h:36,m:"y49494949490b160b1e0b160b1e0b160b1e0b160b1e0b160b1e0b160b1e0b160b1e0b160b1e0b160b1e0b160b1e0d120d1e020b100d20020f0a0f20042322042322061f240a17280e0f2c"},Q:{t:36,l:-1,w:27,h:36,m:"y16191a0e27140a2f1008350c06390a04151415080211200f08020d280d060d2c0b060b1a05100d040b1a07100b040b1a0b0c0b040b1a0d0a0b040b1a11060b040d1813020d04020d1a1b0602111819060415161308063d06083d040c3b0210270211161b0c0d3e0b420744054603"},R:{t:36,l:0,w:23,h:36,m:"y49494949490b160b1e0b160b1e0b160b1e0b160b1e0b160b1e0b160f1a0b1613160b1617120d121d0e020b120b02150a020f0a0d06170604230a170204211015061d16110a171c0d0e0f240942074603"},S:{t:36,l:1,w:22,h:36,m:"b00fe0003ff800fffc01fffe03ffff03f83f07e01f87c00f87c00f87c00007c00007e00003e00003f80001fe0000ff80007fe0003ff8000ffc0001fe00007f00003f80001f80000fc00007c00007cf8007cf8007cfc00fcfe01f87f03f87ffff03ffff01fffe007ff8001fe00"},T:{t:36,l:0,w:24,h:36,m:"y0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e49494949490b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e0b3e"},U:{t:36,l:0,w:23,h:36,m:"y3b0e3f0a410843064504380f023a0d023c0d3e0b3e0b3e0b3e0b3e0b3e0b3c0d3c0d3a0d02380f024504450443063f0a3b0e"},V:{t:36,l:-1,w:26,h:36,m:"y03460b3e13361b2e232602291e0a291612290e1a290622272a1f32173a0f3a0f32172a1f22271a27081227100a271802272023261b2e13360b3e0346"},W:{t:36,l:0,w:24,h:36,m:"y212833163f0a4949202936132e1b28212023061c1f0e1c17161c17161c1f0e20230628212e1b3613202949493f0a33162128"},X:{t:36,l:0,w:24,h:36,m:"y4405053c0909340d0d2c11112415151c1702041514170608150c170a0c1504170e102712141f1618171a18171a141f161027120c1504170e08150c170a0415141706151c17021124150d2c1109340d053c094405"},Y:{t:36,l:0,w:23,h:36,m:"y054409400d3c1138153404153008152c0c1528101524143518311c2d183114351015240c152808152c041530153411380d3c09400544"},Z:{t:36,l:2,w:20,h:36,m:"y0b340b0b300f0b2c130b28170b241b0b201f0b1c15040b0b1815080b0b14150c0b0b1015100b0b0c15140b0b0815180b0b04151c0b1f200b1b240b17280b132c0b0f300b0b340b3e0b"},a:{t:27,l:1,w:21,h:27,m:"x0c150a081d06062104042502020f0c0d02020b120d020b140b200b200b200b0e1d082306250427020d120b020b140b0b160b0b160b0b160b0b140d0b120f0d0e11020d0a13022904270617040b0a0f080b"},b:{t:39,l:0,w:24,h:39,m:"y4f4f4f4f4f1e0f0e11041c0d160d041a0d1a0d021a0b1e0b02180d200b180b220b180b220b180b220b180b220b180b220b180d1e0d1a0d1a0d021a0f160f021a130e11041c2f041e2b0620250a241f0c2a1312"},c:{t:27,l:1,w:21,h:27,m:"y1213120c1f0c0a2508062b06042f04040f121102020d1a0d02020b1e0d0d1e0d0b220b0b220b0b220b0b220b0b220b0d1e0d020d1a0d02020d180f02040b180d040609180b0608071809080c0318030e"},d:{t:39,l:0,w:24,h:39,m:"y2a1312241f0c2027081e2b061c2f041a130e11041a0f160f021a0d1a0d02180d1e0d180b220b180b220b180b220b180b220b180b220b180b220b1a0b1e0b021a0d1a0d021c0d160d041c110e0f064f4f4f4f4f"},e:{t:27,l:1,w:22,h:27,m:"x100f0e0a190a081d08062106042504040d0c0f02020d120b02020b140b020209180b0b180b2d2d2d2d2d0b220b220b22020b20020b20020d1e040f0c0d020427020625020821040c1b0610110c"},f:{t:39,l:2,w:19,h:39,m:"y180b2c180b2c180b2c180b2c180b2c180b2c180b2c0c430847044b044b024d020d0a0b2c0d0c0b2c0b0e0b2c0b0e0b2c0b0e0b2c0b0e0b2c0b0e0b2c"},g:{t:27,l:0,w:23,h:36,m:"y1013260a1f2008231207060627100904042b0e0b0202110e110c0b02020b1a0b0c0b020b1e0b0c0b0b1e0b0e090922090e090922090e090922090e090922090e090922090e0902091e09100902091e090e0b040b160b100902040f0e0f0e0b0247024504430641083d0c"},h:{t:39,l:2,w:20,h:39,m:"y4f4f4f4f4f1c0d261a0d281a0b2a180b2c180b2c180b2c180b2c180b2c180d2a180f281a351a351c331e31222d"},i:{t:39,l:5,w:13,h:39,m:"y180b2c180b2c180b2c180b2c180b2c180b2c0f0a0b2c0f0a0b2c0f0a370f0a370f0a370f0a370f0a37"},j:{t:39,l:5,w:14,h:48,m:"y560b560b560b180b340b180b340b180b340b180b340b0f0a0b320d0f0a0b300d020f0a47020f0a45040f0a45040f0a43060f0a3f0a"},k:{t:39,l:0,w:23,h:39,m:"y4f4f4f4f4f2a0f16281314261712241b10220f020f0e200f060f0c1e0f0a0f0a1c0f0e0f081a0f120f06180f160f04180d1a0f02180b1e0f1809220d1807260b18052a0918032e074a054c03"},l:{t:39,l:5,w:14,h:39,m:"y430c47084b044d024d02400f420d440b440b440b440b440b440b440b"},m:{t:27,l:0,w:25,h:27,m:"y373737373704092a02072e092e092e0b2c37373702350235020b2a092e092e092e0b2c373702350433082f"},n:{t:27,l:1,w:22,h:27,m:"y3737373737060d24040d26020d28020b2a0b2c0b2c0b2c0b2c0b2c0b2c0d2a020d28023504330631082f0c2b"},o:{t:27,l:0,w:24,h:27,m:"b00ff0003ffc007fff01ffff81fc3f83f00fc7e007c7c003e7c003efc003ff8001ff8001ff8001ff8001ff8001ff8001ff8001ffc003e7c003e7c003e7e007c3f00fc1fc3f80ffff007ffe003ffc000ff00"},p:{t:27,l:0,w:24,h:36,m:"y494949494904110e1116040d160d16020d1a0d14020b1e0b140b220b120b220b120b220b120b220b120b220b120b220b120d1e0d12020b1c0d14020f160f1404110e1116042f16062b180a231c0e1b20121324"},q:{t:27,l:0,w:24,h:36,m:"y1411240e1d1e0a231c062b18042f1604110e1116020f180d14020d1c0b140d1e0d120b220b120b220b120b220b120b220b120b220b120b220b12020b1e0b14020d1a0d14040d160d1604110e11164949494949"},r:{t:27,l:2,w:19,h:27,m:"y3737373737060d2404092a02092c02092c092e092e092e0b2c0d2a021124021124040f24060d240a0924"},s:{t:27,l:1,w:22,h:27,m:"b01ff0007ffe01ffff03ffff03f03f87e01f87c00f87c00007c00007e00003f80003ff8001fff8007ffe001fff0000ff80001f800007c00007c00007cf8007cfc00fc7e03f87ffff83ffff01fffc003fe00"},t:{t:35,l:2,w:19,h:35,m:"y100b2c100b2c100b2c100b2c100b2c04390a023f060241040243024502100b200d100b200d100b220b100b220b100b220b100b220b100b220b100b220902100b200b02"},u:{t:27,l:1,w:22,h:27,m:"y2d0a3106330435023502280f2a0d2c0b2c0b2c0b2c0b2c0b2a0b022a0b02280d02260d04240d063737373737"},v:{t:27,l:-1,w:26,h:27,m:"y0334092e0f2815221b1c21160621100c210a1221041a1d201726112c0b2c0b261120171a1d1221040c210a06211021161b1c15220f28092e0334"},w:{t:27,l:0,w:24,h:27,m:"y0f282116310637371225280f22151c1b161d0416150c160f12160f1216150c161d041c1b2215280f12253737310621160f28"},x:{t:27,l:0,w:25,h:27,m:"y033203052e050926090b220b0f1a0f11161102130e130206110a110608110611080c1f0c0e1b0e121312140f141213120e1b0e0c1f0c081106110806110a110602130e13021116110f1a0f0b220b092609052e05033203"},y:{t:27,l:-1,w:26,h:36,m:"y034607380b0b340b0f300b132a0d0215240f06151c11020a151413040e150e1306121506150816270c1a1f101e19121e15161a151a16151e1215220e15260a152a06152e02153213360f3a0b3e07420346"},z:{t:27,l:2,w:20,h:27,m:"x022702270227022702271c0d1a0d02180d04160d06140d08120d0a100d0c0e0d0e0e0b100c0b120a0d12080d14060d16040d18020d1a020b1c0d1c2929292929"},"~":{t:39,l:-1,w:26,h:9,m:"b03c002000ff007001ffc0f803fff9fc07fffff80fe3fff007c0ffe003803fc001000f000"},"!":{t:39,l:8,w:7,h:39,m:"y1b280d31120d31120d31120d31120d31120d1b280d"},"@":{t:40,l:0,w:25,h:40,m:"y0e0918170c0a0d122306061110270404130e2b0204110e2d02020d140d140f020b16091a0d0d16091c0b0b18091c0b0b1a091a0b0b1a0d120d020b182d020b182b040b182b040d162d020d162f020d360d020f360b040f340b0417280f0649020a45020c41041239061a2b0c"},"#":{t:39,l:0,w:24,h:39,m:"y360314031c0312090a0d1609120902151609121f16090829163306142b100a2f162b060916230e09161f1209160f08091209120505120912090a0d1609121f160910211609062b163108102d12063316290809161f1209161f1209160d0a0912031c03140336"},$:{t:39,l:0,w:25,h:39,m:"y100d1c07100c15180b0c0a19160d0a081d140d0a081f120f08060d080d160b08060b0c0d160b06060b0e0b160b06060b0e0b160b060609120b1609064f4f4f4f4f0609140d120906060b140b100b06060b140d0e0b06060b140d0c0d06080f100d080d08080f1021080a0d121d0a0c0b14190c100716150e300d12"},"%":{t:38,l:0,w:24,h:38,m:"y080b3a04132c0b0217280d1b2211090a091e15090a091a1504090a091615081b14130c02171213100413101314080b1015161e151a1c131e1813100b08141310130410151017020c15121b081516090a0906131a090a0902131e090a0911221b0f2617020b2c13043a0b08"},"^":{t:39,l:0,w:24,h:20,m:"b001800003c00007e00007e0000ff0001ff8001ff8003ffc003ffc007ffe00ffff00fe7f01fc3f83f81fc3f00fc7e007efc003ff8001f70000e200004"},"&":{t:39,l:0,w:24,h:39,m:"b00fe0003ff800fffc01fffe03ffff03f83f87e01f87e00f87c00f87c00f87c00f87c01f03e03f03e07e03f0fc01f3f801fff000ffe0007f80007f0000ff0001ff0003ff81f7efc1f7c7c1f7c7e1ff83f1ff81f9ef81f9ef80ffef807fefc07fc7e03fc7f81f83ffffc3ffffc1ffffe07ffbf01fe3f"},"*":{t:38,l:0,w:24,h:25,m:"b003c00003c00003c00003c00003c00003c00203c04783c1e7f3cfe7ffffeffffffffffff1ffff801ff8000ff0000ff0001ff8003e7c007e7e00fc3f00f81f01f81f80f00f00700e0020040"},_:{t:-4,l:-1,w:27,h:5,m:"x3737373737"},"+":{t:33,l:1,w:22,h:27,m:"y160b16160b16160b16160b16160b16160b16160b16160b163737373737160b16160b16160b16160b16160b16160b16160b16160b16160b16"},"`":{t:36,l:4,w:16,h:14,m:"bffc0ffc0ffe07fe03ff01ff00ff807f803fc01fc00fe007e003f001f"},"-":{t:17,l:1,w:22,h:7,m:"x2d2d2d2d2d2d2d"},"=":{t:28,l:1,w:22,h:17,m:"x2d2d2d2d2d2c2c2c2c2c2c2c2d2d2d2d2d"},'"':{t:36,l:3,w:17,h:11,m:"y1717171717171616161616171717171717"},"'":{t:36,l:9,w:6,h:15,m:"y1f1f1f1f1f1f"},"(":{t:39,l:5,w:14,h:39,m:"y1e151c182116122b120e330e0c370c0a1512170806131e13060411261104020f2c11020f320f0d360d0b380d093c0b093e09"},")":{t:39,l:5,w:14,h:39,m:"y093e09093c0b0b380d0d360d0f320f020f2c1102041126110406131e13060a151217080c370c0e330e122b121623161e151c"},"{":{t:39,l:1,w:22,h:39,m:"y220b22220b22220b22220b22220b22200f20200f20102f10083d0a0621022106042106210402210a2102020f2c1102020b360b020d360d0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b"},"}":{t:39,l:1,w:22,h:39,m:"y0b3c090b3c090b3c090b3c090b3c090b3c090b3c090d380b020b380902020f2e0f0202210a210204210621040621022106083f080e2f12200f20200f20220b22220b22220b22220b22220b22"},"[":{t:39,l:3,w:18,h:39,m:"y4f4f4f4f4f0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b"},"]":{t:39,l:2,w:19,h:39,m:"y0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b0b3a0b4f4f4f4f4f"},"<":{t:37,l:0,w:25,h:35,m:"x30032c072a09260d240f20131e13021a130618130814130c12130e1011120c13140a111806131a04111e13200f24112202131e06111c0813180c11160e131210131014110e16130a1a11081c13041e1302220f02240d022809022a07022c0502"},">":{t:37,l:0,w:25,h:35,m:"x0330072c092a0d260f24132002131e06131a0813180c13140e131212111014130c16130a1a13061c13042013221120131e13021a130618130814130c12130e0e13120c131408131806131a02131e132011220d260b28072c052e"},"|":{t:39,l:9,w:5,h:48,m:"y6161616161"},":":{t:27,l:7,w:9,h:27,m:"y111611111611111611111611111611111611111611111611111611"},";":{t:27,l:2,w:19,h:38,m:"y4a034607420b3e0f3a1336173219022e1b042a1d06261f0811161d0a11161b0c1116190e1116171011161512111613141116111611160f1811160d1a"},".":{t:8,l:7,w:9,h:8,m:"x1313131313131313"},",":{t:8,l:2,w:19,h:19,m:"y240320071c0b180f141310170c1902081b04041d061f081d0a1b0c190e17101512131411160f180d1a"},"\\":{t:39,l:2,w:20,h:39,m:"y034c09460d42133c1738021b32061d2c0c1b28121b22161b1e1c1b18201d12261b0e2c1b08301b0436193a15400f46094a05"},"?":{t:40,l:0,w:25,h:40,m:"y0e0d360a113608133606153604173604173602153a020f400d440d360f0b380f0b200b0e0f0b1e0d0e0f0b1c0f0e0f0b1a110e0f0b18130e0f0d14150e0f020d100f160f020f0a112602272804232a061f2c081b2e0a17300e0d36"},"/":{t:39,l:2,w:20,h:39,m:"y4c034609420d3c133817321b022e1908281b0c221b121e1b16181b1c141b200e1b26081d2a041b301936153a0f400b44054a"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["12-05"]={h:45,w:30,g:{0:{t:45,l:0,w:31,h:45,m:"y1a251c1039120c430c084b08064f06045304021b201d020211361102020d3c0f02020d3e0f0d420d0d420d0d420d0d420d0d420d0d420d0d420d0d420d0d420d0d420d0d420d0f3e0d02020d3e0d020211361102021b241704045304064f06084b080c430c1239101c251a"},1:{t:45,l:6,w:18,h:45,m:"y12113810113a0e113c0c113e0a133e0a1140081142061144041146041146021148114a5b5b5b5b5b5b"},2:{t:46,l:1,w:28,h:46,m:"y4a1306112e19060f2c1d040f2a21040f2823020f2825020f2613080d020d26110c0d020d24110e0d0f240f100d0f220f120d0d220f140d0d220d160d0d200f160d0d1e0f180d0d1e0d1a0d0d1c0f1a0d0d1c0d1c0d0f180f1c0d020f140f1e0d0211100f200d04110a13200d042b220d0627240d0823260d0a1f280d0c192c0d120f3c"},3:{t:45,l:0,w:30,h:45,m:"x39043904390439043904390426130424130622130820130a1e130c1c130e1a131018131216131414131612131810131a101914101f0e10230a1025081027062415042813022c0f022e0d022e0f300d300d300d300d300d2e0f2e0f2c0f022a1102072211040d16170437063508330a2f0e0427120c171a"},4:{t:45,l:0,w:30,h:45,m:"y3611143215142e19142a1d142621142225141e1b020d141a1b060d14161b0a0d14121b0e0d140e1b120d140a1b160d14061b1a0d14021b1e0d1419220d1415260d14112a0d140d2e0d1409203305243328332833283328333a0d143a0d143a0d143a0d143a0d143a0d14"},5:{t:45,l:2,w:26,h:45,m:"x023102023102023102023102023102023102020d26020d26020d26020d260f260f260d280d281d182312270e2b0a2d082f0609121704201104240f02240f02260d02280d280d280d280d280d280d280d260f260d02240f022211022011041e11061a1506121b08290c270e23121f16171e"},6:{t:45,l:0,w:31,h:45,m:"y3215142c1f1026290c222f0a2033081c39061a1d0c1504161f121104141d181102121f1a0f021011020d1e0d020e11020f1e0f0a13040d220d0811080d220d06110a0d220d04110c0d220d02110e0d220d11100d220d0f120d220d0d140f1e0f0b180d1e0d02091a0f1a0f02071c111611020520111211040322130c1504262f06282b082a270a2c230c301b10341314"},7:{t:45,l:0,w:31,h:45,m:"y0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d341b0d2c230d28270d242b0d202f0d1c330d1a1b1a0d1619200d1417240d1215280d10132c0d0e132e0d0a13320d0813340d0613360d041338213a1d3e1b40194217441546114a0d4e"},8:{t:45,l:0,w:31,h:45,m:"x1415160e21100a290c082d0a06310804350604131013060211181104020f1c0f04020d200d04020d200d04020d200d04040d1c0d06040f180f06060f140f0806130c13080a2b0a0c250e0e2110121914101d120c250e0a290c081702150a06150c13060413121304040f1a0f04020f1e0f02020d220d020f220f0d260d0d260d0d260d0d260d0d260d0f220f020f1e1102111a11020217101502043704063306082f080a2b0a0e230e141714"},9:{t:45,l:0,w:31,h:45,m:"y161134101b300c232c0a272a082b28062f240304150a152005041112111e07021116111a09020f1a0f180b020d1e0f140d0f1e0f120f0d220d10110d220d0e11020d220d0c11040d220d0a11060d220d0811080d220d06110a0d220d02130c0f1e0d02130e020d1e1f10020f1a1f120211181b160411121d1804150a1f1a06371e0833200a2d240c2728101f2c161332"},A:{t:45,l:-1,w:32,h:45,m:"y5803500b481342193a2132292a312233061a330e1431160c351a042f020d1a2b0a0d1a23120d1a1b1a0d1a13220d1a0f260d1a191c0d1a21140d1a2b0a0d1a33020d1a043d1a0c391614390e1c3b0424372c2f34273c1f46154e0d5605"},B:{t:45,l:0,w:31,h:45,m:"y5b5b5b5b5b5b0d1a0b1e0d0d1a0b1e0d0d1a0b1e0d0d1a0b1e0d0d1a0b1e0d0d1a0b1e0d0d1a0b1e0d0d1a0b1e0d0d1a0b1e0d0d1a0b1e0d0d1a0b1e0d0d1a0b1e0d0f180b1e0d0f180b1e0d020f140f1a0f021110111a0d0202130a17160f0204331211020625020f0a13040823022b040a1f0627060e19082508120f121d0c34190e380f14"},C:{t:45,l:1,w:27,h:45,m:"y201b20182b181237120e3f0e0a470a084b08061b1a1b0604152a150404113211040211361102020d3c0f020f3e0f0d420d0d420d0d420d0d420d0d420d0f3e0f0f3e0f020f3a0f02021332130204113211040411321104060f320f06080d320d080c09320b0a460510"},D:{t:45,l:2,w:26,h:45,m:"y5b5b5b5b5b5b0d420d0d420d0d420d020d400d020d3e0d02020f3c0d02040d3a0f02040f380f02060f340f04061130110408112c11060a132611080c151e15080e1912190a103f0c1239101633121a2b161e231a261322"},E:{t:45,l:2,w:26,h:45,m:"x3535353535350d280d280d280d280d280d280d280d280d280d280d280d280d282f062f062f062f062f062f060d280d280d280d280d280d280d280d280d280d280d280d280d280d28353535353535"},F:{t:45,l:3,w:23,h:45,m:"y5b5b5b5b5b5b0d1a0d280d1a0d280d1a0d280d1a0d280d1a0d280d1a0d280d1a0d280d1a0d280d1a0d280d1a0d280d1a0d280d1a0d280d1a0d280d4e0d4e0d4e0d4e"},G:{t:45,l:0,w:29,h:45,m:"y1e1d20162f161237120e3f0e0c430c0a49080819181b08061526150604132e1304040f360f04020f3a0f02020f3c0d02020d3e0f0f3e0f0d1e0d180d0d1e0d180d0d1e0d180d0d1e0d180d0d1e0d180d0d1e0d180d0d1e0d180d020d1c0d180d020f1a0d160f0211182f02040f182f02060d182f02080b182f020a09182d040e05182d04"},H:{t:45,l:1,w:28,h:45,m:"y5b5b5b5b5b5b260d28260d28260d28260d28260d28260d28260d28260d28260d28260d28260d28260d28260d28260d28260d28260d285b5b5b5b5b5b"},I:{t:45,l:4,w:22,h:45,m:"y4e0d0d420d0d420d0d420d0d420d0d420d0d420d0d420d5b5b5b5b5b5b0d420d0d420d0d420d0d420d0d420d0d420d0d420d4e0d"},J:{t:45,l:4,w:22,h:45,m:"y3c0f103c150a3c17083c19063c1b043c1d024a0f024c0f4e0d4e0d4e0d4e0d4e0d4e0d4c0f4a0f025902570455065308510a4d0e"},K:{t:45,l:-1,w:33,h:45,m:"y5b5b5b5b5b5b2411262215242019221e1d201c211e1a1104111c181108111a16110c11181411101116121114111410111811120e111c11100c1120110e0a1124110c081128110a06112c110804113011060211341104113811020f3c110d400f0b440d09480b074c090550070354055803"},L:{t:45,l:1,w:28,h:45,m:"y5b5b5b5b5b5b4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d"},M:{t:45,l:0,w:30,h:45,m:"y5b5b5b5b5b5b13481942213a273406292c0c2b24122b1e18251e201d1e201d1e18251e122b1e0c2b24042b2c2932213a194213485b5b5b5b5b5b"},N:{t:45,l:1,w:28,h:45,m:"y5b5b5b5b5b5b19421d3e041d3a081f340c1f30121d2c161f261a1f22201d1e241f18281f142e1d10321f0a361f063c1d02401b5b5b5b5b5b5b"},O:{t:45,l:0,w:30,h:45,m:"y221920182b18143512103b100c430c0a470a08191a1908061528130604113211040211361102020f3a0f020f3e0f0d420d0d420d0d420d0d420d0d420d0d420d0f3e0f020f3a0f0202113611020411321104061528130608191a19080a470a0c430c103d0e143314182b18221920"},P:{t:45,l:0,w:29,h:45,m:"y5b5b5b5b5b5b0d1c0d260d1c0d260d1c0d260d1c0d260d1c0d260d1c0d260d1c0d260d1c0d260d1c0d260d1c0d260d1c0d260d1c0d260d1a0f260f180d28020d160f28020f140f2802130c112a042d2a06292c08252e0a21300e1934121138"},Q:{t:45,l:-2,w:34,h:45,m:"y1e1b22142f181037140c3d120a430e08470c0619181b0a0415261508040f301108020f360f06020d2003180d060f2005160f040d2207160d040d220b120d040d220d100d040d220f0e0d040d22130a0d040f2015060f04020d222506020f2223060411221d080415201b08061b18190a084b080a4d040e4b02104b162d06131e1d120f4e0d500b540756055803"},R:{t:45,l:1,w:28,h:45,m:"y5b5b5b5b5b5b0d1c0d260d1c0d260d1c0d260d1c0d260d1c0d260d1c0d260d1c11220d1c151e0d1c191a0d1a1f160f182312020d18270e020f140d06190c02130c11081b08042d0c1b040629121b082518170a211e130c1b241112112c0d52095605"},S:{t:45,l:1,w:27,h:45,m:"y420910100f240d0c0c172011080a1d1c130608211a1306062518150404271e0f0402110a111e0f02020f0e0f200d02020d120f1e0f0f140d200d0d160f1e0d0d180d1e0d0d180f1c0d0d1a0d1c0d0d1a0f1a0d0d1c0d180f0f1a0f160f020f1a0f120f02021118110e1102041316110a110404131829040611182706080f1a23080a0d1c1f0a0e0920190c3a0f12"},T:{t:45,l:0,w:30,h:45,m:"y0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e5b5b5b5b5b5b0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e0d4e"},U:{t:45,l:0,w:29,h:45,m:"y49124d0e510a5308550657044413044811024a0f024c0d024c0f4e0d4e0d4e0d4e0d4e0d4e0d4e0d4c0f4c0d024a0f02481102461104570455065308510a4d0e4912"},V:{t:45,l:-1,w:32,h:45,m:"y05560d4e15461d3e25362b3033280833201033181833102033082833302b3823401b48134813401b3823302b283320330818331010331808332033282b3025361d3e15460d4e0556"},W:{t:45,l:0,w:31,h:45,m:"y25363922471453085b5b1e3d362542193c1f34272c2f262d08222910222118221920222118222910262d082c2f34273c1f421936251e3d5b5b5308471439222536"},X:{t:45,l:0,w:31,h:45,m:"y035603074e070b460b0f3e0f133613172e171b261b021d1e1d02061b1a1b060a1b121b0a0e1b0a1b0e121b021b12162f161a271a1e1f1e2217221e1f1e1a271a162f16121b021b120e1b0a1b0e0a1b121b0a061b1a1b06021d1e1d021b261b172e171336130f3e0f0b460b074e07035603"},Y:{t:45,l:0,w:30,h:45,m:"y035807540b500f4c134817441b40041b3c081b380c1b34101b30141b2c18431c3f203b203b1c3f1843141b2c101b300c1b34081b38041b3c1b40174413480f4c0b5007540358"},Z:{t:45,l:2,w:26,h:45,m:"y4e0d0d3e110d3a150d36190d321d0d2e210d2a250d26290d221d040d0d1e1d080d0d1a1d0c0d0d161d100d0d121d140d0d0e1d180d0d0a1d1c0d0d061d200d0d021d240d27280d232c0d1f300d1b340d17380d133c0d0f400d4e0d4e0d"},a:{t:33,l:1,w:27,h:33,m:"x12170e0c2308082906062d04062f0204130e1102040f160d02040d1a0d2a0d2a0d2a0d2a0d12250c2b082f063104330213160d020f1a0d020d1c0d0d1e0d0d1e0d0d1c0f0d1c0f0d1a110f161311121502110c19023504330623020d0a1b060d10110a0d"},b:{t:48,l:0,w:29,h:48,m:"y6161616161612413101506220f1c1104220d200f04200d240f02200b280d021e0d280f1e0b2c0d1e0b2c0d1e0b2c0d1e0b2c0d1e0b2c0d1e0b2c0d1e0d280f200d240f02200f20110220111c11042215101704243706263308282f0a2a2b0c2e2310361516"},c:{t:33,l:2,w:26,h:33,m:"y1813181023100e290c0a2f0a0835060637060415141304040f1e1102020d260d02020b2a0b020d2a0d0b2e0b0b2e0b0b2e0b0b2e0b0b2e0b0d2a0d0d2a0d020d240f0202111c130202111c1104040f1c1104060d1c0f06080b1c0d080a091c090c10031c0510"},d:{t:48,l:0,w:29,h:48,m:"y3615162e23102a2b0c282f0a263308243706221512150420111c1104200f220f02200d260d021e0d2a0d1e0b2c0d1e0b2e0b1e0b2e0b1e0b2e0b1e0b2e0b1e0b2e0b1e0d2a0b02200b2a0b02200d260d02220d220d04220f1e0f042413121306616161616161"},e:{t:33,l:1,w:28,h:33,m:"x141114101b0e0c230a0a2708082b0606130a13040411120f04040f160f02040d1a0d02020d1c0d02020d1e0b02020d1e0d0d200d39393939390d2c0d2c0d2c020b2c020d2a020d2a020f28040f260411140f0206130e1102082f020a2b040c2706101f0a161310"},f:{t:48,l:2,w:25,h:48,m:"y1e0b381e0b381e0b381e0b381e0b381e0b381e0b381e0b381e0b381e0b3810510a570859045d045d025f020f0e0b380f100b380d120b380b140b380b140b380b140b380b140b380b140b380b140b38"},g:{t:33,l:1,w:28,h:44,m:"y1415300e211a070a0a29160b06082f120d040633100d0404370e0f02041312130e0f02020f1c110c0f02020d220d100d0d260d0e0d0d260d100b0b2a0b100b0b2a0b100b0b2a0b100b0b2a0b100b0b2a0b100b0b2a0b100b020b260b120b020b260b100d020d220b120b02040f1a0f100d0206111013100f0255045504530651084f0a4910"},h:{t:48,l:2,w:25,h:48,m:"y61616161616122112e220f30200f32200d34200b361e0d361e0d361e0d361e0d361e0d361e0f341e0f342011302041223f223f243d28392c35"},i:{t:48,l:6,w:17,h:48,m:"y1e0d361e0d361e0d361e0d361e0d361e0d361e0d361e0d36110e0d36110e0d36110e0d36110e43110e43110e43110e43110e43110e43"},j:{t:48,l:6,w:17,h:60,m:"y6e0b6e0b6e0b6e0b1e0d440b1e0d440b1e0d440b1e0d440b1e0d420d110e0d400d02110e0d3c1102110e5902110e5704110e5506110e5506110e510a110e4d0e"},k:{t:48,l:0,w:29,h:48,m:"y616161616161360f1c34131a321718301b162e1f142c23122a11041310281108130e26110c130c241110130a221114130820111813061e111c13041e0f2013021e0d24131e0b28111e092c0f1e07300d1e05340b1e0338095a075c055e03"},l:{t:48,l:6,w:18,h:48,m:"y5110570a5b065d045d045f02500f02520f540d540d560b560b560b560b560b560b560b560b"},m:{t:33,l:0,w:31,h:33,m:"y434343434343040b34020b360209380b380b380b380d3643434302410241043f020d34020b360b380b380b380d3643430241043f063d0a39"},n:{t:33,l:1,w:28,h:33,m:"y43434343434306112c060d30040d32020d34020b36020b360b380b380b380b380b380b380d360d36020d34020f320241043f063d083b0a391033"},o:{t:33,l:0,w:31,h:33,m:"y181318121f120e270e0a2f0a083308063706061310150604111a1104020f220f02020d260d02020b2a0b020d2a0d0d2c0b0b2e0b0b2e0b0b2e0b0b2e0b0b2e0b0b2e0b0d2a0d020b2a0b02020d260d02020f220d0404111c0f0404151213060635080833080a2d0c0e270e121f12181318"},p:{t:33,l:0,w:30,h:44,m:"y595959595959061312131c040f1e0f1a040d220d1a020d260d18020b2a0b180d2a0d160b2e0b160b2e0b160b2e0b160b2e0b160b2e0b160b2e0b160d2a0d16020b2a0b18020d260d18020f220f18040f1e0f1a041512151a06371c08331e0a2f200e2724121f2818132e"},q:{t:33,l:0,w:30,h:44,m:"y18132e121f280e27240a2f2008331e06371c041512151a040f1e0f1a020f220f18020d260d18020b2a0b180d2a0d160b2e0b160b2e0b160b2e0b160b2e0b160b2e0b160b2e0b16020b2a0d16020b2a0b18020d260d18040d220d1a040f1e0f1a061312131c595959595959"},r:{t:33,l:3,w:24,h:33,m:"y43434343434306112c040d32040b34020b36020b360b380b380b380b380b380d360f3402132e02132e04112e060f2e080d2e0c092e"},s:{t:33,l:1,w:27,h:33,m:"x1215100c210a082708062b06042d0604110e1104020f140f04020d180d04020d28020d28020d28020f26040f2404171c061f1208230c0c2308121f06181b04221302280d022a0d2a0d2a0d0d1e0d0d1c0f0f181113101302023104042f0406290808230c0e1712"},t:{t:43,l:3,w:24,h:43,m:"y120b3a120b3a120b3a120b3a120b3a120b3a02470e024b0a5106530455025502120b2a0f02120b2e0d120b2e0d120b300b120b300b120b300b120b300b120b300b120b2e0d120b2e0b02120b2c0d02120b2c0d02"},u:{t:33,l:1,w:28,h:33,m:"y350e390a3d063f043f044102320f02340f360d380b380b380b380b380b380b360b02360b02360b02340b04320d04300d062a1306434343434343"},v:{t:33,l:-1,w:32,h:33,m:"y0340093a0f34152e1b282122271c0429160a291010290a1629041c272221281b2e15340f340f2e15281b22211c2716290410290a0a2910042916271c21221b28152e0f34093a0340"},w:{t:33,l:0,w:30,h:33,m:"y0f341f242f143f0443430c37202330132a19241f1e21041a1f0a1a19101a13161a13161a19101a1f0a1e2104241f2a19301320230c3743433f042f141f240f34"},x:{t:33,l:0,w:29,h:33,m:"y033e030736070932090b2e0b0f260f112211151a15021516150206150e150608150a15080c1502150c102310121f12161716181318161716121f121023100c1502150c08150a150806150e15060215161502151a151122110f260f0b2e0b093209073607033e03"},y:{t:33,l:-1,w:32,h:44,m:"y035607480b0b440b0f400b133c0b17360d1b300f041b281102081b2015020c1b181704101b101906141b081b0818350c1c2d10202514241d1824191c201b1e1c1b22181b26141b2a101b2e0c1b32081b36041b3a1b3e174213460f4a0b4e07520356"},z:{t:33,l:2,w:26,h:33,m:"x023102023102023102023102023102240f02220f042011041e11061c11081c0f0a1a0f0c180f0e16110e141110121112120f14100f160e0f180c11180a111a08111c080f1e060f20040f2202112211240f263535353535"},"~":{t:49,l:-1,w:32,h:12,m:"b00f0000003fc00180fff001c1fffc03e3ffff07f3fffffff7ffffffeff07fffc7e01fff83c007ff018001fe000000780"},"!":{t:48,l:10,w:9,h:48,m:"y1b36113d14113d14113d14113d14113d14113d14113d14111b3611"},"@":{t:49,l:0,w:30,h:49,m:"y14091c1b100e0f16270a0a13122f06081510330406170e370204190e3702041114131415020f180d200f020d1a0b240d020d1a0b240d0d1c0b240d0d1c0d220d0d1e0d1e0d020d20111411020d1c37040d1c35060d1c35060f1a39020f1a3902020f440f0211440d0411420d04153c0f061d30110859020a57020e5104124b0618410a223110"},"#":{t:49,l:0,w:30,h:49,m:"y46031a3e0b100b2007180b08131e0918251e0916271e090e2f1e090435041e390c1637160e3b1a0435060b1a310e0b1a27180b1a1d0209180b1a130c09180b1803091609180b0e0d1e09180b04171e0918251e09122b1e0908351e3f061a391012371a08411a350a0b1a2d120b1a27180b1a19060918091c110e0918032207180342"},$:{t:48,l:0,w:31,h:48,m:"y160d22091412151e0d100e1b1c0f0e0c1f1a110c0c2118130a0a2516130a0a0f080f1a1108080f0c0f1c0d08080d100d1c0f06080d120b1e0d06060f120d1c0d06060f120d1c0d06060d160b1e0b066161616161060d180f160d06080d180d140d08080d180d140d08080d180f120d08080f180d100f080a13120f0e0d0a0a13140f0a0f0a0c1114250c0e0f16230c0e0f181f0e120b1a1b1014091c15143c0d18"},"%":{t:47,l:0,w:30,h:47,m:"y080f4804173a0b021b340f021b30131f2c150b0a0b2819090e09241904090e092019080b0a0b1e190a1f1a190e021b181912021b141916041712191a080f14191c2619202219241e19120f081a191217041817141b021419161b021019181f0c191c0b0a0b0a1720090e09061724090e090219260b0a0b172a1f13301b020f341b020b3a1704480f08"},"^":{t:49,l:0,w:29,h:25,m:"y280506260904220f0220131c15021a150416170614170810190a0c1b0c0a1b0e061d10041d121f141d161f14041d12061d100a1b0e0c1b0c10190a1417081617061a15041c15022013220f02260904280506"},"&":{t:49,l:0,w:31,h:49,m:"y401112100d20190e0c1716210a081f1025080625082b060627042f04042b02130a130402130823121102020f101d160f02020d16171a0f0f1817180f0d1c17180d0d1a1d140d0d1821120d0d180d02170e0d0d160f04170c0d0d140f0a150a0d0f100f0e17060d020f0c0f1415020f0211081116210204251a1f020423201904061f24170408192a190a1524210e0d1c2d362d361d040d361b0a0936151207360d1e03"},"*":{t:48,l:-1,w:32,h:31,m:"y1c0320180720120d2010111e120f160306120f140704140f0e0d02140f0c0f02140f0a13160f0615160f021702182106181f08330c2f102d122d122f10330c181f08182106160f021702160f0615140f0a13140f0c0f02140f0e0d02120f140704120f16030610111e120d201807201c0320"},_:{t:-5,l:-2,w:34,h:6,m:"x454545454545"},"+":{t:42,l:0,w:29,h:35,m:"y1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c4747474747471e0d1c1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c1e0d1c"},"`":{t:45,l:4,w:21,h:17,m:"y071c091a0b180d160f1411121310150e170c190a1b081d061f04041d02081b0c171013140f180b1c072003"},"-":{t:21,l:0,w:29,h:8,m:"x3b3b3b3b3b3b3b3b"},"=":{t:35,l:1,w:28,h:21,m:"x393939393939383838383838383838393939393939"},'"':{t:45,l:5,w:20,h:15,m:"y1f1f1f1f1f1f1f1e1e1e1e1e1e1f1f1f1f1f1f1f"},"'":{t:45,l:11,w:8,h:19,m:"y2727272727272727"},"(":{t:49,l:6,w:18,h:49,m:"y26172620251e1a2f1a163716123f1210450e0c1d121d0c0a1722170a08152a15080613321306041336130402133a1302133e131142110f460f0d4a0d0b4c0d0b4e0b"},")":{t:49,l:6,w:18,h:49,m:"y0b4e0b0b4c0d0d4a0d0f460f114211133e1302133a13020413361304061332130608152a15080a1722170a0c1d121d0c10450e123f121637161a2f1a20251e261726"},"{":{t:49,l:0,w:29,h:49,m:"y2c0d2a2c0d2a2c0d2a2c0d2a2c0d2a2c0d2a2c0d2a2a11282815262221200e470e0a4f0a085308062b042906042b082904022910270202133a1302020f420f02020d460d020f460f0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d"},"}":{t:49,l:0,w:29,h:49,m:"y0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0f460f020d460d02020f420f0202133a13020229102702042b082904062b0429060853080a4f0a0e470e2221202815262a11282c0d2a2c0d2a2c0d2a2c0d2a2c0d2a2c0d2a2c0d2a"},"[":{t:49,l:3,w:23,h:49,m:"y6363636363630d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d"},"]":{t:49,l:3,w:23,h:49,m:"y0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d0d4a0d636363636363"},"<":{t:46,l:0,w:31,h:44,m:"x3a053807340b320d2e112c1328172617022417042017081e170a1a170e1817101417141217160e171a0c171c08191e0617220417241728152a152a0217260417240817200a171e0e171a10171814171416171218190e1c170c1e170a22170624170428172a152e11300f320d360938073c03"},">":{t:46,l:0,w:31,h:44,m:"x053a07380b340d32112e132c17280217260417240817200a171e0e171a1017181417141617121a170e1c170c20170822170626150428172c132a152815022417042215081e170a1c170c1817101617121415161017180e171a0a171e08172006152402172602152802112c020f2e020b3202093402073602033a"},"|":{t:49,l:12,w:6,h:60,m:"y797979797979"},":":{t:33,l:9,w:12,h:33,m:"x191919191919191919191818181818181818181818181819191919191919191919"},";":{t:33,l:3,w:23,h:46,m:"y5a035607520b4e0f4a1346174219023e1b043a1d06361f0832210a151a230c151a210e151a1f10151a1d12151a1b14151a1916151a1718151a151a151a131c151a111e151a0f20151a0d22"},".":{t:10,l:9,w:12,h:10,m:"x19191919191919191919"},",":{t:10,l:3,w:23,h:23,m:"y2c032807240b200f1c131817141902101b040c1d06081f0804210a230c210e1f101d121b1419161718151a131c111e0f200d22"},"\\":{t:49,l:2,w:25,h:50,m:"y05600b5a0f5615501b4a1f4602234008213c0c233612213216232c1c212822212226231c2c211830231236210e3a2308402104461f4a1b501554115a0b5e07"},"?":{t:49,l:0,w:30,h:49,m:"y100f440c13440a1544081744061944041b44041b44021d4402134e02115011521140130f240d12130f220f12130f201112130f1e1312130f1e1312130f1c1512130f1a1712131116111a13020f14111c13021110111e1302150a1132042b34042b340627360823380a1d3c0c193e100f44"},"/":{t:49,l:2,w:25,h:50,m:"y60055a0b560f50154a1b461f4023023c210836230c3023122c211826231c2221221c232616232c1223300c233606233c0223401f461b4a15500f560b5a0560"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["12-06"]={h:54,w:36,g:{0:{t:54,l:0,w:37,h:54,m:"y222922164116104d100c550c085d08066106046504042124210402173c17020211481102020f4c0f02020f4c0f020f4e110f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f4e11114c0f02020f4c0f02021148110202173c15040421261f04046306066106085d080c550c104d10183f16242722"},1:{t:54,l:7,w:22,h:54,m:"y1415441415441215461015480e154a0e134c0c154c0a154e081550081352061552041554021556021358135a6d6d6d6d6d6d6d"},2:{t:55,l:1,w:34,h:55,m:"x1617180e2512082f0e04370a023b08023d06023d06021910170402131a1502020d241102020928110202052e110203320f360f360f360f360f360f3411340f023211023013022c15042a1506281706241908201b0a1e190e1a1b10181b12141b1612191a10191c0c19200c17220a152608152806152a06132c04132e041130021330021132021132020f341134113411344302430243024302430243024302"},3:{t:54,l:0,w:36,h:54,m:"x45044504450445044504450445043015042e15062c15082a150a28150c26150e2415102215122015141e15161c15181a151a16151e141520141d1814231214270e14290c142d08142f062a190630150432130436110236110238113a0f3a0f3a0f3a0f3a0f3a0f38113811380f02361102341302052e13040b24170413161b0641083f0a3d0c39103514082918101920"},4:{t:54,l:0,w:36,h:54,m:"y4413164017163c1b16381f163423163027162c2b16281f020f16241f060f16201f0a0f161c1f0e0f16181f120f16141f160f16101f1a0f160c1f1e0f16081f220f16041f260f161f2a0f161b2e0f1617320f1613360f160f3a0f160b263d072a3d032e3d303d303d303d303d480f16480f16480f16480f16480f16480f16480f16"},5:{t:54,l:3,w:30,h:54,m:"x043702043702023902023902023902023902023902020f2c020f2c020f2c020f2c020f2c020f2c020f2c020d2e0f2e0f2e1f1e27162d102f0e330a35083508091619062415042811042a11022c0f022c0f022c112e0f2e0f2e0f2e0f2e0f2e0f2e0f2c112c0f022a11022813022613042415042017061c1b06142108330a310c2d102b122716211c1924"},6:{t:54,l:0,w:37,h:54,m:"y3c171a362314302d102c350c283b0a263f0822450620230e17061c231615041a231a130418231e130216232211021215020f260f021015040f26110e15060f26110c15060f2a0f0a130a0f2a0f08130c0f2a0f06130e0f2a0f0413100f2a0f0213120f2a0f13140f2a0f11161126110f1811260f020d1c0f260f020b1e112211020920131e13020724131a1304052615161504032a170e17062e370830330a322f0c342b0e3627103a1f1440131a"},7:{t:54,l:0,w:37,h:54,m:"y0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f401f0f36290f322d0f2e310f2a350f26390f223d0f20211e0f1c1f240f1a1b2a0f18192e0f1617320f1219340f1017380f0e173a0f0c173c0f0a15400f0815420f04174427462548234a214c1d501b5219541756135a0d60"},8:{t:54,l:0,w:37,h:54,m:"y461116421b10100f20230c0c171a270a0a1b142d08081f122f0606230e310604270a150c15040429061312130402130813041116130202110e0f02111a1102020f121d1c1102020f121d1e1111141920110f1619220f0f1815240f0f1815240f0f1a11260f0f1a11260f0f1813260f0f1815240f0f1617240f111419220f020f121b2011020f101f1e0f0202110c1102111c0f0202130813040f1a11020429061116130204270a1310130406230e130c150408210e31060a1b142f060c17182b08100f1e270a3e230c421b10461314"},9:{t:54,l:-1,w:38,h:54,m:"y1a1340141f3a1027360e2b340c31300a333008372e06170e172a0304151615260504131a13240702131e132009021122111e0b020f260f1c0d020f2611180f11261116110f2a0f14130f2a0f1213020f2a0f1013040f2a0f0e13060f2a0f0c13080f2a0f0a130a0f2a0f06150c0f2a0d06150e11260f041510020f260f021512020f262314021122231602131e231804131a211c041516211e06190c23200841240a3d260c372a0e312e102b321621361c133e"},A:{t:54,l:-1,w:38,h:54,m:"y6805620b5a13521b4a23422b3a33323b2c3b06243b0e1c3b161439200c41200439020f20350a0f202d120f20251a0f201d220f20152a0f20132c0f201b240f20251a0f202d120f2037080f204d200449200c451c1643141e450a2645022e3f36373e2f46274e1f5815600d6805"},B:{t:54,l:0,w:36,h:54,m:"y6d6d6d6d6d6d6d0f1e0f240f0f1e0f240f0f1e0f240f0f1e0f240f0f1e0f240f0f1e0f240f0f1e0f240f0f1e0f240f0f1e0f240f0f1e0f240f0f1e0f240f0f1e0f240f0f1e0f240f0f1e0f240f0f1e0f240f111c0f240f020f1a132011021118132011021116171c11020213121b18130204150a2114150206410c1704062d023306082b042f080a27062d0a0e210a290c121910250e1611181d12441118"},C:{t:54,l:2,w:31,h:54,m:"y281d281e311e183d18144712104d100c550c0a590a08211c2108061b2c1b060417381704041340130402134413020211481102020f4c0f020f500f0f500f0f500f0f500f0f500f0f500f114c11114a1102021146130202153e170204153a170404153a170406133a150608113a13080a0f3a110a0c0d3a0d0e12073a0912"},D:{t:54,l:2,w:31,h:54,m:"y6d6d6d6d6d6d6d0f500f0f500f114e0f020f4c11020f4c11020f4c0f0202114a0f0204114611020411460f04061142110406133e130408133a13060a133613080a173015080c172a170a0e1b20190c101f141d0e124b101645121841141c391820311c2625222e1728"},E:{t:54,l:2,w:31,h:54,m:"x3d023d023d023d023d023d023d020f300f300f300f300f300f300f300f300f300f300f300f300f300f300f3037083708370837083708370837080f300f300f300f300f300f300f300f300f300f300f300f300f300f300f300f300f300f303f3f3f3f3f3f3f"},F:{t:54,l:4,w:27,h:54,m:"y6d6d6d6d6d6d6d0f1e0f320f1e0f320f1e0f320f1e0f320f1e0f320f1e0f320f1e0f320f1e0f320f1e0f320f1e0f320f1e0f320f1e0f320f1e0f320f1e0f320f1e0f320f1e0f320f5e0f5e0f5e0f5e"},G:{t:54,l:1,w:34,h:54,m:"y2621261c351c164116124912104d100e530c0a590a0a1f1c210808192c1908061536170604153c1504041342110402134611020211481102020f4c0f02114c1111220f1e0f0f240f1e0f0f240f1e0f0f240f1e0f0f240f1e0f0f240f1e0f0f240f1e0f0f240f1e0f11220f1e0f020f220f1c1102131e0f1c0f0204131c390204131c390206111c3902080f1c39020a0d1c37040c0b1c370410071c3704"},H:{t:54,l:2,w:32,h:54,m:"y6d6d6d6d6d6d6d2c0f322c0f322c0f322c0f322c0f322c0f322c0f322c0f322c0f322c0f322c0f322c0f322c0f322c0f322c0f322c0f322c0f322c0f326d6d6d6d6d6d6d"},I:{t:54,l:5,w:26,h:54,m:"y5e0f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f6d6d6d6d6d6d6d0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f0f500f5e0f"},J:{t:54,l:5,w:26,h:54,m:"y4a11124a170c4a190a4a1b084a1d064a1f044a21025813025c0f025c115e0f5e0f5e0f5e0f5e0f5e0f5c115c0f025813026b02690467066706630a610c5b12"},K:{t:54,l:-2,w:40,h:54,m:"y6d6d6d6d6d6d6d2a152e28192c261d2a2421282225262029241e150415221c150815201a150c151e181510151c161514151a141518151812151c151610152015140e152415120c152815100a152c150e081530150c061534150a041538150802153c150615401504134415021148150f4c130d50110b540f09580d075c0b05600903640768056a03"},L:{t:54,l:0,w:35,h:54,m:"y6d6d6d6d6d6d6d5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f"},M:{t:54,l:0,w:36,h:54,m:"y6d6d6d6d6d6d6d15581d50234a2b42333a0633340c352c1237241a2f242029242623242623242029241a2f241237240c352c063334333a2b42234a1d5015586d6d6d6d6d6d6d"},N:{t:54,l:1,w:34,h:54,m:"y6d6d6d6d6d6d6d1d50214c0223480623440a253e10233a1423361823321c252c2025282623242a23202e231c3225163625123c230e40230a44250448254e1f6d6d6d6d6d6d6d"},O:{t:54,l:0,w:36,h:54,m:"y2a1b28202f1e1a391a1643141249120e510e0c550c0a1f1c210808192c19080615381506041340130404114413020211481102020f4c0f02114c110f500f0f500f0f500f0f500f0f500f0f500f114c11020f4c0f02021148110204114413020413401304061538150608192c1b060a1f1c21080c550c0e510e124b101643141a391a202d20281d28"},P:{t:54,l:1,w:34,h:54,m:"y6d6d6d6d6d6d6d0f220f2e0f220f2e0f220f2e0f220f2e0f220f2e0f220f2e0f220f2e0f220f2e0f220f2e0f220f2e0f220f2e0f220f2e0f220f2e0f220f2e0f20112e111e0f30020f1c113002111a1130021316113204150e1532043534063334082f360a2b380e233c101f3e161344"},Q:{t:54,l:-2,w:40,h:54,m:"y241f2a1a3320163b1c1243180e4b140c4f120a5310081f1a1f0e06192a190c041534170a04133a130a0211421108020f28031a11081128051a0f080f2a09180f060f2a0b160f060f2a0d140f060f2a11100f060f2a130e0f060f2a150c0f060f2a19061106020f2a19041106020f2c290802112c270804132c210a04172a1f0a0619281b0c081f18250a0a5d060c5d040e5d02125b163b08151c310e13241f1a11600d620b640968056a03"},R:{t:54,l:1,w:34,h:54,m:"y6d6d6d6d6d6d6d0f220f2e0f220f2e0f220f2e0f220f2e0f220f2e0f220f2e0f220f2e0f22132a0f2217260f221b220f221f1e0f20251a111e2916020f1c2d1402111a0f041f1002131611081f0c04150e130e1f08043510210406311621082f1a1d0a2b20190e232815101f2e111613360f620b66076a03"},S:{t:54,l:2,w:32,h:54,m:"x1a1116141d1010250c0c2d080a310608350406370406150e1702041318110204111c1102111e11020f220f020f220f020f30020f30020f3002112e02112e04112c041528041726061922081b1e0a1d1a0c1f16101f1212210e161f0c1a1d0a1e1b082219062617042a15022c13022e110230113011320f320f0f240f0f240f11220f112011131e0f0202131a1102021516130204170c17040439040635060831080a2d0a0e250e121d12161516"},T:{t:54,l:0,w:36,h:54,m:"y0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e6d6d6d6d6d6d6d0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5e"},U:{t:54,l:1,w:34,h:54,m:"y55185b125f0e630a6508650867065217045613045813025a11025c0f025c115e0f5e0f5e0f5e0f5e0f5e0f5e0f5e0f5c115c0f025a1102581302561304521704670667066508630a5f0e5d105518"},V:{t:54,l:-1,w:38,h:54,m:"y09640f5e17561f4e27462f3e3736023d2e0a3b28123b201a3b18223b102a3b08323b3a33422b4a23521b5a135a13521b4a23422b3a33323b2a3b08223b101a3b18123b200a3b28023d2e37362f3e27461f4e17560f5e0964"},W:{t:54,l:0,w:37,h:54,m:"y29443f2e4f1e5b1265086d6d204d3a334a234e1f4627402d38353235062a350e2a2d162a251e2a1d262a251e2a2d162a350e3235063835402d46274e1f4a233a33204d6d6d65085b124f1e3f2e2944"},X:{t:54,l:0,w:36,h:54,m:"y056405095c090d540d114c11154415193c191d341d212c21042124210408211c21080c2114210c10210c21101421042114183d181c351c202d20242524281d28281d28242524202d201c351c183d18142104211410210c21100c2114210c08211c21080421242104212c211d341d193c19154415114c110d540d095c09056405"},Y:{t:54,l:0,w:35,h:54,m:"y056809640d60115c155819541d50214c0421480821440c214010213c1421381821341c51204d244928452449204d1c5118213414213810213c0c2140082144042148214c1d5019541558115c0d6009640568"},Z:{t:54,l:2,w:31,h:54,m:"y0f500f0f4c130f48170f441b0f401f0f3c230f38270f342b0f301f020f0f2c1f060f0f281f0a0f0f241f0e0f0f201f120f0f1c1f160f0f181f1a0f0f141f1e0f0f101f220f0f0c1f260f0f081f2a0f0f041f2e0f2d320f29360f253a0f213e0f1d420f19460f154a0f114e0f5e0f5e0f5e0f"},a:{t:40,l:2,w:32,h:40,m:"x16191210250c0c2d080a31060835040637040615101502041318110204111c0f0204111e0f320f320f320f320f320f182910310c350a37063b043d04151a0f02131e0f0211200f11220f0f240f0f240f0f22110f22110f2013111c15111a170211161902150c1f043d043d062b020f0a25040f0e1d080f12130e0f"},b:{t:58,l:0,w:35,h:58,m:"y757575757575752c171219082a131e15062811261304280f2a1104260f2e1102260d320f02260d320f02240f340f240d360f240d360f240d360f240d360f240d360f240d360f240f3211240f320f02260f2e110226112a1302261326130428151e17042a19121b062a43082c3f0a2e3b0c32350e362d123a251642171c"},c:{t:40,l:2,w:31,h:40,m:"y1e151e162516122d120e350e0c3b0a0a3f08084306061718190404132413040411281302020f300f02020f300f02020d340f0f340f0d380d0d380d0d380d0d380d0d380d0d360f0f340f11300f0202112c11020215241502041322150404132215040611221306080f2211080a0d220f0a0c0b220d0c1007220910"},d:{t:58,l:0,w:35,h:58,m:"y40191c3a2516362f1032350e2e3d0a2c41082a43082a191419062815201504261328110426112c1102260f300f02240f340d02240f340f240d360f240d380d240d380d240d380d240d380d240d380d240d360f260d340d02260d340d02260f300f02280f2c0f042811280f062a132013062c1714170875757575757575"},e:{t:40,l:1,w:34,h:40,m:"x1a1318141f1210270e0e2b0c0c2f0a0a330808150e1506061316110606111a110404111e0f04040f2011020211220f02020f240f02020f240f02020f260f454545454545450f360f360f36020d36020d36020f34020f34040f3204113006111c1102061318110408170e15040a37040c33060e2f08102b0a14230e1a1714"},f:{t:58,l:3,w:29,h:58,m:"y240f42240f42240f42240f42240f42240f42240f42240f42240f42240f42240f4214610e670a6b086d066f0471027302150e0f420211120f4211140f4211140f420f160f420f160f420f160f420f160f420f160f420f160f420f160f42"},g:{t:40,l:1,w:33,h:53,m:"y1a173a122522090a0e2f1c0b080c331a0d060839180f04063d160f04063f1411020419121912110202151e1312110202112611140f020f2a0f140f0f2e0f140d0f2e0f140d0d320d140d0d320d140d0d320d140d0d320d140d0d320d140d0d320d140d0d300f140d020d2e0d160d020d2e0d140f020f2a0f140d02040f260f160d0206111e11160f02081512151413026704670465066308610a5d0e5912"},h:{t:58,l:2,w:31,h:58,m:"y757575757575752a153628133a28113c26113e260f40260f40240f42240f42240f42240f42240f42240f42240f4224114024114026113e26153a264f284d2a4b2c492e473243363f"},i:{t:58,l:8,w:20,h:58,m:"y240f42240f42240f42240f42240f42240f42240f42240f42240f4215100f4215100f4215100f4215100f42151051151051151051151051151051151051151051"},j:{t:58,l:7,w:22,h:72,m:"y820f820f820f820f820f240f500f240f500f240f500f240f500f240f500f240f4e11240f4e0f0215100f4c110215100f4a130215100f461702151069041510690415106706151065081510630a15105f0e15105b12"},k:{t:58,l:1,w:34,h:58,m:"y757575757575754013223e17203c1b1e3a1f1c38231a3627183415021516321506151430150a15122e150e15102c1512150e2a1516150c28151a150a26151e15082415221506241326150424112a1502240f2e15240d3213240b361124093a0f24073e0d2405420b240346096e0770057203"},l:{t:58,l:7,w:22,h:58,m:"y5f16670e6b0a6d086f06710473025e1502601302621364116411660f660f660f660f660f660f660f660f660f660f"},m:{t:40,l:-1,w:39,h:40,m:"y51515151515151060d3e040b42020d42020b44020b440d440d440f421140515151024f024f044d044d02113e020f40020d420d440d440d440d440f42114051024f024f044d064b08490c45"},n:{t:40,l:1,w:34,h:40,m:"y51515151515151081534061338060f3c040f3e040d40020f40020d42020d420d440d440d440d440d440d440d440f420f42020f4002113e02133c044d064b064b08490c450e43143d"},o:{t:40,l:0,w:37,h:40,m:"y1e151e162516122d120e350e0c390c0a3d0a0841080619121b0606132013060413241304040f2c0f04020f300f02020f300f02020d340d020f340f0d380d0d380d0d380d0d380d0d380d0d380d0d380d0f340f0f340d02020d320f02020f300f0202112c0f040411281104041520130606191417080841080a3d0a0c390c0e3310122b141821181e151e"},p:{t:40,l:0,w:35,h:53,m:"y6b6b6b6b6b6b6b06191419200613201320041128111e040f2c0f1e020f300f1c020d340d1c020d340d1c0d380d1a0d380d1a0d380d1a0d380d1a0d380d1a0d380d1a0d380d1a0f340f1a020d340d1c020f300f1c02112c111c041128111e041520151e06191419200841220a3d240c39260e3528122d2c1625301e1538"},q:{t:40,l:0,w:35,h:53,m:"y1e1538182330122d2c0e35280c39260a3d240841220619141920041522131e041128111e02112c111c020f300f1c020d340d1c0f340f1a0d380d1a0d380d1a0d380d1a0d380d1a0d380d1a0d380d1a0d380d1a020d340d1c020d340d1c020f300f1c040f2c0f1e041128111e061320132008171417226b6b6b6b6b6b6b"},r:{t:40,l:3,w:29,h:40,m:"y5151515151515108153406113a04113c040f3e020f40020d42020d420d440d440d440d440d440f42114002113e0219360417360417360615360813360a1136100b36"},s:{t:40,l:2,w:32,h:40,m:"x18171210250c0c2d080833060637040439040415101702021318130202111c1102020f1e1102020f30020f30020f3002112e04112c041528061b200625160829100c2b0a1029081625061e1f042817022e11023011320f320f320f320f112011112011131a13020215121702023b04043706063308082f0a0c270e121916"},t:{t:51,l:3,w:29,h:51,m:"y160f42160f42160f42160f42160f42160f42160f42160f4202531202590c025d08025f06630463046502160f301102160f3211160f340f160f360d160f360d160f360d160f360d160f360d160f360d160f340f160f340f160f340d02160f320f02160f320f02"},u:{t:40,l:1,w:34,h:40,m:"y3f12450c470a49084b064d044d043c1302400f02420f420f440d440d440d440d440d440d440d420f420d02420d02400f02400d043e0f043c0f0638130632170851515151515151"},v:{t:40,l:-1,w:38,h:40,m:"y034e09480f42153c1b362130272a2d24062d1e0c2d18122d12182d0c1e2d06242d2a273021361b3c15420f420f3c15361b30212a27242d1e2d06182d0c122d120c2d18062d1e2d24272a21301b36153c0f420948034e"},w:{t:40,l:0,w:36,h:40,m:"y11402130331e430e5151510a472031341d3a17321f2c25262b20290820230e201b1620151c20151c201b1620230e202908262b2c25321f3a17341d20310a47515151430e331e21301140"},x:{t:40,l:1,w:33,h:40,m:"y034c030548050940090d380d0f340f132c131528151920191b1c1b041b141b0408191019080a1b081b0a0e1904190e122d121429141821181c191c182118142914122d120e1904190e0a1b081b0a0819101908041b141b041b1c1b192019152815132c130f340f0d380d094009054805034c03"},y:{t:40,l:-1,w:39,h:54,m:"y056809640d520f114e0f134c0f17480f1b440f1f3e1123361302042130170208212a17040c21221b0410211a1d061421121f0818210a1f0c1c1f041f10203914243316282b1a2c231e2c1f22281f26241f2a201f2e1c1f32181f36141f3a101f3e0c1f42081f46041f4a1f4e1b5219541558115c0d6009640568"},z:{t:40,l:2,w:31,h:40,m:"x02390402390402390402390402390402390402390428130428110626130624130822130a20130c1e130e1e11101c11121a131218131416131614131814111a12111c10111e0e131e0c13200a132208132408112606112804112a02132a132c112e3f3f3f3f3f3f3f"},"~":{t:58,l:-1,w:39,h:13,m:"x120d2405080e151e09060c1d160d040a23101102082908170647020447040217042d06150c2708021112210a040d181b0c06091e150e0805260914"},"!":{t:58,l:12,w:11,h:58,m:"y1b4813491a13491a13491a13491a13491a13491a13491a13491a13491a131b4813"},"@":{t:59,l:0,w:35,h:59,m:"y140f241d1410131c2d0c0c171835080a19163906081b143d04061d1241020419181516170204131c11221302131e0f26110211200d2a0f020f220d2a0f11220d2a0f0f240f280f0f260f24110f26112011020f28151615020f2441040f243f060f243d080f24410411224302020f224302020f54130211560f0411540f0413520f06154e0f081748110a233415020c69020e6504125f061857081e4d0c2a3914"},"#":{t:58,l:0,w:35,h:58,m:"y4e07160b28071a0d0e13220d1a0d041d220d1a2d220d182f220d0e39220d063f0222470c20411416411e0c4920043f060d203b0e0d2031180d202f1a0d201d060d1a0d2013100d1a0d1a07091a0d1a0d1011220d1a0d061b220d1a2d220d182f220d1037220d0641224b0820431216451a0e47200441040d203d0c0d2033160d202f1a0d201f040d1a0d20170c0d1a07260d160d460320054e"},$:{t:58,l:-1,w:38,h:58,m:"y1a0f2a091a1617260d16141d22111210232013100e271e150e0e271e150e0c2b1c170c0c1308131a170c0a11100f20130a0a11101120110a0a0f140f2211080811140f240f080811160f220f080811160f220f0808111611200f08080f1a0f200f08757575757575080f1e0f1c0f0808111c111811080a0f1c111811080a0f1e0f180f0a0a0f1e11160f0a0a111e0f14110a0c171611120f0c0c1716130e110c0e1518130a110e10131a2b0e10131a2910140f1c2512160d1e23121a09201d16441918480f1e"},"%":{t:57,l:0,w:35,h:57,m:"y0c0d5a08174a0b061b440f041f3e13022338170223341b0d0e0d301d0d0e0d2c1d040b120b281d080b100d241f0a0d0e0d201f0e25201d1202231c1d16041f1a1d1a041d181d1e0817161f200c0f181d242e1d282a1d2c261d14130a221f121b06201d141f041c1d182102181d1a2302141d1e0d0a0f101f1e0d0e0d0e1d220d100b0a1d260d100b061d2a0d0e0d021d2e0f0a0f1b34230219362302153c1f0411421b060d4a130a"},"^":{t:59,l:0,w:37,h:30,m:"y3205062e0b042c0f02281526172219021e1b041c1b06181d08161d0a121d0e0e1f100c1f12082114062116022318231a211c211c231a0223180621160821140c1f120e1f10121d0e161b0c181d081c1b061e1b04221902241928152a11022e0b04320506340306"},"&":{t:58,l:-1,w:38,h:58,m:"y4e1116481b12120f24230e0e191c290a0c1f162d080a25103106082b0a3306062f06170a17040433021512130404150a27181302021312211c11020211161f1e0f02020f1c192011111e191e110f221b1c0f0f201f1a0f0f1e23180f0f1e27140f0f1c110219120f0f1a11061b0e0f0f18110c190c0f1114130e1b080f020f1411121b041102110e13182902021508131c2702042b2223020429261f0406252c1b040821301b020a1d2e210c172a29120d223540354023040f4021080d401d100940171807400d2603"},"*":{t:58,l:0,w:36,h:38,m:"y1e07281a0b2814132614132616111c0308161318070618111609061811120f041a110e13021a110c171c0f081b1c110419041e0f0219061e250a0f10230c3d1039143716351839143d10110e210e1e250a1c110219061c110419041a11081b1a110a191a110e13021813100f041811140d04161316090616131805081413261413261a0d261e0926"},_:{t:-6,l:-2,w:41,h:7,m:"x53535353535353"},"+":{t:50,l:1,w:34,h:41,m:"y220f22220f22220f22220f22220f22220f22220f22220f22220f22220f22220f22220f22220f225353535353535353220f22220f22220f22220f22220f22220f22220f22220f22220f22220f22220f22220f22220f22"},"`":{t:54,l:5,w:26,h:21,m:"y0328072409220b200d1e0f1c111a1516171419121b101d0e210a230825060423040623020a210e1d121916151a111c0f200b24072803"},"-":{t:25,l:1,w:34,h:9,m:"x454545454545454545"},"=":{t:42,l:1,w:34,h:25,m:"x45454545454545444444444444444444444445454545454545"},'"':{t:54,l:6,w:24,h:18,m:"y170e252525252525210405202424242424240322252525252525251114"},"'":{t:54,l:13,w:9,h:22,m:"y09242d2d2d2d2d2d2d210c"},"(":{t:58,l:7,w:22,h:59,m:"y30192e2829262235201e3d1c1a4518164b1614511210211621100e1d241b0e0c192e190c0a1736170a08173a17080615421506041546150402154a1502154e151352131154130f58110f5a0f0d5e0d0d5e0d"},")":{t:58,l:7,w:22,h:59,m:"y0d5e0d0d5e0d0f5a0f0f5811115413135213154e1502154a15020415461504061542150608173a17080a1736170a0c192e190c0e1d221d0e1021162110145112164b161a45181e3d1c22352028292630192e"},"{":{t:59,l:0,w:35,h:59,m:"y340f34340f34340f34340f34340f34340f34340f34340f343213323213322e1b2e18431c1055120c5f0c083302310a0635023308063306330604310e3104042522290402154817020211501302020f541102020f560f020f58110f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f68"},"}":{t:59,l:0,w:35,h:59,m:"y0f680f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5811020f560f02020f54110202115013020215481702042522290404310e310406330633060635023308083302310a0c5f0c10551218431c2e1b2e321332321332340f34340f34340f34340f34340f34340f34340f34340f34"},"[":{t:59,l:4,w:28,h:59,m:"y777777777777770f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f"},"]":{t:59,l:4,w:28,h:59,m:"y0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f0f5a0f77777777777777"},"<":{t:56,l:0,w:37,h:54,m:"x480346054209400b3c0f3a113615341732192e1b022c1b04281b08261b0a221d0c201b101c1d121a1b16181b18141b1c121b1e0e1b220c1b24081d26061b2a021d2c1b30193219321b30041b2c061b2a0a1b260c1b24101b20121b1e141d1a181b181a1b161e1b12201b10241b0c261b0a281d062c1b042e1d3219341738133a113e0d400b420946054803"},">":{t:56,l:0,w:37,h:54,m:"x0348054609420b400f3c113a153617341932021b2e041b2c081b280a1b260e1b22101b20121d1c161b1a181b181c1b141e1b12221b0e241b0c281b082a1b062e1b02301b34173219301b2e19042a1b0628190a241b0c221b0e1e1b121c1b141a1918161b1a141b1c101b200e1b220c1926081b28061b2a021b2e021930021534021336021138020d3c020b3e020742020544020346"},"|":{t:59,l:14,w:8,h:72,m:"y9191919191919191"},":":{t:40,l:11,w:14,h:40,m:"x1d1d1d1d1d1d1d1d1d1d1d1d1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1d1d1d1d1d1d1d1d1d1d1d1d"},";":{t:40,l:4,w:28,h:56,m:"y6c056809640d60115c155819541d50214c23024825044427064029083c2b0a382d0c19202b0e192029101920271219202514192023161920211819201f1a19201d1c19201b1e1920192019201722192015241920132619201128"},".":{t:12,l:11,w:14,h:12,m:"x1d1d1d1d1d1d1d1d1d1d1d1d"},",":{t:13,l:4,w:28,h:28,m:"y340530092c0d2811241520191c1d18211423021025040c2706082908042b0a2d0c2b0e291027122514231621181f1a1d1c1b1e19201722152413261128"},"\\":{t:58,l:3,w:30,h:59,m:"y07700b6c116617601b5c2156255202294c0827480c294212293c1629381c293220292e2629282c272430291e3629183a291440290e46270a4a2904502754235a1d601764136a0d6e097403"},"?":{t:59,l:0,w:36,h:59,m:"y1213520e17520c19520a1b52081d52061f52061f52042152042152021b5a021560021362021164134e17115017112e0f1417112a13141711281514171126171417112419141711221b1417131e1d1417131c1f1417021318211417021514191e1702190c1b2017023d3804393a04373c06333e082f40082d420a29440c2348101b4c161150"},"/":{t:58,l:2,w:31,h:59,m:"y740370076a0d661160175a1d562150274c270446290840290e3c291236291832271e2c292226292822292c1c293218293612293c0e274208294602294c275021561d5a176011660d6a07700374"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["12-07"]={h:63,w:42,g:{0:{t:63,l:0,w:42,h:63,m:"y282d2a1c471c145714105f100c670c086f080673060673060429262904041b401d0402174e1702021552150202135613020213561302135815135a13135a13135a13135a13135a13135a13135a13135a13135a13135a13135a13135a1313581302155613020213561302021552150202174e1504041b421b0404292a25040673060671080a6b0a0c670c105f101655141e451c2a2d28"},1:{t:63,l:8,w:25,h:63,m:"y18194e1817501617521417541219541019561017580e175a0c175c0a195c08195e08176006176204176402176602176617687f7f7f7f7f7f7f7f"},2:{t:64,l:1,w:39,h:64,m:"y6a170a15441f0815402506153e2906153c2b0615382f0415383104153633021536350215341b0a13021534170e13021334151213021332151413153213161315301318131330131a131330111c13132e131c13132c131e13132c112013132a132013132a11221313281124131326132413152411261302132211281302132013281302151c132a13021718152a13041714152c13041b0c172e1306393013083730130a3332130c2f34130e2b361310253a13141d3e131a1156"},3:{t:63,l:0,w:42,h:63,m:"x4f064f064f064f064f064f064f064f064f0636190634190832190a30190c2e190e2c19102a191228191426191624191822191a20171e1e17201c17221a1724181726161f20162718162d12162f1016330c16350a163708301f063619063a17043e13044013024013024211024411441144114411441144114213421342134013023e15023c1702053419040b2a1d04151a21064d084b0a490c470e45104114023b180a2d1e141b26"},4:{t:63,l:0,w:42,h:63,m:"y4e171a4a1b1a461f1a42231a3e271a3a2b1a362f1a32331a2e371a2a2702131a262706131a22270a131a1e270e131a1a2712131a162716131a12271a131a0e271e131a0a2722131a062726131a02272a131a252e131a2132131a1d36131a193a131a153e131a1142131a0d2c470930470534473847384738473847384752131a52131a52131a52131a52131a52131a52131a52131a"},5:{t:63,l:3,w:36,h:63,m:"x0441040441040441040441040441040441040441040243040243040213340213340213340211360211360211360211360211360211360211360211360211360223242d1c331637123b0e3d0c3f0a41084306241f062c190430150432150234130236110236133811381138113811381138113811381136133611023413023215023015042e17042c1706281b06221f081a250a3d0c3b0e3712351431182d1c27221f2a"},6:{t:63,l:-1,w:44,h:63,m:"y4817204027183a3114363910323f0e30430c2c490a2a4d0826290e1d06242716190620291a19041e291e17041c292217021a29261502182b261502141902132a1302121904132a15101906112e130e1908112e130c1908132e130a170c132e1308170e132e13061710132e13041712132e13021714132e131716132e131518152c13131a152a1302111e132a13020f20152615020d22152615020b24172215040928171e1704072a191a1706072c1916190605301b0e1b080332410a363f0a383b0c3a370e3e2f12402b144423184a1520"},7:{t:63,l:0,w:43,h:63,m:"y136c136c136c136c136c136c136c136c136c136c134a2313402d133a3313363713323b132e3f132a43132845132427221322212a13201f2e131c1d34131a1d3613181b3a13141b3e13121b4013101944130e1946130c1948130a194a13061b4c130419502d522b5429562758255a235c1f601d621b641768116e"},8:{t:63,l:-1,w:44,h:63,m:"x2019201a251a1431141039100e3d0e0c410c0a450a084908084908081b141b0806172017060615241506061328130606112c110606112c110606112c110606112c1106081128110808132413080a1320130a0a151a170a0c1712190c0e1b081b0e103910123512162d161829181c211c18271a162d161233141039100c3f0e0a1f0a1b0c081b141b0806191c17080615221706041528150404132c130402133013020211341102021134110211381111381111381111381111381111381113341315321302152e13020217281702021b201b02041f141f04045104064d06064b0808470a0c410c0e3d0e123512162b181e1b20"},9:{t:63,l:-1,w:44,h:63,m:"y20134c1a2144142b40122f3e0e373a0c3b380a3f3608433203081b0e1b3005061916192c0704191a192a0704171e17280904152217240b02152615220d02152615200f02132a131e11152a151a13132e131815132e131617132e13141702132e13121704132e13101706132e130c1908132e130a190a132e1308190c132e1108190e132e11061910152a13021b1202132a2b160215282918021526291a041522291c041720271e04191a27220619162724081b0e2926084d2a0a492c0c43300e3d34123538162d3c1a2342221548"},A:{t:63,l:-1,w:44,h:63,m:"y7a05720d6a15621d5a25522d4c33443b3c433445062c450e2445161c451e1447240e4d2406410213243f0a1324371213242f1a1324272213241d2c132415341324153413241f2a1324272213243118132439101324410813245b240655240e4f221651181e5110265108304f3847403f4837502f5827601f6817720d7a05"},B:{t:63,l:0,w:42,h:63,m:"y7f7f7f7f7f7f7f7f132211281313221128131322112813132211281313221128131322112813132211281313221128131322112813132211281313221128131322112813132211281313221128131322112813132211281313221128131520112813152011261502131e15241502151c1524130202151a192015020415181b1e1502041712211a150406190c25141904064d0c1b060833043b060a310439080c2d08350a0e290c310c1223102b10161d1427121c111e1f1650111e"},C:{t:64,l:2,w:37,h:65,m:"y32213026372620451e1a4f1a165716125f120e670e0c6b0c0a291e290a0821322108061d3e1d06041b46190604174e17040217521702021556150202135a1302155a15135e13135e13135e13135e13135e13135e13155a15155a1502155615020217521702021b4a1b02041b441d04041b441b060619441b0608174419080a1544170a0c1344150c100f441110140b440d1462071a"},D:{t:63,l:3,w:36,h:63,m:"y7f7f7f7f7f7f7f7f135c11135a13135a1302115a1302115a1302135811020213581102041156130204135413020415501304061350130406154c150408154815060a154417060a174017080c193a170a0e1936190a101b2e1b0c121f241d0e14231623101657121853141c4b1820451a243d1e2835222e2928361930"},E:{t:63,l:2,w:37,h:63,m:"x490249024902490249024902490249024902113a113a113a113a113a113a113a113a113a113a113a113a113a113a113a113a113a410a410a410a410a410a410a410a410a410a113a113a113a113a113a113a113a113a113a113a113a113a113a113a113a113a113a113a113a4b4b4b4b4b4b4b4b4b"},F:{t:63,l:5,w:31,h:63,m:"y7f7f7f7f7f7f7f7f132213381322133813221338132213381322133813221338132213381322133813221338132213381322133813221338132213381322133813221338132213381322133813221338136c136c136c136c136c"},G:{t:64,l:0,w:41,h:65,m:"y2e25302439261e471e1a4f1a165716125f121063100e670e0c271c290c0a212e210a081d3a1d080819421b06061948170604174e170404155215040415541502021556150202135a130202135a13021528132015132a132213132a132213132a132213132a132213132a132213132a132213132a132213132a132213132a13221302132813221302132813201302021526132013020217241320130204172245020615224304061522430408132243040a112241060c0f224106100b2241061407223f08"},H:{t:63,l:2,w:38,h:63,m:"y7f7f7f7f7f7f7f7f3413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413383413387f7f7f7f7f7f7f7f"},I:{t:63,l:6,w:30,h:63,m:"y6c13135a13135a13135a13135a13135a13135a13135a13135a13135a13135a137f7f7f7f7f7f7f7f135a13135a13135a13135a13135a13135a13135a13135a13135a136c136c13"},J:{t:63,l:5,w:31,h:64,m:"y561516561b10561d0e56210a5623085625065627045627046619026a15026c13026c156e136e136e136e136e136e136e136c156c13026a15026619027d047d047b067908770a730e71106b16"},K:{t:63,l:-2,w:46,h:63,m:"y7f7f7f7f7f7f7f7f321934301d322e21302c252e2a292c282d2a2617021928241706192622170a192420170e19221e171219201c1716191e1a171a191c18171e191a1617221918141726191612172a191410172e19120e173219100c1736190e0a173a190c08173e190a0617421908041746190602174a1904174e1902155219135617115a150f5e130d62110b660f096a0d076e0b0572090376077a057c03"},L:{t:63,l:1,w:40,h:63,m:"y7f7f7f7f7f7f7f7f6c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c13"},M:{t:63,l:0,w:42,h:63,m:"y7f7f7f7f7f7f7f7f17681f60255a2d52354a3b44063d3c0c3f34143d2e1a3b2a20352a282d2a2e272a2e272a282d2a20352a1a3b2a143d2e0c3f34063d3c3b44354a2d52255a1f6017687f7f7f7f7f7f7f7f"},N:{t:63,l:1,w:40,h:63,m:"y7f7f7f7f7f7f7f7f215e255a295604295208294e0c2b481229441629401a293c1e2938222934262b2e2a2b2a30292634292238291e3c291a402b14442b104a290c4e290852290456295a257f7f7f7f7f7f7f7f"},O:{t:64,l:0,w:42,h:65,m:"y3221302835262241201c4b1c185318145b141261100e670e0c271e270c0a1f321f0a081b3e1b08061946190606154e170404155215040215561502021358150202135a1302135c15135e13135e13135e13135e13135e13135e13155a1502135a130202155615020215561502041552150406174c17040619461906081d3c1b080a21301f0a0c271e270c0e670e126110145b141853181c4b1c224120283328321f32"},P:{t:63,l:1,w:40,h:63,m:"y7f7f7f7f7f7f7f7f13261334132613341326133413261334132613341326133413261334132613341326133413261334132613341326133413261334132613341326133413261334132613341522133615221336021320153602151e153602171a15380417161738041b0e193a063f3a083b3c0a373e0c33400e2f42122746161f4a1c1350"},Q:{t:64,l:-2,w:46,h:64,m:"y2c23322237281c4322164f1c14531a105b160e5f140a65120a251c2710081f2e1f0e061b3a1b0c041942170c041548170a02154c170802152c0320150802132e071e1308152e091c150613300b1c130613300f1813061330111613061330151213061330171013061330190e1306152e1d0815060213301d061308021530330802153231080417322b0a041932290a061b30250c081f2c210e0a271a2b0c0c6b0a0e6d06106d04146b0218691c43081b223910172c231e157011720f740d78097a077c05"},R:{t:63,l:1,w:39,h:63,m:"y7f7f7f7f7f7f7f7f13261334132613341326133413261334132613341326133413261334132613341326173013261b2c13261f28132621261326252215222b1e15222f1a021320351602151e1302251202171a1308250e041716150c250a041b0e190e2508063d142504083b18250a371e210c33241d0e2f281b10293017142138131c13420f740b76097a05"},S:{t:64,l:2,w:38,h:65,m:"y5e0d185e11141a11341510141d2e170e10252a190c0e29281b0a0a2f261d080a31241f060835221f060637281b0404190c172a1704041710172a1702021714152c1502021518152c130202131c132c1502131e132a151320132c131322132a131322132a1313241328131324132813132613261313261326131526132215152613221302021328131e1502021526151c15020415261518150404192415141704061d1e190c1906061d203b06081b2237080a1924330a0c1724310c1013282b0e12112a2710180b2e1f1456131a"},T:{t:63,l:0,w:42,h:63,m:"y136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c7f7f7f7f7f7f7f7f136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c136c"},U:{t:63,l:1,w:40,h:64,m:"y651c6b166f127110750c770a790879085e1d066419046617046817026a15026c13026c13026c156e136e136e136e136e136e136e136e136c156c13026c13026a1502681702661704641904601b067b067908770a750c730e6f126b16631e"},V:{t:63,l:-1,w:44,h:63,m:"y0976116e1966215e29562f5037483f4047380847301047281847202047182847103047083847403f4837502f5827601f68176817601f5827502f4837403f384730470828471020471818472010472808473047383f4037482f502956215e1966116e0976"},W:{t:63,l:0,w:43,h:63,m:"y2d52453a552a631c6f1079067f7f225d3e41502f5e215827502f4a35423d3a4104343d0e30391630311e30292630232c30292630311e303916343d0e3a4104423d4a35502f58275e21502f3e41225d7f7f79066f10631c552a453a2d52"},X:{t:63,l:0,w:41,h:63,m:"y057605096e090d660d115e11155615194e191d461d213e2125362502272e270206272627060a271e270a0e2716270e12270e271216270627161a4b1a1e431e223b222633262a2b2a2e232e2a2b2a263326223b221e431e1a4b1a162706271612270e27120e2716270e0a271e270a062726270602272e2702253625213e211d461d194e19155615115e110d660d096e09057605"},Y:{t:63,l:0,w:42,h:63,m:"y037c07780b740f70136c17681b641f60235c0225580625540a25500e254c1225481625441a25401e253c225d26592a552e512e512a552659225d1e253c1a25401625441225480e254c0a2550062554022558235c1f601b641768136c0f700b740778037c"},Z:{t:63,l:3,w:36,h:63,m:"y6e1113581513541913501d134c2113482513442913402d133c311338351334391330270413132c2708131328270c1313242710131320271413131c2718131318271c1313142720131310272413130c2728131308272c131304273013393413353813313c132d4013294413254813214c131d50131954131558136c136c136c13"},a:{t:47,l:2,w:37,h:48,m:"x1c1916142710102f0c0c37080a3b06083d06083f04061b10170406151c130204152011020413221102041324113a113a113a113a113a113a111c2f1437103b0c3f0a410843064504191e1104152211021524110213261102112811112a11112a1111281311281311261511261513221713201902131c1b0215161f02190e2304470645083102110a2d04110c270811101f0c11161322"},b:{t:68,l:0,w:41,h:69,m:"y890289028902890289028902890289023619161d0a341522190832132a150830113213062e113613042e0f3a11042c113a13022c0f3e11022c0f3e11022a0f42112a0f42112a0f42112a0f42112a0f42112a0f42112a0f42112a113e132a113e132c0f3c13022c113a13022c133615022c153215042e172a19043019221b06301f161f08324f0a344d0a36470e3a41103c3d1240351646291c4e1b22"},c:{t:47,l:3,w:36,h:48,m:"y2419241c291c163516123d1210430e0e470c0a4d0a085108061f181f0606172819040415301504041136150202113c110202113c1102020f40111140110f440f0f440f0f440f0f440f0f440f0f440f114011113e1302113c1102021336150202172e19020417281b040417281b0406152819060615281708081328150a0a1128130c0e0d280f10100b280d121605280718"},d:{t:68,l:0,w:41,h:69,m:"y4e1b22462b1a4035163c3d123a411036490c344d0a325108301f161f0830192419062e172c17042e133215042c133813022c113c11022c113c11022a1140112a1140112a0f440f2a0f440f2a0f440f2a0f440f2a0f440f2a0f440f2a0f440f2c0f400f022c0f400f022c113c11022e0f3a11042e11381104301132130632132c1308321724150a341b161b0c89028902890289028902890289028902"},e:{t:46,l:1,w:40,h:47,m:"x1e171c182316142b12122f100e370c0c3b0a0a3f080a190e1908081518170606151e1504061322130404132413040411281302041128130202132a110202112c110202112c13024f51515151515151133e114011401140020f4002113e02113e02113e04113c04113c04133a061322130406151e150408171817040a1b0e19060a41060c3d080e390a12330c142f0e18271220171a"},f:{t:68,l:3,w:35,h:68,m:"y2c114c2c114c2c114c2c114c2c114c2c114c2c114c2c114c2c114c2c114c2c114c2c114c2c114c1a6f12770e7b0a7f0881068304850485021912114c021516114c021318114c131a114c131a114c111c114c111c114c111c114c111c114c111c114c111c114c111c114c111c114c1178"},g:{t:47,l:1,w:39,h:62,m:"y20194418293c123322090e10391e0d0a0c411a0f080a451811060849161304064d141304061b161d1415020417241712150204132a1512150202133013141102021134111611020f36111611113811160f113811160f0f3c0f160f0f3c0f160f0f3c0f160f0f3c0f160f0f3c0f160f0f3c0f160f0f3c0f160f020f380f180f020f380f180f02113411160f02040f340f180f0204113011180f0206132813181102081322151813020a19141918130402770402750602750602730802710a026d0e026b10026516"},h:{t:68,l:3,w:35,h:68,m:"y898989898989898932193e3215423013462e13482e13482c134a2c134a2c114c2a134c2a134c2a134c2a134c2a134c2a134c2a154a2a154a2c15482c17462c1b422e5b2e5b30593257345538513a4f4049"},i:{t:68,l:10,w:22,h:68,m:"y2c134a2c134a2c134a2c134a2c134a2c134a2c134a2c134a2c134a2c134a1914134a1914134a1914134a1914134a1914134a19145d19145d19145d19145d19145d19145d19145d"},j:{t:68,l:8,w:25,h:84,m:"y9811981198119811981198112c135a112c135a112c135a112c135a112c135a112c1358132c1358132c13581102191413561302191413541502191413501704191479041914790419147706191475081914730a1914710c19146d1019146716"},k:{t:68,l:1,w:39,h:68,m:"y89898989898989894c17264a1b24481f2246232044271e422b1c402f1a3e190219183c190619163a190a191438190e19123619121910341916190e32191a190c30191e190a2e192219082c192619062c172a19042c152e19022c1332192c1136172c0f3a152c0d3e132c0b42112c09460f2c074a0d2c054e0b2c035209820784058603"},l:{t:68,l:8,w:25,h:68,m:"y6f1a77127b0e7f0a81088306850487026e1902721502741576137613761378117811781178117811781178117811781178117811"},m:{t:47,l:-1,w:45,h:47,m:"y025d025d025d025d025d025d025d025d080f48060d4c040d4e040b50020d50020d500f500f50114e134c5f5f5f025d025d045b0659065904154604114a020f4e020f4e0f500f500f500f500f50114e134c5f025d025d045b065908570a55104f"},n:{t:47,l:1,w:40,h:47,m:"y025d025d025d025d025d025d025d025d0c173c0a154008134406134606114804114a040f4c02114c020f4e020f4e0f500f500f500f500f500f500f500f50114e114e02114c02134a0215480417440659065908570a550c530e51124d1847"},o:{t:47,l:-1,w:44,h:48,m:"y2419241c291c1831181439141041100e450e0c490c0a4d0a081f141f08081920190806172a150604153015040413341304041138110402113c110202113c1102020f400f021140110f440f0f440f0f440f0f440f0f440f0f440f0f440f0f440f11401111400f02020f3e110202113c110202133811040411361304041530130606152c15060619241708081f161b0a0a4d0a0c490c0e4310103f121439141831181e251e261526"},p:{t:47,l:0,w:41,h:62,m:"y027b027b027b027b027b027b027b027b0a1b181b26081724172406152c152206113411220411381120040f3c0f20020f3e111e020f400f1e020f400f1e0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c1140111c020f400f1e020f3e111e02113c111e0213381120041334132006133015200619261722081d181d240a4d260c49280e452a10412c1439301831341e2738241940"},q:{t:47,l:0,w:41,h:62,m:"y2617401e2738183332143b2e10412c0e452a0c4b260a4f24081f161d24061926172206152e15200413341320041138131e02113c111e02113e0f1e020f400f1e1140111c0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c0f440f1c020f400f1e020f400f1e02113c111e040f3c0f200411381120061134112208132c152208172417240a1b181b26027b027b027b027b027b027b027b027b"},r:{t:47,l:4,w:33,h:47,m:"y025d025d025d025d025d025d025d025d0a173e081344061346060f4a040f4c02114c020f4e020f4e0f500f500f500f500f50114e114e134c021548021d40041b40041b400619400817400a15400e1140120d40"},s:{t:47,l:2,w:38,h:48,m:"x1e171816271010310c0e350a0a3b08083f06083f060619101b0406131a170404131e150404112213040411221304041138041138041138041336041336061334061730081f2608271e0a2d160c31100e330c123308182f062027062821043219023615023a11023a133c113c113c11132a11132a1102132613021324130202151e1702021b141904044504064106083d080a390a0c330e102b12181b1a"},t:{t:60,l:4,w:34,h:61,m:"y1a11501a11501a11501a11501a11501a11501a11501a11501a11501a1150046116046710026d0c0271080273067704770479021a113817021a113c13021a1140111a1140111a11420f1a11420f1a11420f1a11420f1a11420f1a1140111a1140111a11400f021a113e11021a113e11021a113c11041a113a1106"},u:{t:46,l:1,w:39,h:47,m:"y49164f10510e550a570859065b045b044617024a13024c11024e114e11500f500f500f500f500f500f500f500d024e0f024e0f024c11024c0f044a110448110646130644130840150a3a190c5d025d025d025d025d025d025d025d02"},v:{t:46,l:-1,w:44,h:46,m:"y05580b52114c17461d40233a29342f2e35280437220a371c1037161637101c370a22370428352e2f34293a23401d46174c114c114617401d3a2334292e2f28352237041c370a1637101037160a371c04372235282f2e2934233a1d401746114c0b520558"},w:{t:46,l:0,w:42,h:46,m:"y134a25383528471657065d5d5d0c51203d34294815401d3a23322b2c31243306242b0e242514241d1c241722241722241d1c242514242b0e2433062c31322b3a23401d48153429203d0c515d5d5d5706471635282538134a"},x:{t:46,l:0,w:43,h:46,m:"y035803075007094c090d440d0f400f113c11153415173017192c191d241d021d201d02041f181f04081d141d080a1d101d0a0e1d081d0e101d041d101435141631161a291a1e211e201d20241524201d201e211e1a291a163116143514101d041d100e1d081d0e0a1d101d0a081d141d08041f181f04021d201d021d241d192c19173017153415113c110f400f0d440d094c09075007035803"},y:{t:46,l:-1,w:44,h:62,m:"y037a0766110b62110f5e11135a111756111b52111f4c132344150204233c19020823341b040c232c1f041023261f0614231e2108182316230a1c230e250c2023062510244514283d182c351c302d2034252434212830212c2c213028213424233620233a1c233e18234214234610234a0c234e082352042356235a1f5e1b621766136a0f6e0b720776037a"},z:{t:46,l:3,w:36,h:46,m:"x0441040441040441040441040441040441040441040441043015042e17042e15062c15082a150a28150c26150e2415102217102215122015141e15161c15181a151a18171a16171c14171e1415201215221015240e15260c17260a172808172a08152c06152e041530021730173215344949494949494949"},"~":{t:68,l:-1,w:44,h:15,m:"x140d2c05080e192607060c1f200b040a251a0f02082b141306310e150455045302025304170c310615122d060211182708040d1e210a080724190e0a052a0f12"},"!":{t:68,l:15,w:12,h:68,m:"y1d5617571c17571c17571c17571c17571c17571c17571c17571c17571c17571c171d5617"},"@":{t:69,l:0,w:41,h:70,m:"y1a0d2e1f1a14132433101017203b0c0c1b1c43080a1d1a4706081f184b040621164d04062116191a1d0204191e15281502041522112e150215240f32130213260f34110211280f34110211280f34111328113211112c0f3013112c132c1102112e13261502112e1b181904112a4d06112a4b08112a490a112a4b0813284d060211284f04021128510202136215020213661304136611041564110617601108195a130a1d52150c2b3c19020e7d02107904147306186d081e630c265710343f1a"},"#":{t:68,l:1,w:40,h:68,m:"y5a091e093203220d14132a0b220d0c1b280d220d0225280d2233280d1e37280d1441280d0a4b28570a284d14204d1c184b260e5526044b080d2645120d263d1a0d2635220d2627020d220d261d0c0d220d2615140d220d1e090b1e0d220d1413280d220d0a1d280d2233280d2233280d1a3b280d1045280d064f28570a284f121e4f1c144f260a59264f080d2645120d263b1c0d2635220d2635220d261f0a0d220b2815140d2203300b1e0958"},$:{t:68,l:0,w:43,h:68,m:"y2011300b1e1a1b2c0f1a181f2a11181427261514122b241712102d241712102f2219100e33201b0e0e150a15201b0e0c15101324170c0c13141126150c0c13161126130c0a13181126150a0a13181326130a0a131a1126130a0a131a1126130a0a131a1324130a0a131c1124130a898989898989890a1320131e130a0a1320131e130a0a1322131c130a0a1322131c130a0c1124111c110c0c13221318130c0c15201318130c0e1b1a1314130e0e1b1a1510150e10191c170a151012171e331014151e31121613202d1418112229161a0f2425181e0b26211a501b1e561122"},"%":{t:66,l:0,w:41,h:66,m:"y100b6a0a1764061f501104234a15022746170227421b2b3c1f0f0e0f38230d120d3423040d120d3221080d120d2e230a0d120d2a230e0f0e0f2623122b222316022722211a02271e211e04231c2320061f1a23240a171a2328100b1e212c3421303023180b102c2316170a2823161f06262118230422211a27021e211e27021a231e2b1623220f0e0f1421260d120d10212a0d120d0c212e0d120d0823300d120d0423340f0e0f0221382b1f3e27021b42270217482304154c1f061154170a6a0b10"},"^":{t:68,l:0,w:42,h:35,m:"y3a0706380906340f043015022e192a1d281d02241f04221f061e1f0a1a210c18210e1423101223120e25140c251608271806271a02271e272025222522272002271e06271a0827180c25160e251412231214231018210e1a210c1e1f0a221f06241f04281d022a1d2e19301502340f043809063a0706"},"&":{t:68,l:-1,w:44,h:68,m:"y5c131a561f1416112c2710121b242b0e0e231c310c0c2916350a0a2f10390808350a3d060639061b0a1b06063b0417121904041b0a2f181704041712291c170202151a251e150202151c212213020213201d241515221f201513281d20131326211e131324271a1313222b18131320311413132013041d1213131e13081f0e13151a150a1f0c13151815101f081302151415141f0613021710151a1f02110202190a171e2f020437222b02043526270406312a2504082d301f060829361f040a2538230c2136271019322f1411283d4c3d4c3d4c27080f4c230e0d4c1f16094c1720074c0f2c03"},"*":{t:67,l:-1,w:44,h:44,m:"y28032e24072e1e0d2e1a112e16172c161720030a18151e050a18171a09081a15180d061a151411061c151015041c150e19021e130c1d1e13081f022013041f042013021d08202d0c22290e4712431641183d1c3d1c41184316471222290e202d0c2013021d082013041f041e13081f021e130c1d1c150e19021c151015041a151411061a15180d0618171a090818151e050a161720030a16172c1a112e1e0d2e24072e28032e"},_:{t:-7,l:-2,w:47,h:8,m:"x5f5f5f5f5f5f5f5f"},"+":{t:59,l:1,w:40,h:49,m:"y2a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a112863636363636363632a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a11282a1128"},"`":{t:63,l:6,w:30,h:25,m:"y052e072c092a0b280d260f241320151e171c191a1b181f1421122310250e270c290a2d06042b040829020c271023141f181b1c172013240f280b2c073003"},"-":{t:29,l:1,w:40,h:11,m:"x5151515151515151515151"},"=":{t:49,l:1,w:40,h:29,m:"x5151515151515151515050505050505050505050515151515151515151"},'"':{t:63,l:7,w:28,h:21,m:"y2b2b2b2b2b2b2b2b2b2b2a2a2a2a2a2a2a2a2b2b2b2b2b2b2b2b2b2b"},"'":{t:63,l:16,w:10,h:26,m:"y35353535353535353535"},"(":{t:68,l:8,w:25,h:69,m:"y3a1938302d2e2a3928244324204b201c531c1a5918165f16142716291212212623100e1f321f0e0c1d3a1d0c0a1b421b0a081b461b0806194e19060419521904021956190202175a19175e17156215136415116813116a110f6e0f0f6e0f"},")":{t:68,l:8,w:25,h:69,m:"y0f6e0f0f6e0f116a11116813136415156215175e1702175a190219561902041952190406194e1906081b461b080a1b421b0a0c1d3a1d0c0e1f321f0e10232623101427162912165f161a59181c531c204b202443242a3928302d2e381b38"},"{":{t:69,l:0,w:41,h:70,m:"y3e133c3e133c3e133c3e133c3e133c3e133c3e133c3e133c3e133c3c173a3c173a3a1b383623341e4d22146316106d100c3b02390c0a3d023b0a083d063b08063d0a3b06063912370604351e3304041b4c1f0402175c170202156015020213641302021364130202136415156415136813136813136813136813136813136813136813136813136813136813136813137a"},"}":{t:69,l:0,w:41,h:70,m:"y137a1368131368131368131368131368131368131368131368131368131368131368131564150213641502136413020213641302021560150202175c1702041b4c1f0404351e33040639123706063d0a3b06083d063b080a3d023b0a0c3b02390c106d101463161e4d223623343a1b383c173a3c173a3e133c3e133c3e133c3e133c3e133c3e133c3e133c3e133c3e133c"},"[":{t:68,l:5,w:32,h:68,m:"y898989898989898989136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413"},"]":{t:68,l:5,w:32,h:68,m:"y136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413136413898989898989898989"},"<":{t:65,l:0,w:43,h:62,m:"x520550074e094a0d480f441342153e193c1b3a1d3621341f043021062e1f0a2a210c281f10261f12221f16201f181c211a1a1f1e162120141f24121f260e1f2a0c1f2c08212e061f320221341f381d3a1d3a1f38021f36061f32081f300c1f2c0e1f2a102126141f241621201a1f1e1c1f1c201f18221f16242112281f102a210c2e1f0a302106341f043621381f3c1b3e1942154413480f4a0d4c0b50075205"},">":{t:65,l:0,w:43,h:62,m:"x05520750094e0d4a0f4813441542193e1b3c1d3a2136041f340621300a1f2e0c212a101f28121f26161f22181f201c1f1c1e1f1a202116241f14261f122a1f0e2c1f0c301f08321f06361f02381f3c1b3c1b381f361f02341d06301f082e1f0a2a1f0e281f10241f14221f16201f181c1f1c1a1f1e161f22141f24121f260e1f2a0c1f2c081f30061f32022134021d38021b3a02173e021540021342020f46020d4802094c02074e020550"},"|":{t:69,l:17,w:8,h:84,m:"ya9a9a9a9a9a9a9a9"},":":{t:47,l:12,w:17,h:47,m:"x2323232323232323232323232323222222222222222222222222222222222222222323232323232323232323232323"},";":{t:47,l:5,w:32,h:65,m:"y7e057a09760d72116e156a19661d62215e23025a25045627065229084e2b0a4a2d0c462f0e4231101d262f121d262d141d262b161d2629181d26271a1d26251c1d26231e1d2621201d261f221d261d241d261b261d2619281d26172a1d26152c1d26132e1d261130"},".":{t:14,l:12,w:17,h:14,m:"x2323232323232323232323232323"},",":{t:14,l:5,w:32,h:32,m:"y3c053809340d30112c152819241d20211c23021825041427061029080c2b0a082d0c042f0e31102f122d142b162918271a251c231e21201f221d241b261928172a152c132e1130"},"\\":{t:68,l:3,w:35,h:69,m:"y058609820f7c157619721f6c236829622f5c042f580831520e2f4e142f48182f441e2f3e223138282f342e2f2e322f2a382f243c2f20422f1a482f144c2f10522f0a562f065c2f622966256c1f701b76157c0f800b8605"},"?":{t:69,l:0,w:43,h:69,m:"y1e0d601615601219600e1d600c1f600a2160082360082360062560062560042760042562021d6c021970021772021772175a1b175a1b155c1b15360f181b153213181b153015181b152e17181b152c19181b152a1b181b15281d181b17241f181b172221181b02171e23181b02191a1b221b021b141b261b041d0c1d42044344044146063d48063b4a08374c0a334e0c2f500e2b52102556141d5a1a1160"},"/":{t:68,l:3,w:35,h:69,m:"y8605800b7c0f761572196c1f662562295c2f582d06522f0a4c2f10482f14422f1a3e2f1e382f24322f2a2e2f2e282f34242f381e2f3e183142142f480e2f4e0a2f52042f582f5c296223681f6c197215760f7c0b800586"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["12-08"]={h:72,w:48,g:{0:{t:71,l:0,w:48,h:72,m:"y322f30244b221a5d1a1469141071100c790c0a7d0a08810806850604312c2b060423462104041b541b0402195c1704021760170202156415020215641502176415021568151568151568151568151568151568151568151568151568151568151568151568151568151568151764150202156415020215641502021760170202195c1704041b541b04042346210404312c2b060685060881080a7d0a0c790c1071101469141a5d1a244b22322f30"},1:{t:70,l:9,w:29,h:70,m:"y1c1b561a1b58181b5a18195c161b5c141b5e121b601219621019640e1b640c1b660c19680a196a081b6a061b6c06196e041970021b701b7219748d8d8d8d8d8d8d8d8d"},2:{t:71,l:2,w:44,h:71,m:"x1e1b20142d180e371408411004470e024b0c024d0a024f0802510602530402211221040217221d0202112a1b02020d3019020209361902053c1742174415441544154415441544154215024215024017024015043e17043c17063a1906361b08341b0a301d0c2e1d0e2a1f10262112241f162021181e1f1c1a1f20181f22161d26121f28101d2c0e1d2e0c1b320c19340a193608193808173a06173c06153e041540041540041342021542021344021344021344154415445702570257025702570257025702570257025702"},3:{t:70,l:0,w:48,h:71,m:"x5b065b065b065b065b065b065b065b065b065b06401b063c1d083a1d0a381d0c361d0e341d10321d12301d142e1b182c1b1a2a1b1c261d1e241d20221d22201d241e1b281c1b2a1a1d2a1a291e1a2f181a33141a37101a390e1a3b0c1a3d0a3623083c1f06401b064419044617044817024817024a15024a174c154c154c154c154c154c154c154a174a17481702481702461902441904053e1b040b341d06112a2106191a2708570a570a550c530e4f124d140445180a391e102d241a1b2c"},4:{t:70,l:0,w:47,h:70,m:"y58171e541b1e501f1e4c231e48271e442b1e402f1e3c331e38371e343b1e302902151e2c2906151e28290a151e24290e151e202912151e1c2916151e18291a151e14291e151e102922151e0c2926151e08292a151e04292e151e2932151e2536151e213a151e1d3e151e1942151e1546151e114a151e0d324f09364f053a4f3e4f3e4f3e4f3e4f3e4f3e4f5a151e5a151e5a151e5a151e5a151e5a151e5a151e5a151e5a151e"},5:{t:70,l:3,w:42,h:70,m:"x044d04044d04044d04044d04044d04044d04044d04044d04044d04044d0404133e02153e02153e02153e02153e02153e02153e02153e02153e02153e02134002134002134002272c0233203b1a3f1643124510470e490c4b0a4d08282706301f06341d043819043a19023c17023e15023e15023e17401540154015401540154015401540153e15023e15023c17023c17023a1704381904361906321b08301d082a210a24250c1c2b0e451043123f163b1a371e33222b2a2332"},6:{t:70,l:-1,w:50,h:70,m:"y5215264a251e4431184037163c3f12384510344b0e324f0c2e550a2c590828310e2106262f161d06242d1c1d04202f2219041e2f2617041c312619021a312a170218312c1702161b04152e1502141b06152e17121b08152e17101b081532150e190c1532150c190e1532150a1910153215081912153215061914153215041916153215021918153215191a153215171c172e17151e172e15021322152e15021124172a17020f26172a17020d2a172617040b2c17261704092e192219040930191e190607321d161b0805361f0e1f08033a470a3e430c3e410e403d104437124633144a2b184e231c541524"},7:{t:70,l:0,w:48,h:70,m:"y15781578157815781578157815781578157815781578155227154a2f154237153e3b153a3f153643153247153049152c4d15282b261526272c1524233215202336151e213a151c1f3e15181f4215161f4415141d4815121d4a15101b4e150e1b50150c1b52150a1b5415061d5615021f58335a2f5e2d602b62296427662568236a1f6e1d701974117c"},8:{t:70,l:0,w:49,h:71,m:"y5e131e581f18542912160f2c2f10121924330e0e211e370c0c251a3b0a0a29163f08082d124306082f0e450606310e1b0e1f0406330a19161b0404190a1508171a190404170e1306171e19020217121302172019020217142724170202151625261702021518232817171a1f2a17151c1f2a17151c1d2e15151e1b2e15151e193015152017301515201532151520153215151e193015151e193015151c1d2e15151c1d2e151718212a1702151823281502021516252815020217142724170202171213021722170204170e1504171e17040419081708171a190406330a19161b0406330c1b0e1d06082f104306082d1241080a29163f080c251a3b0a0e211e370c121924330e16112a2f105429125821165e131e"},9:{t:70,l:-1,w:50,h:70,m:"y2415541c234e182b4a143346123744103d400e413e0c433e0a473a03081f0e1f3605081b161d320706191e193009041922192e09041726172c0b041726172a0d02172a17260f02172a17241102152e15221302152e171e15172e171c171532151a1915321518190215321516190415321514190615321512190815321510190a1532150e190c1532150c190e153215081b10172e15081b12172e15061b1402152e15041b1602172c311802172a311a021926311c0417262f1e0419222f20041d1c2d24061d162f2606210e312808592c0a552e0c4f320e4b34104538123f3c1637401831441e254a261552"},A:{t:70,l:-1,w:50,h:70,m:"y86077e0f7815701d6825602d5a33523b4a43424b3a4f04344d0c2c4d14244d1c1c4d24164f280e57280649021528470a15283f121528371a15282f221528272a15281f321528173a1528173a15282130152829281528312015283b161528430e15284b0615286528065f280e592618571e20591428590c3059043855404d4845503d5835602d6825701d7815800d8805"},B:{t:70,l:0,w:48,h:70,m:"y8d8d8d8d8d8d8d8d8d1526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151526112e151724112e151724112c17021522152a17021720152a1702191c19261702021b181b261702041b141f221902041f0c251e19040651161d0406550e1f06083b0243060a370441080c33083d0a0e31083b0c102d0c370e1425123310181f162f121e13202716541f1a581322"},C:{t:71,l:3,w:42,h:72,m:"y3821382c392c26472420531e1a5d1a166516146b121071100e750e0c790c0a2f202f0a08273427080623402306061d4c1d06041b541b04041958190402195c19020217601702021564150217641715681515681515681515681515681515681515681517641717641502021760170202195c1902021d541d02041f4c1f04041f4c1f04061d4c1d06081b4c1b080a194c1b080c174c190a0e154c150e10134c1310140f4c11121a094c0b18"},D:{t:70,l:3,w:41,h:70,m:"y8d8d8d8d8d8d8d8d8d1368131566131564151564150213641502136413020215621302021560150204155e150204155e150204175a150406175815040617561704081752170608194e19060a1b4819080c1b441b080c1d401b0a0e1f381d0c102130210c122526230e142b1629101665121861141c59181e551a224f1c2449202a3f242e3728342b2e3c1b36"},E:{t:70,l:3,w:42,h:70,m:"x51045104510451045104510451045104510451041342134213421342134213421342134213421342134213421342134213421342134213421342490c490c490c490c490c490c490c490c490c490c13421342134213421342134213421342134213421342134213421342134213421342134213421342134255555555555555555555"},F:{t:70,l:6,w:35,h:70,m:"y8d8d8d8d8d8d8d8d8d1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e1526153e15781578157815781578"},G:{t:71,l:1,w:46,h:72,m:"y342736283f2a224b241e551e1a5d1a166516146914126f1010730e0e770c0c2d1e310a0a2532270a08213e2308081d481f06061d4c1d060619541b04041958190404175c170402195e17020217601702021762150202156417172e152217172e15241515301524151530152415153015241515301524151530152415153015241515301524151530152415153015241502152e1524130202152e1524130202172c1522150204192815221502041b264b020619264904081726490408172649040a152647060c13264706100f264706120d2645081807264508"},H:{t:70,l:2,w:44,h:70,m:"y8d8d8d8d8d8d8d8d8d3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e3a153e8d8d8d8d8d8d8d8d8d"},I:{t:70,l:7,w:34,h:70,m:"y78151564151564151564151564151564151564151564151564151564151564151564158d8d8d8d8d8d8d8d8d15641515641515641515641515641515641515641515641515641515641515641578157815"},J:{t:70,l:6,w:35,h:71,m:"y5e171a5e1d145e21105e230e5e270a5e29085e2b065e2b065e2d0472190474190276170278150278177a157a157a157a157a157a157a157817781502761702741902701b048b04890689068708850a830c7f107b14751a"},K:{t:70,l:-2,w:53,h:70,m:"y8d8d8d8d8d8d8d8d8d38193c361d3a3421383225363029342e2d322c31302a352e281b021d2c261b061d2a241b0a1d28221b0e1d26201b121d241e1b161d221c1b1a1d201a1b1e1d1e181b221d1c161b261d1a141b2a1d18121b2e1d16101b321d140e1b361d120c1b3a1d100a1b3e1d0e081b421d0c061b461d0a041b4a1d08021b4e1d061b521d0419561d02175a1d155e1b1362191166170f6a150d6e130b721109760f077a0d057e0b038209860788058a03"},L:{t:70,l:1,w:45,h:70,m:"y8d8d8d8d8d8d8d8d8d781578157815781578157815781578157815781578157815781578157815781578157815781578157815781578157815781578157815781578157815781578157815781578157815"},M:{t:70,l:0,w:48,h:70,m:"y8d8d8d8d8d8d8d8d8d1974216c27662f5e35583d50434a0645420e433c1445341a452e203f2e26392e2e312e342b2e342b2e2e312e26392e203f2e1a452e1445340e433c064542434a3d5035582f5e2766216c19748d8d8d8d8d8d8d8d8d"},N:{t:70,l:1,w:46,h:70,m:"y8d8d8d8d8d8d8d8d8d256829642d60042d5c082d580c2d54102d50142d4c182d481c2d44202d40242d3c282d382c2d34302d30342d2c382d283c2d24402d20442d1c482d184c2d14502d10542d0c582d085c2d04602d64298d8d8d8d8d8d8d8d8d"},O:{t:71,l:0,w:48,h:72,m:"y3a1f382e372c284326224f201e571c1a5f18166516126d121071100e750e0c2d202f0a0a2536230a0821421f08061d4c1d060619541b04041958190404175c19020217601702021762150202156417176417156815156815156815156815156815156815176417021564170217621502021760170204175c19020419581904061b501d04061f4a1d0608214021080a253427080c2d202f0a0e770c107110126d121667141a5f181e571c224d222843262e352e382138"},P:{t:70,l:1,w:45,h:70,m:"y8d8d8d8d8d8d8d8d8d152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152c1538152a17381728153a1728153a021724173a021722193a02191e193c041b181b3c041f101f3c06493e0845400845400a41420c3d440e394612314a142d4c182550201558"},Q:{t:71,l:-2,w:53,h:71,m:"y32233a263b2e2047281c5122185720145f1c12631a0e69180c6f140a7312082d1e2b120823322310061f3c210e041d461d0c04194c1b0c021952190a0217320520170a021534071e170a1734091e150a17340d1a170815360f1a150815361118150815361514150815361712150815361910150815361d0c150815361f0a1508021534210617080215382102150a021738350a041738330a041b362f0c061b382b0c062134270e08253023100a2d1e2d0e0c770c0e79081079061279041479021857021f1c4f081d20470e1b28391817322524157c13800f820d840b88078a058c03"},R:{t:70,l:1,w:45,h:70,m:"y8d8d8d8d8d8d8d8d8d152a153a152a153a152a153a152a153a152a153a152a153a152a153a152a153a152a153a152a1936152a1b34152a1f30152a232c152a272815282d24172631201726331e021722391a0217223d1602191e15062912041b18170a290e041f0e1d0e290a0645122b06064516290408411c290a3d22250c3926230e352c1f1031321b142b381718233e151e154a11800d840986078a03"},S:{t:71,l:2,w:43,h:72,m:"y680d1c6813161c133a1712161f3419101227301b0e102b2e1d0c0e312a1f0a0c332a21080a37282108083b262306083d282104063f2e1b04041d0c1b2e1904041912193019020417181730170202171c1730150202171c173017021520172e17172215301515241530151526152e151526152e151528152c151528152c15152a152a15152a172617152c152617172a1724150202152c1720170202172a171e190202172c1918190402192a1b141b04041b281d0c1f040421244306061f244108081d263f08081d283b0a0a1b2a370c0c192c330e0e172e2f1012133227141411361f181a0b3c131e"},T:{t:70,l:0,w:47,h:70,m:"y15781578157815781578157815781578157815781578157815781578157815781578157815788d8d8d8d8d8d8d8d8d1578157815781578157815781578157815781578157815781578157815781578157815781578"},U:{t:70,l:1,w:46,h:71,m:"y6f20751a79167d127f10810e830c850a87086821066e1b0672190474170474190276170278150278150278177a157a157a157a157a157a157a157a157a157a157817781502781502761702741902741704701b046e1b066a1f0687088708850a830c810e7d127b14751a6d22"},V:{t:70,l:-1,w:50,h:70,m:"y07860f7e17761f6e27662f5e37563d5045484d40064f380e4d32164d2a1e4d22264d1a2e4b14364b0c3e4b0446474e3f56375e2f66276e1f741974196e1f66275e2f56374e3f46473e4b04364b0c2e4b14264d1a1e4d22164d2a0e4d32064f384d4045483d5037562f5e27661f6e17760f7e0786"},W:{t:70,l:-1,w:50,h:70,m:"y2f5e474659346726731a7d1087068d8d226b3e4f503d5e2f6a23622b5c3154394e3f46474045083a4310363f18363720362f2836292e36292e362f28363720363f183a431040450846474e3f54395c31622b6a235e2f503d3e4f226b8d8d87067d10731a6726593447462f5e"},X:{t:70,l:0,w:47,h:70,m:"y0388030780070b780b0f700f1368131760171b581b1f501f2348232740272b382b042b302b04082b282b080c2b202b0c102b182b10142b102b14182b082b181c551c204d20244524283d282c352c302d30342534302d302c352c283d28244524204d201c551c182b082b18142b102b14102b182b100c2b202b0c082b282b08042b302b042b382b2740272348231f501f1b581b1760171368130f700f0b780b078007038803"},Y:{t:70,l:0,w:47,h:70,m:"y038a07860b820f7e137a17761b721f6e236a27662b62042b5e082b5a0c2b56102b52142b4e182b4a1c2b46202b42246928652c61305d3459305d2c6128652469202b421c2b46182b4a142b4e102b520c2b56082b5a042b5e2b622766236a1f6e1b721776137a0f7e0b820786038a"},Z:{t:70,l:4,w:40,h:70,m:"y156415156019155c1d155821155425155029154c2d154831154435154039153c3d15382b021515342b061515302b0a15152c2b0e1515282b121515242b161515202b1a15151c2b1e1515182b221515142b261515102b2a15150c2b2e1515082b321515042b36153f3a153b3e153742153346152f4a152b4e152752152356151f5a151b5e15176215156415781578157815"},a:{t:53,l:3,w:42,h:54,m:"x201b1a182b1214330e10390c0e3d0a0c41080a4506084904081d121b04061b1c170206172215020615261302041726130204152a1342134213421342134213421342132035183d144110450c490a4b084d064f041d22130419261302172a1302152c1302132e13152e13133013132e15132e15132c17132c17132a1915261b17221d0215201f02191823021d0e290451064f083902130a3504130c31061310290a1314210e131a1526"},b:{t:75,l:1,w:46,h:76,m:"y970297029702970297029702970297029702381f16210c3619261b0a34172e1908341336170632133a150630133e150430134013042e134215022e114613022e114613022c1348132c114a132c114a132c114a132c114a132c114a132c114a132c114a132c1346152c134613022e114415022e134215022e153e17022e173a17043017361904301b2e1b06321d261f063423162508345b0a36570c3a510e3c4d103e471442411648371a4c2d20561b28"},c:{t:53,l:3,w:41,h:54,m:"y2a192a202d201c371a183f16144712104d100e530c0c570a0a5b0808211c2108061b2c1b060617341904041738170404133e1702021540150202134413020211481102134813114c11114c11114c11114c11114c11114c11114c1113481313481315441302021342150202153e17020219361904041b2c1f04041b2c1d0606192c1d0606192c1b0808172c190a0a152c170c0c132c150e0e112c1310120d2c0f1416092c0b18"},d:{t:75,l:1,w:46,h:76,m:"y561b284c2d2046391a4241163e49123c4d103a510e38550c36590a3423182308321d261f06301b30190630173619042e173c15042e154015022e134215022e134413022c1348132c1348132c114a132c114c112c114c112c114c112c114c112c114c112c114c112c134811022e114811022e114811022e134411043011421304301340110632133c1306321536150834173017083619261b0a381f181f0c970297029702970297029702970297029702"},e:{t:52,l:1,w:46,h:53,m:"x2417221c271a182f16143712123b10103f0e0e430c0c470a0a1f0e1f080a191a1b0608191e19060815241904061528170406152a150404152c170204152e1502041330150202153015020215301702153017025b5d5d5d5d5d5d5d15481548154815481548021348021546021546021546041544041544041742061740061924150608192017060a1b1a19060a21101d060c49080e470810430a123f0c16390e1833121e291626191e"},f:{t:75,l:4,w:39,h:75,m:"y2e11582e11582e11582e11582e11582e11582e11582e11582e11582e11582e11582e11582e11582e11581c7b148310870c8b0a8d088f06910691049304191211580217161158021518115802131a1158131c1158131c1158131c1158111e1158111e1158111e1158111e1158111e1158111e1158111e1158111e1158111e1158"},g:{t:53,l:2,w:44,h:70,m:"y241b4e1c2b461637280910123f240d0c10452011080e491e11080c4d1c13060a511a1504085518150406211821161702041d241b16170204192c19141702021734151615020215381516130202133c13181302113e1318131340131811134013181111441118111144111811114411181111441118111144111811114411181111441118111144111811021140111a1102114011181302133c1318110204113c111a1102041338131a1102061334131a130208152c151c13020a1724171c13040c1b161d1a170402850602850602830802810a02810a027f0c027b1002771402711a"},h:{t:75,l:3,w:41,h:75,m:"y979797979797979797361b4634174c34154e3215503015523013542e13562e13562e13562e11582c13582c13582c13582c13582c13582c13582c13582c15562c15562e15542e17522e1950301b4c306732653265346336613a5d3c5b40574651"},i:{t:75,l:11,w:26,h:75,m:"y2e15542e15542e15542e15542e15542e15542e15542e15542e15542e15542e15542e15541b1415541b1415541b1415541b1415541b1415541b14691b14691b14691b14691b14691b14691b14691b14691b1469"},j:{t:75,l:10,w:28,h:93,m:"yaa11aa11aa11aa11aa11aa11aa112e1568112e1568112e1568112e1568112e1568112e1568112e1566132e156611021b14156413021b14156215021b14156017021b14155a1b041b1489041b1487061b1487061b1485081b14830a1b14810c1b147f0e1b147b121b147518"},k:{t:75,l:1,w:45,h:75,m:"y97979797979797979754152e52192c501d2a4e21284c25264a2924482d2246312044351e421b041b1c401b081b1a3e1b0c1b183c1b101b163a1b141b14381b181b12361b1c1b10341b201b0e321b241b0c301b281b0a2e1b2c1b082e19301b062e17341b042e15381b022e133c1b2e1140192e0f44172e0d48152e0b4c132e0950112e07540f2e05580d2e035c0b8e09900792059403"},l:{t:75,l:9,w:29,h:75,m:"y7b1c831487108b0c8d0a8f089106930493047a1b027e170280150282158413841384138611861186118611861186118611861186118611861186118611"},m:{t:53,l:-1,w:51,h:53,m:"y026902690269026902690269026902690269081350080f54060f56040f58020f5a020f5a020f5a115a115a1358135817546b6b6b026902690467066508630665061550041354021356021158020f5a115a115a115a115a1358135817546b026902690467046706650a610c5f1259"},n:{t:53,l:2,w:44,h:53,m:"y0269026902690269026902690269026902690c1d420a19480a154c08154e061352061352041354041156021356021158021158115a115a115a115a115a115a115a115a13581358021158021356021554041552041b4c0665066508630a610c5f0e5d125916551c4f"},o:{t:53,l:-1,w:50,h:54,m:"y2a192a202b221c351c183d18144514124912104d100e510e0c550c0a2314230a081d241d0808192c19080617341706041738150604153c150404134013040213441302021344130202114811020211481102134813114c11114c11114c11114c11114c11114c11114c11114c11114a1313481102021148110202114613020213441302021540130404133e150404173815060617341706061b2e1708081d241d080a2316210a0c550c0e510e104d10124912144316183b1a1c331e2229222a192a"},p:{t:53,l:1,w:46,h:70,m:"y028b028b028b028b028b028b028b028b028b0c1f181f2c0a1928192a0817301728061538152606133c132604134013240411441124021344132202114811220211481122114c1120114c1120114c1120114c1120114c1120114c1120114c1120114c112013481320021148112202114613220213441322021540152204153c152404173817240619301926081b281b2808231a21280a592a0c552c0e512e124b30144534183d381c353c2229422a194a"},q:{t:53,l:1,w:46,h:70,m:"y2a194a222b401c353c183f36144534104d300e512e0c552c0a592a0823182328081b281d260619321726041738172404153c1524041340152202134413220213461122021148112213481320114c1120114c1120114c1120114c1120114c1120114c1120114c1120114c11200211481122021148112202134413220411441124041340132406133c1326081338152608173017280a1928192a0c1f181f2c028b028b028b028b028b028b028b028b028b"},r:{t:53,l:5,w:38,h:53,m:"y0269026902690269026902690269026902690c1b440a174a08154e081350061352041354041156021158021158021158115a115a115a115a115a1358135815560215540219080346022346042146061f46061f46081d460a1b460e1746121346180d46"},s:{t:53,l:3,w:42,h:54,m:"x201b1a162b141233100e3b0c0a410a084508084508064906041d121d0604171c1b04041522170402152417040213281504021328150402134002134002134002153e02153e04153c041938061f30062728082f1e0a33180c37120e390e14370a183508202f06282904321f043a19023e150240130240154213421342134213133013152c15152a171726170219201b02021d161d04024f04044b0606470808430a0a3d0e0e3512122d161a1b20"},t:{t:67,l:4,w:39,h:68,m:"y1e115a1e115a1e115a1e115a1e115a1e115a1e115a1e115a1e115a1e115a06691a04711404751004790c027d0a027f0802810602830485041e113e1b021e114415021e114613021e1148131e1148131e114a111e114a111e114a111e114a111e114a111e114a111e114a111e1148131e114811021e114811021e114613021e114613021e114413041e114215041e11421306"},u:{t:52,l:2,w:44,h:53,m:"y511a57145b105f0c610a63086506650667044e1904521702541502561302581358135a115a115a115a115a115a115a115a115811025811025811025611045611045413045213065015064e15084c150a48170c421d0c690269026902690269026902690269026902"},v:{t:52,l:0,w:49,h:52,m:"y07620d5c135619501f4a25442b3e2f3a35343b2e043d280a3d22103d1c163b181c3b12223b0c283b062e3b34353a2f402946234c1d5217581152174c1d462340293a2f34352e3b283b06223b0c1c3b12163b18103d1c0a3d22043d283b2e35342f3a2b3e25441f4a195013560d5c0762"},w:{t:52,l:0,w:48,h:52,m:"y11582346333645245514670269696908611c4d303942274e1b482140293a2f32372c390428350c282f1228271a28212028192828192828212028271a282f1228350c2c390432373a2f402948214e1b422730391c4d0861696969670255144524333623461158"},x:{t:52,l:0,w:48,h:52,m:"y036403075c070958090b540b0f4c0f114811134413173c171938191d301d1f2c1f212821022320230206211c210608211821080c2110210c0e210c210e12210421121441141839181c311c1e2d1e2225222421242421242225221e2d1e1c311c18391814411412210421120e210c210e0c2110210c082118210806211c210602232023022128211f2c1f1d301d193819173c171344131148110f4c0f0b540b095809075c07036403"},y:{t:52,l:-2,w:52,h:70,m:"y058809840d800f6e11136a111766111b62111d6011215c112556132950152b4c1502042b441902082b3c1d020c2b341f04102b2c2106142926250618291e27081c2916290a20290e290e2427082b1028270229142c491830411c3439203831243c292838292c3429303229322e29362a293a26293e2229421e29461c274a18274e1427521027560c275a08275e0427620227642568216c1d7019741578117c0d8009840588"},z:{t:52,l:3,w:41,h:52,m:"x044b04044b04044b04044b04044b04044b04044b04044b0438170436190434190632190832170a30170c2e190c2c190e2a191028191228171426191424191622191820191a20171c1e171e1c191e1a192018192216192416172614192612192810192a0e192c0c192e0c17300a1930081932061934041936041738021938193a173c5353535353535353"},"~":{t:76,l:-1,w:50,h:17,m:"x1a074412173005080e1f2a09060c27220d040a2d1c11020833161506391017063f061b045f02025f041d083b0619103706021516310804111c2b0a060d22250c08092a1b100a05301314"},"!":{t:75,l:17,w:14,h:75,m:"y1b6419453a195f20195f20195f20195f20195f20195f20195f20195f20195f20195f2019453a191b6419"},"@":{t:77,l:0,w:47,h:78,m:"y220b32211e1a13283514141922410e121b1e470c0e1f1c4d080c211a51060a2318550408251657040627161f1a2102061d20172a19020419241532150204172613361502172811381502152a113a1302152a113a1302132c113a13152c133813133011381313301334130213301530150213321928170213341d1a1d04132e5706132e5508132e530a132e530a132e5508152c570602132c590402132c5b0202156e170204157015041572130417701306196c1308196a13081f62150a235a15020c33401d020e8d02128704148306187d081e750a246b0e2c5f123c431e"},"#":{t:76,l:1,w:46,h:76,m:"y66092209600f18133407260f101b2c0f260f08232c0f26392c0f26392c0f203f2c0f16492c0f0e512c0f0453082c5b122a551a22532418572a0e612a0653080f2a4f120f2a471a0f2a3d240f2a3b260f2a29040f260f2a1f0e0f260f280315180f260f200b0d200f260f1615032a0f260f0c1f2c0f260f02292c0f26392c0f223d2c0f1a452c0f104f2c0f0657022c630a2c591424571e1a5926125d2a0855040f2a550c0f2a4b160f2a431e0f2a3b260f2a3b260f2a25080f260f2a1d100f260732131a0f5e09240766"},$:{t:75,l:-1,w:50,h:75,m:"y240f380b221e1b320f1e1a2130131a18272c1518162b2a1716142d2a19141231281b121035261d101037241d100e39241f0e0e170c19261b0e0e1512152a190c0c1516152a170c0c1318152c150c0c131a132c170a0a151a152c150a0a151c132c150a0a131e152a150a0a131e152a150a0a1320132a150a0a1320132a150a97979797979797970a13241722150a0a13261522150a0a13261522130c0c11261720130c0c1326151e150c0c1326171c150c0c1328151c130e0e13261718150e0e1d1e1714170e0e1d1e19101710101b20190c1910101b203b121219223912141722371416152433161813262f181a11262f181c0f2a271c200b2c231e581d225e1128"},"%":{t:74,l:0,w:47,h:74,m:"y120f740c197008215c110625561504295019042b4c1b022d481f022f4223130e113e2711120f3c25040f160d3827060f160d34270a11120f30270e130e112e2512022f2a2516022d282718042b24271c0429242520062522252408212027260c1920272a120f20272e3e25323a253636273832271e0f1030251c190c2c251c210828271c250624271e29042225222b021e25242d021a25282f162728130e1114252c11120f1025300f160d0c25340f160d08273611120f06253a130e110225402f23442d0221482b021d4c290419522506155821081160190c760f10"},"^":{t:76,l:0,w:48,h:39,m:"y4205083e0b063c0f04381304361702321d301f2c21022a210426210822230a20230c1c250e1a25101627121427141029160e29180a2b1a082b1c042d1e022b222b24292629262b24022b22042d1e082b1c0a2b1a0e29181029161427141627121a25101c250e20230c22230a2621082a21042c2102301f321d3617023813043c0f043e0b06420508"},"&":{t:76,l:-1,w:50,h:76,m:"y66151e6021185c29141a112e2f12141d26350e10271e390c0e2d183d0a0c331241080a370e4308083d084706083f041f0c2104065f141d04065b1c1904041d0c332019020419162b22190202191c252617020217202328170215262126171728212417152a252215152829201515262f1c151526311a1515243716151522170421141515201708231015151e170c230e15171c1512210c1502151a1714230815021716171a21061302021912171e3702021d0a19223502043b28310204392c2d0406353229040831362506082f3a25040a2b4023020c273c2b0e233435121b284518112c4554455445542d061354290e0f5425140d541f1e0954192607540f3205"},"*":{t:75,l:0,w:48,h:49,m:"y2a0732240d322011321a19301a19301a1922050a1c1720070a1c191c0b081e171a0f061e171811062017141504201712190220170e1f22150c21221708210224150621042415041f0826330a262f0e1f082b124f144b18491a451e451e491a4b184f141f082b12262f0e26330a2415041f082415062104221708210222150c2120170e1f201712190220171415041e171811061e171a0f061c191c0b081c1720070a1a1922050a1a19301a1930201132240d322a0732"},_:{t:-8,l:-3,w:54,h:9,m:"x6d6d6d6d6d6d6d6d6d"},"+":{t:65,l:1,w:46,h:54,m:"y2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c6d6d6d6d6d6d6d6d6d6d2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c2c152c"},"`":{t:72,l:7,w:34,h:27,m:"y033405320730092e0b2c0d2a1126132415221720191e1b1c1f182116231425122710290e2b0c2f083106042f04082d020c2b10271423181f1c1b20172413280f2c0b30073403"},"-":{t:32,l:1,w:46,h:12,m:"x5d5d5d5d5d5d5d5d5d5d5d5d"},"=":{t:54,l:1,w:45,h:32,m:"x5b5b5b5b5b5b5b5b5b5b5a5a5a5a5a5a5a5a5a5a5a5a5b5b5b5b5b5b5b5b5b5b"},'"':{t:72,l:8,w:32,h:23,m:"y2f2f2f2f2f2f2f2f2f2f2f2e2e2e2e2e2e2e2e2e2e2f2f2f2f2f2f2f2f2f2f2f"},"'":{t:72,l:18,w:12,h:31,m:"y3f3f3f3f3f3f3f3f3f3f3f3f"},"(":{t:76,l:9,w:29,h:77,m:"y401d3e382d36303d2e2c452a284d26245522205d1e1c631c1a6918186d16142f182d1412272a2910102336250e0e213e230c0c1f46210a0a1d4e1f08081d521d08061d561d06041b5c1d04021b601d020219641d19681b176c19176e17157215137415117813117a110f7e0f"},")":{t:76,l:9,w:29,h:77,m:"y0f7e0f117a11117813137415157215176e17176c1919681b0219641d021b601d02041b5c1d04061d561d06081d521d080a1f4a21080c1f46210a0e213e230c102336250e12272a2910142f182d14186d161a69181c631c205d1e245522284d262c452a303d2e382d36401d3e"},"{":{t:77,l:1,w:46,h:78,m:"y461542461542461542461542461542461542461542461542461542441940441940441940421d3e40213c3a2d361e5b24166f18107b120e810e0c43043f0c0a4504410a08450841080643103f06063f1a39060433323104041f581f04021b641b02021968190202176c170202157015020215701502177017157415157415157415157415157415157415157415157415157415157415157415157415157415157415"},"}":{t:77,l:1,w:46,h:78,m:"y1574151574151574151574151574151574151574151574151574151574151574151574151574151574151770170215701502021570150202176c17020219681902021b641b02041f581f040433323104063f1a39060643103f0608450841080a4504410a0c43043f0c0e810e107b12166f181e5b243a2d3640213c421d3e441940441940441940461542461542461542461542461542461542461542461542461542"},"[":{t:76,l:5,w:37,h:76,m:"y99999999999999999999157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015157015"},"]":{t:76,l:5,w:37,h:76,m:"y15701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701515701599999999999999999999"},"<":{t:73,l:0,w:49,h:70,m:"x60035e055a09580b560d521150134c174a19461d441f40233e23023a250438230834250a32230e2e25102c231428251626251824231c20251e1e23221a252418232814252a12232e0e25300c233408253606233a02253c234021421f44234002233e04253a0823380a23360e233210233014232c16232a1a23261c23241e252022231e24251a2823182a25142e231230250e34230c3625083a23063c250240234221441f481b4a194e155013540f560d5a095c076003"},">":{t:73,l:0,w:49,h:70,m:"x0360055e095a0b580d5611521350174c194a1d461f44234002233e04253a0823380a25340e233210252e14232c1625281a23261c232420232022231e26231a2823182c23142e231232230e34230c3625083a23063c250240234221441f42213e23023c230438230836230a34210e3023102e23122a231628231824231c22231e1e23221c232418252616232a14232c1023300e23320a233608233804253a02233e022140021d44021b4602174a02154c021150020f52020d5402095802075a02035e"},"|":{t:77,l:19,w:10,h:94,m:"ybdbdbdbdbdbdbdbdbdbd"},":":{t:52,l:14,w:19,h:52,m:"x27272727272727272727272727272727262626262626262626262626262626262626262627272727272727272727272727272727"},";":{t:52,l:5,w:37,h:72,m:"y8c058809840d80117c157819741d70216c256829642b02602d045c2f0658310854330a50350c4c370e4839104837121f2a35141f2a33161f2a31181f2a2f1a1f2a2d1c1f2a2b1e1f2a29201f2a27221f2a25241f2a23261f2a21281f2a1f2a1f2a1d2c1f2a1b2e1f2a19301f2a17321f2a15341f2a1336"},".":{t:16,l:14,w:19,h:16,m:"x27272727272727272727272727272727"},",":{t:16,l:5,w:37,h:36,m:"y440540093c0d3811341530192c1d2821242520291c2b02182d04142f061031080c330a08350c04370e391037123514331631182f1a2d1c2b1e292027222524232621281f2a1d2c1b2e1930173215341336"},"\\":{t:76,l:3,w:41,h:77,m:"y039807940d8e138817841d7e217a27742b70316a35660635600a355c1035561435521a354c1e35482435422a333e2e353834333438352e3e332a4235244833204c351a5233165635105c330c6035066633026c2f702b76257a21801b84178a118e0d94079803"},"?":{t:77,l:0,w:49,h:77,m:"y20116a18196a141d6a121f6a0e236a0c256a0c256a0a276a08296a08296a062b6a062b6a042d6a042176021f7a021b7e0219800219800217661d19661d19661d173c131a1d1738171a1d1736191a1d17341b1a1d17321d1a1d17301f1a1d172e211a1d172c231a1d192a231a1d1928251a1d021924271a1d021b20291a1d021d1c2b1a1d021f1623261d04210e232a1d044f48044d4a06494c06474e0843500a3f520a3d540c39560e3558102f5c14295e181f641e136a"},"/":{t:76,l:3,w:41,h:77,m:"y980394078e0d8a118417801b7a217427702b6a316633026035065c330c5635105233164c351a4833204235243c352a38352e3235342e353828353e2435421e35481a334e1435520e35580a355c04356235662f6c2b702576217a1b801784118a0d8e07940398"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["12-09"]={h:81,w:54,g:{0:{t:82,l:0,w:55,h:83,m:"y38353a28552a2067201a731a147f141087100e8b0e0a910c08950a089708069b0606392a39060427502904041f602104021d6a1d020219701b0202197219020217761702021776170202177619177a17177a17177a17177a17177a17177a17177a17177a17177a17177a17177a17177a17177a17177a17177a171778170219761702021776170202177419020219721902021d6a1b04041f621f0404295027040637323306069b060897080a930a0c8f0c0e8b0e128510167d141a731a2265202c512a3a3538"},1:{t:81,l:11,w:32,h:81,m:"y201f641e1f661c1f681a1f6a1a1d6c181f6c161f6e141f70121f72121d74101d760e1d780c1f780a1f7a081f7c081d7e061d80041d82021f821f841d86a3a3a3a3a3a3a3a3a3a3a3"},2:{t:83,l:2,w:50,h:83,m:"y8a190480270e1b522d0c1b50310a1b4e350a1b4a39081b4a3b08194a3d061b464106194643041b444504194447041944250c170417442310170219422114170219401f18170217421d1a170217401d1c17193e1d1e17193c1d2017173e1b2217173c1b2417173c1b2417173a1b261717381b28171738192a1717361b2a1717341b2c171734192e1719301b2e17192e1b3017192c1b321702192a1b3217021b261b3417021d221b3617021f1c1f3617041f181f381704250c233a1706513a17064f3c17084b3e170a4740170c4342170c4144170e3d46171237481714334a17182b4e171c235217221570"},3:{t:81,l:0,w:53,h:82,m:"x65066506650665066506650665066506650665066506461f064421064023083e210c3c210e3a211038211236211434211632211830211a2e211c2c211e2a1f22281f24261f26241f28221f2a201f2c1c212e1a21301a29281a31201a371a1a3b161a3d141a41101a430e1a450c1a470a382b08402308442106461f064a1d044c1b044e1b024e1b02501902501b52195219521952195219521952195219501b501b5019024e1b024c1d024c1d024a1d0405441f04093c21060d362306132a27081d1a2b0a610a5f0c5d0e5b1059125516024f1a06471e0c3d22142f281e1b32"},4:{t:81,l:0,w:53,h:81,m:"y641d226021225c2522582922542d225031224c3522483922443d224041223c4522382f041722342f081722302f0c17222c2f101722282f141722242f181722202f1c17221c2f201722182f241722142f281722102f2c17220c2f301722082f341722042f3817222f3c17222b40172227441722234817221f4c17221b5017221754172213365b0f3a5b0b3e5b07425b03465b485b485b485b485b485b485b6a17226a17226a17226a17226a17226a17226a17226a17226a17226a1722"},5:{t:81,l:4,w:46,h:82,m:"x045504045504045504045504045504045504045504045504045504045504045504041544041544041544041544021744021744021744021744021744021744021744021744021546021546021546022932023526023b2002411a471649144b124f0e4f0e510c530a0d1e2b083223083621063a1d063c1d043e1b04401b02401b02421902421902441944194419441944194419441944194419421b421b421902401b02401b023e1b043c1d043c1d043a1d0636210634210830230a2c270a262b0c1c330e4d104b1249144518411c3f1e392435282d302538114c"},6:{t:81,l:-1,w:56,h:82,m:"y601b2a562d2250391c4c41184649164251124055103c5b0e38610c36650a32690a306d082e391029062a371c2306283722210426352a1d0424352e1b042037321b021e39321b021c1f02193619021a1f04173a1702181f06173a19161d0a173a19121f0a173e17101f0c173e170e1f0e173e170c1f10173e170a1f12173e17081d16173e17061d18173e17041d1a173e17021d1c173e171d1e193c171b20193a191922193a1702172619361902152819361902132a1b321b02112c1d301904112e1b2e1b040f301d281f040d341f221f060b36211c2306093a25102708073c5b080540570a0344530c484f0e484d104c47124e4314503f1654371a56311e5c272264172a"},7:{t:81,l:0,w:55,h:81,m:"y178c178c178c178c178c178c178c178c178c178c178c178c17622b17583517503d174c4117484517424b17404d173c5117385517365717325b172e352a172c2f32172a2b381726293e17242742172225461720234a171c234e171a235017182154171621561714215817121f5c17101f5e170c2160170a21621708216417042366396a376c356e337031722f742d76297a277c257e21821f84198a1390"},8:{t:82,l:-1,w:56,h:83,m:"y6e152468231c642b181a13343314161b2e39101223283d0e102920430c0e2d1e430c0c311a470a0a35164b080839124d080839105106063d0e210e2306063f0a1f162104041d0a1d061d1e1d0404191219061b221b0404171619021b261b0202171a31281b0202171c2d2c1902021520292e190202152227301917222532191526233219152621361715281f361715281d381715281b3a17152a193a17152a193a1715281b3a1715281d381715261f3817152621361717222334190215202732190215202930170202171c2b2e190202171a2f2c190204171633281b020419121b0419261b02041d0a1d061b221b04063f0a1b1e1d04063f0a1f181f04083b0e210e23060839124f060a35144d080c31184b080c2f1c470a102920430c1225243f0e161d2a3b101a13323712603314642b1868231c6e1722"},9:{t:82,l:-1,w:56,h:82,m:"y2a176422275c1e2f581a3754163f5014434e12494a104d480e4f480c5344030a574005082710253c0708211a213a09061f221f360b061d261d340d041d2c1b300f041b2e1b2e11021b321b2c11021936192a1302193619281502173a17261702173a192219193a19201b173e171e1d173e171c1d02173e171a1d04173e17161f06173e17141f08173e17121f0a173e17101f0c173e170e1f0e173e170c1f10193a190a1f12193a170a1d1602173a17061f1802193619041f1a02193619021f1c021b32391e021d303720041b2e3722041f283526061f22372806231a392a08270e3b2e086d300a67340c63360e5d3a0e5b3c125340144d441647481a3f4c1e35522429582c1960"},A:{t:81,l:-1,w:56,h:81,m:"y9c07940f8c17841f7c27742f6e35663d5e45564d4e55465b023e5b0a38591230591a28572420572c185d2e10652e086d2e025508172e4d12172e451a172e3d22172e352a172e2d32172e253a172e1d42172e1946172e213e172e2b34172e332c172e3d22172e4718172e4f10172e5906172e752e066f2e0e672e1665281e671e2667162e670e3669043e65465d5053584b6043683b7033782b8023881b90139a09"},B:{t:81,l:0,w:55,h:81,m:"ya3a3a3a3a3a3a3a3a3a3a3172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617172c153617192a153617192a153419021728193219021926193219021b221d2e1902021b221d2e1902021f1c212a1b02041f1627261d0204230e2d221d04065f1a210406650e25060895060a41044d080c3f044d080e3b08490a103908470c12350c430e1431103d1218291639141c211e31182413262b1c602320681328"},C:{t:82,l:3,w:47,h:83,m:"y422540363d342c4f2c265b262265201c6f1c187718167b161283121087100e8b0e0c8f0c0a3724390a082f3a2f0806294a2906062356230604215e2104041d661d04021d6a1d02021b6e1b0202197219020217761702197619177a17177a17177a17177a17177a17177a17177819197619197419020219721902021b6e1b02021d681f02041f602104042358250406215823060621582306081f5821080a1d581f0a0c1b581d0c0e19581b0e10175819101413581514180f5811181e09580d1c"},D:{t:81,l:3,w:47,h:81,m:"ya3a3a3a3a3a3a3a3a3a3a31776171776171776170215761702177417021772170202177217020219701702041770170204196c190204196c17040619681904061b661904081b621906081d5e1b060a1d5a1b080a1f561d080c1f521d0a0e214c1f0a0e2346210c102540230c122738250e142b2c291016331a2f121877141a73161c6f1820691a22631e265d202a55242e4d2832452c363d303e2f36481b40"},E:{t:81,l:3,w:48,h:81,m:"x5d045d045d045d045d045d045d045d045d045d045d04174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a550c550c550c550c550c550c550c550c550c550c550c174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a174a6161616161616161616161"},F:{t:81,l:7,w:40,h:81,m:"ya3a3a3a3a3a3a3a3a3a3a3172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a172c174a178c178c178c178c178c"},G:{t:82,l:1,w:52,h:83,m:"y3e29403243322a532a245f242067201c6f1c1a7518167b16147f141283121087100e8b0e0c3524370c0a2d3a2d0a0a27462908082352230806215a2106061f5e1f06041d661d04041b6a1b04041b6c1904021b6e1b0202197219020219721902021776191936172a191936172a191738172c171738172c171738172c171738172c171738172c171738172c171738172c171738172c171738172c171936172a19021736172a1702021934172a1702021b32172a1702041d2e17281902041f2c5702061d2c5504061d2c5504081b2c55040a192c55040c172c53060e152c530610132c530612112c5108160d2c51081a092c4f0a"},H:{t:81,l:2,w:49,h:81,m:"ya3a3a3a3a3a3a3a3a3a3a3441748441748441748441748441748441748441748441748441748441748441748441748441748441748441748441748441748441748441748441748441748441748441748441748441748441748441748a3a3a3a3a3a3a3a3a3a3a3"},I:{t:81,l:7,w:40,h:81,m:"y8c178c17177617177617177617177617177617177617177617177617177617177617177617177617a3a3a3a3a3a3a3a3a3a3a31776171776171776171776171776171776171776171776171776171776171776171776178c178c178c17"},J:{t:81,l:7,w:39,h:82,m:"y6e191e6e1f186e23146e27106e290e6e2d0a6e2f086e2f086e31066e33046e3304841f02881b028a19028c198c198e178e178e178e178e178e178e178c198c17028a1902881b02841f02a104a1049f069d089d089b0a990c951091148d18871e"},K:{t:81,l:-3,w:60,h:81,m:"ya3a3a3a3a3a3a3a3a3a3a3401f443e23423c27403a2b3e382f3c36333a343738323b36301f021f342e1f061f322c1f0a1f302a1f0e1f2e281f121f2c261f161f2a241f1a1f28221f1e1f26201f221f241e1f261f221c1f2a1f201a1f2e1f1e181f321f1c161f361f1a141f3a1f18121f3e1f16101f421f140e1f461f120c1f4a1f100a1f4e1f0e081f521f0c061f561f0a041f5a1f08021f5e1f061f621f041d661f021b6a1f196e1d17721b157619137a17117e150f82130d86110b8a0f098e0d07920b059609039a079e05a003"},L:{t:81,l:1,w:51,h:81,m:"ya3a3a3a3a3a3a3a3a3a3a38c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c17"},M:{t:81,l:0,w:54,h:81,m:"ya3a3a3a3a3a3a3a3a3a3a31d86257e2d7633703b6843604b58064d500c4d4a144d421a4f3a204f342847342e41343639343c33343c33343639342e4134284734204f341a4f3a144d420c4d4a064d504b5843603b6833702d76257e1d86a3a3a3a3a3a3a3a3a3a3a3"},N:{t:81,l:1,w:51,h:81,m:"ya3a3a3a3a3a3a3a3a3a3a3297a2d76337002356c0635680c356210355e14355a1835561e355022354c2635482c354230353e34353a3a35343e353042352c4637264c352250351e54351a5a35145e351062350c6637066c35027033742fa3a3a3a3a3a3a3a3a3a3a3"},O:{t:82,l:0,w:54,h:83,m:"y42254038393630492e2a552824612220691e1c6f1c187718167d141283121087100e8b0e0c3724350c0a2d3c2b0a08274a27080821562306061f5e1f06041d661d04041b6a1b04021b6e1b020219721902021776170202177619177819177a17177a17177a17177a17177a17177a1719761919761902197417020219721902021b6e1b02041b6a1b04041f641d04061f5e1f06082354230608274a27080a2d3a2d0a0c3724350c0e8b0e108710128312167d141877181c711a20691e245f242a552830492e363b36422342"},P:{t:81,l:1,w:52,h:81,m:"ya3a3a3a3a3a3a3a3a3a3a317341742173417421734174217341742173417421734174217341742173417421734174217341742173417421734174217341742173417421734174217341742173417421734174217341742173417421732194219301942193017441b2c194402192a1b44021b281b44021d241b46041f1c1f46042510234806554806534a08514a0a4d4c0c494e0e4550104152123d54163558182f5c1e2560261766"},Q:{t:82,l:-3,w:60,h:82,m:"y3a27442e4136284f2e22592a1e61261a692216711e14751c107b1a0e7f180c83160a87140a33223512082b382b10062546270e062150210e041f581f0c041b5e1d0c021b3805281b0a02193a0728190a02173c0b24190a193c0d241908193c0f221908173e13201708173e151e1708173e171c1708173e1b181708173e1d161708173e21121708173e230e1908193c250c190802173e2706190a02193e27021b0a021b403f0a041b403b0c041f3e390c06213e330e06273a2f10082b362b120a352431120c89100e8b0c108b0a128b08148d04188b021a8b1e5f062322570c21284d141d303d1e1b3c252c1990159213960f980d9a0b9e07a005a203"},R:{t:81,l:1,w:51,h:81,m:"ya3a3a3a3a3a3a3a3a3a3a3173217441732174417321744173217441732174417321744173217441732174417321744173217441732194217321d3e1732213a173225361732293217302f2e192e332a192e37261b2a3d2202192a411e021b2617022d1c021d2219042f18041f1c1b082f14042312210c2f100651122f0c0651162f08084d1a31040a4b1e310a49242d0c452a290e413025123b342314353c1f182f421b1c254c17241756139211960d9a099e05"},S:{t:82,l:2,w:49,h:83,m:"y780f2078151a22154219161a233c1b14162b381d12143134210e123532210e0e3b30230c0c3f2e250a0c412c27080a432c270808473221060849341d06064b361d0404210c23361b04041d1421361b02041b1a1d381902021b1e1d3817020219221b3817020217241d36190217261b381717281d3617172a1b3617172c1b3417172c1b3417172e1b3217172e1b321717301b301717301b2e1919301b2c1919301d2a17020219301b2819020219301d241b02021b301d201d02021d2e1f1c1d04041f2c21161f04042726230e210606252651060625284d0808232a4b080a212a490a0c1f2c450c0e1d2e410e101b303d10121932391216153633141813382d181e0d3e231c6e1524"},T:{t:81,l:0,w:54,h:81,m:"y178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178ca3a3a3a3a3a3a3a3a3a3a3178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c178c"},U:{t:81,l:1,w:52,h:82,m:"y7f26871e8b1a8f1691149510970e990c9b0a9b0a9d08782706801f06821f04861b04881904881b028a19028c17028c17028c198e178e178e178e178e178e178e178e178e178e178c198c17028c17028a1902881b02881b02861b04821f04801f067a25069d089d089b0a990c970e951093128f168b1a871e7d28"},V:{t:81,l:-2,w:58,h:81,m:"y059e0b9813901b8823802b7833703b6843604b585350594a065b420e5b3a165b321e5b2a265b222e5b1a365b123e5b0a4659044e55564d5e45663d6e35762d7e25861d861d7e25762d6e35663d5e45564d4e554659043e5b0a365b122e5b1a265b221e5b2a165b320e5b3a065b42594a53504b5843603b6833702b7823801b8813900b98059e"},W:{t:81,l:0,w:55,h:81,m:"y356e4f54614271327f248b18950e9f04a3a3a32a794a5960437231762d7033683b62415a4952514c510644510e3e4f163e471e3e3f263e372e3e2f363e372e3e3f263e471e3e4f1644510e4c510652515a496241683b7033762d723160434a592a79a3a3a39f04950e8b187f24713261424f54356e"},X:{t:81,l:0,w:54,h:81,m:"y039e030796070b8e0b0f860f137e131776171b6e1b1f661f235e232756272b4e2b2f462f02313e310206313631060a312e310a0e3126310e12311e311216311631161a310e311a1e3106311e225f222657262a4f2a2e472e323f323637363a2f3a3a2f3a363736323f322e472e2a4f2a265726225f221e3106311e1a310e311a163116311612311e31120e3126310e0a312e310a063136310602313e31022f462f2b4e2b275627235e231f661f1b6e1b177617137e130f860f0b8e0b079607039e03"},Y:{t:81,l:0,w:53,h:81,m:"y059e099a0d961192158e198a1d862182257e297a2d76022f72062f6e0a2f6a0e2f66122f62162f5e1a2f5a1e2f56222f52262f4e2a792e753271366d3a693e653a69366d32712e752a79262f4e222f521e2f561a2f5a162f5e122f620e2f660a2f6a062f6e022f722d76297a257e21821d86198a158e11920d96099a059e"},Z:{t:81,l:4,w:46,h:81,m:"y8e1517741917701d176c2117682517642917602d175c3117583517543917503d174c411748451744491740330417173c3308171738310e1717343112171730311617172c311a171728311e1717243122171720312617171c312a171718312e1717143132171710313617170c313a171708313e171704314217474617434a173f4e173b5217375617335a172f5e172b6217276617216c171d70171974171578178c178c178c17"},a:{t:61,l:3,w:48,h:62,m:"x261d1e1c2f16163912143f0e10450c0e490a0c4d080a51060853060823122104061f1e1b04061b241904061928190206192a170204192c170204192e15024a174a174a174a174a174a174a174a17263b1c451849144d10510c550a570859085906212417041d2a17041b2c17021b2e17021930170217321719321717341717321917321917321917301b17301b172e1d192a1f19282102192423021b2025021d1a29041f102f045d065b08590a3d04170c3906170e350817122d0c17162510171e152e"},b:{t:87,l:0,w:53,h:88,m:"yaf02af02af02af02af02af02af02af02af02af02af02422518250e401f281f0c3e1b341b0a3c1b3a19083c174017083a17441706381748170438174a150438154c170236174e1502361550150236155015023415541534155415341554153415541534155415341554153415541534155415341750173417501734194c170236174c17023619481902361b441904381b401b04381d3a1f043821341f063a252823083c2b182b083c6b0a3e670c40630e425f104659124855144c4d1850451c543d205c2f26661d2e"},c:{t:61,l:4,w:46,h:62,m:"y301d30263126203d201c451c184d18165314125b10105f0e0e630c0c670a0a6b0808291c290806232c2306061d381f04041b3e1d040419441b02021948190202174c170202174c170202155017175017155415155415155415155415155415155415155415155217175017174e170202174c17020219481902021b421d02041d3a1f04041f342304041f342106061d342106081b341f08081b341d0a0a19341b0c0c1734190e0e153417101211341314160d3411161a09340b1c"},d:{t:87,l:0,w:53,h:88,m:"y641f2e5a3126543d2050471a4c4d18485514465912445d1040630e3e670c3e690a3c2b182b083a252823083a1f322106381d3a1d06381b401b04361b441904361948190236174a190234194c17023417501734175017341552173415541534155415341554153415541534155415341554153415541536155015023615501502361550150238154c150438154a170438174815063a174417063c174017083c193a190a3e1b321d0a401f281f0c42231a250eaf02af02af02af02af02af02af02af02af02af02af02"},e:{t:61,l:1,w:51,h:62,m:"x2819262225201c311a1a3716163d1414411212451010490e0e4d0c0c510a0c211023080a1d1a1f08081b221d060819261b0606192a1b0406172e19040615301904041732190204153419020415361702021736170202153817020215381702021538190265676767676767676767194e194e194e194e02174e02174e02194c02194c02194c04194a04194a041b48061b46061d44081d241906081f2219060a211a1d060a271021060c53080e5108104d0a124b0a14470c16430e1a3b121e3316222b1a2a1b22"},f:{t:87,l:4,w:45,h:87,m:"y361564361564361564361564361564361564361564361564361564361564361564361564361564361564361564361564361564228d1897149b109f0ca30aa508a708a706a904ab04ab0221141564021b1a156402191c156402171e1564172015641720156417201564152215641522156415221564152215641522156415221564152215641522156415221564159a"},g:{t:61,l:1,w:51,h:81,m:"y2a1d5c222f521c3b4c18432c0b12144b280f0e124f26130a0e572215080c5b2015080a5f1e170608611e170608631c190406271a271a190404212a1f1a1b02041d321d181b0204193a191c170202193e191c1502021742171e1302021546151e151746171c15154a151e13154a151e13134e131e13134e131e13134e131e13134e131e13134e131e13134e131e13134e131e13134e131e1302134a13201302134a13201302134a131e15041346151e1302041344152013020613421520130206153e15201502081736172215020a17301b2017020a1b281d2017040e1f18231e1b04029b06029b0602990802990802970a02950c02930e029110028d1402891802831e"},h:{t:87,l:4,w:45,h:87,m:"yafafafafafafafafafafaf401d523e19583c175c3a175e3a1560381562381562361564361564361366361366341566341566341566341566341566341764341764341764341962361960361d5c362158387738773a753c733c733e71426d446b48674c63545b"},i:{t:87,l:12,w:29,h:87,m:"y3617623617623617623617623617623617623617623617623617623617623617623617623617621f1817621f1817621f1817621f1817621f1817621f18791f18791f18791f18791f18791f18791f18791f18791f18791f18791f1879"},j:{t:87,l:11,w:32,h:108,m:"yc415c415c415c415c415c415c415c415361778153617781536177815361778153617781536177815361776173617761736177417021f18177219021f1817701b021f18176e1d021f18176821041f189f041f189d061f189d061f189b081f189b081f18990a1f18970c1f1893101f1891121f188d161f18851e"},k:{t:87,l:1,w:52,h:87,m:"yafafafafafafafafafafaf601b345e1f325c23305a272e582b2c562f2a543328523726503b244e1f021f224c1f061f204a1f0a1f1e481f0e1f1c461f121f1a441f161f18421f1a1f16401f1e1f143e1f221f123c1f261f103a1f2a1f0e381f2e1f0c361f321f0a361d361f08361b3a1f0636193e1f043617421f023615461f36134a1d36114e1b360f5219360d5617360b5a1536095e13360762113605660f36036a0da40ba609a807aa05ac03"},l:{t:87,l:11,w:32,h:87,m:"y8d22951a9b149f10a30ca50aa708a906a906ab04ab048c2102901d02941902961996199817981798179a159a159a159a159a159a159a159a159a159a159a159a159a15"},m:{t:61,l:-1,w:57,h:61,m:"y027902790279027902790279027902790279027902790a155c081162061164041166040f6802116802116802116813681566156619627b7b7b7b027902790477047708730a71087306195c0415620413640213660211680211681368136813681566176419627b7b0279027904770477067508730c6f106b1665"},n:{t:61,l:2,w:50,h:61,m:"y027902790279027902790279027902790279027902790e214c0c1d520c19560a195808175c06175e0615600417600415620217620215640215640213661566156615661566156615661566156617641764021762021762021960021d5c041f5804770675087308730a710c6f0e6d126916651a61205b"},o:{t:61,l:-1,w:56,h:62,m:"y301d30262f282239221c431e1a491a165116145514125912105d100e610e0c650c0a2918290a0823282308081f321d08061d3a1b0606194019060419441904041748170402174c17020215501502021550150202135413021554151554151358131358131358131358131358131358131358131358131356151554130202135413020213521502021550150202174c150404154a17040417461904041b401906061b3c1b06061f341d0808232a1f0a0a291a270a0c650c0c630e0e5f10105b12145514164f181a491a1e411e223724282b2a321932"},p:{t:61,l:0,w:53,h:81,m:"y02a102a102a102a102a102a102a102a102a102a102a10c271827320a212821300a1b341b3008193c192e061940192c061744172c041748172a04154c152a02174c17280215501528021550152802135215281554152615541526155415261554152615541526155415261554152615521726175017261750152802154e172802174c17280219481928041944192a041b401b2a061b3c1b2c061f341f2c08212c212e082b1a292e0a69300c65320e6134105d3612593816513c1a4b3e1e4144223948282d4e321958"},q:{t:61,l:0,w:53,h:81,m:"y321b56282f4c223b461e43421a4b3e16533a125938105d360e61340c65320a6930082b1a292e08232a212e061f341f2c061b3c1b2c041b42192a041946172a021948192802174c172802174c1728021550172617501726155415261554152615541526155415261554152615541526155415261554152602135215280215501528021550152804154c172804154c152a061548172a061744172c081740192c08193c192e0a1b341b300c1d2c1d320e231a253402a102a102a102a102a102a102a102a102a102a102a1"},r:{t:61,l:5,w:44,h:61,m:"y027902790279027902790279027902790279027902790e1f4e0c19560a175a08175c08155e061560041562041364021366021366021366136813681368136813681368156615661764021960021d5c0227520425520425520623520623520821520a1f520c1d521019521415521a0f52"},s:{t:61,l:3,w:48,h:62,m:"x261d1e1e2d16183712143f0e10450c0e490a0c4d080a4f08085306081f142106061d1c1f040619241b040617261b04041928190404172a190404172c1704041746041746041746041944041944041b42061b40061f3c082336082d2c0a33240a3b1c0c3f16103f1212410e163f0c1a3d0a203908283306302d043a2304401f02441b0246190248194a174a174a174a174a17173417173219193019192e19020219281d02021d221d040223142504045706065506065308084f0a0a490e0e431012391616311a1e1f24"},t:{t:77,l:5,w:44,h:78,m:"y22156622156622156622156622156622156622156622156622156622156622156622156606791e048316048712048b0e048d0c02910a029308029506990499049b022215461f0222154c190222154e1922155017221550172215521522155215221552152215521522155215221552152215521522155017221550172215501502221550150222154e170222154e150422154c170422154c150622154a1706"},u:{t:60,l:2,w:50,h:61,m:"y5d1e631867146b106d0e710a730873087506770477045a1f025e1b02601902621964176417641766156615661566156615661566156613026415026415026415026215046215046015065e17065e15085c170858190a56190c521d0c4a230e79027902790279027902790279027902790279027902"},v:{t:60,l:-2,w:58,h:60,m:"y037609700f6a15641b5e215827522b4e314837423d3c433602473008472a0e472414471e1a451a20451426450e2c45083245023a3f403946334c2d522758215e1b641564155e1b582152274c2d463340393a3f3245022c450826450e2045141a451a14471e0e472408472a02473043363d3c374231482b4e275221581b5e15640f6a09700376"},w:{t:60,l:-1,w:56,h:60,m:"y097019602b4e3d3c4d2c5f1a7108797979790c6d2059344548315c1d582150294a2f42373c3d344104303d0c303712302f1a302920302128301b2e301b2e302128302920302f1a303712303d0c3441043c3d42374a2f502958215c1d4831344520590c6d7979797971085f1a4d2c3d3c2b4e19600970"},x:{t:60,l:0,w:55,h:60,m:"y037403057005076c070b640b0d600d0f5c0f1354131550151948191b441b1d401d213821233423272c270227282702062524250608271c27080c2518250c0e2710270e12250c2512142508251418250223181c411c1e3d1e2235222431242829282a252a2829282431242235221e3d1e1c411c1825022318142508251412250c25120e2710270e0c2518250c08271c270806252425060227282702272c272334232138211d401d1b441b1948191550151354130f5c0f0d600d0b640b076c07057005037403"},y:{t:60,l:-1,w:56,h:80,m:"y059c0984150d8015117c151578151974151d7015216c152566172960192d581b02042d521d02082d4a1f040c2d422304102d3a2506142d322906182d2c29081c2d242b0a202d1c2d0c242d142d10282d0c2f122c2d042f1630571a344f1e3847223c3f2640372a442f2e442b32402b363c2b3a382b3e342d40302d442c2d48282d4c242d50202d541c2d58182d5c142d60102d640c2d68082d6c042d702d742978257c21801d841988158c11900d940998059c"},z:{t:60,l:4,w:46,h:60,m:"x0455040455040455040455040455040455040455040455040455040455043e1b043e1b043c1b063a1b08381b0a361b0c341d0c341b0e321b10301b122e1b142c1b162a1d162a1b18281b1a261b1c241b1e221b20201d20201b221e1b241c1b261a1b28181b2a161d2a161b2c141b2e121b30101b320e1b340c1d340c1b360a1b38081b3a061b3c041b3e021d3e021b401b4219445d5d5d5d5d5d5d5d5d5d"},"~":{t:87,l:-1,w:57,h:19,m:"x161538050c121f30090a10252c0b080c2d260f060a332015020a371a19083f121b06450a1d02046d02046b04026b061d0e41081b143d08191a370a021520310c0411262b0e060d2c2510080b301d140c0538111a"},"!":{t:87,l:19,w:16,h:87,m:"y1b781d474c1d6d261d6d261d6d261d6d261d6d261d6d261d6d261d6d261d6d261d6d261d6d261d6d261d474c1d1b781d"},"@":{t:89,l:0,w:54,h:90,m:"y2a098220133a25241a19303b18161d2a47121221264f0e102322570a0e25205b080c271e5f060a291c6106082b1a6504082520251e2502061f281d2e1d02041b2c1938190204192e173c1904173015401702173215421502173215421502153415421502153415421517341740151538173c171538193a1502153a19361702153a1f2c1904153c251c210415366506153663081536610a15365d0e1536610a1734630817346506021534670402153469020217801b0204178219041784170419841506198215061b8015081d7c150a1f76170c2170190c2b621b02103b462302129f04149d041897061c9108208b0a26810e2c7712366718484924"},"#":{t:87,l:0,w:53,h:87,m:"y760928096e1120113c072c11161b360d2c110e2332112c11042d32112c4132112c413211244932111c513211125b3211085f06326f0e3265182e5f2224612a1a6530106f3006610811305d121130551a11304b241130432c1130432c11302b08112c11302310112c112e03191a112c11260b0f24112c111c15052e112c11121f32112c11082932112c4132112c413211264732111c513211125b32110a63327508326b122e651c2465261a6530126d300863041130610e1130571811304f201130452a1130432c11303102112c1130290a112c0f321f14112c073a151e116c0b28097432037a"},$:{t:87,l:-1,w:56,h:87,m:"y7c0b282a13401122241d3c151e202538171c1c2d34191a1a31321b181835301d1616392e1f14143b2e1f14143d2c211212412a211212412a231010452e1d10101d0c1d321b0e0e1b141b32190e0e19181934170e0e171c1932170e0e171e1732190c0c191e1932170c0c17221732170c0c17221732170c0c17241730170c0c17241730170c0c17241730170cafafafafafafafafaf0c172a1928170c0c172c1728170c0c172c1926170c0e152c1926150e0e152e1922170e0e172c1922170e0e172e191e190e10152e1b1c171010192a1b1a1910101f261d141b10122122210c1d121221244712141f244514161d264314161d283f16181b283d181a192a391a1c172c351c20132e311e2211302d20280b322724681f286e132e"},"%":{t:85,l:0,w:53,h:85,m:"y1215840c1f800a256a1308296615062d601904315a1d023554210235502502354e27131413482b111811442d02111811402d061118113c2d0a1118113a2b0e111811362b12131413322d140235302d1802352c2d1c02332c2b200431282b24062d262d260829242d2a0a25222d2e0e1d242b321215242b36462b3a422d3c3e2d403c2b1e1512382b1c1f0e342b1e250a302d1e29082c2d202d062a2b223104262b243502222b2835021e2b2c35021c2b2c131413182b30111811142b34111811102b381118110c2b3c1118110a2b3e111811062b42131413022b483502294c350225503304235431041f5a2d061b6029081766250a136e1d0e841512"},"^":{t:88,l:-1,w:56,h:45,m:"y4c030c4a070a480b084411064215043e1b023a2138233425023225042e27062c270828290a26290c222b0e2029121c2b14182d16162d18122f1a102f1c0c311e0a31200633220433243328312a2f2c2f2c312a33280433240633220a31200c311e102f1c122f1a162d18182d161c2b14202912222b0e26290c28290a2c27082e270632250434250238233a213e1b02421504441106480b084a070a4c030c"},"&":{t:88,l:-1,w:57,h:88,m:"y78152472211e6c2d181e1338331618212e39121429283d10122f20430e10351a470c0e3b144b0a0c410e4f080a47085108084b0653060871102504066f182104066b201d0404230e3b241d02041d1a33281b02021d202d2a1b02021b26272e190202192a272e19021730272a19193029281917322d26171730312417172e372017172c3b1e17172a411a17172a1904271817172819082716171726190e27121719221b1027101719201b16270c1702191c1b1a27081702021b181b1e29041702021d141d2227021702041f0c1f263d0204472c370404453035040641363104083d3a2d06083b3e2b060a374429040c334829020e2f3c3910292c4d12252c4f161d304f1c13344f624f6237021762330815622f10116229180f6223220b621b2c0962113a05ae03"},"*":{t:86,l:-1,w:56,h:56,m:"y32033c2e093a280f3a22153a1e1b381c1d381e1b2a030c1e1d26050c201b24090a201b220d08201b1e1108221b1a1506221b1819042419161b04241b10210226190e2526190c2728170a27022819042706281902250a2a3b0c2a37101b1231145b16571a531e51204d244d245120531e571a5b161b1231142a37102a3b0c281902250a281904270628170a270226190c2726190e25241b1021022419161b04221b181904221b1a1506201b1e1108201b220d08201b24090a1e1d26050c1e1b2a030c1c1d381e1b3822153a280f3a2e093a32033c"},_:{t:-9,l:-3,w:61,h:10,m:"x7b7b7b7b7b7b7b7b7b7b"},"+":{t:75,l:1,w:52,h:62,m:"y3415343415343415343415343415343415343415343415343415343415343415343415343415343415343415343415343415343415343415343415347d7d7d7d7d7d7d7d7d7d7d7d341534341534341534341534341534341534341534341534341534341534341534341534341534341534341534341534341534341534341534341534"},"`":{t:81,l:7,w:39,h:32,m:"y033e053c073a09380b360f321130132e152c172a19281d241f222120231e251c29182b162d142f123110330e370a39080437060835040c33021031142d18291c252021241d28192c153011340d38093c05"},"-":{t:37,l:1,w:52,h:13,m:"x69696969696969696969696969"},"=":{t:63,l:1,w:51,h:37,m:"x67676767676767676767676666666666666666666666666666666767676767676767676767"},'"':{t:81,l:9,w:36,h:26,m:"y353535353535353535353535353434343434343434343435353535353535353535353535"},"'":{t:81,l:20,w:14,h:34,m:"y4545454545454545454545454545"},"(":{t:87,l:10,w:33,h:88,m:"y4a1f4840333e3a3f38344b3230532e2c5b2a286326246b22226f201e771c1c7b1a18811816371a3714142f2e2f12122b3a2b10102744290e0c274c270c0a2554250a0a2358250808216023060621642106041f6a2104021f6e2102021d72211d761f1b7a1d197e1b198019178417158617158815138c13138e11"},")":{t:87,l:10,w:33,h:88,m:"y138e11138c13138a15158617178417198019197e1b1b7a1d1d761f021d7221021f6e2102041f6a21040621642106082160230608255825080a2554250a0c274c270c0e2944290e122b382d10142f2c311216371a37141881181c7b1a1e771c226f20246b222863262c5b2a30532e344b323a3f3840333e4a1f48"},"{":{t:89,l:1,w:52,h:90,m:"y50174e50174e50174e50174e50174e50174e50174e50174e50174e50174e4e194e4e1b4c4e1b4c4c1f4a4c1f4a48254842314222692a1a7d1e1489181091140e4d0249100c4f024b0e0a4f064b0c084f0a4b0a084b104b08064918490606412841060423602b04041d721f0404197a1b0402197e1b020219801902021782190202178417020217841702198419178817178817178817178817178817178817178817178817178817178817178817178817178817178817178817"},"}":{t:89,l:1,w:52,h:90,m:"y178817178817178817178817178817178817178817178817178817178817178817178817178817178817178817198419021784170202178417020217821902021980190202197e1b0204197a1b04041d721f040423602b0406412841060649184906084b104b08084f0a4b0a0a4f064b0c0c4f024b0e0e4d0249101091141489181a7d1e22692a4231424825484c1f4a4c1f4a4e1b4c4e1b4c4e194e50174e50174e50174e50174e50174e50174e50174e50174e50174e50174e"},"[":{t:88,l:6,w:42,h:88,m:"yb1b1b1b1b1b1b1b1b1b1b1b1178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417"},"]":{t:88,l:6,w:42,h:88,m:"y178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417178417b1b1b1b1b1b1b1b1b1b1b1b1"},"<":{t:84,l:0,w:55,h:81,m:"x6c0368076609640b600f5e115a155817541b521d501f4c234a2546294429024029063e29083c270c38290e3627123229143029162e271a2a291c2827202429222227261e29281c272c1a272e1629301427341029360e273a0a293c0827400627420227462748234c214e254a27480427440627420827400c273c0e273a1227361427341629301a272e1c272c2027282227262429222827202a271e2e271a30271832291436271238290e3c270c3e270a4029064427044627024a23024c21024e1f02521b025419025815025a13025c1102600d02620b026607026805026a0302"},">":{t:84,l:0,w:55,h:81,m:"x036c076809660b640f60115e155a17581b541d521f50234c254a294602294406294008293e0c273c0e29381227361429321629301a272e1c292a20272822292426272228291e2a291c2e271a3029163427143629103a270e3c290a3e290842270644290248274a254c234a2546294427044227063e29083c270c38290e3627123229143027182c291a2a291c2827202429222227261e29281c272c18292e1629301229341029360e273a0a293c0827400429420229442748254a214e1f501b5419561758135c115e0d620b640966056a036c"},"|":{t:89,l:21,w:11,h:109,m:"ydbdbdbdbdbdbdbdbdbdbdb"},":":{t:60,l:16,w:21,h:60,m:"x2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b"},";":{t:60,l:6,w:42,h:84,m:"ya405a0099c0d9811941590198c1d8821842580297c2d782f027431047033066c350868370a64390c603b0e5c3d10583f12544114543f1625303d1825303b1a2530391c2530371e25303520253033222530312425302f2625302d2825302b2a2530292c2530272e25302530253023322530213425301f3625301d3825301b3a2530193c2530173e"},".":{t:18,l:16,w:21,h:18,m:"x2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b"},",":{t:18,l:6,w:42,h:42,m:"y50054c09480d441140153c19381d342130252c29282d242f022031041c330618350814370a10390c0c3b0e083d10043f1241143f163d183b1a391c371e3520332231242f262d282b2a292c272e2530233221341f361d381b3a193c173e"},"\\":{t:88,l:4,w:45,h:89,m:"y05ae0ba80fa4159e199a1f94258e298a2f843380397a3d76063d700c3d6a103d66163d601a3d5c203d56263b522a3d4c303d46343d423a3d3c403b38443d324a3b2e4e3d28543d225a3b1e5e3d18643b14683d0e6e3b0a723d04783b7e358231882b8c279221981b9c17a211a60dac07"},"?":{t:89,l:0,w:55,h:89,m:"y22177a1c1d7a18217a14257a12277a10297a0e2b7a0c2d7a0a2f7a0a2f7a08317a08317a06337a06337a042b8404238c041f90021f92021d94021b96021b74231b76231b76231b46131e231942191e2319401b1e23193e1d1e23193c1f1e23193a211e231938231e231936251e231934271e231b32271e231b30291e2302192e2b1e23021b2a2d1e23021d262f1e23021d24232c2302211e213023042118233223042510255606555806555806535a084f5c0a4b5e0a49600c45620e4164103d6612376a14336c182b701c217622157c"},"/":{t:88,l:4,w:46,h:89,m:"yae05aa09a40f9e159a19941f90238a29842f80337a39763b02703d066a3d0c663b12603d165c3b1c563d20503d264c3d2a463d30423b363c3d3a363d40323d442c3d4a283d4e223d541c3d5a183d5e123d640e3d68083d6e023d743b78357e31822b88278c21921b98179c11a20da607ac03b0"}}},BWIPJS.fonts.OCRB||(BWIPJS.fonts.OCRB={}),BWIPJS.fonts.OCRB["12-10"]={h:90,w:60,g:{0:{t:89,l:-1,w:62,h:90,m:"y3e37402e5730246b261e791e18831a148d141093120e990e0c9d0c0aa10a08a50808a508063f2c3f06062d4e2f060425642504041f701f04041b761d04021b7a1d02021b7c1b020219801902021980190202198019020217821b19841919841919841919841919841919841919841919841919841919841919841919841919841919841919841919841919821902198219020219801902021980190202197e1b02021b7c1904021d781b04041f701f040425642306042f522b06063f32390608a50808a30a0aa10a0c9d0c0e990e129112168b141a831820771e28692432552e42353e"},1:{t:88,l:12,w:36,h:88,m:"y22236c22216e2021701e21721c21741a217618217818217816217a14217c12217e102180101f820e21820c21840a2186082188081f8a061f8c04218c02218e21901f92b1b1b1b1b1b1b1b1b1b1b1b1b1"},2:{t:90,l:2,w:56,h:90,m:"x2a1d2a1e3122183d1c1247180e4f140a5512065b10045f0e04610c04630a046508046508042b1429060423222504041b2c2304041734210204133a1f02040f3e1f02040b441d0204074a1d04034e1d541d561b561b561b561b561b561b561b541b02541b02521d02521d02501d044e1f044c1f064a210646230844230a42250a3e270c3a290e382910342b123229162e2b182a2d1a282b1e242d20222b242029281c2b2a1a292e18293016273414253812253a10253c0e23400e21420c21440a21460a1f48081f4a081d4c061d4e061b50041b52041b52041954021b54021b540219560219560219560219561b561b566f026f026f026f026f026f026f026f026f026f026f02026d02"},3:{t:88,l:0,w:59,h:89,m:"x6f086f086f086f086f086f086f086f086f086f086f086f084c23084a250848250a46250c44250e4223124023143e23163c23183a231a38231c36231e3423203223223023242e23262c23282a212c28212e2621302421322221342021361e2b2e1e33261e39201e3f1a1e43161e45141e47121e4b0e1e4d0c1e4d0c402d0a4629084c25064e2306522104541f04561d04581d02581d025a1b025a1d5c1b5c1b5c1b5c1b5c1b5c1b5c1b5c1b5a1d5a1d5a1b02581d02561f02561f02541f0403502104074a21060b42250611382708172e2b08211c310a6b0c690e67106512631461165d1a04551e084d220e432616332e221d38"},4:{t:88,l:0,w:59,h:88,m:"y6c1f26682326642726602b265c2f26583326543726503b264c3f26484326444726404b263c35021926383506192634350a192630350e19262c35121926283516192624351a192620351e19261c35221926183526192614352a192610352e19260c35321926083536192604353a1926353e1926314219262d461926294a1926254e1926215219261d561926195a1926153a63113e630d4263094663054a634e634e634e634e634e634e634e634e63721926721926721926721926721926721926721926721926721926721926721926"},5:{t:88,l:4,w:51,h:89,m:"x065d04065d04065d04065d04045f04045f04045f04045f04045f04045f04045f04045f0404194a04194a04194a04194a04194a04174c04174c02194c02194c02194c02194c02194c02194c02194c02194c02194c022d3802392c02412402471e024b1a024d18531455125710590e5b0c5d0a111e2f0a3629083c2506402106422104441f04461d04481d02481d024a1b024a1b024a1d4c1b4c1b4c1b4c1b4c1b4c1b4c1b4c1b4c1b4a1d4a1b024a1b02481d02481d02461d04441f044221044021063e23063c230838250a34290a302b0c28310e1e39105512531451164d1a4b1c472043243f28392e313627401552"},6:{t:88,l:-1,w:63,h:89,m:"y681d2e602d26583b2054431c4e4d184a5316485714445d124063103e670e3a6d0c38710a36730a323d122b08303b1c25082e392423062a392a21062839301f042639341d04243b341d04223b381d021e2302193c1b021c2304193c1b021a23041940190218210819401b16210a19401b14210c17441912210e17441910210e1944190e21101944190c1f141944190a1f16194419081f18194419061f1a194419041f1c194419021f1e1944191f201b42191d221b401b1b241b40190219281b3e1902172a1b3c1b02152c1d3a1b02152c1d381d0213301d341d0411321f301f040f341f2e1f060d38212821060b3a23242306093e251c250807402912290a0544610a05465d0c03485b0e4c590e4e5510505112524d1456451858411a5c391e6031226429266c192e"},7:{t:88,l:0,w:60,h:88,m:"y1998199819981998199819981998199819981998199819981998196c2d196237195a3f195445195049194c4d194851194455194059193e5b193a5f1938611934651932392e192e3536192c2f3e192a2d4219262d4619242b4a1922294e19202752191e2556191a27581918255c1916255e191425601912236419102366190e2368190c236a1908236e190425703f723d743b763978357c337e31802f822d842988278a238e21901b96159c"},8:{t:89,l:-1,w:62,h:90,m:"y7817267223206e2d1a6a35161e11383b14181d303f1214252a4310122b24470e102f204b0c0e331c4f0a0c3718510a0a3b1653080a3d125706083f10250e270606430e1f1a210606450a1f1e2104061d0c1f061d241f04041d121b061b281d04041b161b021b2c1d02021b1a352c1d0202191e31301b020219202d321b020217222d34190202172429361b192627361b192625381b172a233a19172a213c19172c1f3c19172c1d3e19172c1d3e19172c1d3e19172c1d3e19172a1f3e19172a213c19172a213c191728253a19192427381b021724293619020217222d34190202191e2f321b0202191e31301b0204191a352c1d02041b161b021d2a1d02041d121d041d261d04061f0a1f081d221f0406450a1f1e210406430e21182106084110230e2706083f1255080a3b1653080c371a4f0a0e331c4f0a0e31204b0c122b24470e14252a4310181d303f121e11383b146a35166e2d1a72251e781726"},9:{t:89,l:-1,w:63,h:89,m:"y30176c2827642231601e395c1a4158184754144d5212515010554e0e594c0c5d48030c5d46050a291029420708251c253e09082124213c0b06212821380d061f2c1f380d041f301f340f041d341d3211041b381b3013021b3c1b2c15021b3c1b2a17021b3c1b281902194019261b0219401b221d1b401b201f1944191e211944191c21021944191a210419441918210619441916210819441914210a19441912210c19441910210e1944190e21101944170e21121b40190a23141b40190823160219401906211a0219401904211c021b3c1902231e021b3c3b20021d383b22041d343b24041f32392604212e3928062128392c062324392e08251c3b30082b103d340a73360c6f380c6b3c0e673e106142125b46145748184f4c1a49501e3f5622375a282b6030196a"},A:{t:88,l:-1,w:63,h:88,m:"ya809a20f9a17921f8a27842d7c35743d6c45664b5e53565b4e634861084061103861183061202a5f28225f301a6532126d320c7332045b081932571019324f181932472019323f281932373019322f381932274019321f481932194e1932214619322b3c1932333419323b2c1932452219324d1a1932571019325f0819327f32047b320c7332146f2e1c6f26246f1e2c6f16346f0e3c6f06446d4c65545d5c55644d6c45743d7c35842d8c25941d9c15a40dac05"},B:{t:88,l:0,w:61,h:88,m:"yb1b1b1b1b1b1b1b1b1b1b1b11930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191930173a191b2e173a191b2e173a1902192e19361b021b2a1b361b021b2a1b361b021d261f321b02021d261f321b02041d22232e1d02041f1e272a1f020423162d261f0406250e3322210406691a2504086d0e2906084b0255080a490255080c4506510a0e43064f0c103f0a4b0e123b0e4710163510451218311441141c2b1a3918202320351a28152a2d1e6a232472132c"},C:{t:89,l:4,w:52,h:90,m:"y4825483c3f3a3251322c5d2c2669262271221e7b1c1a811a168916148d141293100e990e0c9d0c0c3d243d0c0a333c330a082d4c2d080629582906062562230604236a2104041f701f04041d741d04021d781d02021b7c1b0202197e1b021b801b1b801b1984191984191984191984191984191984191b801b1b801b1b801b021b7c1b02021d781d02021f741f020221701f04042564250404276027040625602506082360230808236023080a2160210a0c1f601f0c0e1d601d0e101b601b10121960191216156015161a116013182209600d1e"},D:{t:88,l:4,w:52,h:88,m:"yb1b1b1b1b1b1b1b1b1b1b1b11980191980191980191980190217801902197e1902197c190202197c190204197a190204197a1902041b761b02041b761904061b721b04061d701b04081b6e1b06081d6a1d060a1d681d060a1f641d080c1f601f080e215a1f0a0e23561f0c10254e230c12254a230e1427422510142d38291016312c2d1218371a35141a81161e7b1820771a22731c246d202867222c5f262e5b2834512c3849303e3d3644313c4e1d46"},E:{t:88,l:3,w:53,h:88,m:"x6902690269026902690269026902690269026902690269021952195219521952195219521952195219521952195219521952195219521952195219521952195219521952195219525d0e5d0e5d0e5d0e5d0e5d0e5d0e5d0e5d0e5d0e5d0e5d0e19521952195219521952195219521952195219521952195219521952195219521952195219521952195219521952195219521952195219526b6b6b6b6b6b6b6b6b6b6b6b"},F:{t:88,l:7,w:45,h:88,m:"yb1b1b1b1b1b1b1b1b1b1b1b1193019501930195019301950193019501930195019301950193019501930195019301950193019501930195019301950193019501930195019301950193019501930195019301950193019501930195019301950193019501930195019301950193019501930195019301950199819981998199819981998"},G:{t:89,l:1,w:58,h:90,m:"y442b463647382e57302a612a246d242075201e791e1a811a188518168b14148f1212931010970e0e39243d0e0c313a330c0c2b482d0a0a2754270a08255c250808216423060621682106061f6c1f06041f701f04041d741d04041b781d02021d7a1b02021b7c1b02021b7e190202193a192e1b1b3a192e1b1b3a192e1b193c193019193c193019193c193019193c193019193c193019193c193019193c193019193c193019193c193019193c1930191b3a192e1b02193a192e190202193a192e1902021b38192e1902021d36192e1902041f32192c1b020421305d04061f305d04061f305d04081d305d040a1b305b060c19305b060e17305b061015305b0612133059081411305908180d3059081c0930570a"},H:{t:88,l:2,w:55,h:88,m:"yb1b1b1b1b1b1b1b1b1b1b1b14a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194e4a194eb1b1b1b1b1b1b1b1b1b1b1b1"},I:{t:88,l:8,w:44,h:88,m:"y98199819198019198019198019198019198019198019198019198019198019198019198019198019198019198019b1b1b1b1b1b1b1b1b1b1b1b119801919801919801919801919801919801919801919801919801919801919801919801919801919801998199819"},J:{t:88,l:8,w:44,h:89,m:"y78192278211a782516782912782b10782d0e782f0c78310a7833087835067835067837047837048e2302921f02961b02961d981b981b9a199a199a199a199a199a199a19981b981902961b02961b02921f028e2104af04ad06ad06ab08a90aa90aa70ca310a1129d16991a9122"},K:{t:88,l:-3,w:67,h:88,m:"yb1b1b1b1b1b1b1b1b1b1b1b1461f4c44234a422748402b463e2f443c33423a3740383b3e363f3c34433a322302233830230623362e230a23342c230e23322a23122330282316232e26231a232c24231e232a222322232820232623261e232a23241c232e23221a23322320182336231e16233a231c14233e231a122342231810234623160e234a23140c234e23120a23522310082356230e06235a230c04235e230a022362230823662306216a23041f6e23021d72231b7621197a1f177e1d15821b138619118a170f8e150d92130b9611099a0f079e0d05a20b03a609aa07ac05ae03"},L:{t:88,l:1,w:57,h:88,m:"yb1b1b1b1b1b1b1b1b1b1b1b1981998199819981998199819981998199819981998199819981998199819981998199819981998199819981998199819981998199819981998199819981998199819981998199819981998199819981998199819981998199819"},M:{t:88,l:0,w:61,h:88,m:"yb1b1b1b1b1b1b1b1b1b1b1b11f92258c2d84337e3b76417049684f6206515a0c515412534c1853461e553e24533a2a4d3a32453a383f3a3e393a44333a3e393a383f3a32453a2a4d3a24533a1e553e18534612534c0c515406515a4f62496841703b76337e2d84258c1f92b1b1b1b1b1b1b1b1b1b1b1b1"},N:{t:88,l:1,w:57,h:88,m:"yb1b1b1b1b1b1b1b1b1b1b1b12d843180357c3978043974083b6e0e396a1239661639621a395e1e3b582439542839502c394c303948343b423a393e3e393a4239364639324a3b2c4e3b285439245839205c391c603b16643b126a390e6e390a723906763b7a378031b1b1b1b1b1b1b1b1b1b1b1b1"},O:{t:89,l:0,w:61,h:90,m:"y4a23483e3b3c364b3430572e2a6328266b242273201e7b1c1a811a188716168b141291121095100e3b26390e0c313e2f0c0a2b4c2b0a0a2558270808236023080621682106061f6e1f04041d741d04041b781b04021b7a1d02021b7c1b0202198019020219801b19821b1984191984191984191984191984191984191984191b801b1b801b0219801902021b7c1b02021d781d02041d761b04041f721d04061f6c2104062366210608236023080a275627080a2d4a2b0a0c313c310c0e3b243b0e109510129112148d141887161a811a1e7b1c227320266b242a632830572e364b343e3b3c4a2348"},P:{t:88,l:1,w:58,h:88,m:"yb1b1b1b1b1b1b1b1b1b1b1b11938194819381948193819481938194819381948193819481938194819381948193819481938194819381948193819481938194819381948193819481938194819381948193819481938194819381948193819481938194819361b481b341b481b34194a1b321b4a021b301b4a021b2e1d4a021d2c1b4c021f281d4c041f241f4c04231c214e062710274e065b500859500a55520a53540c51540e4d5610495812435c163d5e1839601c316422256a281970"},Q:{t:89,l:-3,w:66,h:89,m:"y40274c34413e2c5136265d3022652c1e6d281a7524187922147f2012851c10891a0e8d180c91160a392239160a2d3a2f140829462b12062552271006215a2310041f62210e041d661f0e021d3e052a1b0e021b4007281d0c021b4009281b0c0219420d26190c1b420f241b0a19441124190a19441520190a1944171e190a1944191c190a19441d18190a19441f16190a19442114190a19442510190a1b42270c1b0a021942290a190c021b422b041b0c021b4629021b0c041b46430c041d463f0e0421463b0e06234437100825423510082b3e31120a2f3c2b140c392439120e95100e990c12970a1497081697061899021c971e6d022722650825285b10212c51181f363f221d422732199c179e15a211a40fa60daa09ac07ae05"},R:{t:88,l:1,w:57,h:88,m:"yb1b1b1b1b1b1b1b1b1b1b1b11936194a1936194a1936194a1936194a1936194a1936194a1936194a1936194a1936194a1936194a1936194a19361b4819361f44193623401936273c19362b3819362d361b3233321b32372e1b323b2a021b2e4126021b2e4522021d2a4b1e021f261b02331c041f221d06331804211e1f0a331404271223103310065912350c085518350808551c35040a512233020c4d26330e4b2a2f1047302b12433627143d3c25183742211c2f4a1d2027521928175e159e13a20fa60baa07ac05"},S:{t:89,l:2,w:55,h:90,m:"y820f2482151e261548191a1e23421d161a2b3e1f1416333a21121437382310123b36250e103f34270c0e4332290a0c4730290a0a49302b080a4b2e2b08084f36230606513a1f0606230c253a1f04042114213c1d04041f1a1f3c1d02041b201f3c1b02021d221d3c1b02021b241d3e19020219281d3c1b02192a1b3c1b1b2a1d3c19192e1b3c19192e1d3a1919301b3a1919301d381919321b381919321d361919341b361919341d341919361b321b1b341d301b1b361d2c1b02021b341d2c1b02021b361d281d02021d341f261d02041d341f221d04041f32211c210404233023162106062928270e250606292a550808272c53080a252c510a0a252e4d0c0c23304b0c0e2132470e101f344310121d363f12141b38391618173c33181c133e2d1c220d442320781726"},T:{t:88,l:0,w:60,h:88,m:"y199819981998199819981998199819981998199819981998199819981998199819981998199819981998199819981998b1b1b1b1b1b1b1b1b1b1b1b1199819981998199819981998199819981998199819981998199819981998199819981998199819981998199819981998"},U:{t:88,l:1,w:58,h:89,m:"y892a9122951e991a9d169f14a112a310a50ea70ca90aab088229088a23068c2106901f04921d04941b04941d02961b02961b02981902981b981b9a199a199a199a199a199a199a199a199a199a19981b981b981902961b02961b02941d02941b04921d04901f048e1f068a2306842708ab08a90aa90aa70ca50ea310a1129d169b18971c9122872c"},V:{t:88,l:-2,w:65,h:88,m:"y05ac0da4159c1d94238e2b86337e3b76436e496851605958615006614a0c634214633a1c633224632a2c612434611c3a631442630c4a6304525f5a57624f6a47704178398031882990219819902188298031783970416a47624f5a57525f4a630442630c3a631434611c2c612424632a1c633214633a0c634206614a6150595851604968436e3b76337e2b86238e1d94159c0da405ac"},W:{t:88,l:-1,w:62,h:88,m:"y377a535e654c753c832e8f229b16a50cad04b1b1b12a874a67624f743d842d7e33783970416a47624f5c555459044e570c48551444511c44492444412c44393444313c44313c44393444412c44492444511c4855144e570c5459045c55624f6a47704178397e33842d743d624f4a672a87b1b1b1ad04a50c9b168f22832e753c654c535e377a"},X:{t:88,l:0,w:60,h:88,m:"y03ac0307a4070b9c0b0f940f138c131784171b7c1b1f741f236c232764272b5c2b2f542f334c3337443704373c370408373437080c372c370c103724371014371c371418371437181c370c371c20370437202469242861282c592c3051303449343841383c393c4031404031403c393c3841383449343051302c592c28612824692420370437201c370c371c183714371814371c371410372437100c372c370c083734370804373c3704374437334c332f542f2b5c2b276427236c231f741f1b7c1b178417138c130f940f0b9c0b07a40703ac03"},Y:{t:88,l:0,w:60,h:88,m:"y03ae07aa0ba60fa2139e179a1b961f92238e278a2b862f82337e377a0437760837720c376e10376a1437661837621c375e20375a2437562837522c853081347d38793c75407140713c753879347d30812c8528375224375620375a1c375e18376214376610376a0c376e083772043776377a337e2f822b86278a238e1f921b96179a139e0fa20ba607aa03ae"},Z:{t:88,l:4,w:52,h:88,m:"y9c159819197c1d197821197425197029196c2d196831196435196039195c3d195841195445195049194e4b194a4f19463704191942370819193e370c19193a37101919363714191932371819192e371c19192a37201919263724191922372819191e372c19191a37301919163734191912373819190e373c19190a374019190637441919023748194d4c194950194554194158193d5c193960193564193168192d6c192970192574192178191d7c191782199819981998199819"},a:{t:66,l:3,w:54,h:67,m:"x2a212222311a1c3d14184510144b0e124f0c10530a0e57080c5b060a271423060a21201f04081f281b04081d2c1904081b301902081b301902061b321902061b341702541954195419541954195419541954192c41224b1c5118551459105d0e5f0c610a6308650627281906212e19041f3219041d3419021d3619021b381902193a191b3a19193a1b193a1b193a1b193a1b19381d19381d19361f1b32211b322102193023021b2c25021d2629041d222b041f1c2f06231035066708650a4902190c4504190e3f081912390a1916310e191a271419221734"},b:{t:95,l:0,w:59,h:96,m:"ybf02bf02bf02bf02bf02bf02bf02bf02bf02bf02bf02bf024a251c290e481f2c230c461d341f0c441b3c1d0a4219441b084217481b0640174c190640174e19043e175019043e155417043c175419023c155817023c155817023c155a173a155c173a155c173a155c173a155c173a155c173a155c173a155c173a155c173a1758193a1758193a175817023c175419023c17521b023c19501b023c1b4c1b043e1b481d043e1d441d063e213c2106402334230842252c2708422f1a2d0a44710c466f0c486b0e4a67104c6114505b16525718564f1c5a4720603d2466312a701d34"},c:{t:66,l:4,w:52,h:67,m:"y341f342c312a243f242047201c4f1c185718165d141461121067100e6d0c0c6f0c0a730a0a2b1e2d08082332250606213a2106061d421f04041b4a1b0404194e190404175219020217541902021756170202155a17175a17175a17155e15155e15155e15155e15155e15155e15155e15155c17175a171758170202175419020219501b02021b4c1d02021d461f04041f3c25040421382506061f382506061f382308081d382308081d38210a0a1b381f0c0c19381d0e0e17381b1010153817141411381516180d38111a1c09380d1e5c0328"},d:{t:95,l:0,w:59,h:96,m:"y6e1f3464332a5e3f245a491e56511a5257184e5f144c63124a6710486b0e466f0c44710c422f1a2d0a42272a27084023362108401f3e1f063e1d441d063e1b481d043c1b4e19043c19501b023c175419023c175617023a175817023a175a173a175a173a155c173a155e153a155e153a155e153a155e153a155e153a155e153a155e153c155a15023c155a15023c155a15023c175615043e155615043e175217043e1750170640174c19064019481908421b421b08441b3e1b0a461d361d0c481f2c210e4a251c2710bf02bf02bf02bf02bf02bf02bf02bf02bf02bf02bf02bf02"},e:{t:66,l:1,w:57,h:67,m:"x2e192c26292420351e1c3d1a1a4316184714144d1212511010550e10570c0e2512250a0c211c210a0a1f241f080a1d281d08081b2e1d060819321b06061b341b040619361b0406173a190404193a1b0204193c190204173e190202193e190202193e190202193e1902027102717373737373737373731b581b581b581b581b58021958021958021b56021b56041956041b54041b54061b52061b52061d50081d4e081f2c1b060a1f281d060a23221f060c251c21060e29122308105b0810590a12570a14530c184d0e1a49101e4114223918282d1e301d26"},f:{t:95,l:5,w:49,h:95,m:"y3c176c3c176c3c176c3c176c3c176c3c176c3c176c3c176c3c176c3c176c3c176c3c176c3c176c3c176c3c176c3c176c3c176c3c176c26991ca318a714ab10af0eb10cb30ab508b706b906b904bb042316176c021f1c176c021d1e176c021b20176c021922176c1b22176c1924176c1924176c1726176c1726176c1726176c1726176c1726176c1726176c1726176c1726176c1726176c1726176c1726176c"},g:{t:66,l:2,w:56,h:88,m:"y2e1f64262f5c203d541a47300b16184d2c1110145528130e125926170a105d24170a0e612219080c65201b060a691e1b06086d1c1d04062d1a291c1d0406252a231a1d040421361f181f02041d3e1b1c1b02041b4219201702021b461920150202194a1722130202174e152215194e1522151752152213175215221315541522131556132213155613221315561322131556132213155613221315561322131556132213155613221302155213241302155213221502155213221504154e1324130204154c1524130204174a152215020617461524150208174215241702081b3a192417020a1b341b2417040c1f281f2419040e251825201f0402a90602a90602a70802a50a02a50a02a30c02a10e029f10029b1402991602931c028d22"},h:{t:95,l:4,w:51,h:95,m:"ybfbfbfbfbfbfbfbfbfbfbfbf462158441d5e4419624219644019664017683e19683e176a3e156c3c176c3c176c3c156e3a176e3a176e3a176e3a176e3a176e3a176e3a176e3a196c3a196c3a196c3a1b6a3c1b683c1d663c21623e235e3e81407f407f427d447b467948774a754c73506f546b5c63"},i:{t:95,l:13,w:34,h:95,m:"y3c196a3c196a3c196a3c196a3c196a3c196a3c196a3c196a3c196a3c196a3c196a3c196a3c196a3c196a3c196a3c196a211c196a211c196a211c196a211c196a211c196a211c83211c83211c83211c83211c83211c83211c83211c83211c83211c83211c83211c83211c83"},j:{t:95,l:12,w:36,h:118,m:"yd617d617d617d617d617d617d617d6173c1982173c1982173c1982173c1982173c1982173c1982173c1982173c1980193c1980193c198017023c197e1902211c197c1b02211c197a1d02211c19781d04211c19761f04211c19702504211cab06211cab06211ca908211ca908211ca70a211ca50c211ca30e211ca110211c9f12211c9b16211c971a211c8f22"},k:{t:95,l:1,w:57,h:95,m:"ybfbfbfbfbfbfbfbfbfbfbfbf6c1b386a1f36682334662732642b30622f2e60332c5e372a5c3b285a3f265843245621042322542108232052210c231e502110231c4e2114231a4c211823184a211c231648212023144621242312442128231042212c230e402130230c3e2134230a3c213823083c1f3c23063c1d4023043c1b4423023c1948233c174c213c15501f3c13541d3c11581b3c0f5c193c0d60173c0b64153c0968133c076c113c05700f3c03740db40bb609b807ba05bc03"},l:{t:95,l:12,w:36,h:95,m:"y9926a31ca916ad12af10b30cb50ab708b708b906bb04bb049825029c2102a01d02a21b02a41ba41ba619a619a619a817a817a817a817a817a817a817a817a817a817a817a817a817a817a817"},m:{t:66,l:-2,w:64,h:66,m:"y0283028302830283028302830283028302830283028302830a17640a116a08116c06116e041170040f72021172021172021172137213721570176e1b6a858585850283028302830481067f087d0a7b087d061d6204176a04156c02156e02137002117202117213721372137215701570176e1b6a8502830283028304810481067f087d0a7b0e771273186d"},n:{t:66,l:2,w:56,h:66,m:"y0283028302830283028302830283028302830283028302831023520e1d5a0c1d5c0a1b600a196208196406196606176804176a04156c04156c02156e02156e02156e02137015701570157015701570157015701570176e176e176e02176c02176c02196a021b68041d6404235e067f067f087d0a7b0c790e77107512731471186d1c692461"},o:{t:66,l:-1,w:62,h:67,m:"y341f342c2f2c263b262045221c4d1e1a531a165918145f141263121067100e6b0e0c6d0e0c2b182d0c0a252a250a0821362108081d3e1d08061d441b0606194a190604194e190404175217040415561504021756170202155a150202155a150202135e1302155e15155e15136213136213136213136213136213136213136213136213136015155e15155e130202135c150202155a150202155817020217561504041752170404194e1904041b4a1906061b461b06061f3e1d080821361f0a0a252c230a0a2d1c290c0c6d0e0e6910106512126114145d161857181a511c1e4b1e2243222639282e2b2e361b36"},p:{t:66,l:0,w:59,h:88,m:"y02af02af02af02af02af02af02af02af02af02af02af02af0e291a29380c232c21360a1f361f340a1b3e1d32081946193206194a193006174e1730041752172e041554172e041556152e02155a152c02155a152c02155a152c155e152a155e152a155e152a155e152a155e152a155e152a155e152a155e152a155e152a175a172a175a172a02155a152c021756172c021754192c021952192c04194e192e041b4a1b2e061b461b30061d401f30081f3a1f3208252e25320a2d1c2b340c6f360e6b3810693812633c145f3e165b401a53441e4b4822434c263b502c2f56361b60"},q:{t:66,l:0,w:59,h:88,m:"y361d5e2e2d56263b5022454a1e4d461a5542165b4014613c12653a1069380e6d360c6f360a2d1c2b3408272c25320821381f32061f401d30061b461b30041b4a1b2e04194e192e021952192c021954172c021756172c02155a152c175a172a175a172a155e152a155e152a155e152a155e152a155e152a155e152a155e152a155e152a02135e152a02155a152c02155a152c021558172c041556172c041752172e061552172e06174e173008174a193008194619320a1b3e1b340c1d361f340c212e21360e271c293802af02af02af02af02af02af02af02af02af02af02af02af"},r:{t:66,l:6,w:48,h:66,m:"y0283028302830283028302830283028302830283028302831021540e1b5c0c19600a176408176606176806156a04156c04136e02156e02137002137013721372137213721372137215701570176e196c021b68021f64022b580429580429580627580825580825580a23580c2158101d58121b581617581e0f58"},s:{t:66,l:3,w:54,h:67,m:"x2c1f2222311a1c3d14184510144b0e124f0c10530a0e57080c59080a5d060a23142706081f202304081d261f04081b2a1d04061b2c1d040619301b040619301b0406194e06194e06194e06194e061b4c061b4c081b4a081d480821440a253e0a2f340c372a0c3f220e431c10471612491216490e1a470c20430a263f082c3b063433063e2b044623044c1f02501b02501b02521b54195419541954191b3a191b3a190219381b021b361902021b341b02021d301d02041d2c1d0404212421040625162706066106085d080a590a0c530e0e4f10124714163f181c331e242128"},t:{t:85,l:5,w:49,h:86,m:"y261770261770261770261770261770261770261770261770261770261770261770261770261770088322068d1a069314069512049b0e049d0c049f0a04a10802a50602a50602a704a90426174e21022617521d0226175619022617581926175a1726175a1726175a1726175c1526175c1526175c1526175c1526175c1526175c1526175a1726175a1726175a150226175a15022617581702261758170226175617042617561704261754190426175417062617521906"},u:{t:65,l:2,w:56,h:66,m:"y63226b1a6f1673127510770e790c7b0a7d087f067f068104602104661d02681b026a19026c196c196e176e17701570157015701570157015701570157013026e15026e15026e15026c15046c15046a17046a150668170666170864190862190a60190c5c1d0c581f0e502510830283028302830283028302830283028302830283028302"},v:{t:65,l:-2,w:65,h:65,m:"y0380097a0f74156e1b682162255e2b583152374c3d464340473c4d36064d300c4d2a124d24184b201e4b1a244b142a4b0e304b083649043c474241483b4e35542f5a296023661d6c1770136c17661d60235a29542f4e35483b42413c47364904304b082a4b0e244b141e4b1a184b20124d240c4d2a064d304d36473c43403d46374c31522b58255e21621b68156e0f74097a0380"},w:{t:65,l:0,w:61,h:65,m:"y0f742162315243405330651e750e838383838310732261364d4a395e2560235a2952314c37443f3e4536490432450c323f1232371a32312032292832232e321b3632232e32292832312032371a323f1232450c3649043e45443f4c3752315a2960235e254a39364d226110738383838383750e651e53304340315221620f74"},x:{t:66,l:0,w:61,h:66,m:"y038003057c050974090b700b0f680f1164111360131758171954191b501b1f481f2144212340232738272934290229302902042b282b0408292429080a2920290a0e2918290e102914291014290c291416290829161a2704271a1c4d1c2045202241222639262a312a2c2d2c3025302c2d2c2a312a2639262241222045201c4d1c1a2704271a162908291614290c291410291429100e2918290e0a2920290a0829242908042b282b0402293029022934292738272340232144211f481f1b501b1954191758171360131164110f680f0b700b097409057c05038003"},y:{t:65,l:-3,w:66,h:87,m:"y05aa09a60ba40fa01386171782171980171d7c172178172574172772172b6e172f681933621902355c1d020435561f0208354e21040c3546250410334027061433382b061833322b081c332a2d0a2031242f0c22331c310e26331631102a330e31142e3108311832611c365b1e3a53223e4b2642432a463b2e4a333248313644313a42313c3e31403a314436314832314c2e31502c2f5428315624315a20315e1c3162183166162f6a122f6e0e2f720a317406317802317c2f802b842788238c1f901d921996159a119e0da209a605aa"},z:{t:65,l:4,w:51,h:65,m:"x045d06045d06045d06045d06045d06045d06045d06045d06045d06045d06045d06441d06421f06421d08401d0a3e1d0c3c1d0e3a1f0e381f10361f12361d14341d16321d18301f182e1f1a2c1f1c2c1d1e2a1d20281d22261d24241f24221f26201f28201d2a1e1d2c1c1d2e1a1d30181f30161f32161d34141d36121d38101d3a0e1f3a0c1f3c0c1d3e0a1d40081d42061d44041d46021f461f481d4a1b4c6767676767676767676767"},"~":{t:95,l:-2,w:64,h:22,m:"x1c1142050e161d3a090c1227340b0a102d2e0f080e332813060c392217040a3f1c1b020847141f064f0a210206770404770602790602210a4d081f14450a1d1a3f0c0219203b0c041526350e06112c2d12080d3227140a0b361f180c073e151c0e0370"},"!":{t:95,l:21,w:18,h:95,m:"y1b861f4f521f79281f79281f79281f79281f79281f79281f79281f79281f79281f79281f79281f79281f79281f79281f4f521f1b861f"},"@":{t:97,l:0,w:59,h:98,m:"y26133e27282019343d1c1a1f2c4b1618212855101425245b0e122722610a10292065080e2b1e69060c2d1c6b060a2f1c6d0408311a272227040823281f322102061f2c1b3c1d02061d2e19421902041b32174619041934154819021b34154a17021936154a17021936154a17021738154a17021738174817193a154619173c17441702173e193e1902173e1b3a1b0217401f301d041742271e2504173c6d06173c6b08173c690a173c650e173c670c173c690a193a6b0802173a6d0602173a6f04021938710202198c1d0204198e190204199019041b9017061b8e17061d8c17081f88170a1f84190a2380190c277819020e2f6a1d0210434a270212af0416ab0418a7061ca108209b0a24950c2a8b10327f143c6f1a504d28"},"#":{t:95,l:0,w:59,h:95,m:"y84072e077c0f260f460330131c19400930131421381130130c2938113013023338113047381130473811284f381120573811166138110e6702381104670c38731438691e3069262669301c6f341477340a69061334026710133461181334572213344f2a133449301334493013342f0a113013342712113013341d1c1130132a0b132611301320150b2e113013161f381130130e2738113013043138113047381130473811284f381120573811166138110c6b3811046d06387710386d1a2e6f22266d2c1c6f341279340a6b0413346b0e133463161334592013344f2a133449301334493013343504113013342b0e11300f38211811300740172211760f2a0b7c05340384"},$:{t:95,l:-1,w:62,h:95,m:"y3011480d2a281f42112624273e1522222d3a191e1e33381b1c1c37361d1a1a3b341f18183f3221161641322116164330231414472e251214472e2512124b2e251012210c1f361d10121d141d361b10101d181b381b0e101b1c1b361b0e1019201938190e0e1b2219361b0c0e1b221938190c0e19241938190c0e19261936190c0e19261936190c0e19281934190c0c1b281934190c0c1b281934190cbfbfbfbfbfbfbfbfbfbf0e192e1b2c170e0e1930192c170e0e19301b28190e0e19301b28190e1017321b26190e1017321b26190e1019301b2419101019321b2219101219301d201910121b301b1e191212212a1d1a1b121425261f141d12142526230c1f141623284b14182128491618212a47161a1f2a45181c1d2c411a1e1b2e3d1c22172e3d1c241530391e28113233222c0d362d24702926741f2c7a1332"},"%":{t:93,l:0,w:59,h:93,m:"y180d96121b8e0e2378130a297217082f6c190633661d0437602104375c25023b5827023b542b02151215502f1516134c3102131a13482f06131a13442f0a131a1340310c131a133c3110131a113c2f14151613382f180215101734311a023b30311e0239302f2204372c2f2604352a3128063128312c082d282f300a29262f340e23243136121b24313a4e2f3e4a2f42462f464231220f18402f201b123c2f20230e382f202b0a3431202f08322f2233062e2f2635042a2f28370426312a3902242f2c3b02202f301512171c2f34131615182f36131a13162f38131a13122f3c131a130e2f40131a130a2f44131a13082f48131615042f4c170e17022f503b022b56370429583704255e330621642f081d6a2d081b6e270c1776210e901714"},"^":{t:96,l:0,w:61,h:49,m:"y54030c50090a4e0d084a1306481704441d0242213e253a27023827043429063229082e2b0a2c2b0c282d0e262d10222f12202f141c31161a311816331a14331c1033200e33220a352408352604372802372a372c352e3330352e372c02372a0437280835260a35240e332210332014331c16331a1a31181c3116202f14222f12262d10282d0e2c2b0c2e2b0a3229083429063827043a27023e254221441d024817044a13064e0d0850090a54030c"},"&":{t:96,l:-1,w:63,h:97,m:"y84152a7c2522782f1c221340351a1c1f363d1618292e411414312649101237204d0e103d1a510c0e4116550a0c4710570a0a4d0a5b080a4f065f060853042710290608791a2504067720230406230e43281f040421183b2c1f02041d2035301d02021d262f321d02021b2c29361b02021b2e29341d02193429321b1b3629301b19362f2c1b1934332c19193239281919323b26191930412219192e452019192c1d022b1e19192a1d082b1a19192a1b0c2b18191b261b122b14191b241d142b101b021b201d182d0c1902021b1e1d1e2b0a1902021d1a1d222d041b02041f1221262b021b0204230a232a4304044d303f040649343b06064738390608433e33080a3f4231080a3d482b0a0c394c2d060e35502d0410314a3702122b4243021427305702181f3457021e133a57026a57026a57026a3b0419026a370c15026a331213026a2f1a0f026a2b200d026a232a0b026a1d3407026a13400502"},"*":{t:94,l:0,w:61,h:62,m:"y360542300d402c1140261740221d3e201f3e201f3e221d2c050e221f28090c241d260b0c241d240f0a241f1e1508261d1c1708261d1a1b06281b181f04281d1421042a1b1027022a1b0e2b2a1d0a2b022c1b0829062c1b042b082e1902290c2e3f10303b121f1237166518611c5d205b225726532a57265b225d20611c65181f123716303b122e3f102e1902290c2c1b042b082c1b0829062a1d0a2b022a1b0e2b2a1b102702281d142104281b181f04261d1a1b06261d1c1708241f1e1508241d240f0a241d260b0c221f28090c221d2c050e201f3e201f3e221d3e2617402c1140300d40360542"},_:{t:-10,l:-4,w:69,h:11,m:"x8b8b8b8b8b8b8b8b8b8b8b"},"+":{t:82,l:1,w:57,h:68,m:"y38193838193838193838193838193838193838193838193838193838193838193838193838193838193838193838193838193838193838193838193838193838193889898989898989898989898989381938381938381938381938381938381938381938381938381938381938381938381938381938381938381938381938381938381938381938381938381938381938"},"`":{t:90,l:8,w:44,h:35,m:"y034405420740093e0b3c0d3a1136133415321730192e1b2c1d2a2126232425222720291e2b1c2f183116331435123710390e3b0c3f08043d06083b040c390210371433182f1c2b20272423281f2c1b30173413380f3c0b40074403"},"-":{t:41,l:1,w:57,h:15,m:"x737373737373737373737373737373"},"=":{t:68,l:1,w:57,h:40,m:"x73737373737373737373737372727272727272727272727272727272737373737373737373737373"},'"':{t:90,l:10,w:40,h:29,m:"y3b3b3b3b3b3b3b3b3b3b3b3b3b3b3a3a3a3a3a3a3a3a3a3a3a3a3b3b3b3b3b3b3b3b3b3b3b3b3b3b"},"'":{t:90,l:23,w:14,h:38,m:"y4d4d4d4d4d4d4d4d4d4d4d4d4d4d"},"(":{t:95,l:12,w:36,h:96,m:"y521f5048334640433e3a4f38365734325f302e672c2a6f28267724247b2220831e1e871c1a8d1a183b1c3d161633303514142f3c3112102f462d100e2b502b0e0c2958290c0a295c290a0827642708082568270606237023060423742304022378230202217c232180211f841f1d861f1b8a1d198e1b179219179417159617159815139c13"},")":{t:95,l:11,w:37,h:96,m:"y139c13159815159617179417179219198e1b1b8a1d1d881d1d861f1f8221021f7e2302217a23020421762304062172230606256c250608256825080a2760270a0c275c270c0e2954290e102b4c2b10122d442d12142f3c2f1416352e33161a391c3b181c8b1a1e871c227f20247b222873262a6f282e672c325f303657343c4d3840433e483346521f50"},"{":{t:96,l:1,w:58,h:97,m:"y561954561954561954561954561954561954561954561954561954561954561954541d52541d52541d52541d5252215050254e4e294c463746246f301c852218911a14991610a1120e53044f100c5504510e0a5508510c0a530c510a08531051080651184d080649264906042b543b060421762504041d801f04041b841d04021b881d02021b8a1b0202198c1b0202198e190202198e190202198e190219901b199219199219199219199219199219199219199219199219199219199219199219199219199219199219199219199219"},"}":{t:96,l:1,w:58,h:97,m:"y19921919921919921919921919921919921919921919921919921919921919921919921919921919921919921919921919901b02198e190202198e190202198e190202198c1b02021b8a1b02021b881d02041b841d04041d801f040421762504042b543b0606492649060651184d0808531051080a530c510a0a5508510c0c5504510e0e53044f1010a11214991618911a1c8522246f304637464e294c50254e522150541d52541d52541d52541d52561954561954561954561954561954561954561954561954561954561954561954"},"[":{t:96,l:6,w:47,h:96,m:"yc1c1c1c1c1c1c1c1c1c1c1c1c1199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019"},"]":{t:96,l:7,w:46,h:96,m:"y199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019199019c1c1c1c1c1c1c1c1c1c1c1c1c1"},"<":{t:91,l:0,w:61,h:87,m:"x76057407700b6e0d6c0f681366156219601b5c1f5a2156255427502b4e2d4c2b04482d06462b0a422d0c402d0e3c2d123a2d14362d18342d1a302d1e2e2d202c2b24282d26262b2a222d2c202b301c2d321a2d34162d38142d3a102d3e0e2d400c2b44082d46062b4a022d4c2b502952255629522b50022d4c062b4a082d460a2d440e2b42102d3e142b3c162d381a2b361c2d32202b30222d2c262b2a282d262a2d242e2d20302d1e342d1a362d183a2d143c2d12402b10422d0c462b0a482d064a2d044e2d502b542756255a215c1f601b6219661568136a116e0d700b74077605"},">":{t:91,l:0,w:61,h:87,m:"x057607740b700d6e0f6c1368156619621b601f5c215a255627542b502d4e042b4c062d480a2b460c2d420e2d40122d3c142d3a182d361a2d341e2d30202d2e242b2c262d282a2b262c2d22302b20322d1c342d1a382d163a2d143e2d10402d0e442b0c462d084a2b064c2d02502b522956255229502b4c2d024a2b06462d08442d0a422b0e3e2d103c2b14382d16362b1a322d1c302b202c2d222a2b26262d28242d2a202d2e1e2d301a2d34182d36142d3a122d3c102b400c2d420a2b46062d48042d4a2d4e2b5027542556215a1f5c1b60196215661368116a0d6e0b7007740576"},"|":{t:96,l:23,w:13,h:117,m:"yebebebebebebebebebebebebeb"},":":{t:65,l:18,w:24,h:65,m:"x3131313131313131313131313131313131313131303030303030303030303030303030303030303030303030303131313131313131313131313131313131313131"},";":{t:65,l:6,w:47,h:90,m:"yb203ae07aa0ba60fa2139e179a1b961f92238e278a2b862f82337e35027a3704763906723b086e3d0a6a3f0c66410e6243105e45125a471427344516273443182734411a27343f1c27343d1e27343b20273439222734372427343526273433282734312a27342f2c27342d2e27342b30273429322734273427342536273423382734213a27341f3c27341d3e27341b40273419425a1744"},".":{t:20,l:18,w:24,h:20,m:"x3131313131313131313131313131313131313131"},",":{t:20,l:6,w:47,h:45,m:"y58035407500b4c0f48134417401b3c1f38233427302b2c2f28332435022037041c3906183b08143d0a103f0c0c410e084310044512471445164318411a3f1c3d1e3b203922372435263328312a2f2c2d2e2b302932273425362338213a1f3c1d3e1b4019421744"},"\\":{t:95,l:5,w:50,h:96,m:"y05bc0bb60fb215ac19a81fa2239e29982d94338e378a3d84418004437a0a41760e437014416c1a41661e416224415c2841582e415232414e3841483c414442413e46413a4c413450413056412a5a412660412064411c6a41166e431074410c7843067e4102843d88398e33922f98299c25a21fa61bac15b011b60bba07"},"?":{t:96,l:0,w:61,h:96,m:"y2419841e1f841a2384162784142984122b84102d840e2f840c31840c31840a338408358408358406378406378406378404279604239a04219c02219e021fa0021da2021d7e25021b80251d80251d4c1520251b4a1920251b461d20251b441f20251b422120251b402320251b3e2520251b3c2720251b3c2720251b3a2920251d362b20251d342d20251d322f2025021d2e312025021d2c332025021f283520250221242730250421202732250425182934250429102b5a065f5c065d5e065b600857620855640a53640c4f660c4d680e496a10436e123f70143b721833761a2d7a1e257e261586"},"/":{t:95,l:5,w:50,h:96,m:"yba07b60bb011ac15a61ba21f9c259829922f8e338839843d7e41027a410674410c7041106a411666411a6041205c412456412a52412e4c413448413842413e3e414238414834414c2e415228435624415c1e43601a416614436a1041700a437406417a437e3d843988338e2f922998259c1fa21ba615ac11b00bb607ba"}}},BWIPJS.bwipp.renlinear=function(){function a(){this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2
2
2
  }function b(){this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2}function c(){this.stk[this.ptr++]="maxh";var a=this.dstk.get("h");if(void 0===a)throw new Error("dict: h: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("y");if(void 0===a)throw new Error("dict: y: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2}function d(){this.stk[this.ptr++]="h";var a=this.dstk.get("bhs");if(void 0===a)throw new Error("dict: bhs: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("i");if(void 0===a)throw new Error("dict: i: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=2,this.stk[this.ptr-2]=Math.floor(this.stk[this.ptr-2]/this.stk[this.ptr-1]),this.ptr--,this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring||this.stk[this.ptr-2]instanceof BWIPJS.psarray?this.stk[this.ptr-2].get(this.stk[this.ptr-1]):this.stk[this.ptr-2][this.stk[this.ptr-1].toString()],this.ptr--,this.stk[this.ptr++]=72,this.stk[this.ptr-2]=this.stk[this.ptr-2]*this.stk[this.ptr-1],this.ptr--,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="c";var a=this.dstk.get("d");if(void 0===a)throw new Error("dict: d: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=2,this.stk[this.ptr-2]=this.stk[this.ptr-2]/this.stk[this.ptr-1],this.ptr--;var a=this.dstk.get("x");if(void 0===a)throw new Error("dict: x: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="y";var a=this.dstk.get("bbs");if(void 0===a)throw new Error("dict: bbs: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("i");if(void 0===a)throw new Error("dict: i: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=2,this.stk[this.ptr-2]=Math.floor(this.stk[this.ptr-2]/this.stk[this.ptr-1]),this.ptr--,this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring||this.stk[this.ptr-2]instanceof BWIPJS.psarray?this.stk[this.ptr-2].get(this.stk[this.ptr-1]):this.stk[this.ptr-2][this.stk[this.ptr-1].toString()],this.ptr--,this.stk[this.ptr++]=72,this.stk[this.ptr-2]=this.stk[this.ptr-2]*this.stk[this.ptr-1],this.ptr--,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="w";var a=this.dstk.get("d");if(void 0===a)throw new Error("dict: d: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("inkspread");if(void 0===a)throw new Error("dict: inkspread: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]-this.stk[this.ptr-1],this.ptr--,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2;var a=this.dstk.get("bars");if(void 0===a)throw new Error("dict: bars: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("i");if(void 0===a)throw new Error("dict: i: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=2,this.stk[this.ptr-2]=Math.floor(this.stk[this.ptr-2]/this.stk[this.ptr-1]),this.ptr--,this.stk[this.ptr++]=1/0;var a=this.dstk.get("h");if(void 0===a)throw new Error("dict: h: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("c");if(void 0===a)throw new Error("dict: c: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("y");if(void 0===a)throw new Error("dict: y: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("w");if(void 0===a)throw new Error("dict: w: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;for(var b=this.ptr-1;b>=0&&1/0!==this.stk[b];b--);if(0>b)throw"array: underflow";var a=this.stk.splice(b+1,this.ptr-1-b);this.ptr=b,this.stk[this.ptr++]=BWIPJS.psarray(a),this.stk[this.ptr-3]instanceof BWIPJS.psstring||this.stk[this.ptr-3]instanceof BWIPJS.psarray?this.stk[this.ptr-3].set(this.stk[this.ptr-2],this.stk[this.ptr-1]):this.stk[this.ptr-3][this.stk[this.ptr-2].toString()]=this.stk[this.ptr-1],this.ptr-=3;var a=this.dstk.get("h");if(void 0===a)throw new Error("dict: h: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("y");if(void 0===a)throw new Error("dict: y: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--;var a=this.dstk.get("maxh");if(void 0===a)throw new Error("dict: maxh: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]>this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=c;var d=this.stk[--this.ptr];return this.stk[--this.ptr]&&-1==d.call(this)?-1:void 0}function e(){var a=this.dstk.get("bars");if(void 0===a)throw new Error("dict: bars: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("i");if(void 0===a)throw new Error("dict: i: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=2,this.stk[this.ptr-2]=Math.floor(this.stk[this.ptr-2]/this.stk[this.ptr-1]),this.ptr--,this.stk[this.ptr++]=-1,this.stk[this.ptr-3]instanceof BWIPJS.psstring||this.stk[this.ptr-3]instanceof BWIPJS.psarray?this.stk[this.ptr-3].set(this.stk[this.ptr-2],this.stk[this.ptr-1]):this.stk[this.ptr-3][this.stk[this.ptr-2].toString()]=this.stk[this.ptr-1],this.ptr-=3}function f(){this.stk[this.ptr++]="d";var a=this.dstk.get("sbs");if(void 0===a)throw new Error("dict: sbs: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("i");if(void 0===a)throw new Error("dict: i: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring||this.stk[this.ptr-2]instanceof BWIPJS.psarray?this.stk[this.ptr-2].get(this.stk[this.ptr-1]):this.stk[this.ptr-2][this.stk[this.ptr-1].toString()],this.ptr--;var a=this.dstk.get("barratio");if(void 0===a)throw new Error("dict: barratio: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]*this.stk[this.ptr-1],this.ptr--;var a=this.dstk.get("barratio");if(void 0===a)throw new Error("dict: barratio: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]-this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=1,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2;var a=this.dstk.get("sbs");if(void 0===a)throw new Error("dict: sbs: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("i");if(void 0===a)throw new Error("dict: i: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring||this.stk[this.ptr-2]instanceof BWIPJS.psarray?this.stk[this.ptr-2].get(this.stk[this.ptr-1]):this.stk[this.ptr-2][this.stk[this.ptr-1].toString()],this.ptr--,this.stk[this.ptr++]=0,this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()!=this.stk[this.ptr-1]:this.stk[this.ptr-2]!=this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=d,this.stk[this.ptr++]=e;var b=this.stk[--this.ptr],c=this.stk[--this.ptr];if(this.stk[--this.ptr]){if(-1==c.call(this))return-1}else if(-1==b.call(this))return-1}function g(){this.stk[this.ptr++]="d";var a=this.dstk.get("sbs");if(void 0===a)throw new Error("dict: sbs: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("i");if(void 0===a)throw new Error("dict: i: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring||this.stk[this.ptr-2]instanceof BWIPJS.psarray?this.stk[this.ptr-2].get(this.stk[this.ptr-1]):this.stk[this.ptr-2][this.stk[this.ptr-1].toString()],this.ptr--;var a=this.dstk.get("spaceratio");if(void 0===a)throw new Error("dict: spaceratio: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]*this.stk[this.ptr-1],this.ptr--;var a=this.dstk.get("spaceratio");if(void 0===a)throw new Error("dict: spaceratio: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]-this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=1,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2}function h(){this.stk[this.ptr++]="i";var a=this.stk[this.ptr-2];this.stk[this.ptr-2]=this.stk[this.ptr-1],this.stk[this.ptr-1]=a,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2;var a=this.dstk.get("i");if(void 0===a)throw new Error("dict: i: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=2,this.stk[this.ptr-2]=this.stk[this.ptr-2]%this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=0,this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()==this.stk[this.ptr-1]:this.stk[this.ptr-2]==this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=f,this.stk[this.ptr++]=g;var b=this.stk[--this.ptr],c=this.stk[--this.ptr];if(this.stk[--this.ptr]){if(-1==c.call(this))return-1}else if(-1==b.call(this))return-1;this.stk[this.ptr++]="x";var a=this.dstk.get("x");if(void 0===a)throw new Error("dict: x: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("d");if(void 0===a)throw new Error("dict: d: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2}function i(){var a=this.dstk.get("width");if(void 0===a)throw new Error("dict: width: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=72,this.stk[this.ptr-2]=this.stk[this.ptr-2]*this.stk[this.ptr-1],this.ptr--;var a=this.dstk.get("x");if(void 0===a)throw new Error("dict: x: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]/this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=1;var b=this.stk[--this.ptr];this.scale(this.stk[--this.ptr],b)}function j(){this.stk[this.ptr++]=255,this.stk[this.ptr-2]=this.stk[this.ptr-2]/this.stk[this.ptr-1],this.ptr--}function k(){if(this.stk[this.ptr++]=BWIPJS.psstring("< >"),this.stk[this.ptr++]=8,this.stk[this.ptr-1]=BWIPJS.psstring(this.stk[this.ptr-1]),"number"==typeof this.stk[this.ptr-1])for(var a=this.stk[--this.ptr],b=this.ptr+a;this.ptr<b;this.ptr++)this.stk[this.ptr]=this.stk[this.ptr-a];else if(this.stk[this.ptr-1]instanceof BWIPJS.psstring||this.stk[this.ptr-1]instanceof BWIPJS.psarray)this.stk[this.ptr-1].assign(0,this.stk[this.ptr-2]),this.stk[this.ptr-2]=this.stk[this.ptr-1].subset(0,this.stk[this.ptr-2].length),this.ptr--;else{var c=this.stk[this.ptr-2],d=this.stk[this.ptr-1];for(var e in c)d[e]=c[e];this.stk[this.ptr-2]=d,this.ptr--}this.stk[this.ptr]=this.stk[this.ptr-1],this.ptr++,this.stk[this.ptr++]=1;var b=this.dstk.get("anycolor");if(void 0===b)throw new Error("dict: anycolor: undefined");b instanceof Function?b.call(this):this.stk[this.ptr++]=b,this.stk[this.ptr-3].assign(this.stk[this.ptr-2],this.stk[this.ptr-1]),this.ptr-=3;var b=this.stk[--this.ptr];b instanceof Function?b.call(this):this.eval(b),this.stk[this.ptr++]=j;var f=this.stk[--this.ptr],g=this.stk[--this.ptr];for(t17 in g){if(g instanceof BWIPJS.psstring||g instanceof BWIPJS.psarray){if(t17.charCodeAt(0)>57)continue;this.stk[this.ptr++]=g.get(t17)}else this.stk[this.ptr++]=t17,this.stk[this.ptr++]=g[t17];if(-1==f.call(this))break}this.setrgb(this.stk[this.ptr-3],this.stk[this.ptr-2],this.stk[this.ptr-1]),this.ptr-=3}function l(){this.stk[this.ptr++]=255,this.stk[this.ptr-2]=this.stk[this.ptr-2]/this.stk[this.ptr-1],this.ptr--}function m(){if(this.stk[this.ptr++]=BWIPJS.psstring("< >"),this.stk[this.ptr++]=10,this.stk[this.ptr-1]=BWIPJS.psstring(this.stk[this.ptr-1]),"number"==typeof this.stk[this.ptr-1])for(var a=this.stk[--this.ptr],b=this.ptr+a;this.ptr<b;this.ptr++)this.stk[this.ptr]=this.stk[this.ptr-a];else if(this.stk[this.ptr-1]instanceof BWIPJS.psstring||this.stk[this.ptr-1]instanceof BWIPJS.psarray)this.stk[this.ptr-1].assign(0,this.stk[this.ptr-2]),this.stk[this.ptr-2]=this.stk[this.ptr-1].subset(0,this.stk[this.ptr-2].length),this.ptr--;else{var c=this.stk[this.ptr-2],d=this.stk[this.ptr-1];for(var e in c)d[e]=c[e];this.stk[this.ptr-2]=d,this.ptr--}this.stk[this.ptr]=this.stk[this.ptr-1],this.ptr++,this.stk[this.ptr++]=1;var b=this.dstk.get("anycolor");if(void 0===b)throw new Error("dict: anycolor: undefined");b instanceof Function?b.call(this):this.stk[this.ptr++]=b,this.stk[this.ptr-3].assign(this.stk[this.ptr-2],this.stk[this.ptr-1]),this.ptr-=3;var b=this.stk[--this.ptr];b instanceof Function?b.call(this):this.eval(b),this.stk[this.ptr++]=l;var f=this.stk[--this.ptr],g=this.stk[--this.ptr];for(t21 in g){if(g instanceof BWIPJS.psstring||g instanceof BWIPJS.psarray){if(t21.charCodeAt(0)>57)continue;this.stk[this.ptr++]=g.get(t21)}else this.stk[this.ptr++]=t21,this.stk[this.ptr++]=g[t21];if(-1==f.call(this))break}this.setcmyk(this.stk[this.ptr-4],this.stk[this.ptr-3],this.stk[this.ptr-2],this.stk[this.ptr-1]),this.ptr-=4}function n(){this.stk[this.ptr++]="anycolor";var a=this.stk[this.ptr-2];this.stk[this.ptr-2]=this.stk[this.ptr-1],this.stk[this.ptr-1]=a,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2;var a=this.dstk.get("anycolor");if(void 0===a)throw new Error("dict: anycolor: undefined");if(a instanceof Function?a.call(this):this.stk[this.ptr++]=a,"number"!=typeof this.stk[this.ptr-1].length)throw"length: invalid: "+BWIPJS.pstype(this.stk[this.ptr-1]);this.stk[this.ptr-1]=this.stk[this.ptr-1].length,this.stk[this.ptr++]=6,this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()==this.stk[this.ptr-1]:this.stk[this.ptr-2]==this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=k;var b=this.stk[--this.ptr];if(this.stk[--this.ptr]&&-1==b.call(this))return-1;var a=this.dstk.get("anycolor");if(void 0===a)throw new Error("dict: anycolor: undefined");if(a instanceof Function?a.call(this):this.stk[this.ptr++]=a,"number"!=typeof this.stk[this.ptr-1].length)throw"length: invalid: "+BWIPJS.pstype(this.stk[this.ptr-1]);this.stk[this.ptr-1]=this.stk[this.ptr-1].length,this.stk[this.ptr++]=8,this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()==this.stk[this.ptr-1]:this.stk[this.ptr-2]==this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=m;var c=this.stk[--this.ptr];return this.stk[--this.ptr]&&-1==c.call(this)?-1:void 0}function o(){this.gsave();var a=this.dstk.get("backgroundcolor");if(void 0===a)throw new Error("dict: backgroundcolor: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("setanycolor");if(void 0===a)throw new Error("dict: setanycolor: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.fill(),this.grestore()}function p(){var a=this.dstk.get("bordercolor");if(void 0===a)throw new Error("dict: bordercolor: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("setanycolor");if(void 0===a)throw new Error("dict: setanycolor: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a}function q(){this.gsave();var a=this.dstk.get("bordercolor");if(void 0===a)throw new Error("dict: bordercolor: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=BWIPJS.psstring("unset"),this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()!=this.stk[this.ptr-1]:this.stk[this.ptr-2]!=this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=p;var b=this.stk[--this.ptr];if(this.stk[--this.ptr]&&-1==b.call(this))return-1;var a=this.dstk.get("borderwidth");if(void 0===a)throw new Error("dict: borderwidth: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.setlinewidth(this.stk[--this.ptr]),this.stroke(),this.grestore()}function r(){var a=this.dstk.get("barcolor");if(void 0===a)throw new Error("dict: barcolor: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("setanycolor");if(void 0===a)throw new Error("dict: setanycolor: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a}function s(){for(var a=this.stk[this.ptr-1],b=0;b<a.length;b++)this.stk[this.ptr-1+b]=a.get(b);this.ptr+=a.length,this.stk[this.ptr-1]=a,this.ptr--,this.newpath(),this.setlinewidth(this.stk[--this.ptr]);var c=this.stk[--this.ptr];this.moveto(this.stk[--this.ptr],c),this.stk[this.ptr++]=0;var a=this.stk[this.ptr-2];this.stk[this.ptr-2]=this.stk[this.ptr-1],this.stk[this.ptr-1]=a;var c=this.stk[--this.ptr];this.rlineto(this.stk[--this.ptr],c),this.stroke()}function t(){this.ptr--}function u(){this.stk[this.ptr]=this.stk[this.ptr-1],this.ptr++,this.stk[this.ptr++]=-1,this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()!=this.stk[this.ptr-1]:this.stk[this.ptr-2]!=this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=s,this.stk[this.ptr++]=t;var a=this.stk[--this.ptr],b=this.stk[--this.ptr];if(this.stk[--this.ptr]){if(-1==b.call(this))return-1}else if(-1==a.call(this))return-1}function v(){var a=this.dstk.get("textcolor");if(void 0===a)throw new Error("dict: textcolor: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("setanycolor");if(void 0===a)throw new Error("dict: setanycolor: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a}function w(){}function x(){if(this.stk[this.ptr++]=2,"number"==typeof this.stk[this.ptr-1])for(var a=this.stk[--this.ptr],b=this.ptr+a;this.ptr<b;this.ptr++)this.stk[this.ptr]=this.stk[this.ptr-a];else if(this.stk[this.ptr-1]instanceof BWIPJS.psstring||this.stk[this.ptr-1]instanceof BWIPJS.psarray)this.stk[this.ptr-1].assign(0,this.stk[this.ptr-2]),this.stk[this.ptr-2]=this.stk[this.ptr-1].subset(0,this.stk[this.ptr-2].length),this.ptr--;else{var c=this.stk[this.ptr-2],d=this.stk[this.ptr-1];for(var e in c)d[e]=c[e];this.stk[this.ptr-2]=d,this.ptr--}this.stk[this.ptr++]="s";var b=this.stk[this.ptr-2];this.stk[this.ptr-2]=this.stk[this.ptr-1],this.stk[this.ptr-1]=b,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="fn";var b=this.stk[this.ptr-2];this.stk[this.ptr-2]=this.stk[this.ptr-1],this.stk[this.ptr-1]=b,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2;var b=this.stk[this.ptr-2];this.stk[this.ptr-2]=this.stk[this.ptr-1],this.stk[this.ptr-1]=b,this.stk[this.ptr-1]=this.findfont(BWIPJS.psstring(this.stk[this.ptr-1]));var b=this.stk[this.ptr-2];this.stk[this.ptr-2]=this.stk[this.ptr-1],this.stk[this.ptr-1]=b,this.ptr--,this.stk[this.ptr-1].FontSize=this.stk[this.ptr],this.setfont(this.stk[--this.ptr])}function y(){this.ptr--,this.ptr--}function z(){this.stk[this.ptr++]=w;var a=this.stk[--this.ptr],b=this.stk[--this.ptr];for(t35 in b){if(b instanceof BWIPJS.psstring||b instanceof BWIPJS.psarray){if(t35.charCodeAt(0)>57)continue;this.stk[this.ptr++]=b.get(t35)}else this.stk[this.ptr++]=t35,this.stk[this.ptr++]=b[t35];if(-1==a.call(this))break}if(this.stk[this.ptr++]=2,"number"==typeof this.stk[this.ptr-1])for(var c=this.stk[--this.ptr],d=this.ptr+c;this.ptr<d;this.ptr++)this.stk[this.ptr]=this.stk[this.ptr-c];else if(this.stk[this.ptr-1]instanceof BWIPJS.psstring||this.stk[this.ptr-1]instanceof BWIPJS.psarray)this.stk[this.ptr-1].assign(0,this.stk[this.ptr-2]),this.stk[this.ptr-2]=this.stk[this.ptr-1].subset(0,this.stk[this.ptr-2].length),this.ptr--;else{var e=this.stk[this.ptr-2],f=this.stk[this.ptr-1];for(var g in e)f[g]=e[g];this.stk[this.ptr-2]=f,this.ptr--}var d=this.dstk.get("s");if(void 0===d)throw new Error("dict: s: undefined");d instanceof Function?d.call(this):this.stk[this.ptr++]=d,this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()!=this.stk[this.ptr-1]:this.stk[this.ptr-2]!=this.stk[this.ptr-1],this.ptr--;var d=this.stk[this.ptr-2];this.stk[this.ptr-2]=this.stk[this.ptr-1],this.stk[this.ptr-1]=d;var d=this.dstk.get("fn");if(void 0===d)throw new Error("dict: fn: undefined");d instanceof Function?d.call(this):this.stk[this.ptr++]=d,this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()!=this.stk[this.ptr-1]:this.stk[this.ptr-2]!=this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr-2]="boolean"==typeof this.stk[this.ptr-1]?this.stk[this.ptr-2]||this.stk[this.ptr-1]:this.stk[this.ptr-2]|this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=x,this.stk[this.ptr++]=y;var h=this.stk[--this.ptr],i=this.stk[--this.ptr];if(this.stk[--this.ptr]){if(-1==i.call(this))return-1}else if(-1==h.call(this))return-1;var j=this.stk[--this.ptr];this.moveto(this.stk[--this.ptr],j),this.show(this.stk[--this.ptr],0,0)}function A(){this.stk[this.ptr++]="s",this.stk[this.ptr++]=0,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="fn",this.stk[this.ptr++]=BWIPJS.psstring(""),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2;var a=this.dstk.get("txt");if(void 0===a)throw new Error("dict: txt: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=z;var b=this.stk[--this.ptr],c=this.stk[--this.ptr];for(t40 in c){if(c instanceof BWIPJS.psstring||c instanceof BWIPJS.psarray){if(t40.charCodeAt(0)>57)continue;this.stk[this.ptr++]=c.get(t40)}else this.stk[this.ptr++]=t40,this.stk[this.ptr++]=c[t40];if(-1==b.call(this))break}}function B(){}function C(){this.stk[this.ptr++]=0,this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring||this.stk[this.ptr-2]instanceof BWIPJS.psarray?this.stk[this.ptr-2].get(this.stk[this.ptr-1]):this.stk[this.ptr-2][this.stk[this.ptr-1].toString()],this.ptr--,this.stk[this.ptr++]=B;var a=this.stk[--this.ptr],b=this.stk[--this.ptr];for(t43 in b){if(b instanceof BWIPJS.psstring||b instanceof BWIPJS.psarray){if(t43.charCodeAt(0)>57)continue;this.stk[this.ptr++]=b.get(t43)}else this.stk[this.ptr++]=t43,this.stk[this.ptr++]=b[t43];if(-1==a.call(this))break}}function D(){this.stk[this.ptr]=this.stk[this.ptr-1],this.ptr++;var a=this.dstk.get("txt");if(void 0===a)throw new Error("dict: txt: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.stk[this.ptr-2];this.stk[this.ptr-2]=this.stk[this.ptr-1],this.stk[this.ptr-1]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring||this.stk[this.ptr-2]instanceof BWIPJS.psarray?this.stk[this.ptr-2].get(this.stk[this.ptr-1]):this.stk[this.ptr-2][this.stk[this.ptr-1].toString()],this.ptr--;var a=this.dstk.get("tstr");if(void 0===a)throw new Error("dict: tstr: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=3,this.stk[this.ptr++]=1;var b=this.stk[--this.ptr],c=this.stk[--this.ptr];if(c>this.ptr)throw"roll: underflow: this.ptr="+this.ptr+",offset="+c;if(0>b)var a=this.stk.splice(this.ptr-c,-b);else var a=this.stk.splice(this.ptr-c,c-b);this.stk.splice.apply(this.stk,[this.ptr-a.length,0].concat(a)),this.stk[this.ptr-3]instanceof BWIPJS.psstring||this.stk[this.ptr-3]instanceof BWIPJS.psarray?this.stk[this.ptr-3].set(this.stk[this.ptr-2],this.stk[this.ptr-1]):this.stk[this.ptr-3][this.stk[this.ptr-2].toString()]=this.stk[this.ptr-1],this.ptr-=3}function E(){this.stk[this.ptr++]="txt",this.stk[this.ptr++]=1/0;var a=this.dstk.get("txt");if(void 0===a)throw new Error("dict: txt: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=C;var b=this.stk[--this.ptr],c=this.stk[--this.ptr];for(t46 in c){if(c instanceof BWIPJS.psstring||c instanceof BWIPJS.psarray){if(t46.charCodeAt(0)>57)continue;this.stk[this.ptr++]=c.get(t46)}else this.stk[this.ptr++]=t46,this.stk[this.ptr++]=c[t46];if(-1==b.call(this))break}for(var d=this.ptr-1;d>=0&&1/0!==this.stk[d];d--);if(0>d)throw"array: underflow";var a=this.stk.splice(d+1,this.ptr-1-d);this.ptr=d,this.stk[this.ptr++]=BWIPJS.psarray(a),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="tstr";var a=this.dstk.get("txt");if(void 0===a)throw new Error("dict: txt: undefined");if(a instanceof Function?a.call(this):this.stk[this.ptr++]=a,"number"!=typeof this.stk[this.ptr-1].length)throw"length: invalid: "+BWIPJS.pstype(this.stk[this.ptr-1]);this.stk[this.ptr-1]=this.stk[this.ptr-1].length,this.stk[this.ptr-1]=BWIPJS.psstring(this.stk[this.ptr-1]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]=0,this.stk[this.ptr++]=1;var a=this.dstk.get("txt");if(void 0===a)throw new Error("dict: txt: undefined");if(a instanceof Function?a.call(this):this.stk[this.ptr++]=a,"number"!=typeof this.stk[this.ptr-1].length)throw"length: invalid: "+BWIPJS.pstype(this.stk[this.ptr-1]);this.stk[this.ptr-1]=this.stk[this.ptr-1].length,this.stk[this.ptr++]=1,this.stk[this.ptr-2]=this.stk[this.ptr-2]-this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=D;for(var e=this.stk[--this.ptr],f=this.stk[--this.ptr],g=this.stk[--this.ptr],h=this.stk[--this.ptr],i=h;(0>g?i>=f:f>=i)&&(this.stk[this.ptr++]=i,-1!=e.call(this));i+=g);}function F(){this.stk[this.ptr++]="tstr";var a=this.dstk.get("alttext");if(void 0===a)throw new Error("dict: alttext: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2}function G(){this.stk[this.ptr++]=0}function H(){this.stk[this.ptr++]=this.currentfont(),this.stk[this.ptr++]="PaintType",this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring||this.stk[this.ptr-2]instanceof BWIPJS.psarray?this.stk[this.ptr-2].get(this.stk[this.ptr-1]):this.stk[this.ptr-2][this.stk[this.ptr-1].toString()],this.ptr--,this.stk[this.ptr++]=2,this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()==this.stk[this.ptr-1]:this.stk[this.ptr-2]==this.stk[this.ptr-1],this.ptr--}function I(){this.stk[this.ptr++]=!1}function J(){this.stk[this.ptr++]=this.currentfont(),this.stk[this.ptr++]="StrokeWidth",this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring||this.stk[this.ptr-2]instanceof BWIPJS.psarray?this.stk[this.ptr-2].get(this.stk[this.ptr-1]):this.stk[this.ptr-2][this.stk[this.ptr-1].toString()],this.ptr--,this.stk[this.ptr++]=2,this.stk[this.ptr-2]=this.stk[this.ptr-2]/this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=0;var a=this.stk[this.ptr-2];this.stk[this.ptr-2]=this.stk[this.ptr-1],this.stk[this.ptr-1]=a,this.stk[this.ptr++]=this.currentfont(),this.stk[this.ptr++]="FontMatrix",this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring||this.stk[this.ptr-2]instanceof BWIPJS.psarray?this.stk[this.ptr-2].get(this.stk[this.ptr-1]):this.stk[this.ptr-2][this.stk[this.ptr-1].toString()],this.ptr--;var b="arraytype"==BWIPJS.pstype(this.stk[this.ptr-1])?this.stk[--this.ptr]:null,c=this.stk[this.ptr-2],d=this.stk[this.ptr-1],a=this.dtransform(b,c,d);this.stk[this.ptr-2]=a.dx,this.stk[this.ptr-1]=a.dy,this.stk[this.ptr]=this.stk[this.ptr-1],this.ptr++,this.stk[this.ptr-2]=this.stk[this.ptr-2]*this.stk[this.ptr-1],this.ptr--;var a=this.stk[this.ptr-2];this.stk[this.ptr-2]=this.stk[this.ptr-1],this.stk[this.ptr-1]=a,this.stk[this.ptr]=this.stk[this.ptr-1],this.ptr++,this.stk[this.ptr-2]=this.stk[this.ptr-2]*this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr-1]=Math.sqrt(this.stk[this.ptr-1]),this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--}function K(){this.gsave(),this.newpath(),this.stk[this.ptr++]=0,this.stk[this.ptr++]=0;var a=this.stk[--this.ptr];this.moveto(this.stk[--this.ptr],a),this.stk[this.ptr++]=BWIPJS.psstring("0"),this.stk[this.ptr++]=!1,this.charpath(this.stk[this.ptr-2],this.stk[this.ptr-1]),this.ptr-=2;var b=this.pathbbox();this.stk[this.ptr++]=b.llx,this.stk[this.ptr++]=b.lly,this.stk[this.ptr++]=b.urx,this.stk[this.ptr++]=b.ury,this.stk[this.ptr++]=4,this.stk[this.ptr++]=1;var c=this.stk[--this.ptr],d=this.stk[--this.ptr];if(d>this.ptr)throw"roll: underflow: this.ptr="+this.ptr+",offset="+d;if(0>c)var b=this.stk.splice(this.ptr-d,-c);else var b=this.stk.splice(this.ptr-d,d-c);this.stk.splice.apply(this.stk,[this.ptr-b.length,0].concat(b)),this.ptr--,this.ptr--,this.ptr--,this.grestore(),this.stk[this.ptr++]=this.currentfont(),this.stk[this.ptr++]="PaintType",this.stk[this.ptr-2]=void 0!==this.stk[this.ptr-2][this.stk[this.ptr-1]],this.ptr--,this.stk[this.ptr++]=H,this.stk[this.ptr++]=I;var e=this.stk[--this.ptr],f=this.stk[--this.ptr];if(this.stk[--this.ptr]){if(-1==f.call(this))return-1}else if(-1==e.call(this))return-1;this.stk[this.ptr++]=this.currentfont(),this.stk[this.ptr++]="StrokeWidth",this.stk[this.ptr-2]=void 0!==this.stk[this.ptr-2][this.stk[this.ptr-1]],this.ptr--,this.stk[this.ptr-2]="boolean"==typeof this.stk[this.ptr-1]?this.stk[this.ptr-2]&&this.stk[this.ptr-1]:this.stk[this.ptr-2]&this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=J;var g=this.stk[--this.ptr];return this.stk[--this.ptr]&&-1==g.call(this)?-1:void 0}function L(){this.stk[this.ptr++]="textxpos";var a=this.dstk.get("textxoffset");if(void 0===a)throw new Error("dict: textxoffset: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2}function M(){this.stk[this.ptr++]="textxpos";var a=this.dstk.get("x");if(void 0===a)throw new Error("dict: x: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("textxoffset");if(void 0===a)throw new Error("dict: textxoffset: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]-this.stk[this.ptr-1],this.ptr--;var a=this.dstk.get("textwidth");if(void 0===a)throw new Error("dict: textwidth: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]-this.stk[this.ptr-1],this.ptr--,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2}function N(){this.stk[this.ptr++]="textxpos";var a=this.dstk.get("textwidth");if(void 0===a)throw new Error("dict: textwidth: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("textxoffset");if(void 0===a)throw new Error("dict: textxoffset: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr-1]=-this.stk[this.ptr-1],this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2}function O(){this.stk[this.ptr++]="textxpos";var a=this.dstk.get("x");if(void 0===a)throw new Error("dict: x: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("textxoffset");if(void 0===a)throw new Error("dict: textxoffset: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2}function P(){this.stk[this.ptr++]="textxpos",this.stk[this.ptr++]=0,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="textgaps";
3
3
  var a=this.dstk.get("x");if(void 0===a)throw new Error("dict: x: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("textwidth");if(void 0===a)throw new Error("dict: textwidth: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]-this.stk[this.ptr-1],this.ptr--;var a=this.dstk.get("tstr");if(void 0===a)throw new Error("dict: tstr: undefined");if(a instanceof Function?a.call(this):this.stk[this.ptr++]=a,"number"!=typeof this.stk[this.ptr-1].length)throw"length: invalid: "+BWIPJS.pstype(this.stk[this.ptr-1]);this.stk[this.ptr-1]=this.stk[this.ptr-1].length,this.stk[this.ptr++]=1,this.stk[this.ptr-2]=this.stk[this.ptr-2]-this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr-2]=this.stk[this.ptr-2]/this.stk[this.ptr-1],this.ptr--,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2}function Q(){this.stk[this.ptr++]="textypos";var a=this.dstk.get("textyoffset");if(void 0===a)throw new Error("dict: textyoffset: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("maxh");if(void 0===a)throw new Error("dict: maxh: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=1,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2}function R(){this.stk[this.ptr++]="textypos";var a=this.dstk.get("textyoffset");if(void 0===a)throw new Error("dict: textyoffset: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("maxh");if(void 0===a)throw new Error("dict: maxh: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("textascent");if(void 0===a)throw new Error("dict: textascent: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]-this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=2,this.stk[this.ptr-2]=this.stk[this.ptr-2]/this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2}function S(){var a=this.dstk.get("textfont");if(void 0===a)throw new Error("dict: textfont: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-1]=this.findfont(BWIPJS.psstring(this.stk[this.ptr-1]));var a=this.dstk.get("textsize");if(void 0===a)throw new Error("dict: textsize: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.ptr--,this.stk[this.ptr-1].FontSize=this.stk[this.ptr],this.setfont(this.stk[--this.ptr]);var a=this.dstk.get("alttext");if(void 0===a)throw new Error("dict: alttext: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=BWIPJS.psstring(""),this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()==this.stk[this.ptr-1]:this.stk[this.ptr-2]==this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=E,this.stk[this.ptr++]=F;var b=this.stk[--this.ptr],c=this.stk[--this.ptr];if(this.stk[--this.ptr]){if(-1==c.call(this))return-1}else if(-1==b.call(this))return-1;var a=this.dstk.get("tstr");if(void 0===a)throw new Error("dict: tstr: undefined");if(a instanceof Function?a.call(this):this.stk[this.ptr++]=a,"number"!=typeof this.stk[this.ptr-1].length)throw"length: invalid: "+BWIPJS.pstype(this.stk[this.ptr-1]);this.stk[this.ptr-1]=this.stk[this.ptr-1].length,this.stk[this.ptr++]=0,this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()==this.stk[this.ptr-1]:this.stk[this.ptr-2]==this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=G,this.stk[this.ptr++]=K;var d=this.stk[--this.ptr],e=this.stk[--this.ptr];if(this.stk[--this.ptr]){if(-1==e.call(this))return-1}else if(-1==d.call(this))return-1;this.stk[this.ptr++]="textascent";var a=this.stk[this.ptr-2];this.stk[this.ptr-2]=this.stk[this.ptr-1],this.stk[this.ptr-1]=a,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="textwidth";var a=this.dstk.get("tstr");if(void 0===a)throw new Error("dict: tstr: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.stringwidth(this.stk[--this.ptr]);this.stk[this.ptr++]=a.w,this.stk[this.ptr++]=a.h,this.ptr--;var a=this.dstk.get("tstr");if(void 0===a)throw new Error("dict: tstr: undefined");if(a instanceof Function?a.call(this):this.stk[this.ptr++]=a,"number"!=typeof this.stk[this.ptr-1].length)throw"length: invalid: "+BWIPJS.pstype(this.stk[this.ptr-1]);this.stk[this.ptr-1]=this.stk[this.ptr-1].length,this.stk[this.ptr++]=1,this.stk[this.ptr-2]=this.stk[this.ptr-2]-this.stk[this.ptr-1],this.ptr--;var a=this.dstk.get("textgaps");if(void 0===a)throw new Error("dict: textgaps: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]*this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="textxpos";var a=this.dstk.get("textxoffset");if(void 0===a)throw new Error("dict: textxoffset: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("x");if(void 0===a)throw new Error("dict: x: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("textwidth");if(void 0===a)throw new Error("dict: textwidth: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]-this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=2,this.stk[this.ptr-2]=this.stk[this.ptr-2]/this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2;var a=this.dstk.get("textxalign");if(void 0===a)throw new Error("dict: textxalign: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=BWIPJS.psstring("left"),this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()==this.stk[this.ptr-1]:this.stk[this.ptr-2]==this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=L;var f=this.stk[--this.ptr];if(this.stk[--this.ptr]&&-1==f.call(this))return-1;var a=this.dstk.get("textxalign");if(void 0===a)throw new Error("dict: textxalign: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=BWIPJS.psstring("right"),this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()==this.stk[this.ptr-1]:this.stk[this.ptr-2]==this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=M;var g=this.stk[--this.ptr];if(this.stk[--this.ptr]&&-1==g.call(this))return-1;var a=this.dstk.get("textxalign");if(void 0===a)throw new Error("dict: textxalign: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=BWIPJS.psstring("offleft"),this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()==this.stk[this.ptr-1]:this.stk[this.ptr-2]==this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=N;var h=this.stk[--this.ptr];if(this.stk[--this.ptr]&&-1==h.call(this))return-1;var a=this.dstk.get("textxalign");if(void 0===a)throw new Error("dict: textxalign: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=BWIPJS.psstring("offright"),this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()==this.stk[this.ptr-1]:this.stk[this.ptr-2]==this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=O;var i=this.stk[--this.ptr];if(this.stk[--this.ptr]&&-1==i.call(this))return-1;var a=this.dstk.get("textxalign");if(void 0===a)throw new Error("dict: textxalign: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=BWIPJS.psstring("justify"),this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()==this.stk[this.ptr-1]:this.stk[this.ptr-2]==this.stk[this.ptr-1],this.ptr--;var a=this.dstk.get("textwidth");if(void 0===a)throw new Error("dict: textwidth: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("x");if(void 0===a)throw new Error("dict: x: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]<this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr-2]="boolean"==typeof this.stk[this.ptr-1]?this.stk[this.ptr-2]&&this.stk[this.ptr-1]:this.stk[this.ptr-2]&this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=P;var j=this.stk[--this.ptr];if(this.stk[--this.ptr]&&-1==j.call(this))return-1;this.stk[this.ptr++]="textypos";var a=this.dstk.get("textyoffset");if(void 0===a)throw new Error("dict: textyoffset: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("textascent");if(void 0===a)throw new Error("dict: textascent: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=1,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr-1]=-this.stk[this.ptr-1],this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2;var a=this.dstk.get("textyalign");if(void 0===a)throw new Error("dict: textyalign: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=BWIPJS.psstring("above"),this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()==this.stk[this.ptr-1]:this.stk[this.ptr-2]==this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=Q;var k=this.stk[--this.ptr];if(this.stk[--this.ptr]&&-1==k.call(this))return-1;var a=this.dstk.get("textyalign");if(void 0===a)throw new Error("dict: textyalign: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=BWIPJS.psstring("center"),this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()==this.stk[this.ptr-1]:this.stk[this.ptr-2]==this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=R;var l=this.stk[--this.ptr];if(this.stk[--this.ptr]&&-1==l.call(this))return-1;var a=this.dstk.get("textxpos");if(void 0===a)throw new Error("dict: textxpos: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("textypos");if(void 0===a)throw new Error("dict: textypos: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var m=this.stk[--this.ptr];this.moveto(this.stk[--this.ptr],m);var a=this.dstk.get("textgaps");if(void 0===a)throw new Error("dict: textgaps: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=0;var a=this.dstk.get("tstr");if(void 0===a)throw new Error("dict: tstr: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.show(this.stk[this.ptr-1],this.stk[this.ptr-3],this.stk[this.ptr-2]),this.ptr-=3}function T(){var a=this.dstk.get("textxalign");if(void 0===a)throw new Error("dict: textxalign: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=BWIPJS.psstring("unset"),this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()==this.stk[this.ptr-1]:this.stk[this.ptr-2]==this.stk[this.ptr-1],this.ptr--;var a=this.dstk.get("textyalign");if(void 0===a)throw new Error("dict: textyalign: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=BWIPJS.psstring("unset"),this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()==this.stk[this.ptr-1]:this.stk[this.ptr-2]==this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr-2]="boolean"==typeof this.stk[this.ptr-1]?this.stk[this.ptr-2]&&this.stk[this.ptr-1]:this.stk[this.ptr-2]&this.stk[this.ptr-1],this.ptr--;var a=this.dstk.get("alttext");if(void 0===a)throw new Error("dict: alttext: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=BWIPJS.psstring(""),this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()==this.stk[this.ptr-1]:this.stk[this.ptr-2]==this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr-2]="boolean"==typeof this.stk[this.ptr-1]?this.stk[this.ptr-2]&&this.stk[this.ptr-1]:this.stk[this.ptr-2]&this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=A,this.stk[this.ptr++]=S;var b=this.stk[--this.ptr],c=this.stk[--this.ptr];if(this.stk[--this.ptr]){if(-1==c.call(this))return-1}else if(-1==b.call(this))return-1}function U(){this.newpath();var a=this.dstk.get("guardleftpos");if(void 0===a)throw new Error("dict: guardleftpos: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-1]=-this.stk[this.ptr-1];var a=this.dstk.get("guardwidth");if(void 0===a)throw new Error("dict: guardwidth: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--;var a=this.dstk.get("guardleftypos");if(void 0===a)throw new Error("dict: guardleftypos: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("guardwidth");if(void 0===a)throw new Error("dict: guardwidth: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=2,this.stk[this.ptr-2]=this.stk[this.ptr-2]/this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--;var b=this.stk[--this.ptr];this.moveto(this.stk[--this.ptr],b);var a=this.dstk.get("guardwidth");if(void 0===a)throw new Error("dict: guardwidth: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-1]=-this.stk[this.ptr-1];var a=this.dstk.get("guardheight");if(void 0===a)throw new Error("dict: guardheight: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=-2,this.stk[this.ptr-2]=this.stk[this.ptr-2]/this.stk[this.ptr-1],this.ptr--;var b=this.stk[--this.ptr];this.rlineto(this.stk[--this.ptr],b);var a=this.dstk.get("guardwidth");if(void 0===a)throw new Error("dict: guardwidth: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("guardheight");if(void 0===a)throw new Error("dict: guardheight: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=-2,this.stk[this.ptr-2]=this.stk[this.ptr-2]/this.stk[this.ptr-1],this.ptr--;var b=this.stk[--this.ptr];this.rlineto(this.stk[--this.ptr],b),this.stroke()}function V(){this.newpath();var a=this.dstk.get("guardrightpos");if(void 0===a)throw new Error("dict: guardrightpos: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("x");if(void 0===a)throw new Error("dict: x: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--;var a=this.dstk.get("guardwidth");if(void 0===a)throw new Error("dict: guardwidth: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]-this.stk[this.ptr-1],this.ptr--;var a=this.dstk.get("guardrightypos");if(void 0===a)throw new Error("dict: guardrightypos: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("guardheight");if(void 0===a)throw new Error("dict: guardheight: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=2,this.stk[this.ptr-2]=this.stk[this.ptr-2]/this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--;var b=this.stk[--this.ptr];this.moveto(this.stk[--this.ptr],b);var a=this.dstk.get("guardwidth");if(void 0===a)throw new Error("dict: guardwidth: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("guardheight");if(void 0===a)throw new Error("dict: guardheight: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=-2,this.stk[this.ptr-2]=this.stk[this.ptr-2]/this.stk[this.ptr-1],this.ptr--;var b=this.stk[--this.ptr];this.rlineto(this.stk[--this.ptr],b);var a=this.dstk.get("guardwidth");if(void 0===a)throw new Error("dict: guardwidth: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-1]=-this.stk[this.ptr-1];var a=this.dstk.get("guardheight");if(void 0===a)throw new Error("dict: guardheight: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=-2,this.stk[this.ptr-2]=this.stk[this.ptr-2]/this.stk[this.ptr-1],this.ptr--;var b=this.stk[--this.ptr];this.rlineto(this.stk[--this.ptr],b),this.stroke()}function W(){this.stk[this.ptr++]=.75,this.setlinewidth(this.stk[--this.ptr]);var a=this.dstk.get("guardleftpos");if(void 0===a)throw new Error("dict: guardleftpos: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=0,this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()!=this.stk[this.ptr-1]:this.stk[this.ptr-2]!=this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=U;var b=this.stk[--this.ptr];if(this.stk[--this.ptr]&&-1==b.call(this))return-1;var a=this.dstk.get("guardrightpos");if(void 0===a)throw new Error("dict: guardrightpos: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=0,this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()!=this.stk[this.ptr-1]:this.stk[this.ptr-2]!=this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=V;var c=this.stk[--this.ptr];return this.stk[--this.ptr]&&-1==c.call(this)?-1:void 0}this.stk[this.ptr++]=20,this.stk[this.ptr-1]={},this.dict=this.stk[--this.ptr],this.dstk.push(this.dict),this.stk[this.ptr++]="args";var X=this.stk[this.ptr-2];this.stk[this.ptr-2]=this.stk[this.ptr-1],this.stk[this.ptr-1]=X,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="sbs",this.stk[this.ptr++]=BWIPJS.psarray([]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="bhs",this.stk[this.ptr++]=BWIPJS.psarray([]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="bbs",this.stk[this.ptr++]=BWIPJS.psarray([]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="txt",this.stk[this.ptr++]=BWIPJS.psarray([]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="barcolor",this.stk[this.ptr++]=BWIPJS.psstring("unset"),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="includetext",this.stk[this.ptr++]=!1,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="textcolor",this.stk[this.ptr++]=BWIPJS.psstring("unset"),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="textxalign",this.stk[this.ptr++]=BWIPJS.psstring("unset"),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="textyalign",this.stk[this.ptr++]=BWIPJS.psstring("unset"),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="textfont",this.stk[this.ptr++]=BWIPJS.psstring("Courier"),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="textsize",this.stk[this.ptr++]=10,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="textxoffset",this.stk[this.ptr++]=0,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="textyoffset",this.stk[this.ptr++]=0,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="textgaps",this.stk[this.ptr++]=0,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="alttext",this.stk[this.ptr++]=BWIPJS.psstring(""),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="bordercolor",this.stk[this.ptr++]=BWIPJS.psstring("unset"),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="backgroundcolor",this.stk[this.ptr++]=BWIPJS.psstring("unset"),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="inkspread",this.stk[this.ptr++]=.15,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="width",this.stk[this.ptr++]=0,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="barratio",this.stk[this.ptr++]=1,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="spaceratio",this.stk[this.ptr++]=1,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="showborder",this.stk[this.ptr++]=!1,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="borderleft",this.stk[this.ptr++]=10,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="borderright",this.stk[this.ptr++]=10,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="bordertop",this.stk[this.ptr++]=1,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="borderbottom",this.stk[this.ptr++]=1,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="borderwidth",this.stk[this.ptr++]=.5,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="guardwhitespace",this.stk[this.ptr++]=!1,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="guardleftpos",this.stk[this.ptr++]=0,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="guardleftypos",this.stk[this.ptr++]=0,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="guardrightpos",this.stk[this.ptr++]=0,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="guardrightypos",this.stk[this.ptr++]=0,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="guardwidth",this.stk[this.ptr++]=6,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="guardheight",this.stk[this.ptr++]=7,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2;var X=this.dstk.get("args");if(void 0===X)throw new Error("dict: args: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr++]=a;var Y=this.stk[--this.ptr],Z=this.stk[--this.ptr];for(t0 in Z){if(Z instanceof BWIPJS.psstring||Z instanceof BWIPJS.psarray){if(t0.charCodeAt(0)>57)continue;this.stk[this.ptr++]=Z.get(t0)}else this.stk[this.ptr++]=t0,this.stk[this.ptr++]=Z[t0];if(-1==Y.call(this))break}var X=this.dstk.get("opt");if(void 0===X)throw new Error("dict: opt: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr++]=b;var $=this.stk[--this.ptr],_=this.stk[--this.ptr];for(t3 in _){if(_ instanceof BWIPJS.psstring||_ instanceof BWIPJS.psarray){if(t3.charCodeAt(0)>57)continue;this.stk[this.ptr++]=_.get(t3)}else this.stk[this.ptr++]=t3,this.stk[this.ptr++]=_[t3];if(-1==$.call(this))break}this.stk[this.ptr++]="barcolor";var X=this.dstk.get("barcolor");if(void 0===X)throw new Error("dict: barcolor: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="textcolor";var X=this.dstk.get("textcolor");if(void 0===X)throw new Error("dict: textcolor: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="textxalign";var X=this.dstk.get("textxalign");if(void 0===X)throw new Error("dict: textxalign: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="textyalign";var X=this.dstk.get("textyalign");if(void 0===X)throw new Error("dict: textyalign: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="textfont";var X=this.dstk.get("textfont");if(void 0===X)throw new Error("dict: textfont: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="textsize";var X=this.dstk.get("textsize");if(void 0===X)throw new Error("dict: textsize: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-1]=parseFloat(this.stk[this.ptr-1]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="textxoffset";var X=this.dstk.get("textxoffset");if(void 0===X)throw new Error("dict: textxoffset: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-1]=parseFloat(this.stk[this.ptr-1]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="textyoffset";var X=this.dstk.get("textyoffset");if(void 0===X)throw new Error("dict: textyoffset: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-1]=parseFloat(this.stk[this.ptr-1]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="textgaps";var X=this.dstk.get("textgaps");if(void 0===X)throw new Error("dict: textgaps: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-1]=parseFloat(this.stk[this.ptr-1]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="alttext";var X=this.dstk.get("alttext");if(void 0===X)throw new Error("dict: alttext: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="bordercolor";var X=this.dstk.get("bordercolor");if(void 0===X)throw new Error("dict: bordercolor: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="backgroundcolor";var X=this.dstk.get("backgroundcolor");if(void 0===X)throw new Error("dict: backgroundcolor: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="inkspread";var X=this.dstk.get("inkspread");if(void 0===X)throw new Error("dict: inkspread: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-1]=parseFloat(this.stk[this.ptr-1]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="width";var X=this.dstk.get("width");if(void 0===X)throw new Error("dict: width: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-1]=parseFloat(this.stk[this.ptr-1]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="barratio";var X=this.dstk.get("barratio");if(void 0===X)throw new Error("dict: barratio: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-1]=parseFloat(this.stk[this.ptr-1]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="spaceratio";var X=this.dstk.get("spaceratio");if(void 0===X)throw new Error("dict: spaceratio: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-1]=parseFloat(this.stk[this.ptr-1]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="borderleft";var X=this.dstk.get("borderleft");if(void 0===X)throw new Error("dict: borderleft: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-1]=parseFloat(this.stk[this.ptr-1]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="borderright";var X=this.dstk.get("borderright");if(void 0===X)throw new Error("dict: borderright: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-1]=parseFloat(this.stk[this.ptr-1]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="bordertop";var X=this.dstk.get("bordertop");if(void 0===X)throw new Error("dict: bordertop: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-1]=parseFloat(this.stk[this.ptr-1]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="borderbottom";var X=this.dstk.get("borderbottom");if(void 0===X)throw new Error("dict: borderbottom: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-1]=parseFloat(this.stk[this.ptr-1]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="borderwidth";var X=this.dstk.get("borderwidth");if(void 0===X)throw new Error("dict: borderwidth: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-1]=parseFloat(this.stk[this.ptr-1]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="guardleftpos";var X=this.dstk.get("guardleftpos");if(void 0===X)throw new Error("dict: guardleftpos: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-1]=parseFloat(this.stk[this.ptr-1]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="guardleftypos";var X=this.dstk.get("guardleftypos");if(void 0===X)throw new Error("dict: guardleftypos: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-1]=parseFloat(this.stk[this.ptr-1]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="guardrightpos";var X=this.dstk.get("guardrightpos");if(void 0===X)throw new Error("dict: guardrightpos: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-1]=parseFloat(this.stk[this.ptr-1]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="guardrightypos";var X=this.dstk.get("guardrightypos");if(void 0===X)throw new Error("dict: guardrightypos: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-1]=parseFloat(this.stk[this.ptr-1]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="guardwidth";var X=this.dstk.get("guardwidth");if(void 0===X)throw new Error("dict: guardwidth: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-1]=parseFloat(this.stk[this.ptr-1]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="guardheight";var X=this.dstk.get("guardheight");if(void 0===X)throw new Error("dict: guardheight: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-1]=parseFloat(this.stk[this.ptr-1]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="bars";var X=this.dstk.get("sbs");if(void 0===X)throw new Error("dict: sbs: undefined");if(X instanceof Function?X.call(this):this.stk[this.ptr++]=X,"number"!=typeof this.stk[this.ptr-1].length)throw"length: invalid: "+BWIPJS.pstype(this.stk[this.ptr-1]);this.stk[this.ptr-1]=this.stk[this.ptr-1].length,this.stk[this.ptr++]=1,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=2,this.stk[this.ptr-2]=Math.floor(this.stk[this.ptr-2]/this.stk[this.ptr-1]),this.ptr--,this.stk[this.ptr-1]=BWIPJS.psarray(this.stk[this.ptr-1]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="x",this.stk[this.ptr++]=0,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="maxh",this.stk[this.ptr++]=0,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]=0,this.stk[this.ptr++]=1;
4
4
  var X=this.dstk.get("sbs");if(void 0===X)throw new Error("dict: sbs: undefined");if(X instanceof Function?X.call(this):this.stk[this.ptr++]=X,"number"!=typeof this.stk[this.ptr-1].length)throw"length: invalid: "+BWIPJS.pstype(this.stk[this.ptr-1]);this.stk[this.ptr-1]=this.stk[this.ptr-1].length,this.stk[this.ptr++]=1,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=2,this.stk[this.ptr-2]=Math.floor(this.stk[this.ptr-2]/this.stk[this.ptr-1]),this.ptr--,this.stk[this.ptr++]=2,this.stk[this.ptr-2]=this.stk[this.ptr-2]*this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=2,this.stk[this.ptr-2]=this.stk[this.ptr-2]-this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=h;for(var ab=this.stk[--this.ptr],bb=this.stk[--this.ptr],cb=this.stk[--this.ptr],db=this.stk[--this.ptr],eb=db;(0>cb?eb>=bb:bb>=eb)&&(this.stk[this.ptr++]=eb,-1!=ab.call(this));eb+=cb);this.gsave();var X=this.currentpoint();this.stk[this.ptr++]=X.x,this.stk[this.ptr++]=X.y;var fb=this.stk[--this.ptr];this.translate(this.stk[--this.ptr],fb);var X=this.dstk.get("width");if(void 0===X)throw new Error("dict: width: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr++]=0,this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()!=this.stk[this.ptr-1]:this.stk[this.ptr-2]!=this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=i;var gb=this.stk[--this.ptr];if(this.stk[--this.ptr]&&-1==gb.call(this))return-1;this.stk[this.ptr++]="setanycolor",this.stk[this.ptr++]=n,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.newpath();var X=this.dstk.get("borderleft");if(void 0===X)throw new Error("dict: borderleft: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-1]=-this.stk[this.ptr-1];var X=this.dstk.get("borderbottom");if(void 0===X)throw new Error("dict: borderbottom: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-1]=-this.stk[this.ptr-1];var fb=this.stk[--this.ptr];this.moveto(this.stk[--this.ptr],fb);var X=this.dstk.get("x");if(void 0===X)throw new Error("dict: x: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X;var X=this.dstk.get("borderleft");if(void 0===X)throw new Error("dict: borderleft: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--;var X=this.dstk.get("borderright");if(void 0===X)throw new Error("dict: borderright: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=0;var fb=this.stk[--this.ptr];this.rlineto(this.stk[--this.ptr],fb),this.stk[this.ptr++]=0;var X=this.dstk.get("maxh");if(void 0===X)throw new Error("dict: maxh: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X;var X=this.dstk.get("borderbottom");if(void 0===X)throw new Error("dict: borderbottom: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--;var X=this.dstk.get("bordertop");if(void 0===X)throw new Error("dict: bordertop: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--;var fb=this.stk[--this.ptr];this.rlineto(this.stk[--this.ptr],fb);var X=this.dstk.get("x");if(void 0===X)throw new Error("dict: x: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X;var X=this.dstk.get("borderleft");if(void 0===X)throw new Error("dict: borderleft: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--;var X=this.dstk.get("borderright");if(void 0===X)throw new Error("dict: borderright: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr-1]=-this.stk[this.ptr-1],this.stk[this.ptr++]=0;var fb=this.stk[--this.ptr];this.rlineto(this.stk[--this.ptr],fb),this.stk[this.ptr++]=0;var X=this.dstk.get("maxh");if(void 0===X)throw new Error("dict: maxh: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X;var X=this.dstk.get("borderbottom");if(void 0===X)throw new Error("dict: borderbottom: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--;var X=this.dstk.get("bordertop");if(void 0===X)throw new Error("dict: bordertop: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr-1]=-this.stk[this.ptr-1];var fb=this.stk[--this.ptr];this.rlineto(this.stk[--this.ptr],fb),this.closepath();var X=this.dstk.get("backgroundcolor");if(void 0===X)throw new Error("dict: backgroundcolor: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr++]=BWIPJS.psstring("unset"),this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()!=this.stk[this.ptr-1]:this.stk[this.ptr-2]!=this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=o;var hb=this.stk[--this.ptr];if(this.stk[--this.ptr]&&-1==hb.call(this))return-1;var X=this.dstk.get("showborder");if(void 0===X)throw new Error("dict: showborder: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr++]=q;var ib=this.stk[--this.ptr];if(this.stk[--this.ptr]&&-1==ib.call(this))return-1;this.gsave(),this.stk[this.ptr++]=0,this.ptr--;var X=this.dstk.get("barcolor");if(void 0===X)throw new Error("dict: barcolor: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr++]=BWIPJS.psstring("unset"),this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()!=this.stk[this.ptr-1]:this.stk[this.ptr-2]!=this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=r;var jb=this.stk[--this.ptr];if(this.stk[--this.ptr]&&-1==jb.call(this))return-1;var X=this.dstk.get("bars");if(void 0===X)throw new Error("dict: bars: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr++]=u;var kb=this.stk[--this.ptr],lb=this.stk[--this.ptr];for(t31 in lb){if(lb instanceof BWIPJS.psstring||lb instanceof BWIPJS.psarray){if(t31.charCodeAt(0)>57)continue;this.stk[this.ptr++]=lb.get(t31)}else this.stk[this.ptr++]=t31,this.stk[this.ptr++]=lb[t31];if(-1==kb.call(this))break}this.grestore();var X=this.dstk.get("textcolor");if(void 0===X)throw new Error("dict: textcolor: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr++]=BWIPJS.psstring("unset"),this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()!=this.stk[this.ptr-1]:this.stk[this.ptr-2]!=this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=v;var mb=this.stk[--this.ptr];if(this.stk[--this.ptr]&&-1==mb.call(this))return-1;var X=this.dstk.get("includetext");if(void 0===X)throw new Error("dict: includetext: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr++]=T;var nb=this.stk[--this.ptr];if(this.stk[--this.ptr]&&-1==nb.call(this))return-1;var X=this.dstk.get("guardwhitespace");if(void 0===X)throw new Error("dict: guardwhitespace: undefined");X instanceof Function?X.call(this):this.stk[this.ptr++]=X,this.stk[this.ptr++]=W;var ob=this.stk[--this.ptr];return this.stk[--this.ptr]&&-1==ob.call(this)?-1:(this.grestore(),this.dstk.pop(),this.dict=this.dstk[this.dstk.length-1],psstptr=this.ptr,void 0)},BWIPJS.bwipp.renmatrix=function(){function a(){this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2}function b(){this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2}function c(){this.stk[this.ptr++]=0}function d(){this.stk[this.ptr++]="i";var a=this.stk[this.ptr-2];this.stk[this.ptr-2]=this.stk[this.ptr-1],this.stk[this.ptr-1]=a,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2;var a=this.dstk.get("pixs8");if(void 0===a)throw new Error("dict: pixs8: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("pixx8");if(void 0===a)throw new Error("dict: pixx8: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("i");if(void 0===a)throw new Error("dict: i: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]*this.stk[this.ptr-1],this.ptr--;var a=this.dstk.get("pixs");if(void 0===a)throw new Error("dict: pixs: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("pixx");if(void 0===a)throw new Error("dict: pixx: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("i");if(void 0===a)throw new Error("dict: i: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]*this.stk[this.ptr-1],this.ptr--;var a=this.dstk.get("pixx");if(void 0===a)throw new Error("dict: pixx: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-3]=this.stk[this.ptr-3].subset(this.stk[this.ptr-2],this.stk[this.ptr-1]),this.ptr-=2,this.stk[this.ptr-3].assign(this.stk[this.ptr-2],this.stk[this.ptr-1]),this.ptr-=3}function e(){this.stk[this.ptr++]="i";var a=this.stk[this.ptr-2];this.stk[this.ptr-2]=this.stk[this.ptr-1],this.stk[this.ptr-1]=a,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2;var a=this.dstk.get("imgstr");if(void 0===a)throw new Error("dict: imgstr: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("i");if(void 0===a)throw new Error("dict: i: undefined");if(a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=8,this.stk[this.ptr-2]=Math.floor(this.stk[this.ptr-2]/this.stk[this.ptr-1]),this.ptr--,this.stk[this.ptr++]=2,"number"==typeof this.stk[this.ptr-1])for(var b=this.stk[--this.ptr],a=this.ptr+b;this.ptr<a;this.ptr++)this.stk[this.ptr]=this.stk[this.ptr-b];else if(this.stk[this.ptr-1]instanceof BWIPJS.psstring||this.stk[this.ptr-1]instanceof BWIPJS.psarray)this.stk[this.ptr-1].assign(0,this.stk[this.ptr-2]),this.stk[this.ptr-2]=this.stk[this.ptr-1].subset(0,this.stk[this.ptr-2].length),this.ptr--;else{var c=this.stk[this.ptr-2],d=this.stk[this.ptr-1];for(var e in c)d[e]=c[e];this.stk[this.ptr-2]=d,this.ptr--}this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring||this.stk[this.ptr-2]instanceof BWIPJS.psarray?this.stk[this.ptr-2].get(this.stk[this.ptr-1]):this.stk[this.ptr-2][this.stk[this.ptr-1].toString()],this.ptr--,this.stk[this.ptr++]=2,this.stk[this.ptr++]=7;var a=this.dstk.get("i");if(void 0===a)throw new Error("dict: i: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=8,this.stk[this.ptr-2]=this.stk[this.ptr-2]%this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr-2]=this.stk[this.ptr-2]-this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr-2]=Math.pow(this.stk[this.ptr-2],this.stk[this.ptr-1]),this.ptr--,this.stk[this.ptr-1]=parseInt(this.stk[this.ptr-1],10);var a=this.dstk.get("pixs");if(void 0===a)throw new Error("dict: pixs: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("i");if(void 0===a)throw new Error("dict: i: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring||this.stk[this.ptr-2]instanceof BWIPJS.psarray?this.stk[this.ptr-2].get(this.stk[this.ptr-1]):this.stk[this.ptr-2][this.stk[this.ptr-1].toString()],this.ptr--,this.stk[this.ptr-2]=this.stk[this.ptr-2]*this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr-3]instanceof BWIPJS.psstring||this.stk[this.ptr-3]instanceof BWIPJS.psarray?this.stk[this.ptr-3].set(this.stk[this.ptr-2],this.stk[this.ptr-1]):this.stk[this.ptr-3][this.stk[this.ptr-2].toString()]=this.stk[this.ptr-1],this.ptr-=3}function f(){this.stk[this.ptr++]=255,this.stk[this.ptr-2]=this.stk[this.ptr-2]/this.stk[this.ptr-1],this.ptr--}function g(){if(this.stk[this.ptr++]=BWIPJS.psstring("< >"),this.stk[this.ptr++]=8,this.stk[this.ptr-1]=BWIPJS.psstring(this.stk[this.ptr-1]),"number"==typeof this.stk[this.ptr-1])for(var a=this.stk[--this.ptr],b=this.ptr+a;this.ptr<b;this.ptr++)this.stk[this.ptr]=this.stk[this.ptr-a];else if(this.stk[this.ptr-1]instanceof BWIPJS.psstring||this.stk[this.ptr-1]instanceof BWIPJS.psarray)this.stk[this.ptr-1].assign(0,this.stk[this.ptr-2]),this.stk[this.ptr-2]=this.stk[this.ptr-1].subset(0,this.stk[this.ptr-2].length),this.ptr--;else{var c=this.stk[this.ptr-2],d=this.stk[this.ptr-1];for(var e in c)d[e]=c[e];this.stk[this.ptr-2]=d,this.ptr--}this.stk[this.ptr]=this.stk[this.ptr-1],this.ptr++,this.stk[this.ptr++]=1;var b=this.dstk.get("anycolor");if(void 0===b)throw new Error("dict: anycolor: undefined");b instanceof Function?b.call(this):this.stk[this.ptr++]=b,this.stk[this.ptr-3].assign(this.stk[this.ptr-2],this.stk[this.ptr-1]),this.ptr-=3;var b=this.stk[--this.ptr];b instanceof Function?b.call(this):this.eval(b),this.stk[this.ptr++]=f;var g=this.stk[--this.ptr],h=this.stk[--this.ptr];for(t19 in h){if(h instanceof BWIPJS.psstring||h instanceof BWIPJS.psarray){if(t19.charCodeAt(0)>57)continue;this.stk[this.ptr++]=h.get(t19)}else this.stk[this.ptr++]=t19,this.stk[this.ptr++]=h[t19];if(-1==g.call(this))break}this.setrgb(this.stk[this.ptr-3],this.stk[this.ptr-2],this.stk[this.ptr-1]),this.ptr-=3}function h(){this.stk[this.ptr++]=255,this.stk[this.ptr-2]=this.stk[this.ptr-2]/this.stk[this.ptr-1],this.ptr--}function i(){if(this.stk[this.ptr++]=BWIPJS.psstring("< >"),this.stk[this.ptr++]=10,this.stk[this.ptr-1]=BWIPJS.psstring(this.stk[this.ptr-1]),"number"==typeof this.stk[this.ptr-1])for(var a=this.stk[--this.ptr],b=this.ptr+a;this.ptr<b;this.ptr++)this.stk[this.ptr]=this.stk[this.ptr-a];else if(this.stk[this.ptr-1]instanceof BWIPJS.psstring||this.stk[this.ptr-1]instanceof BWIPJS.psarray)this.stk[this.ptr-1].assign(0,this.stk[this.ptr-2]),this.stk[this.ptr-2]=this.stk[this.ptr-1].subset(0,this.stk[this.ptr-2].length),this.ptr--;else{var c=this.stk[this.ptr-2],d=this.stk[this.ptr-1];for(var e in c)d[e]=c[e];this.stk[this.ptr-2]=d,this.ptr--}this.stk[this.ptr]=this.stk[this.ptr-1],this.ptr++,this.stk[this.ptr++]=1;var b=this.dstk.get("anycolor");if(void 0===b)throw new Error("dict: anycolor: undefined");b instanceof Function?b.call(this):this.stk[this.ptr++]=b,this.stk[this.ptr-3].assign(this.stk[this.ptr-2],this.stk[this.ptr-1]),this.ptr-=3;var b=this.stk[--this.ptr];b instanceof Function?b.call(this):this.eval(b),this.stk[this.ptr++]=h;var f=this.stk[--this.ptr],g=this.stk[--this.ptr];for(t23 in g){if(g instanceof BWIPJS.psstring||g instanceof BWIPJS.psarray){if(t23.charCodeAt(0)>57)continue;this.stk[this.ptr++]=g.get(t23)}else this.stk[this.ptr++]=t23,this.stk[this.ptr++]=g[t23];if(-1==f.call(this))break}this.setcmyk(this.stk[this.ptr-4],this.stk[this.ptr-3],this.stk[this.ptr-2],this.stk[this.ptr-1]),this.ptr-=4}function j(){this.stk[this.ptr++]="anycolor";var a=this.stk[this.ptr-2];this.stk[this.ptr-2]=this.stk[this.ptr-1],this.stk[this.ptr-1]=a,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2;var a=this.dstk.get("anycolor");if(void 0===a)throw new Error("dict: anycolor: undefined");if(a instanceof Function?a.call(this):this.stk[this.ptr++]=a,"number"!=typeof this.stk[this.ptr-1].length)throw"length: invalid: "+BWIPJS.pstype(this.stk[this.ptr-1]);this.stk[this.ptr-1]=this.stk[this.ptr-1].length,this.stk[this.ptr++]=6,this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()==this.stk[this.ptr-1]:this.stk[this.ptr-2]==this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=g;var b=this.stk[--this.ptr];if(this.stk[--this.ptr]&&-1==b.call(this))return-1;var a=this.dstk.get("anycolor");if(void 0===a)throw new Error("dict: anycolor: undefined");if(a instanceof Function?a.call(this):this.stk[this.ptr++]=a,"number"!=typeof this.stk[this.ptr-1].length)throw"length: invalid: "+BWIPJS.pstype(this.stk[this.ptr-1]);this.stk[this.ptr-1]=this.stk[this.ptr-1].length,this.stk[this.ptr++]=8,this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()==this.stk[this.ptr-1]:this.stk[this.ptr-2]==this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=i;var c=this.stk[--this.ptr];return this.stk[--this.ptr]&&-1==c.call(this)?-1:void 0}function k(){this.gsave();var a=this.dstk.get("backgroundcolor");if(void 0===a)throw new Error("dict: backgroundcolor: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("setanycolor");if(void 0===a)throw new Error("dict: setanycolor: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.fill(),this.grestore()}function l(){var a=this.dstk.get("color");if(void 0===a)throw new Error("dict: color: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("setanycolor");if(void 0===a)throw new Error("dict: setanycolor: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a}function m(){var a=this.dstk.get("imgstr");if(void 0===a)throw new Error("dict: imgstr: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a}this.stk[this.ptr++]=20,this.stk[this.ptr-1]={},this.dict=this.stk[--this.ptr],this.dstk.push(this.dict),this.stk[this.ptr++]="args";var n=this.stk[this.ptr-2];this.stk[this.ptr-2]=this.stk[this.ptr-1],this.stk[this.ptr-1]=n,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="width",this.stk[this.ptr++]=1,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="height",this.stk[this.ptr++]=1,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="color",this.stk[this.ptr++]=BWIPJS.psstring("unset"),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="backgroundcolor",this.stk[this.ptr++]=BWIPJS.psstring("unset"),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2;var n=this.dstk.get("args");if(void 0===n)throw new Error("dict: args: undefined");n instanceof Function?n.call(this):this.stk[this.ptr++]=n,this.stk[this.ptr++]=a;var o=this.stk[--this.ptr],p=this.stk[--this.ptr];for(t0 in p){if(p instanceof BWIPJS.psstring||p instanceof BWIPJS.psarray){if(t0.charCodeAt(0)>57)continue;this.stk[this.ptr++]=p.get(t0)}else this.stk[this.ptr++]=t0,this.stk[this.ptr++]=p[t0];if(-1==o.call(this))break}var n=this.dstk.get("opt");if(void 0===n)throw new Error("dict: opt: undefined");n instanceof Function?n.call(this):this.stk[this.ptr++]=n,this.stk[this.ptr++]=b;var q=this.stk[--this.ptr],r=this.stk[--this.ptr];for(t3 in r){if(r instanceof BWIPJS.psstring||r instanceof BWIPJS.psarray){if(t3.charCodeAt(0)>57)continue;this.stk[this.ptr++]=r.get(t3)}else this.stk[this.ptr++]=t3,this.stk[this.ptr++]=r[t3];if(-1==q.call(this))break}this.stk[this.ptr++]="width";var n=this.dstk.get("width");if(void 0===n)throw new Error("dict: width: undefined");n instanceof Function?n.call(this):this.stk[this.ptr++]=n,this.stk[this.ptr-1]=parseFloat(this.stk[this.ptr-1]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="height";var n=this.dstk.get("height");if(void 0===n)throw new Error("dict: height: undefined");n instanceof Function?n.call(this):this.stk[this.ptr++]=n,this.stk[this.ptr-1]=parseFloat(this.stk[this.ptr-1]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="color";var n=this.dstk.get("color");if(void 0===n)throw new Error("dict: color: undefined");n instanceof Function?n.call(this):this.stk[this.ptr++]=n,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="backgroundcolor";var n=this.dstk.get("backgroundcolor");if(void 0===n)throw new Error("dict: backgroundcolor: undefined");n instanceof Function?n.call(this):this.stk[this.ptr++]=n,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="pixx8";var n=this.dstk.get("pixx");if(void 0===n)throw new Error("dict: pixx: undefined");n instanceof Function?n.call(this):this.stk[this.ptr++]=n,this.stk[this.ptr++]=8,this.stk[this.ptr-2]=this.stk[this.ptr-2]/this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr-1]=Math.ceil(this.stk[this.ptr-1]),this.stk[this.ptr-1]=parseInt(this.stk[this.ptr-1],10),this.stk[this.ptr++]=8,this.stk[this.ptr-2]=this.stk[this.ptr-2]*this.stk[this.ptr-1],this.ptr--,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="pixs8",this.stk[this.ptr++]=1/0;var n=this.dstk.get("pixx8");if(void 0===n)throw new Error("dict: pixx8: undefined");n instanceof Function?n.call(this):this.stk[this.ptr++]=n;var n=this.dstk.get("pixy");if(void 0===n)throw new Error("dict: pixy: undefined");n instanceof Function?n.call(this):this.stk[this.ptr++]=n,this.stk[this.ptr-2]=this.stk[this.ptr-2]*this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=c;for(var s=this.stk[--this.ptr],t=this.stk[--this.ptr],u=0;t>u&&-1!=s.call(this);u++);for(var v=this.ptr-1;v>=0&&1/0!==this.stk[v];v--);if(0>v)throw"array: underflow";var n=this.stk.splice(v+1,this.ptr-1-v);this.ptr=v,this.stk[this.ptr++]=BWIPJS.psarray(n),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]=0,this.stk[this.ptr++]=1;var n=this.dstk.get("pixy");if(void 0===n)throw new Error("dict: pixy: undefined");n instanceof Function?n.call(this):this.stk[this.ptr++]=n,this.stk[this.ptr++]=1,this.stk[this.ptr-2]=this.stk[this.ptr-2]-this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=d;for(var w=this.stk[--this.ptr],x=this.stk[--this.ptr],y=this.stk[--this.ptr],z=this.stk[--this.ptr],A=z;(0>y?A>=x:x>=A)&&(this.stk[this.ptr++]=A,-1!=w.call(this));A+=y);this.stk[this.ptr++]="pixs";var n=this.dstk.get("pixs8");if(void 0===n)throw new Error("dict: pixs8: undefined");n instanceof Function?n.call(this):this.stk[this.ptr++]=n,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]="imgstr";var n=this.dstk.get("pixs");if(void 0===n)throw new Error("dict: pixs: undefined");if(n instanceof Function?n.call(this):this.stk[this.ptr++]=n,"number"!=typeof this.stk[this.ptr-1].length)throw"length: invalid: "+BWIPJS.pstype(this.stk[this.ptr-1]);this.stk[this.ptr-1]=this.stk[this.ptr-1].length,this.stk[this.ptr++]=8,this.stk[this.ptr-2]=Math.floor(this.stk[this.ptr-2]/this.stk[this.ptr-1]),this.ptr--,this.stk[this.ptr-1]=BWIPJS.psstring(this.stk[this.ptr-1]),this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.stk[this.ptr++]=0,this.stk[this.ptr++]=1;var n=this.dstk.get("pixs");if(void 0===n)throw new Error("dict: pixs: undefined");if(n instanceof Function?n.call(this):this.stk[this.ptr++]=n,"number"!=typeof this.stk[this.ptr-1].length)throw"length: invalid: "+BWIPJS.pstype(this.stk[this.ptr-1]);this.stk[this.ptr-1]=this.stk[this.ptr-1].length,this.stk[this.ptr++]=1,this.stk[this.ptr-2]=this.stk[this.ptr-2]-this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=e;for(var B=this.stk[--this.ptr],C=this.stk[--this.ptr],D=this.stk[--this.ptr],E=this.stk[--this.ptr],F=E;(0>D?F>=C:C>=F)&&(this.stk[this.ptr++]=F,-1!=B.call(this));F+=D);this.stk[this.ptr++]="setanycolor",this.stk[this.ptr++]=j,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2,this.gsave();var n=this.currentpoint();this.stk[this.ptr++]=n.x,this.stk[this.ptr++]=n.y;var G=this.stk[--this.ptr];this.translate(this.stk[--this.ptr],G),this.stk[this.ptr++]=72;var n=this.dstk.get("width");if(void 0===n)throw new Error("dict: width: undefined");n instanceof Function?n.call(this):this.stk[this.ptr++]=n,this.stk[this.ptr-2]=this.stk[this.ptr-2]*this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=72;var n=this.dstk.get("height");if(void 0===n)throw new Error("dict: height: undefined");n instanceof Function?n.call(this):this.stk[this.ptr++]=n,this.stk[this.ptr-2]=this.stk[this.ptr-2]*this.stk[this.ptr-1],this.ptr--;var G=this.stk[--this.ptr];this.scale(this.stk[--this.ptr],G),this.stk[this.ptr++]=1e-4,this.stk[this.ptr++]=1e-4;var G=this.stk[--this.ptr];this.moveto(this.stk[--this.ptr],G),this.stk[this.ptr++]=.9999,this.stk[this.ptr++]=1e-4;var G=this.stk[--this.ptr];this.lineto(this.stk[--this.ptr],G),this.stk[this.ptr++]=.9999,this.stk[this.ptr++]=.9999;var G=this.stk[--this.ptr];this.lineto(this.stk[--this.ptr],G),this.stk[this.ptr++]=1e-4,this.stk[this.ptr++]=.9999;var G=this.stk[--this.ptr];this.lineto(this.stk[--this.ptr],G),this.closepath();var n=this.dstk.get("backgroundcolor");if(void 0===n)throw new Error("dict: backgroundcolor: undefined");n instanceof Function?n.call(this):this.stk[this.ptr++]=n,this.stk[this.ptr++]=BWIPJS.psstring("unset"),this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()!=this.stk[this.ptr-1]:this.stk[this.ptr-2]!=this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=k;var H=this.stk[--this.ptr];if(this.stk[--this.ptr]&&-1==H.call(this))return-1;var n=this.dstk.get("color");if(void 0===n)throw new Error("dict: color: undefined");n instanceof Function?n.call(this):this.stk[this.ptr++]=n,this.stk[this.ptr++]=BWIPJS.psstring("unset"),this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()!=this.stk[this.ptr-1]:this.stk[this.ptr-2]!=this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=l;var I=this.stk[--this.ptr];if(this.stk[--this.ptr]&&-1==I.call(this))return-1;var n=this.dstk.get("pixx");if(void 0===n)throw new Error("dict: pixx: undefined");n instanceof Function?n.call(this):this.stk[this.ptr++]=n;var n=this.dstk.get("pixy");if(void 0===n)throw new Error("dict: pixy: undefined");n instanceof Function?n.call(this):this.stk[this.ptr++]=n,this.stk[this.ptr++]=!0,this.stk[this.ptr++]=1/0;var n=this.dstk.get("pixx");if(void 0===n)throw new Error("dict: pixx: undefined");n instanceof Function?n.call(this):this.stk[this.ptr++]=n,this.stk[this.ptr++]=0,this.stk[this.ptr++]=0;var n=this.dstk.get("pixy");if(void 0===n)throw new Error("dict: pixy: undefined");n instanceof Function?n.call(this):this.stk[this.ptr++]=n,this.stk[this.ptr-1]=-this.stk[this.ptr-1],this.stk[this.ptr++]=0;var n=this.dstk.get("pixy");if(void 0===n)throw new Error("dict: pixy: undefined");n instanceof Function?n.call(this):this.stk[this.ptr++]=n;for(var v=this.ptr-1;v>=0&&1/0!==this.stk[v];v--);if(0>v)throw"array: underflow";var n=this.stk.splice(v+1,this.ptr-1-v);this.ptr=v,this.stk[this.ptr++]=BWIPJS.psarray(n),this.stk[this.ptr++]=m,this.stk[--this.ptr].call(this),this.imagemask(this.stk[this.ptr-5],this.stk[this.ptr-4],this.stk[this.ptr-3],this.stk[this.ptr-2],this.stk[this.ptr-1]),this.ptr-=5,this.grestore(),this.dstk.pop(),this.dict=this.dstk[this.dstk.length-1],psstptr=this.ptr},BWIPJS.bwipp.renlinear||BWIPJS.load("bwipp/renlinear.js"),BWIPJS.bwipp.auspost=function(){function a(){return-1}function b(){var a=this.stk[this.ptr-2];this.stk[this.ptr-2]=this.stk[this.ptr-1],this.stk[this.ptr-1]=a,this.ptr--;var a=this.stk[this.ptr-2];this.stk[this.ptr-2]=this.stk[this.ptr-1],this.stk[this.ptr-1]=a,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2}function c(){this.stk[this.ptr++]=!0,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2}function d(){var d=/^\s*([^\s]+)(\s+.*)?$/.exec(this.stk[this.ptr-1]);d?(this.stk[this.ptr-1]=BWIPJS.psstring(void 0===d[2]?"":d[2]),this.stk[this.ptr++]=BWIPJS.psstring(d[1]),this.stk[this.ptr++]=!0):this.stk[this.ptr-1]=!1,this.stk[this.ptr++]=!1,this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()==this.stk[this.ptr-1]:this.stk[this.ptr-2]==this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=a;var e=this.stk[--this.ptr];if(this.stk[--this.ptr]&&-1==e.call(this))return-1;if(this.stk[this.ptr]=this.stk[this.ptr-1],this.ptr++,"number"!=typeof this.stk[this.ptr-1].length)throw"length: invalid: "+BWIPJS.pstype(this.stk[this.ptr-1]);this.stk[this.ptr-1]=this.stk[this.ptr-1].length,this.stk[this.ptr-1]=BWIPJS.psstring(this.stk[this.ptr-1]);var f=this.stk[this.ptr-2].toString();this.stk[this.ptr-1].assign(0,f),this.stk[this.ptr-2]=this.stk[this.ptr-1].subset(0,f.length),this.ptr--,this.stk[this.ptr++]=BWIPJS.psstring("=");var g=this.stk[this.ptr-2],f=g.indexOf(this.stk[this.ptr-1]);-1==f?this.stk[this.ptr-1]=!1:(this.stk[this.ptr-2]=g.subset(f+this.stk[this.ptr-1].length),this.stk[this.ptr-1]=g.subset(f,this.stk[this.ptr-1].length),this.stk[this.ptr++]=g.subset(0,f),this.stk[this.ptr++]=!0),this.stk[this.ptr++]=!0,this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring?this.stk[this.ptr-2].toString()==this.stk[this.ptr-1]:this.stk[this.ptr-2]==this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=b,this.stk[this.ptr++]=c;var h=this.stk[--this.ptr],i=this.stk[--this.ptr];if(this.stk[--this.ptr]){if(-1==i.call(this))return-1}else if(-1==h.call(this))return-1}function e(){this.stk[this.ptr++]=1,this.stk[this.ptr-1]={},this.dict=this.stk[--this.ptr],this.dstk.push(this.dict);var a=this.dstk.get("options");if(void 0===a)throw new Error("dict: options: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=d;for(var b=this.stk[--this.ptr];;)if(-1==b.call(this))break;this.stk[this.ptr++]=this.dict,this.dstk.pop(),this.dict=this.dstk[this.dstk.length-1],this.stk[this.ptr++]="options";var a=this.stk[this.ptr-2];this.stk[this.ptr-2]=this.stk[this.ptr-1],this.stk[this.ptr-1]=a,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2}function f(){this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2}function g(){this.stk[this.ptr++]=37}function h(){this.stk[this.ptr++]=37}function i(){this.stk[this.ptr++]=52}function j(){this.stk[this.ptr++]=67}function k(){this.stk[this.ptr++]="i";var a=this.stk[this.ptr-2];this.stk[this.ptr-2]=this.stk[this.ptr-1],this.stk[this.ptr-1]=a,this.dict[this.stk[this.ptr-2]]=this.stk[this.ptr-1],this.ptr-=2;var a=this.dstk.get("encs");if(void 0===a)throw new Error("dict: encs: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("barcode");if(void 0===a)throw new Error("dict: barcode: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("i");if(void 0===a)throw new Error("dict: i: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=1,this.stk[this.ptr-3]=this.stk[this.ptr-3].subset(this.stk[this.ptr-2],this.stk[this.ptr-1]),this.ptr-=2,this.stk[this.ptr-1]=parseInt(this.stk[this.ptr-1],10),this.stk[this.ptr++]=64,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr-2]=this.stk[this.ptr-2]instanceof BWIPJS.psstring||this.stk[this.ptr-2]instanceof BWIPJS.psarray?this.stk[this.ptr-2].get(this.stk[this.ptr-1]):this.stk[this.ptr-2][this.stk[this.ptr-1].toString()],this.ptr--;var a=this.dstk.get("encstr");if(void 0===a)throw new Error("dict: encstr: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a;var a=this.dstk.get("i");if(void 0===a)throw new Error("dict: i: undefined");a instanceof Function?a.call(this):this.stk[this.ptr++]=a,this.stk[this.ptr++]=2,this.stk[this.ptr-2]=this.stk[this.ptr-2]*this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=2,this.stk[this.ptr-2]=this.stk[this.ptr-2]+this.stk[this.ptr-1],this.ptr--,this.stk[this.ptr++]=3,this.stk[this.ptr++]=2;var b=this.stk[--this.ptr],c=this.stk[--this.ptr];if(c>this.ptr)throw"roll: underflow: this.ptr="+this.ptr+",offset="+c;if(0>b)var a=this.stk.splice(this.ptr-c,-b);else var a=this.stk.splice(this.ptr-c,c-b);this.stk.splice.apply(this.stk,[this.ptr-a.length,0].concat(a)),this.stk[this.ptr-3].assign(this.stk[this.ptr-2],this.stk[this.ptr-1]),this.ptr-=3
@@ -1,4 +1,4 @@
1
- /*! bwip - v0.6.7 - 2014-02-16
1
+ /*! bwip - v0.7.0 - 2014-07-09
2
2
  * https://github.com/heartyoh/bwip
3
3
  * Copyright (c) 2014 Hearty, Oh.; Licensed MIT */
4
4
  // file: bwip.js
@@ -1074,7 +1074,7 @@ BWIPJS.load = function(path) {};
1074
1074
  };
1075
1075
 
1076
1076
  BWIPJS.debug = function(s) {
1077
- console.log(s);
1077
+ // console.log(s);
1078
1078
  };
1079
1079
 
1080
1080
  BWIPJS.imageUrl = function(model) {
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bwip
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.7
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hearty, Oh
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-02-16 00:00:00.000000000 Z
11
+ date: 2014-07-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -37,13 +37,13 @@ executables: []
37
37
  extensions: []
38
38
  extra_rdoc_files: []
39
39
  files:
40
- - MIT-LICENSE
41
- - README.md
42
- - lib/bwip.rb
43
40
  - lib/bwip/engine.rb
44
41
  - lib/bwip/version.rb
42
+ - lib/bwip.rb
45
43
  - vendor/assets/javascripts/bwip-min.js
46
44
  - vendor/assets/javascripts/bwip.js
45
+ - MIT-LICENSE
46
+ - README.md
47
47
  homepage: http://github.com/heartyoh/bwip
48
48
  licenses:
49
49
  - MIT
@@ -64,7 +64,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
64
64
  version: 1.3.6
65
65
  requirements: []
66
66
  rubyforge_project:
67
- rubygems_version: 2.2.1
67
+ rubygems_version: 2.0.14
68
68
  signing_key:
69
69
  specification_version: 4
70
70
  summary: A simple gem for bwip-js with rails