pigpio 0.1.9 → 0.1.10

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: 66b24b6fe214949a25348c1d9b513ed61f35547c
4
- data.tar.gz: 88d6f21e9aacf0d60469681a503753e0075421be
3
+ metadata.gz: 1fa3d31d3fb44ea838005f5a56348e48e5716cbd
4
+ data.tar.gz: da12abb9a3d79848a8bd90c522b28640332528e2
5
5
  SHA512:
6
- metadata.gz: 834352c77c71394df264761024a9f842a3bbfd584fea9b9d2682c4cb948826e9133ea5e5f56165425ac4f12215e1f0448b8a33643fcae0bd6751955066bea7b6
7
- data.tar.gz: 558580bfd1ee8052300d86d94a5de70886d3e6d1fd7e5e59d96fe69506632a049c8cd3045cea0ba9caad2fc343c3920eec03720004548cb7d856e9d7147974ab
6
+ metadata.gz: 92e28c29a0cc4a88f175d7960ad509356f2aa7b5fd99b6a8a1bf1c03b568ef34ea7df67f17eda4a4bcdaf9f7374095bcd79409ee1931de6f92727637d4bc0c00
7
+ data.tar.gz: 9b5e95b0514e08aeb557743274958f7c25c446403b16a56140248922c30e87032a0e0010fe0fb25d0e95eec6a59f1cfb7b4c2fc68ea77b0d406299f3bf0c80a4
data/Rakefile CHANGED
@@ -28,4 +28,9 @@ end
28
28
 
29
29
  task :dockerv do
30
30
  sh("ruby ./bin/docker.rb v")
31
+ end
32
+
33
+ task :reset do
34
+ sh "git fetch origin"
35
+ sh "git reset --hard origin/master"
31
36
  end
@@ -1,5 +1,6 @@
1
1
  #include "ruby.h"
2
2
  #include "pigpiod_if2.h"
3
+ #include <string.h>
3
4
 
4
5
  #define TypedData_Get_Struct2(obj, type, data_type) ((type*)rb_check_typeddata((obj), (data_type)))
5
6
 
@@ -78,13 +79,7 @@ void pigpio_rbbk_CBFuncEx(int pi, unsigned user_gpio, unsigned level, uint32_t t
78
79
  queue->buf[cur].gpio=user_gpio;
79
80
  queue->buf[cur].pi=pi;
80
81
  cur=(cur>=(PG_EXT_CALLBACK_BUF_SIZE-1)) ? 0 : (cur+1) ;
81
- /*
82
- cur->tick=tick;
83
- cur->level=level;
84
- cur->gpio=user_gpio;
85
- cur->pi=pi;
86
- cur=(cur==queue->buf+(PG_EXT_CALLBACK_BUF_SIZE-1)) ? queue->buf : (cur+1) ;
87
- */
82
+
88
83
  if(cur==queue->read){
89
84
  queue->flag_overflow=1;
90
85
  }else{
@@ -92,6 +87,14 @@ void pigpio_rbbk_CBFuncEx(int pi, unsigned user_gpio, unsigned level, uint32_t t
92
87
  }
93
88
  return;
94
89
  }
90
+
91
+ /*
92
+ Set a data to FIFO Queue for event.
93
+ */
94
+ void pigpio_rbbk_evtCBFuncEx(int pi, unsigned event, uint32_t tick, void *queue){
95
+ pigpio_rbbk_CBFuncEx(pi,pi,event,tick,queue);
96
+ return;
97
+ }
95
98
  static VALUE callback_receive(void*_self){
96
99
  callback_pqueue_t *st=TypedData_Get_Struct2((VALUE)_self,callback_pqueue_t,&callback_pqueue_type);
97
100
  VALUE callee_proc =st->callback;
@@ -190,11 +193,6 @@ VALUE pigpio_rbst_callback_id_cancel(VALUE self){
190
193
  return INT2NUM(id);
191
194
  }
192
195
 
193
- void pigpio_rbbk_evtCBFuncEx(int pi, unsigned event, uint32_t tick, void *callee_proc){
194
- (rb_funcall((VALUE)callee_proc, rb_intern("call"), 2,ULONG2NUM(tick),UINT2NUM(event)));
195
- return;
196
- }
197
-
198
196
  const rb_data_type_t bsc_xfer_data_type = { //https://gist.github.com/yugui/87ef6964d8a76794be6f
199
197
  "struct@bsc_xfer",{NULL,(void*)-1,0,{0,0}},0,NULL,0
200
198
  };
@@ -214,6 +212,9 @@ VALUE pigpio_rbst_bsc_xfer_make(VALUE self){
214
212
  VALUE obj;
215
213
  bsc_xfer_t *st;
216
214
  obj = TypedData_Make_Struct(self, bsc_xfer_t, &bsc_xfer_data_type, st);
215
+ st->control=0;
216
+ st->txCnt=0;
217
+ st->rxCnt=0;
217
218
  return obj;
218
219
  }
219
220
  /*
@@ -225,30 +226,55 @@ VALUE pigpio_rbst_bsc_xfer_w_control(VALUE self,VALUE control){
225
226
  return self;
226
227
  }
227
228
  /*
228
- Setter
229
+ Set TX buffer
229
230
  */
230
231
  VALUE pigpio_rbst_bsc_xfer_w_txBuf(VALUE self,VALUE txBuf){
231
232
  bsc_xfer_t *st=TypedData_Get_Struct2(self,bsc_xfer_t,&bsc_xfer_data_type);
232
233
  int len=RSTRING_LEN(txBuf);
233
234
  char *buf=StringValuePtr(txBuf);
234
235
  st->txCnt=(len<BSC_FIFO_SIZE)?len:BSC_FIFO_SIZE;
235
- for(int i=0;i<st->txCnt;i++){
236
- st->txBuf[i]=*buf++;
237
- }
236
+ memcpy(st->txBuf,buf,st->txCnt);
237
+ //for(int i=0;i<st->txCnt;i++){st->txBuf[i]=*buf++;}
238
238
  RB_GC_GUARD(txBuf);
239
239
  return self;
240
240
  }
241
241
  /*
242
- Getter
242
+ Get RX buffer
243
243
  */
244
244
  VALUE pigpio_rbst_bsc_xfer_r_rxBuf(VALUE self){
245
245
  bsc_xfer_t *st=TypedData_Get_Struct2(self,bsc_xfer_t,&bsc_xfer_data_type);
246
+ return rb_str_new(st->rxBuf,st->rxCnt);
247
+ /*
246
248
  VALUE rxBuf=rb_str_new("",st->rxCnt);
247
249
  char *buf=StringValuePtr(rxBuf);
248
250
  for(int i=0;i<st->rxCnt;i++){
249
251
  *buf++=st->rxBuf[i];
250
252
  }
251
253
  return rxBuf;
254
+ */
255
+ }
256
+ /*
257
+ Get control
258
+ */
259
+ VALUE pigpio_rbst_bsc_xfer_r_control(VALUE self){
260
+ bsc_xfer_t *st=TypedData_Get_Struct2(self,bsc_xfer_t,&bsc_xfer_data_type);
261
+ return ULONG2NUM(st->control);
262
+ }
263
+ /*
264
+ Stop trans
265
+ */
266
+ VALUE pigpio_rbst_bsc_xfer_stop(VALUE self){
267
+ bsc_xfer_t *st=TypedData_Get_Struct2(self,bsc_xfer_t,&bsc_xfer_data_type);
268
+ st->control=st->control|0x00000080L;
269
+ return ULONG2NUM(st->control);
270
+ }
271
+ /*
272
+ Close slave I/F
273
+ */
274
+ VALUE pigpio_rbst_bsc_xfer_close(VALUE self){
275
+ bsc_xfer_t *st=TypedData_Get_Struct2(self,bsc_xfer_t,&bsc_xfer_data_type);
276
+ st->control=st->control&0xfffffffcL;
277
+ return ULONG2NUM(st->control);
252
278
  }
253
279
 
254
280
  const rb_data_type_t gpioPulse_data_type = { //https://gist.github.com/yugui/87ef6964d8a76794be6f
@@ -2056,7 +2082,6 @@ VALUE pigpio_rbfn_callback(int argc, VALUE *argv, VALUE self){
2056
2082
  thread=rb_thread_create(callback_receive,(void*)queue);
2057
2083
  st=TypedData_Get_Struct2(queue,callback_pqueue_t,&callback_pqueue_type);
2058
2084
 
2059
- //if(NIL_P(callee_proc)){rb_raise(cCallbackError,"No callback block.\n");}
2060
2085
  id=callback_ex(NUM2INT(pi), NUM2UINT(user_gpio), NUM2UINT(edge), pigpio_rbbk_CBFuncEx, (void*)st->queue);
2061
2086
  return pigpio_rbst_callback_id_make_inner(id,callback_cancel,queue,thread);
2062
2087
  }
@@ -2129,9 +2154,19 @@ See also: {pigpio site}[http://abyz.me.uk/rpi/pigpio/pdif2.html#event_callback_e
2129
2154
  */
2130
2155
  VALUE pigpio_rbfn_event_callback(int argc, VALUE *argv, VALUE self){
2131
2156
  int id;
2132
- VALUE pi; VALUE event; VALUE queue; VALUE thread;
2133
- rb_scan_args(argc,argv,"4",&pi,&event,&queue,&thread);
2134
- id=event_callback_ex(NUM2INT(pi), NUM2UINT(event), pigpio_rbbk_evtCBFuncEx, (void *)queue);
2157
+ VALUE queue;
2158
+ VALUE thread;
2159
+ callback_pqueue_t *st;
2160
+ VALUE pi; VALUE event; VALUE block;
2161
+ rb_scan_args(argc,argv,"2&",&pi,&event,&block);
2162
+ if(block==Qnil){
2163
+ return Qnil;
2164
+ }
2165
+ queue=pigpio_rbst_callback_pqueue_make_inner(block,0,100000);
2166
+ thread=rb_thread_create(callback_receive,(void*)queue);
2167
+ st=TypedData_Get_Struct2(queue,callback_pqueue_t,&callback_pqueue_type);
2168
+
2169
+ id=event_callback_ex(NUM2INT(pi), NUM2UINT(event), pigpio_rbbk_evtCBFuncEx, (void *)st->queue);
2135
2170
  return pigpio_rbst_callback_id_make_inner(id,event_callback_cancel,queue,thread);
2136
2171
  }
2137
2172
  /*
@@ -3804,8 +3839,11 @@ This class has some constances for pigpio library.
3804
3839
  cBscXfer = rb_define_class_under(cPigpio,"BscXfer", rb_cData);
3805
3840
  rb_define_singleton_method(cBscXfer, "make", pigpio_rbst_bsc_xfer_make, 0);
3806
3841
  rb_define_method(cBscXfer, "control=", pigpio_rbst_bsc_xfer_w_control, 1);
3842
+ rb_define_method(cBscXfer, "control", pigpio_rbst_bsc_xfer_r_control, 0);
3807
3843
  rb_define_method(cBscXfer, "txBuf=", pigpio_rbst_bsc_xfer_w_txBuf, 1);
3808
3844
  rb_define_method(cBscXfer, "rxBuf", pigpio_rbst_bsc_xfer_r_rxBuf, 0);
3845
+ rb_define_method(cBscXfer, "stop", pigpio_rbst_bsc_xfer_stop, 0);
3846
+ rb_define_method(cBscXfer, "close", pigpio_rbst_bsc_xfer_close, 0);
3809
3847
 
3810
3848
  /*
3811
3849
  The class of native queue.
@@ -11,6 +11,7 @@ require "pigpio/bit_bang_serial_tx"
11
11
  require "pigpio/bit_bang_serial"
12
12
  require "pigpio/serial"
13
13
  require "pigpio/spi"
14
+ require "pigpio/i2c"
14
15
 
15
16
  class Pigpio
16
17
  attr_reader :pi
@@ -56,4 +57,7 @@ class Pigpio
56
57
  bits_per_word: 8,first_MISO: false,first_MOSI: false,idol_bytes: 0,is_3wire: false,active_low_cex: 0,spi_mode: 0)
57
58
  SPI.new(@pi,spi_channel,enable_cex,baud,bits_per_word: bits_per_word,first_MISO:first_MISO,first_MOSI:first_MOSI,idol_bytes:idol_bytes,is_3wire:is_3wire,active_low_cex:active_low_cex,spi_mode:spi_mode)
58
59
  end
60
+ def i2c(i2c_bus,i2c_addr)
61
+ I2C.new(@pi,i2c_bus,i2c_addr)
62
+ end
59
63
  end
@@ -0,0 +1,60 @@
1
+ class Pigpio
2
+ class I2C
3
+ attr_reader :pi,:handle
4
+ def initialize(pi,i2c_bus,i2c_addr)
5
+ @pi=pi
6
+ @handle=IF.i2c_open(@pi,i2c_bus,i2c_addr,0)
7
+ end
8
+ def close()
9
+ IF.i2c_close(@pi,@handle)
10
+ end
11
+ def write_quick(bit)
12
+ IF.i2c_write_quick(@pi,@handle,bit)
13
+ end
14
+ def write_byte(bVal)
15
+ IF.i2c_write_byte(@pi,@handle,bVal)
16
+ end
17
+ def read_byte()
18
+ IF.i2c_read_byte(@pi,@handle)
19
+ end
20
+ def write_byte_data(i2c_reg,bVal)
21
+ IF.i2c_write_byte_data(@pi,@handle,i2c_reg,bVal)
22
+ end
23
+ def write_word_data(i2c_reg,wVal)
24
+ IF.i2c_write_word_data(@pi,@handle,i2c_reg,wVal)
25
+ end
26
+ def read_byte_data(i2c_reg)
27
+ IF.i2c_read_byte_data(@pi,@handle,i2c_reg)
28
+ end
29
+ def read_word_data(i2c_reg)
30
+ IF.i2c_read_word_data(@pi,@handle,i2c_reg)
31
+ end
32
+ def process_call(i2c_reg,wVal)
33
+ IF.i2c_process_call(@pi,@handle,i2c_reg,wVal)
34
+ end
35
+ def read_block_data(i2c_reg)
36
+ IF.i2c_read_block_data(@pi,@handle,i2c_reg)
37
+ end
38
+ def read_i2c_block_data(i2c_reg,count)
39
+ IF.i2c_read_i2c_block_data(@pi,@handle,i2c_reg,count)
40
+ end
41
+ def write_block_data(i2c_reg,buf)
42
+ IF.i2c_write_block_data(@pi,@handle,i2c_reg,buf)
43
+ end
44
+ def write_i2c_block_data(i2c_reg,buf)
45
+ IF.i2c_write_i2c_block_data(@pi,@handle,i2c_reg,buf)
46
+ end
47
+ def block_process_call(i2c_reg,buf)
48
+ IF.i2c_block_process_call(@pi,@handle,i2c_reg,buf)
49
+ end
50
+ def read_device(count)
51
+ IF.i2c_read_device(@pi,@handle,count)
52
+ end
53
+ def write_device(buf)
54
+ IF.i2c_write_device(@pi,@handle,buf)
55
+ end
56
+ def zip(inBuf,outLen)
57
+ IF.i2c_zip(@pi,@handle,inBuf,outLen)
58
+ end
59
+ end
60
+ end
@@ -1,3 +1,3 @@
1
1
  class Pigpio
2
- VERSION = "0.1.9"
2
+ VERSION = "0.1.10"
3
3
  end
@@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
31
31
  # Specify which files should be added to the gem when it is released.
32
32
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
33
33
  spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
34
- `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(docs|test|spec|features)/}) }
34
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(docs|example|test|spec|features)/}) }
35
35
  end
36
36
  spec.bindir = "exe"
37
37
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pigpio
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - nak1114
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-03-03 00:00:00.000000000 Z
11
+ date: 2019-03-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -88,16 +88,6 @@ files:
88
88
  - bin/docker.rb
89
89
  - bin/setup
90
90
  - check.txt
91
- - example/loopback/readme.md
92
- - example/loopback/spi.rb
93
- - example/loopback/uart.rb
94
- - example/loopback/uart.svg
95
- - example/simple/board.svg
96
- - example/simple/callback.rb
97
- - example/simple/led.rb
98
- - example/simple/pwm.rb
99
- - example/simple/readme.md
100
- - example/simple/wave.rb
101
91
  - ext/pigpio/extconf.rb
102
92
  - ext/pigpio/pigpio.c
103
93
  - lib/pigpio.rb
@@ -107,6 +97,7 @@ files:
107
97
  - lib/pigpio/bit_bang_serial_tx.rb
108
98
  - lib/pigpio/constant.rb
109
99
  - lib/pigpio/gpio.rb
100
+ - lib/pigpio/i2c.rb
110
101
  - lib/pigpio/pwm.rb
111
102
  - lib/pigpio/serial.rb
112
103
  - lib/pigpio/spi.rb
@@ -1,19 +0,0 @@
1
- # I/F Loop back sample
2
-
3
- ## UART(serial) loop back
4
-
5
- ![board_image](./uart.svg)
6
-
7
- [Script is here.](./uart.rb)
8
-
9
- Console will echo back below.
10
-
11
- ```sh
12
- $ sudo pigpiod
13
- $ ruby uart.rb
14
- "abcdef"
15
- "z"
16
- "y"
17
- "x"
18
- ""
19
- ```
@@ -1,24 +0,0 @@
1
- require "pigpio"
2
-
3
- include Pigpio::Constant
4
- pi=Pigpio.new()
5
- unless pi.connect
6
- exit -1
7
- end
8
- counter=0
9
- cs=pi.gpio(8)
10
- cs.mode=PI_OUTPUT
11
- cs.pud=PI_PUD_OFF
12
- mosi=pi.gpio(10)
13
- mosi.mode=PI_OUTPUT
14
- mosi.pud=PI_PUD_OFF
15
- clk=pi.gpio(11)
16
- clk.mode=PI_OUTPUT
17
- clk.pud=PI_PUD_OFF
18
- miso=pi.gpio(9)
19
- miso.mode=PI_INPUT
20
- miso.pud=PI_PUD_OFF
21
- spi=pi.spi()
22
- p spi.xfer "abcdef"
23
- spi.close
24
- pi.stop
@@ -1,24 +0,0 @@
1
- require "pigpio"
2
-
3
- include Pigpio::Constant
4
- pi=Pigpio.new()
5
- unless pi.connect
6
- exit -1
7
- end
8
- counter=0
9
- tx=pi.gpio(27)
10
- tx.mode=PI_OUTPUT
11
- tx.pud=PI_PUD_OFF
12
-
13
- rx=pi.gpio(22)
14
- rx.mode=PI_INPUT
15
- rx.pud=PI_PUD_OFF
16
-
17
- uart=pi.serial(rx,tx)
18
- uart.write_sync "abc"
19
- uart.write_sync "def"
20
- p uart.read(10)
21
- uart.write_sync "zyx"
22
- 4.times{p uart.read(1)}
23
- uart.close
24
- pi.stop
@@ -1,2690 +0,0 @@
1
- <?xml version='1.0' encoding='UTF-8' standalone='no'?>
2
- <!-- Created with Fritzing (http://www.fritzing.org/) -->
3
- <svg xmlns:svg='http://www.w3.org/2000/svg' xmlns='http://www.w3.org/2000/svg' version='1.2' baseProfile='tiny' x='0in' y='0in' width='4.30511in' height='3.41622in' viewBox='0 0 309.968 245.968' >
4
- <g partID='854102960'><g transform='translate(201.968,171.471)' ><g transform='matrix(0,-1,1,0,0,0)' ><g id="breadboardbreadboard">
5
- <g id="background">
6
- <rect width="158.64" fill="#D9D9D9" height="108"/>
7
- </g>
8
- <rect y="50.375" width="158.64" fill="#CCC9C9" height="7.25"/>
9
- <g id="text">
10
- <g transform="matrix(1, 0, 0, 1, 10.0596, 9.3945)">
11
- <text fill="#B3B0B0" font-size="4.6036" font-family="'DroidSans'">1</text>
12
- </g>
13
- <g transform="matrix(1, 0, 0, 1, 38.7144, 9.3945)">
14
- <text fill="#B3B0B0" font-size="4.6036" font-family="'DroidSans'">5</text>
15
- </g>
16
- <g transform="matrix(1, 0, 0, 1, 73.1099, 9.3945)">
17
- <text fill="#B3B0B0" font-size="4.6036" font-family="'DroidSans'">10</text>
18
- </g>
19
- <g transform="matrix(1, 0, 0, 1, 109.119, 9.3945)">
20
- <text fill="#B3B0B0" font-size="4.6036" font-family="'DroidSans'">15</text>
21
- </g>
22
- <g transform="matrix(1, 0, 0, 1, 145.296, 9.3945)">
23
- <text fill="#B3B0B0" font-size="4.6036" font-family="'DroidSans'">20</text>
24
- </g>
25
- <g transform="matrix(1, 0, 0, 1, 10.0596, 100.795)">
26
- <text fill="#B3B0B0" font-size="4.6036" font-family="'DroidSans'">1</text>
27
- </g>
28
- <g transform="matrix(1, 0, 0, 1, 38.7144, 100.795)">
29
- <text fill="#B3B0B0" font-size="4.6036" font-family="'DroidSans'">5</text>
30
- </g>
31
- <g transform="matrix(1, 0, 0, 1, 73.1099, 100.795)">
32
- <text fill="#B3B0B0" font-size="4.6036" font-family="'DroidSans'">10</text>
33
- </g>
34
- <g transform="matrix(1, 0, 0, 1, 109.119, 100.795)">
35
- <text fill="#B3B0B0" font-size="4.6036" font-family="'DroidSans'">15</text>
36
- </g>
37
- <g transform="matrix(1, 0, 0, 1, 145.296, 100.795)">
38
- <text fill="#B3B0B0" font-size="4.6036" font-family="'DroidSans'">20</text>
39
- </g>
40
- <g transform="matrix(1, 0, 0, 1, 3.2612, 15.6143)">
41
- <text fill="#B3B0B0" font-size="4.6036" font-family="'DroidSans'">A</text>
42
- </g>
43
- <g transform="matrix(1, 0, 0, 1, 3.2612, 22.8672)">
44
- <text fill="#B3B0B0" font-size="4.6036" font-family="'DroidSans'">B</text>
45
- </g>
46
- <g transform="matrix(1, 0, 0, 1, 3.3052, 30.1187)">
47
- <text fill="#B3B0B0" font-size="4.6036" font-family="'DroidSans'">C</text>
48
- </g>
49
- <g transform="matrix(1, 0, 0, 1, 3.2197, 37.3696)">
50
- <text fill="#B3B0B0" font-size="4.6036" font-family="'DroidSans'">D</text>
51
- </g>
52
- <g transform="matrix(1, 0, 0, 1, 3.4341, 44.6211)">
53
- <text fill="#B3B0B0" font-size="4.6036" font-family="'DroidSans'">E</text>
54
- </g>
55
- <g transform="matrix(1, 0, 0, 1, 3.4756, 66.377)">
56
- <text fill="#B3B0B0" font-size="4.6036" font-family="'DroidSans'">F</text>
57
- </g>
58
- <g transform="matrix(1, 0, 0, 1, 3.2612, 73.627)">
59
- <text fill="#B3B0B0" font-size="4.6036" font-family="'DroidSans'">G</text>
60
- </g>
61
- <g transform="matrix(1, 0, 0, 1, 3.2612, 80.8789)">
62
- <text fill="#B3B0B0" font-size="4.6036" font-family="'DroidSans'">H</text>
63
- </g>
64
- <g transform="matrix(1, 0, 0, 1, 3.9473, 88.1318)">
65
- <text fill="#B3B0B0" font-size="4.6036" font-family="'DroidSans'">I</text>
66
- </g>
67
- <g transform="matrix(1, 0, 0, 1, 3.4756, 95.3828)">
68
- <text fill="#B3B0B0" font-size="4.6036" font-family="'DroidSans'">J</text>
69
- </g>
70
- </g>
71
- <g id="sockets">
72
- <g id="A1pin">
73
- <path fill="#BFBFBF" d="M8.526,14.4c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394"/>
74
- <path fill="#E6E6E6" d="M13.313,14.4c0,1.322,-1.072,2.394,-2.394,2.394S8.526,15.722,8.526,14.4"/>
75
- <circle fill="#383838" r="1.197" cx="10.92" cy="14.4"/>
76
- </g>
77
- <g id="B1pin">
78
- <path fill="#BFBFBF" d="M8.526,21.6c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394"/>
79
- <path fill="#E6E6E6" d="M13.313,21.6c0,1.322,-1.072,2.394,-2.394,2.394S8.526,22.922,8.526,21.6l0,0"/>
80
- <circle fill="#383838" r="1.197" cx="10.92" cy="21.6"/>
81
- </g>
82
- <g id="C1pin">
83
- <path fill="#BFBFBF" d="M8.526,28.8c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394"/>
84
- <path fill="#E6E6E6" d="M13.313,28.8c0,1.322,-1.072,2.394,-2.394,2.394S8.526,30.122,8.526,28.8"/>
85
- <circle fill="#383838" r="1.197" cx="10.92" cy="28.8"/>
86
- </g>
87
- <g id="D1pin">
88
- <path fill="#BFBFBF" d="M8.526,36c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394"/>
89
- <path fill="#E6E6E6" d="M13.313,36c0,1.322,-1.072,2.394,-2.394,2.394S8.526,37.322,8.526,36l0,0"/>
90
- <circle fill="#383838" r="1.197" cx="10.92" cy="36"/>
91
- </g>
92
- <g id="E1pin">
93
- <path fill="#BFBFBF" d="M8.526,43.2c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394"/>
94
- <path fill="#E6E6E6" d="M13.313,43.2c0,1.322,-1.072,2.394,-2.394,2.394S8.526,44.522,8.526,43.2l0,0"/>
95
- <circle fill="#383838" r="1.197" cx="10.92" cy="43.2"/>
96
- </g>
97
- <g id="A2pin">
98
- <path fill="#BFBFBF" d="M15.727,14.4c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
99
- <path fill="#E6E6E6" d="M20.514,14.4c0,1.322,-1.07,2.395,-2.393,2.395c-1.322,0.001,-2.394,-1.07,-2.395,-2.392c0,-0.001,0,-0.002,0,-0.003"/>
100
- <circle fill="#383838" r="1.197" cx="18.12" cy="14.4"/>
101
- </g>
102
- <g id="B2pin">
103
- <path fill="#BFBFBF" d="M15.727,21.6c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
104
- <path fill="#E6E6E6" d="M20.514,21.6c0,1.322,-1.07,2.394,-2.393,2.395c-1.322,0,-2.394,-1.07,-2.395,-2.393c0,-0.001,0,-0.001,0,-0.002"/>
105
- <circle fill="#383838" r="1.197" cx="18.12" cy="21.6"/>
106
- </g>
107
- <g id="C2pin">
108
- <path fill="#BFBFBF" d="M15.727,28.8c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
109
- <path fill="#E6E6E6" d="M20.514,28.8c0,1.322,-1.07,2.395,-2.393,2.395c-1.322,0.001,-2.394,-1.07,-2.395,-2.392c0,-0.001,0,-0.002,0,-0.003"/>
110
- <circle fill="#383838" r="1.197" cx="18.12" cy="28.8"/>
111
- </g>
112
- <g id="D2pin">
113
- <path fill="#BFBFBF" d="M15.727,36c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
114
- <path fill="#E6E6E6" d="M20.514,36c0,1.322,-1.07,2.394,-2.393,2.395c-1.322,0,-2.394,-1.07,-2.395,-2.392c0,-0.001,0,-0.002,0,-0.003"/>
115
- <circle fill="#383838" r="1.197" cx="18.12" cy="36"/>
116
- </g>
117
- <g id="E2pin">
118
- <path fill="#BFBFBF" d="M15.727,43.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
119
- <path fill="#E6E6E6" d="M20.514,43.2c0,1.322,-1.07,2.394,-2.393,2.395c-1.322,0.001,-2.394,-1.07,-2.395,-2.392c0,-0.001,0,-0.002,0,-0.002"/>
120
- <circle fill="#383838" r="1.197" cx="18.12" cy="43.2"/>
121
- </g>
122
- <g id="A3pin">
123
- <path fill="#BFBFBF" d="M22.926,14.4c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
124
- <path fill="#E6E6E6" d="M27.713,14.4c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0"/>
125
- <circle fill="#383838" r="1.197" cx="25.32" cy="14.4"/>
126
- </g>
127
- <g id="B3pin">
128
- <path fill="#BFBFBF" d="M22.926,21.6c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
129
- <path fill="#E6E6E6" d="M27.713,21.6c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394"/>
130
- <circle fill="#383838" r="1.197" cx="25.32" cy="21.6"/>
131
- </g>
132
- <g id="C3pin">
133
- <path fill="#BFBFBF" d="M22.926,28.8c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
134
- <path fill="#E6E6E6" d="M27.713,28.8c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0"/>
135
- <circle fill="#383838" r="1.197" cx="25.32" cy="28.8"/>
136
- </g>
137
- <g id="D3pin">
138
- <path fill="#BFBFBF" d="M22.926,36c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
139
- <path fill="#E6E6E6" d="M27.713,36c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394"/>
140
- <circle fill="#383838" r="1.197" cx="25.32" cy="36"/>
141
- </g>
142
- <g id="E3pin">
143
- <path fill="#BFBFBF" d="M22.926,43.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
144
- <path fill="#E6E6E6" d="M27.713,43.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394"/>
145
- <circle fill="#383838" r="1.197" cx="25.32" cy="43.2"/>
146
- </g>
147
- <g id="A4pin">
148
- <path fill="#BFBFBF" d="M30.126,14.4c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394"/>
149
- <path fill="#E6E6E6" d="M34.914,14.4c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394l0,0"/>
150
- <circle fill="#383838" r="1.197" cx="32.52" cy="14.4"/>
151
- </g>
152
- <g id="B4pin">
153
- <path fill="#BFBFBF" d="M30.126,21.6c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394"/>
154
- <path fill="#E6E6E6" d="M34.914,21.6c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394"/>
155
- <circle fill="#383838" r="1.197" cx="32.52" cy="21.6"/>
156
- </g>
157
- <g id="C4pin">
158
- <path fill="#BFBFBF" d="M30.126,28.8c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394"/>
159
- <path fill="#E6E6E6" d="M34.914,28.8c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394l0,0"/>
160
- <circle fill="#383838" r="1.197" cx="32.52" cy="28.8"/>
161
- </g>
162
- <g id="D4pin">
163
- <path fill="#BFBFBF" d="M30.126,36c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394"/>
164
- <path fill="#E6E6E6" d="M34.914,36c0,1.322,-1.072,2.394,-2.394,2.394S30.126,37.322,30.126,36"/>
165
- <circle fill="#383838" r="1.197" cx="32.52" cy="36"/>
166
- </g>
167
- <g id="E4pin">
168
- <path fill="#BFBFBF" d="M30.126,43.2c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394"/>
169
- <path fill="#E6E6E6" d="M34.914,43.2c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394"/>
170
- <circle fill="#383838" r="1.197" cx="32.52" cy="43.2"/>
171
- </g>
172
- <g id="A5pin">
173
- <path fill="#BFBFBF" d="M37.326,14.4c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
174
- <path fill="#E6E6E6" d="M42.114,14.4c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0"/>
175
- <circle fill="#383838" r="1.197" cx="39.72" cy="14.4"/>
176
- </g>
177
- <g id="B5pin">
178
- <path fill="#BFBFBF" d="M37.326,21.6c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
179
- <path fill="#E6E6E6" d="M42.114,21.6c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394"/>
180
- <circle fill="#383838" r="1.197" cx="39.72" cy="21.6"/>
181
- </g>
182
- <g id="C5pin">
183
- <path fill="#BFBFBF" d="M37.326,28.8c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
184
- <path fill="#E6E6E6" d="M42.114,28.8c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0"/>
185
- <circle fill="#383838" r="1.197" cx="39.72" cy="28.8"/>
186
- </g>
187
- <g id="D5pin">
188
- <path fill="#BFBFBF" d="M37.326,36c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
189
- <path fill="#E6E6E6" d="M42.114,36c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394"/>
190
- <circle fill="#383838" r="1.197" cx="39.72" cy="36"/>
191
- </g>
192
- <g id="E5pin">
193
- <path fill="#BFBFBF" d="M37.326,43.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
194
- <path fill="#E6E6E6" d="M42.114,43.2c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394"/>
195
- <circle fill="#383838" r="1.197" cx="39.72" cy="43.2"/>
196
- </g>
197
- <g id="A6pin">
198
- <path fill="#BFBFBF" d="M44.526,14.4c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394"/>
199
- <path fill="#E6E6E6" d="M49.313,14.4c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394l0,0"/>
200
- <circle fill="#383838" r="1.197" cx="46.92" cy="14.4"/>
201
- </g>
202
- <g id="B6pin">
203
- <path fill="#BFBFBF" d="M44.526,21.6c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394"/>
204
- <path fill="#E6E6E6" d="M49.313,21.6c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394"/>
205
- <circle fill="#383838" r="1.197" cx="46.92" cy="21.6"/>
206
- </g>
207
- <g id="C6pin">
208
- <path fill="#BFBFBF" d="M44.526,28.8c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394"/>
209
- <path fill="#E6E6E6" d="M49.313,28.8c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394l0,0"/>
210
- <circle fill="#383838" r="1.197" cx="46.92" cy="28.8"/>
211
- </g>
212
- <g id="D6pin">
213
- <path fill="#BFBFBF" d="M44.526,36c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394"/>
214
- <path fill="#E6E6E6" d="M49.313,36c0,1.322,-1.072,2.394,-2.394,2.394S44.526,37.322,44.526,36"/>
215
- <circle fill="#383838" r="1.197" cx="46.92" cy="36"/>
216
- </g>
217
- <g id="E6pin">
218
- <path fill="#BFBFBF" d="M44.526,43.2c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394"/>
219
- <path fill="#E6E6E6" d="M49.313,43.2c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394"/>
220
- <circle fill="#383838" r="1.197" cx="46.92" cy="43.2"/>
221
- </g>
222
- <g id="A7pin">
223
- <path fill="#BFBFBF" d="M51.727,14.4c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
224
- <path fill="#E6E6E6" d="M56.514,14.4c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0"/>
225
- <circle fill="#383838" r="1.197" cx="54.12" cy="14.4"/>
226
- </g>
227
- <g id="B7pin">
228
- <path fill="#BFBFBF" d="M51.727,21.6c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
229
- <path fill="#E6E6E6" d="M56.514,21.6c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394"/>
230
- <circle fill="#383838" r="1.197" cx="54.12" cy="21.6"/>
231
- </g>
232
- <g id="C7pin">
233
- <path fill="#BFBFBF" d="M51.727,28.8c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
234
- <path fill="#E6E6E6" d="M56.514,28.8c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0"/>
235
- <circle fill="#383838" r="1.197" cx="54.12" cy="28.8"/>
236
- </g>
237
- <g id="D7pin">
238
- <path fill="#BFBFBF" d="M51.727,36c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
239
- <path fill="#E6E6E6" d="M56.514,36c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394"/>
240
- <circle fill="#383838" r="1.197" cx="54.12" cy="36"/>
241
- </g>
242
- <g id="E7pin">
243
- <path fill="#BFBFBF" d="M51.727,43.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
244
- <path fill="#E6E6E6" d="M56.514,43.2c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394"/>
245
- <circle fill="#383838" r="1.197" cx="54.12" cy="43.2"/>
246
- </g>
247
- <g id="A8pin">
248
- <path fill="#BFBFBF" d="M58.926,14.4c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
249
- <path fill="#E6E6E6" d="M63.713,14.4c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0"/>
250
- <circle fill="#383838" r="1.197" cx="61.32" cy="14.4"/>
251
- </g>
252
- <g id="B8pin">
253
- <path fill="#BFBFBF" d="M58.926,21.6c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
254
- <path fill="#E6E6E6" d="M63.713,21.6c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394"/>
255
- <circle fill="#383838" r="1.197" cx="61.32" cy="21.6"/>
256
- </g>
257
- <g id="C8pin">
258
- <path fill="#BFBFBF" d="M58.926,28.8c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
259
- <path fill="#E6E6E6" d="M63.713,28.8c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0"/>
260
- <circle fill="#383838" r="1.197" cx="61.32" cy="28.8"/>
261
- </g>
262
- <g id="D8pin">
263
- <path fill="#BFBFBF" d="M58.926,36c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
264
- <path fill="#E6E6E6" d="M63.713,36c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394"/>
265
- <circle fill="#383838" r="1.197" cx="61.32" cy="36"/>
266
- </g>
267
- <g id="E8pin">
268
- <path fill="#BFBFBF" d="M58.926,43.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
269
- <path fill="#E6E6E6" d="M63.713,43.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394"/>
270
- <circle fill="#383838" r="1.197" cx="61.32" cy="43.2"/>
271
- </g>
272
- <g id="A9pin">
273
- <path fill="#BFBFBF" d="M66.126,14.4c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
274
- <path fill="#E6E6E6" d="M70.914,14.4c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0"/>
275
- <circle fill="#383838" r="1.197" cx="68.52" cy="14.4"/>
276
- </g>
277
- <g id="B9pin">
278
- <path fill="#BFBFBF" d="M66.126,21.6c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
279
- <path fill="#E6E6E6" d="M70.914,21.6c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394"/>
280
- <circle fill="#383838" r="1.197" cx="68.52" cy="21.6"/>
281
- </g>
282
- <g id="C9pin">
283
- <path fill="#BFBFBF" d="M66.126,28.8c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
284
- <path fill="#E6E6E6" d="M70.914,28.8c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0"/>
285
- <circle fill="#383838" r="1.197" cx="68.52" cy="28.8"/>
286
- </g>
287
- <g id="D9pin">
288
- <path fill="#BFBFBF" d="M66.126,36c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
289
- <path fill="#E6E6E6" d="M70.914,36c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394"/>
290
- <circle fill="#383838" r="1.197" cx="68.52" cy="36"/>
291
- </g>
292
- <g id="E9pin">
293
- <path fill="#BFBFBF" d="M66.126,43.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
294
- <path fill="#E6E6E6" d="M70.914,43.2c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394"/>
295
- <circle fill="#383838" r="1.197" cx="68.52" cy="43.2"/>
296
- </g>
297
- <g id="A10pin">
298
- <path fill="#BFBFBF" d="M73.326,14.4c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
299
- <path fill="#E6E6E6" d="M78.113,14.4c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0"/>
300
- <circle fill="#383838" r="1.197" cx="75.72" cy="14.4"/>
301
- </g>
302
- <g id="B10pin">
303
- <path fill="#BFBFBF" d="M73.326,21.6c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
304
- <path fill="#E6E6E6" d="M78.113,21.6c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394"/>
305
- <circle fill="#383838" r="1.197" cx="75.72" cy="21.6"/>
306
- </g>
307
- <g id="C10pin">
308
- <path fill="#BFBFBF" d="M73.326,28.8c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
309
- <path fill="#E6E6E6" d="M78.113,28.8c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0"/>
310
- <circle fill="#383838" r="1.197" cx="75.72" cy="28.8"/>
311
- </g>
312
- <g id="D10pin">
313
- <path fill="#BFBFBF" d="M73.326,36c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
314
- <path fill="#E6E6E6" d="M78.113,36c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394"/>
315
- <circle fill="#383838" r="1.197" cx="75.72" cy="36"/>
316
- </g>
317
- <g id="E10pin">
318
- <path fill="#BFBFBF" d="M73.326,43.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
319
- <path fill="#E6E6E6" d="M78.113,43.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394"/>
320
- <circle fill="#383838" r="1.197" cx="75.72" cy="43.2"/>
321
- </g>
322
- <g id="A11pin">
323
- <path fill="#BFBFBF" d="M80.527,14.4c0,-1.322,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394"/>
324
- <path fill="#E6E6E6" d="M85.314,14.4c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.071,-2.393,-2.394l0,0"/>
325
- <circle fill="#383838" r="1.197" cx="82.919" cy="14.4"/>
326
- </g>
327
- <g id="B11pin">
328
- <path fill="#BFBFBF" d="M80.527,21.6c0,-1.322,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394"/>
329
- <path fill="#E6E6E6" d="M85.314,21.6c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.072,-2.393,-2.394"/>
330
- <circle fill="#383838" r="1.197" cx="82.919" cy="21.6"/>
331
- </g>
332
- <g id="C11pin">
333
- <path fill="#BFBFBF" d="M80.527,28.8c0,-1.322,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394"/>
334
- <path fill="#E6E6E6" d="M85.314,28.8c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.071,-2.393,-2.394l0,0"/>
335
- <circle fill="#383838" r="1.197" cx="82.919" cy="28.8"/>
336
- </g>
337
- <g id="D11pin">
338
- <path fill="#BFBFBF" d="M80.527,36c0,-1.322,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394"/>
339
- <path fill="#E6E6E6" d="M85.314,36c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.072,-2.393,-2.394"/>
340
- <circle fill="#383838" r="1.197" cx="82.919" cy="36"/>
341
- </g>
342
- <g id="E11pin">
343
- <path fill="#BFBFBF" d="M80.527,43.2c0,-1.322,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.071,2.395,2.394"/>
344
- <path fill="#E6E6E6" d="M85.314,43.2c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.072,-2.393,-2.394"/>
345
- <circle fill="#383838" r="1.197" cx="82.919" cy="43.2"/>
346
- </g>
347
- <g id="A12pin">
348
- <path fill="#BFBFBF" d="M87.726,14.4c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
349
- <path fill="#E6E6E6" d="M92.513,14.4c0,1.322,-1.071,2.394,-2.394,2.394c-1.321,0,-2.394,-1.071,-2.394,-2.394l0,0"/>
350
- <circle fill="#383838" r="1.197" cx="90.12" cy="14.4"/>
351
- </g>
352
- <g id="B12pin">
353
- <path fill="#BFBFBF" d="M87.726,21.6c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
354
- <path fill="#E6E6E6" d="M92.513,21.6c0,1.322,-1.071,2.394,-2.394,2.394c-1.321,0,-2.394,-1.072,-2.394,-2.394"/>
355
- <circle fill="#383838" r="1.197" cx="90.12" cy="21.6"/>
356
- </g>
357
- <g id="C12pin">
358
- <path fill="#BFBFBF" d="M87.726,28.8c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
359
- <path fill="#E6E6E6" d="M92.513,28.8c0,1.322,-1.071,2.394,-2.394,2.394c-1.321,0,-2.394,-1.071,-2.394,-2.394l0,0"/>
360
- <circle fill="#383838" r="1.197" cx="90.12" cy="28.8"/>
361
- </g>
362
- <g id="D12pin">
363
- <path fill="#BFBFBF" d="M87.726,36c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
364
- <path fill="#E6E6E6" d="M92.513,36c0,1.322,-1.071,2.394,-2.394,2.394c-1.321,0,-2.394,-1.072,-2.394,-2.394"/>
365
- <circle fill="#383838" r="1.197" cx="90.12" cy="36"/>
366
- </g>
367
- <g id="E12pin">
368
- <path fill="#BFBFBF" d="M87.726,43.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
369
- <path fill="#E6E6E6" d="M92.513,43.2c0,1.322,-1.071,2.394,-2.394,2.394c-1.321,0,-2.394,-1.072,-2.394,-2.394"/>
370
- <circle fill="#383838" r="1.197" cx="90.12" cy="43.2"/>
371
- </g>
372
- <g id="A13pin">
373
- <path fill="#BFBFBF" d="M94.926,14.4c0,-1.322,1.071,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394"/>
374
- <path fill="#E6E6E6" d="M99.713,14.4c0,1.322,-1.071,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394l0,0"/>
375
- <circle fill="#383838" r="1.197" cx="97.32" cy="14.4"/>
376
- </g>
377
- <g id="B13pin">
378
- <path fill="#BFBFBF" d="M94.926,21.6c0,-1.322,1.071,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394"/>
379
- <path fill="#E6E6E6" d="M99.713,21.6c0,1.322,-1.071,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394"/>
380
- <circle fill="#383838" r="1.197" cx="97.32" cy="21.6"/>
381
- </g>
382
- <g id="C13pin">
383
- <path fill="#BFBFBF" d="M94.926,28.8c0,-1.322,1.071,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394"/>
384
- <path fill="#E6E6E6" d="M99.713,28.8c0,1.322,-1.071,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394l0,0"/>
385
- <circle fill="#383838" r="1.197" cx="97.32" cy="28.8"/>
386
- </g>
387
- <g id="D13pin">
388
- <path fill="#BFBFBF" d="M94.926,36c0,-1.322,1.071,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394"/>
389
- <path fill="#E6E6E6" d="M99.713,36c0,1.322,-1.071,2.394,-2.394,2.394S94.926,37.322,94.926,36"/>
390
- <circle fill="#383838" r="1.197" cx="97.32" cy="36"/>
391
- </g>
392
- <g id="E13pin">
393
- <path fill="#BFBFBF" d="M94.926,43.2c0,-1.322,1.071,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394"/>
394
- <path fill="#E6E6E6" d="M99.713,43.2c0,1.322,-1.071,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394"/>
395
- <circle fill="#383838" r="1.197" cx="97.32" cy="43.2"/>
396
- </g>
397
- <g id="A14pin">
398
- <path fill="#BFBFBF" d="M102.126,14.4c0,-1.322,1.071,-2.394,2.394,-2.394c1.321,0,2.394,1.072,2.394,2.394"/>
399
- <path fill="#E6E6E6" d="M106.914,14.4c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0"/>
400
- <circle fill="#383838" r="1.197" cx="104.52" cy="14.4"/>
401
- </g>
402
- <g id="B14pin">
403
- <path fill="#BFBFBF" d="M102.126,21.6c0,-1.322,1.071,-2.394,2.394,-2.394c1.321,0,2.394,1.072,2.394,2.394"/>
404
- <path fill="#E6E6E6" d="M106.914,21.6c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394"/>
405
- <circle fill="#383838" r="1.197" cx="104.52" cy="21.6"/>
406
- </g>
407
- <g id="C14pin">
408
- <path fill="#BFBFBF" d="M102.126,28.8c0,-1.322,1.071,-2.394,2.394,-2.394c1.321,0,2.394,1.072,2.394,2.394"/>
409
- <path fill="#E6E6E6" d="M106.914,28.8c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394l0,0"/>
410
- <circle fill="#383838" r="1.197" cx="104.52" cy="28.8"/>
411
- </g>
412
- <g id="D14pin">
413
- <path fill="#BFBFBF" d="M102.126,36c0,-1.322,1.071,-2.394,2.394,-2.394c1.321,0,2.394,1.072,2.394,2.394"/>
414
- <path fill="#E6E6E6" d="M106.914,36c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394"/>
415
- <circle fill="#383838" r="1.197" cx="104.52" cy="36"/>
416
- </g>
417
- <g id="E14pin">
418
- <path fill="#BFBFBF" d="M102.126,43.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.321,0,2.394,1.071,2.394,2.394"/>
419
- <path fill="#E6E6E6" d="M106.914,43.2c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394"/>
420
- <circle fill="#383838" r="1.197" cx="104.52" cy="43.2"/>
421
- </g>
422
- <g id="A15pin">
423
- <path fill="#BFBFBF" d="M109.326,14.4c0.002,-1.322,1.076,-2.392,2.398,-2.39c1.318,0.002,2.387,1.071,2.389,2.39"/>
424
- <path fill="#E6E6E6" d="M114.113,14.4c0.002,1.322,-1.067,2.396,-2.389,2.397c-1.322,0.002,-2.396,-1.068,-2.398,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
425
- <circle fill="#383838" r="1.197" cx="111.72" cy="14.4"/>
426
- </g>
427
- <g id="B15pin">
428
- <path fill="#BFBFBF" d="M109.326,21.6c0.002,-1.322,1.076,-2.392,2.398,-2.39c1.318,0.002,2.387,1.071,2.389,2.39"/>
429
- <path fill="#E6E6E6" d="M114.113,21.6c0.002,1.322,-1.067,2.395,-2.389,2.397c-1.322,0.002,-2.396,-1.068,-2.398,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
430
- <circle fill="#383838" r="1.197" cx="111.72" cy="21.6"/>
431
- </g>
432
- <g id="C15pin">
433
- <path fill="#BFBFBF" d="M109.326,28.8c0.002,-1.322,1.076,-2.392,2.398,-2.39c1.318,0.002,2.387,1.071,2.389,2.39"/>
434
- <path fill="#E6E6E6" d="M114.113,28.8c0.002,1.322,-1.067,2.396,-2.389,2.397c-1.322,0.002,-2.396,-1.068,-2.398,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
435
- <circle fill="#383838" r="1.197" cx="111.72" cy="28.8"/>
436
- </g>
437
- <g id="D15pin">
438
- <path fill="#BFBFBF" d="M109.326,36c0.002,-1.322,1.076,-2.392,2.398,-2.39c1.318,0.002,2.387,1.071,2.389,2.39"/>
439
- <path fill="#E6E6E6" d="M114.113,36c0.002,1.322,-1.067,2.395,-2.389,2.397c-1.322,0.002,-2.396,-1.068,-2.398,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
440
- <circle fill="#383838" r="1.197" cx="111.72" cy="36"/>
441
- </g>
442
- <g id="E15pin">
443
- <path fill="#BFBFBF" d="M109.326,43.2c0.002,-1.322,1.076,-2.392,2.398,-2.39c1.318,0.002,2.387,1.071,2.389,2.39"/>
444
- <path fill="#E6E6E6" d="M114.113,43.2c0.002,1.322,-1.067,2.395,-2.389,2.397c-1.322,0.002,-2.396,-1.068,-2.398,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
445
- <circle fill="#383838" r="1.197" cx="111.72" cy="43.2"/>
446
- </g>
447
- <g id="A16pin">
448
- <path fill="#BFBFBF" d="M116.527,14.4c0.002,-1.322,1.074,-2.392,2.396,-2.39c1.319,0.002,2.389,1.071,2.391,2.39"/>
449
- <path fill="#E6E6E6" d="M121.314,14.4c0.002,1.322,-1.068,2.396,-2.391,2.397s-2.395,-1.068,-2.396,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
450
- <circle fill="#383838" r="1.197" cx="118.919" cy="14.4"/>
451
- </g>
452
- <g id="B16pin">
453
- <path fill="#BFBFBF" d="M116.527,21.6c0.002,-1.322,1.074,-2.392,2.396,-2.39c1.319,0.002,2.389,1.071,2.391,2.39"/>
454
- <path fill="#E6E6E6" d="M121.314,21.6c0.002,1.322,-1.068,2.395,-2.391,2.397s-2.395,-1.068,-2.396,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
455
- <circle fill="#383838" r="1.197" cx="118.919" cy="21.6"/>
456
- </g>
457
- <g id="C16pin">
458
- <path fill="#BFBFBF" d="M116.527,28.8c0.002,-1.322,1.074,-2.392,2.396,-2.39c1.319,0.002,2.389,1.071,2.391,2.39"/>
459
- <path fill="#E6E6E6" d="M121.314,28.8c0.002,1.322,-1.068,2.396,-2.391,2.397s-2.395,-1.068,-2.396,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
460
- <circle fill="#383838" r="1.197" cx="118.919" cy="28.8"/>
461
- </g>
462
- <g id="D16pin">
463
- <path fill="#BFBFBF" d="M116.527,36c0.002,-1.322,1.074,-2.392,2.396,-2.39c1.319,0.002,2.389,1.071,2.391,2.39"/>
464
- <path fill="#E6E6E6" d="M121.314,36c0.002,1.322,-1.068,2.395,-2.391,2.397c-1.322,0.002,-2.395,-1.068,-2.396,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
465
- <circle fill="#383838" r="1.197" cx="118.919" cy="36"/>
466
- </g>
467
- <g id="E16pin">
468
- <path fill="#BFBFBF" d="M116.527,43.2c0.002,-1.322,1.074,-2.392,2.396,-2.39c1.319,0.002,2.389,1.071,2.391,2.39"/>
469
- <path fill="#E6E6E6" d="M121.314,43.2c0.002,1.322,-1.068,2.395,-2.391,2.397s-2.395,-1.068,-2.396,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
470
- <circle fill="#383838" r="1.197" cx="118.919" cy="43.2"/>
471
- </g>
472
- <g id="A17pin">
473
- <path fill="#BFBFBF" d="M123.726,14.4c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39"/>
474
- <path fill="#E6E6E6" d="M128.513,14.4c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
475
- <circle fill="#383838" r="1.197" cx="126.12" cy="14.4"/>
476
- </g>
477
- <g id="B17pin">
478
- <path fill="#BFBFBF" d="M123.726,21.6c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39"/>
479
- <path fill="#E6E6E6" d="M128.513,21.6c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
480
- <circle fill="#383838" r="1.197" cx="126.12" cy="21.6"/>
481
- </g>
482
- <g id="C17pin">
483
- <path fill="#BFBFBF" d="M123.726,28.8c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39"/>
484
- <path fill="#E6E6E6" d="M128.513,28.8c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
485
- <circle fill="#383838" r="1.197" cx="126.12" cy="28.8"/>
486
- </g>
487
- <g id="D17pin">
488
- <path fill="#BFBFBF" d="M123.726,36c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39"/>
489
- <path fill="#E6E6E6" d="M128.513,36c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
490
- <circle fill="#383838" r="1.197" cx="126.12" cy="36"/>
491
- </g>
492
- <g id="E17pin">
493
- <path fill="#BFBFBF" d="M123.726,43.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39"/>
494
- <path fill="#E6E6E6" d="M128.513,43.2c0.002,1.322,-1.068,2.395,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
495
- <circle fill="#383838" r="1.197" cx="126.12" cy="43.2"/>
496
- </g>
497
- <g id="A18pin">
498
- <path fill="#BFBFBF" d="M130.926,14.4c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.318,0.002,2.388,1.071,2.39,2.39"/>
499
- <path fill="#E6E6E6" d="M135.713,14.4c0.002,1.322,-1.067,2.396,-2.39,2.397s-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
500
- <circle fill="#383838" r="1.197" cx="133.32" cy="14.4"/>
501
- </g>
502
- <g id="B18pin">
503
- <path fill="#BFBFBF" d="M130.926,21.6c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.318,0.002,2.388,1.071,2.39,2.39"/>
504
- <path fill="#E6E6E6" d="M135.713,21.6c0.002,1.322,-1.067,2.395,-2.39,2.397s-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
505
- <circle fill="#383838" r="1.197" cx="133.32" cy="21.6"/>
506
- </g>
507
- <g id="C18pin">
508
- <path fill="#BFBFBF" d="M130.926,28.8c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.318,0.002,2.388,1.071,2.39,2.39"/>
509
- <path fill="#E6E6E6" d="M135.713,28.8c0.002,1.322,-1.067,2.396,-2.39,2.397s-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
510
- <circle fill="#383838" r="1.197" cx="133.32" cy="28.8"/>
511
- </g>
512
- <g id="D18pin">
513
- <path fill="#BFBFBF" d="M130.926,36c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.318,0.002,2.388,1.071,2.39,2.39"/>
514
- <path fill="#E6E6E6" d="M135.713,36c0.002,1.322,-1.067,2.395,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
515
- <circle fill="#383838" r="1.197" cx="133.32" cy="36"/>
516
- </g>
517
- <g id="E18pin">
518
- <path fill="#BFBFBF" d="M130.926,43.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.318,0.002,2.388,1.071,2.39,2.39"/>
519
- <path fill="#E6E6E6" d="M135.713,43.2c0.002,1.322,-1.067,2.395,-2.39,2.397s-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
520
- <circle fill="#383838" r="1.197" cx="133.32" cy="43.2"/>
521
- </g>
522
- <g id="A19pin">
523
- <path fill="#BFBFBF" d="M138.126,14.4c0.002,-1.322,1.075,-2.392,2.396,-2.39c1.319,0.002,2.389,1.071,2.391,2.39"/>
524
- <path fill="#E6E6E6" d="M142.914,14.4c0.002,1.322,-1.068,2.396,-2.391,2.397c-1.321,0.002,-2.395,-1.068,-2.396,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
525
- <circle fill="#383838" r="1.197" cx="140.52" cy="14.4"/>
526
- </g>
527
- <g id="B19pin">
528
- <path fill="#BFBFBF" d="M138.126,21.6c0.002,-1.322,1.075,-2.392,2.396,-2.39c1.319,0.002,2.389,1.071,2.391,2.39"/>
529
- <path fill="#E6E6E6" d="M142.914,21.6c0.002,1.322,-1.068,2.395,-2.391,2.397c-1.321,0.002,-2.395,-1.068,-2.396,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
530
- <circle fill="#383838" r="1.197" cx="140.52" cy="21.6"/>
531
- </g>
532
- <g id="C19pin">
533
- <path fill="#BFBFBF" d="M138.126,28.8c0.002,-1.322,1.075,-2.392,2.396,-2.39c1.319,0.002,2.389,1.071,2.391,2.39"/>
534
- <path fill="#E6E6E6" d="M142.914,28.8c0.002,1.322,-1.068,2.396,-2.391,2.397c-1.321,0.002,-2.395,-1.068,-2.396,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
535
- <circle fill="#383838" r="1.197" cx="140.52" cy="28.8"/>
536
- </g>
537
- <g id="D19pin">
538
- <path fill="#BFBFBF" d="M138.126,36c0.002,-1.322,1.075,-2.392,2.396,-2.39c1.319,0.002,2.389,1.071,2.391,2.39"/>
539
- <path fill="#E6E6E6" d="M142.914,36c0.002,1.322,-1.068,2.395,-2.391,2.397c-1.321,0.002,-2.395,-1.068,-2.396,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
540
- <circle fill="#383838" r="1.197" cx="140.52" cy="36"/>
541
- </g>
542
- <g id="E19pin">
543
- <path fill="#BFBFBF" d="M138.126,43.2c0.002,-1.322,1.075,-2.392,2.396,-2.39c1.319,0.002,2.389,1.071,2.391,2.39"/>
544
- <path fill="#E6E6E6" d="M142.914,43.2c0.002,1.322,-1.068,2.395,-2.391,2.397c-1.321,0.002,-2.395,-1.068,-2.396,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
545
- <circle fill="#383838" r="1.197" cx="140.52" cy="43.2"/>
546
- </g>
547
- <g id="A20pin">
548
- <path fill="#BFBFBF" d="M145.326,14.4c0.002,-1.322,1.076,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39"/>
549
- <path fill="#E6E6E6" d="M150.113,14.4c0.002,1.322,-1.067,2.396,-2.39,2.397c-1.321,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
550
- <circle fill="#383838" r="1.197" cx="147.72" cy="14.4"/>
551
- </g>
552
- <g id="B20pin">
553
- <path fill="#BFBFBF" d="M145.326,21.6c0.002,-1.322,1.076,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39"/>
554
- <path fill="#E6E6E6" d="M150.113,21.6c0.002,1.322,-1.067,2.395,-2.39,2.397c-1.321,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
555
- <circle fill="#383838" r="1.197" cx="147.72" cy="21.6"/>
556
- </g>
557
- <g id="C20pin">
558
- <path fill="#BFBFBF" d="M145.326,28.8c0.002,-1.322,1.076,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39"/>
559
- <path fill="#E6E6E6" d="M150.113,28.8c0.002,1.322,-1.067,2.396,-2.39,2.397c-1.321,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
560
- <circle fill="#383838" r="1.197" cx="147.72" cy="28.8"/>
561
- </g>
562
- <g id="D20pin">
563
- <path fill="#BFBFBF" d="M145.326,36c0.002,-1.322,1.076,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39"/>
564
- <path fill="#E6E6E6" d="M150.113,36c0.002,1.322,-1.067,2.395,-2.39,2.397c-1.321,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
565
- <circle fill="#383838" r="1.197" cx="147.72" cy="36"/>
566
- </g>
567
- <g id="E20pin">
568
- <path fill="#BFBFBF" d="M145.326,43.2c0.002,-1.322,1.076,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39"/>
569
- <path fill="#E6E6E6" d="M150.113,43.2c0.002,1.322,-1.067,2.395,-2.39,2.397c-1.321,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
570
- <circle fill="#383838" r="1.197" cx="147.72" cy="43.2"/>
571
- </g>
572
- <g id="F1pin">
573
- <path fill="#BFBFBF" d="M8.526,64.8c0,-1.321,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394"/>
574
- <path fill="#E6E6E6" d="M13.313,64.8c0,1.322,-1.072,2.394,-2.394,2.394S8.526,66.122,8.526,64.8l0,0"/>
575
- <circle fill="#383838" r="1.196" cx="10.92" cy="64.8"/>
576
- </g>
577
- <g id="G1pin">
578
- <path fill="#BFBFBF" d="M8.526,72c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394"/>
579
- <path fill="#E6E6E6" d="M13.313,72c0,1.322,-1.072,2.394,-2.394,2.394S8.526,73.322,8.526,72l0,0"/>
580
- <circle fill="#383838" r="1.197" cx="10.92" cy="72"/>
581
- </g>
582
- <g id="H1pin">
583
- <path fill="#BFBFBF" d="M8.526,79.2c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394"/>
584
- <path fill="#E6E6E6" d="M13.313,79.2c0,1.321,-1.072,2.394,-2.394,2.394S8.526,80.521,8.526,79.2"/>
585
- <circle fill="#383838" r="1.197" cx="10.92" cy="79.2"/>
586
- </g>
587
- <g id="I1pin">
588
- <path fill="#BFBFBF" d="M8.526,86.4c0,-1.322,1.072,-2.395,2.394,-2.395s2.394,1.072,2.394,2.395"/>
589
- <path fill="#E6E6E6" d="M13.313,86.4c0,1.321,-1.072,2.393,-2.394,2.393S8.526,87.722,8.526,86.4l0,0"/>
590
- <circle fill="#383838" r="1.197" cx="10.92" cy="86.4"/>
591
- </g>
592
- <g id="J1pin">
593
- <path fill="#BFBFBF" d="M8.526,93.6c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394"/>
594
- <path fill="#E6E6E6" d="M13.313,93.6c0,1.322,-1.072,2.395,-2.394,2.395S8.526,94.922,8.526,93.6l0,0"/>
595
- <circle fill="#383838" r="1.197" cx="10.92" cy="93.6"/>
596
- </g>
597
- <g id="F2pin">
598
- <path fill="#BFBFBF" d="M15.727,64.8c0,-1.321,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
599
- <path fill="#E6E6E6" d="M20.514,64.8c0,1.322,-1.07,2.395,-2.393,2.396c-1.322,0,-2.394,-1.07,-2.395,-2.393c0,-0.001,0,-0.002,0,-0.003"/>
600
- <circle fill="#383838" r="1.196" cx="18.12" cy="64.8"/>
601
- </g>
602
- <g id="G2pin">
603
- <path fill="#BFBFBF" d="M15.727,72c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
604
- <path fill="#E6E6E6" d="M20.514,72c0,1.322,-1.07,2.395,-2.393,2.395c-1.322,0.001,-2.394,-1.07,-2.395,-2.393c0,0,0,-0.001,0,-0.002"/>
605
- <circle fill="#383838" r="1.197" cx="18.12" cy="72"/>
606
- </g>
607
- <g id="H2pin">
608
- <path fill="#BFBFBF" d="M15.727,79.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
609
- <path fill="#E6E6E6" d="M20.514,79.2c0,1.321,-1.07,2.394,-2.393,2.395c-1.322,0.001,-2.394,-1.07,-2.395,-2.392c0,-0.002,0,-0.002,0,-0.003"/>
610
- <circle fill="#383838" r="1.197" cx="18.12" cy="79.2"/>
611
- </g>
612
- <g id="I2pin">
613
- <path fill="#BFBFBF" d="M15.727,86.4c0,-1.322,1.071,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395"/>
614
- <path fill="#E6E6E6" d="M20.514,86.4c0,1.321,-1.07,2.394,-2.393,2.395c-1.322,0,-2.394,-1.07,-2.395,-2.393L15.726,86.4"/>
615
- <circle fill="#383838" r="1.197" cx="18.12" cy="86.4"/>
616
- </g>
617
- <g id="J2pin">
618
- <path fill="#BFBFBF" d="M15.727,93.6c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
619
- <path fill="#E6E6E6" d="M20.514,93.6c0,1.322,-1.07,2.395,-2.393,2.396c-1.322,0.001,-2.394,-1.071,-2.395,-2.393c0,-0.001,0,-0.002,0,-0.003"/>
620
- <circle fill="#383838" r="1.197" cx="18.12" cy="93.6"/>
621
- </g>
622
- <g id="F3pin">
623
- <path fill="#BFBFBF" d="M22.926,64.8c0,-1.321,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
624
- <path fill="#E6E6E6" d="M27.713,64.8c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394"/>
625
- <circle fill="#383838" r="1.196" cx="25.32" cy="64.8"/>
626
- </g>
627
- <g id="G3pin">
628
- <path fill="#BFBFBF" d="M22.926,72c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
629
- <path fill="#E6E6E6" d="M27.713,72c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394"/>
630
- <circle fill="#383838" r="1.197" cx="25.32" cy="72"/>
631
- </g>
632
- <g id="H3pin">
633
- <path fill="#BFBFBF" d="M22.926,79.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
634
- <path fill="#E6E6E6" d="M27.713,79.2c0,1.321,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0"/>
635
- <circle fill="#383838" r="1.197" cx="25.32" cy="79.2"/>
636
- </g>
637
- <g id="I3pin">
638
- <path fill="#BFBFBF" d="M22.926,86.4c0,-1.322,1.072,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395"/>
639
- <path fill="#E6E6E6" d="M27.713,86.4c0,1.321,-1.071,2.393,-2.394,2.393c-1.322,0,-2.394,-1.071,-2.394,-2.393"/>
640
- <circle fill="#383838" r="1.197" cx="25.32" cy="86.4"/>
641
- </g>
642
- <g id="J3pin">
643
- <path fill="#BFBFBF" d="M22.926,93.6c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
644
- <path fill="#E6E6E6" d="M27.713,93.6c0,1.322,-1.071,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395l0,0"/>
645
- <circle fill="#383838" r="1.197" cx="25.32" cy="93.6"/>
646
- </g>
647
- <g id="F4pin">
648
- <path fill="#BFBFBF" d="M30.126,64.8c0,-1.321,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394"/>
649
- <path fill="#E6E6E6" d="M34.914,64.8c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394"/>
650
- <circle fill="#383838" r="1.196" cx="32.52" cy="64.8"/>
651
- </g>
652
- <g id="G4pin">
653
- <path fill="#BFBFBF" d="M30.126,72c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394"/>
654
- <path fill="#E6E6E6" d="M34.914,72c0,1.322,-1.072,2.394,-2.394,2.394S30.126,73.322,30.126,72"/>
655
- <circle fill="#383838" r="1.197" cx="32.52" cy="72"/>
656
- </g>
657
- <g id="H4pin">
658
- <path fill="#BFBFBF" d="M30.126,79.2c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394"/>
659
- <path fill="#E6E6E6" d="M34.914,79.2c0,1.321,-1.072,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394l0,0"/>
660
- <circle fill="#383838" r="1.197" cx="32.52" cy="79.2"/>
661
- </g>
662
- <g id="I4pin">
663
- <path fill="#BFBFBF" d="M30.126,86.4c0,-1.322,1.072,-2.395,2.394,-2.395s2.394,1.072,2.394,2.395"/>
664
- <path fill="#E6E6E6" d="M34.914,86.4c0,1.321,-1.072,2.393,-2.394,2.393s-2.394,-1.071,-2.394,-2.393"/>
665
- <circle fill="#383838" r="1.197" cx="32.52" cy="86.4"/>
666
- </g>
667
- <g id="J4pin">
668
- <path fill="#BFBFBF" d="M30.126,93.6c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394"/>
669
- <path fill="#E6E6E6" d="M34.914,93.6c0,1.322,-1.072,2.395,-2.394,2.395s-2.394,-1.072,-2.394,-2.395l0,0"/>
670
- <circle fill="#383838" r="1.197" cx="32.52" cy="93.6"/>
671
- </g>
672
- <g id="F5pin">
673
- <path fill="#BFBFBF" d="M37.326,64.8c0,-1.321,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
674
- <path fill="#E6E6E6" d="M42.114,64.8c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394"/>
675
- <circle fill="#383838" r="1.196" cx="39.72" cy="64.8"/>
676
- </g>
677
- <g id="G5pin">
678
- <path fill="#BFBFBF" d="M37.326,72c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
679
- <path fill="#E6E6E6" d="M42.114,72c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394"/>
680
- <circle fill="#383838" r="1.197" cx="39.72" cy="72"/>
681
- </g>
682
- <g id="H5pin">
683
- <path fill="#BFBFBF" d="M37.326,79.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
684
- <path fill="#E6E6E6" d="M42.114,79.2c0,1.321,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0"/>
685
- <circle fill="#383838" r="1.197" cx="39.72" cy="79.2"/>
686
- </g>
687
- <g id="I5pin">
688
- <path fill="#BFBFBF" d="M37.326,86.4c0,-1.322,1.072,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395"/>
689
- <path fill="#E6E6E6" d="M42.114,86.4c0,1.321,-1.072,2.393,-2.394,2.393c-1.322,0,-2.394,-1.071,-2.394,-2.393"/>
690
- <circle fill="#383838" r="1.197" cx="39.72" cy="86.4"/>
691
- </g>
692
- <g id="J5pin">
693
- <path fill="#BFBFBF" d="M37.326,93.6c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
694
- <path fill="#E6E6E6" d="M42.114,93.6c0,1.322,-1.072,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395l0,0"/>
695
- <circle fill="#383838" r="1.197" cx="39.72" cy="93.6"/>
696
- </g>
697
- <g id="F6pin">
698
- <path fill="#BFBFBF" d="M44.526,64.8c0,-1.321,1.072,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394"/>
699
- <path fill="#E6E6E6" d="M49.313,64.8c0,1.322,-1.072,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394"/>
700
- <circle fill="#383838" r="1.196" cx="46.92" cy="64.8"/>
701
- </g>
702
- <g id="G6pin">
703
- <path fill="#BFBFBF" d="M44.526,72c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394"/>
704
- <path fill="#E6E6E6" d="M49.313,72c0,1.322,-1.072,2.394,-2.394,2.394S44.526,73.322,44.526,72"/>
705
- <circle fill="#383838" r="1.197" cx="46.92" cy="72"/>
706
- </g>
707
- <g id="H6pin">
708
- <path fill="#BFBFBF" d="M44.526,79.2c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394"/>
709
- <path fill="#E6E6E6" d="M49.313,79.2c0,1.321,-1.072,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394l0,0"/>
710
- <circle fill="#383838" r="1.197" cx="46.92" cy="79.2"/>
711
- </g>
712
- <g id="I6pin">
713
- <path fill="#BFBFBF" d="M44.526,86.4c0,-1.322,1.072,-2.395,2.394,-2.395s2.394,1.072,2.394,2.395"/>
714
- <path fill="#E6E6E6" d="M49.313,86.4c0,1.321,-1.072,2.393,-2.394,2.393s-2.394,-1.071,-2.394,-2.393"/>
715
- <circle fill="#383838" r="1.197" cx="46.92" cy="86.4"/>
716
- </g>
717
- <g id="J6pin">
718
- <path fill="#BFBFBF" d="M44.526,93.6c0,-1.322,1.072,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394"/>
719
- <path fill="#E6E6E6" d="M49.313,93.6c0,1.322,-1.072,2.395,-2.394,2.395s-2.394,-1.072,-2.394,-2.395l0,0"/>
720
- <circle fill="#383838" r="1.197" cx="46.92" cy="93.6"/>
721
- </g>
722
- <g id="F7pin">
723
- <path fill="#BFBFBF" d="M51.727,64.8c0,-1.321,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
724
- <path fill="#E6E6E6" d="M56.514,64.8c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394"/>
725
- <circle fill="#383838" r="1.196" cx="54.12" cy="64.8"/>
726
- </g>
727
- <g id="G7pin">
728
- <path fill="#BFBFBF" d="M51.727,72c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
729
- <path fill="#E6E6E6" d="M56.514,72c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394"/>
730
- <circle fill="#383838" r="1.197" cx="54.12" cy="72"/>
731
- </g>
732
- <g id="H7pin">
733
- <path fill="#BFBFBF" d="M51.727,79.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
734
- <path fill="#E6E6E6" d="M56.514,79.2c0,1.321,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0"/>
735
- <circle fill="#383838" r="1.197" cx="54.12" cy="79.2"/>
736
- </g>
737
- <g id="I7pin">
738
- <path fill="#BFBFBF" d="M51.727,86.4c0,-1.322,1.071,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395"/>
739
- <path fill="#E6E6E6" d="M56.514,86.4c0,1.321,-1.072,2.393,-2.394,2.393c-1.322,0,-2.394,-1.071,-2.394,-2.393"/>
740
- <circle fill="#383838" r="1.197" cx="54.12" cy="86.4"/>
741
- </g>
742
- <g id="J7pin">
743
- <path fill="#BFBFBF" d="M51.727,93.6c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
744
- <path fill="#E6E6E6" d="M56.514,93.6c0,1.322,-1.072,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395l0,0"/>
745
- <circle fill="#383838" r="1.197" cx="54.12" cy="93.6"/>
746
- </g>
747
- <g id="F8pin">
748
- <path fill="#BFBFBF" d="M58.926,64.8c0,-1.321,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
749
- <path fill="#E6E6E6" d="M63.713,64.8c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394"/>
750
- <circle fill="#383838" r="1.196" cx="61.32" cy="64.8"/>
751
- </g>
752
- <g id="G8pin">
753
- <path fill="#BFBFBF" d="M58.926,72c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
754
- <path fill="#E6E6E6" d="M63.713,72c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394"/>
755
- <circle fill="#383838" r="1.197" cx="61.32" cy="72"/>
756
- </g>
757
- <g id="H8pin">
758
- <path fill="#BFBFBF" d="M58.926,79.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
759
- <path fill="#E6E6E6" d="M63.713,79.2c0,1.321,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0"/>
760
- <circle fill="#383838" r="1.197" cx="61.32" cy="79.2"/>
761
- </g>
762
- <g id="I8pin">
763
- <path fill="#BFBFBF" d="M58.926,86.4c0,-1.322,1.072,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395"/>
764
- <path fill="#E6E6E6" d="M63.713,86.4c0,1.321,-1.071,2.393,-2.394,2.393c-1.322,0,-2.394,-1.071,-2.394,-2.393"/>
765
- <circle fill="#383838" r="1.197" cx="61.32" cy="86.4"/>
766
- </g>
767
- <g id="J8pin">
768
- <path fill="#BFBFBF" d="M58.926,93.6c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
769
- <path fill="#E6E6E6" d="M63.713,93.6c0,1.322,-1.071,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395l0,0"/>
770
- <circle fill="#383838" r="1.197" cx="61.32" cy="93.6"/>
771
- </g>
772
- <g id="F9pin">
773
- <path fill="#BFBFBF" d="M66.126,64.8c0,-1.321,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
774
- <path fill="#E6E6E6" d="M70.914,64.8c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394"/>
775
- <circle fill="#383838" r="1.196" cx="68.52" cy="64.8"/>
776
- </g>
777
- <g id="G9pin">
778
- <path fill="#BFBFBF" d="M66.126,72c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
779
- <path fill="#E6E6E6" d="M70.914,72c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394"/>
780
- <circle fill="#383838" r="1.197" cx="68.52" cy="72"/>
781
- </g>
782
- <g id="H9pin">
783
- <path fill="#BFBFBF" d="M66.126,79.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
784
- <path fill="#E6E6E6" d="M70.914,79.2c0,1.321,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0"/>
785
- <circle fill="#383838" r="1.197" cx="68.52" cy="79.2"/>
786
- </g>
787
- <g id="I9pin">
788
- <path fill="#BFBFBF" d="M66.126,86.4c0,-1.322,1.071,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395"/>
789
- <path fill="#E6E6E6" d="M70.914,86.4c0,1.321,-1.072,2.393,-2.394,2.393c-1.322,0,-2.394,-1.071,-2.394,-2.393"/>
790
- <circle fill="#383838" r="1.197" cx="68.52" cy="86.4"/>
791
- </g>
792
- <g id="J9pin">
793
- <path fill="#BFBFBF" d="M66.126,93.6c0,-1.322,1.071,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
794
- <path fill="#E6E6E6" d="M70.914,93.6c0,1.322,-1.072,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395l0,0"/>
795
- <circle fill="#383838" r="1.197" cx="68.52" cy="93.6"/>
796
- </g>
797
- <g id="F10pin">
798
- <path fill="#BFBFBF" d="M73.326,64.8c0,-1.321,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
799
- <path fill="#E6E6E6" d="M78.113,64.8c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394"/>
800
- <circle fill="#383838" r="1.196" cx="75.72" cy="64.8"/>
801
- </g>
802
- <g id="G10pin">
803
- <path fill="#BFBFBF" d="M73.326,72c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
804
- <path fill="#E6E6E6" d="M78.113,72c0,1.322,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394"/>
805
- <circle fill="#383838" r="1.197" cx="75.72" cy="72"/>
806
- </g>
807
- <g id="H10pin">
808
- <path fill="#BFBFBF" d="M73.326,79.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
809
- <path fill="#E6E6E6" d="M78.113,79.2c0,1.321,-1.071,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0"/>
810
- <circle fill="#383838" r="1.197" cx="75.72" cy="79.2"/>
811
- </g>
812
- <g id="I10pin">
813
- <path fill="#BFBFBF" d="M73.326,86.4c0,-1.322,1.072,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395"/>
814
- <path fill="#E6E6E6" d="M78.113,86.4c0,1.321,-1.071,2.393,-2.394,2.393c-1.322,0,-2.394,-1.071,-2.394,-2.393"/>
815
- <circle fill="#383838" r="1.197" cx="75.72" cy="86.4"/>
816
- </g>
817
- <g id="J10pin">
818
- <path fill="#BFBFBF" d="M73.326,93.6c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
819
- <path fill="#E6E6E6" d="M78.113,93.6c0,1.322,-1.071,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395l0,0"/>
820
- <circle fill="#383838" r="1.197" cx="75.72" cy="93.6"/>
821
- </g>
822
- <g id="F11pin">
823
- <path fill="#BFBFBF" d="M80.527,64.8c0,-1.321,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.072,2.395,2.394"/>
824
- <path fill="#E6E6E6" d="M85.314,64.8c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.071,-2.393,-2.394"/>
825
- <circle fill="#383838" r="1.196" cx="82.919" cy="64.8"/>
826
- </g>
827
- <g id="G11pin">
828
- <path fill="#BFBFBF" d="M80.527,72c0,-1.322,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.071,2.395,2.394"/>
829
- <path fill="#E6E6E6" d="M85.314,72c0,1.322,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.071,-2.393,-2.394"/>
830
- <circle fill="#383838" r="1.197" cx="82.919" cy="72"/>
831
- </g>
832
- <g id="H11pin">
833
- <path fill="#BFBFBF" d="M80.527,79.2c0,-1.322,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.071,2.395,2.394"/>
834
- <path fill="#E6E6E6" d="M85.314,79.2c0,1.321,-1.072,2.394,-2.395,2.394c-1.321,0,-2.393,-1.072,-2.393,-2.394l0,0"/>
835
- <circle fill="#383838" r="1.197" cx="82.919" cy="79.2"/>
836
- </g>
837
- <g id="I11pin">
838
- <path fill="#BFBFBF" d="M80.527,86.4c0,-1.322,1.071,-2.395,2.393,-2.395c1.322,0,2.395,1.072,2.395,2.395"/>
839
- <path fill="#E6E6E6" d="M85.314,86.4c0,1.321,-1.072,2.393,-2.395,2.393c-1.321,0,-2.393,-1.071,-2.393,-2.393"/>
840
- <circle fill="#383838" r="1.197" cx="82.919" cy="86.4"/>
841
- </g>
842
- <g id="J11pin">
843
- <path fill="#BFBFBF" d="M80.527,93.6c0,-1.322,1.071,-2.394,2.393,-2.394c1.322,0,2.395,1.071,2.395,2.394"/>
844
- <path fill="#E6E6E6" d="M85.314,93.6c0,1.322,-1.072,2.395,-2.395,2.395c-1.321,0,-2.393,-1.072,-2.393,-2.395l0,0"/>
845
- <circle fill="#383838" r="1.197" cx="82.919" cy="93.6"/>
846
- </g>
847
- <g id="F12pin">
848
- <path fill="#BFBFBF" d="M87.726,64.8c0,-1.321,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.072,2.394,2.394"/>
849
- <path fill="#E6E6E6" d="M92.513,64.8c0,1.322,-1.071,2.394,-2.394,2.394c-1.321,0,-2.394,-1.071,-2.394,-2.394"/>
850
- <circle fill="#383838" r="1.196" cx="90.12" cy="64.8"/>
851
- </g>
852
- <g id="G12pin">
853
- <path fill="#BFBFBF" d="M87.726,72c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
854
- <path fill="#E6E6E6" d="M92.513,72c0,1.322,-1.071,2.394,-2.394,2.394c-1.321,0,-2.394,-1.071,-2.394,-2.394"/>
855
- <circle fill="#383838" r="1.197" cx="90.12" cy="72"/>
856
- </g>
857
- <g id="H12pin">
858
- <path fill="#BFBFBF" d="M87.726,79.2c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
859
- <path fill="#E6E6E6" d="M92.513,79.2c0,1.321,-1.071,2.394,-2.394,2.394c-1.321,0,-2.394,-1.072,-2.394,-2.394l0,0"/>
860
- <circle fill="#383838" r="1.197" cx="90.12" cy="79.2"/>
861
- </g>
862
- <g id="I12pin">
863
- <path fill="#BFBFBF" d="M87.726,86.4c0,-1.322,1.072,-2.395,2.394,-2.395c1.322,0,2.394,1.072,2.394,2.395"/>
864
- <path fill="#E6E6E6" d="M92.513,86.4c0,1.321,-1.071,2.393,-2.394,2.393c-1.321,0,-2.394,-1.071,-2.394,-2.393"/>
865
- <circle fill="#383838" r="1.197" cx="90.12" cy="86.4"/>
866
- </g>
867
- <g id="J12pin">
868
- <path fill="#BFBFBF" d="M87.726,93.6c0,-1.322,1.072,-2.394,2.394,-2.394c1.322,0,2.394,1.071,2.394,2.394"/>
869
- <path fill="#E6E6E6" d="M92.513,93.6c0,1.322,-1.071,2.395,-2.394,2.395c-1.321,0,-2.394,-1.072,-2.394,-2.395l0,0"/>
870
- <circle fill="#383838" r="1.197" cx="90.12" cy="93.6"/>
871
- </g>
872
- <g id="F13pin">
873
- <path fill="#BFBFBF" d="M94.926,64.8c0,-1.321,1.071,-2.394,2.394,-2.394s2.394,1.072,2.394,2.394"/>
874
- <path fill="#E6E6E6" d="M99.713,64.8c0,1.322,-1.071,2.394,-2.394,2.394s-2.394,-1.071,-2.394,-2.394"/>
875
- <circle fill="#383838" r="1.196" cx="97.32" cy="64.8"/>
876
- </g>
877
- <g id="G13pin">
878
- <path fill="#BFBFBF" d="M94.926,72c0,-1.322,1.071,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394"/>
879
- <path fill="#E6E6E6" d="M99.713,72c0,1.322,-1.071,2.394,-2.394,2.394S94.926,73.322,94.926,72"/>
880
- <circle fill="#383838" r="1.197" cx="97.32" cy="72"/>
881
- </g>
882
- <g id="H13pin">
883
- <path fill="#BFBFBF" d="M94.926,79.2c0,-1.322,1.071,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394"/>
884
- <path fill="#E6E6E6" d="M99.713,79.2c0,1.321,-1.071,2.394,-2.394,2.394s-2.394,-1.072,-2.394,-2.394l0,0"/>
885
- <circle fill="#383838" r="1.197" cx="97.32" cy="79.2"/>
886
- </g>
887
- <g id="I13pin">
888
- <path fill="#BFBFBF" d="M94.926,86.4c0,-1.322,1.071,-2.395,2.394,-2.395s2.394,1.072,2.394,2.395"/>
889
- <path fill="#E6E6E6" d="M99.713,86.4c0,1.321,-1.071,2.393,-2.394,2.393s-2.394,-1.071,-2.394,-2.393"/>
890
- <circle fill="#383838" r="1.197" cx="97.32" cy="86.4"/>
891
- </g>
892
- <g id="J13pin">
893
- <path fill="#BFBFBF" d="M94.926,93.6c0,-1.322,1.071,-2.394,2.394,-2.394s2.394,1.071,2.394,2.394"/>
894
- <path fill="#E6E6E6" d="M99.713,93.6c0,1.322,-1.071,2.395,-2.394,2.395s-2.394,-1.072,-2.394,-2.395l0,0"/>
895
- <circle fill="#383838" r="1.197" cx="97.32" cy="93.6"/>
896
- </g>
897
- <g id="F14pin">
898
- <path fill="#BFBFBF" d="M102.126,64.8c0,-1.321,1.071,-2.394,2.394,-2.394c1.321,0,2.394,1.072,2.394,2.394"/>
899
- <path fill="#E6E6E6" d="M106.914,64.8c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394"/>
900
- <circle fill="#383838" r="1.196" cx="104.52" cy="64.8"/>
901
- </g>
902
- <g id="G14pin">
903
- <path fill="#BFBFBF" d="M102.126,72c0,-1.322,1.071,-2.394,2.394,-2.394c1.321,0,2.394,1.071,2.394,2.394"/>
904
- <path fill="#E6E6E6" d="M106.914,72c0,1.322,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.071,-2.394,-2.394"/>
905
- <circle fill="#383838" r="1.197" cx="104.52" cy="72"/>
906
- </g>
907
- <g id="H14pin">
908
- <path fill="#BFBFBF" d="M102.126,79.2c0,-1.322,1.071,-2.394,2.394,-2.394c1.321,0,2.394,1.071,2.394,2.394"/>
909
- <path fill="#E6E6E6" d="M106.914,79.2c0,1.321,-1.072,2.394,-2.394,2.394c-1.322,0,-2.394,-1.072,-2.394,-2.394l0,0"/>
910
- <circle fill="#383838" r="1.197" cx="104.52" cy="79.2"/>
911
- </g>
912
- <g id="I14pin">
913
- <path fill="#BFBFBF" d="M102.126,86.4c0,-1.322,1.071,-2.395,2.394,-2.395c1.321,0,2.394,1.072,2.394,2.395"/>
914
- <path fill="#E6E6E6" d="M106.914,86.4c0,1.321,-1.072,2.393,-2.394,2.393c-1.322,0,-2.394,-1.071,-2.394,-2.393"/>
915
- <circle fill="#383838" r="1.197" cx="104.52" cy="86.4"/>
916
- </g>
917
- <g id="J14pin">
918
- <path fill="#BFBFBF" d="M102.126,93.6c0,-1.322,1.071,-2.394,2.394,-2.394c1.321,0,2.394,1.071,2.394,2.394"/>
919
- <path fill="#E6E6E6" d="M106.914,93.6c0,1.322,-1.072,2.395,-2.394,2.395c-1.322,0,-2.394,-1.072,-2.394,-2.395l0,0"/>
920
- <circle fill="#383838" r="1.197" cx="104.52" cy="93.6"/>
921
- </g>
922
- <g id="F15pin">
923
- <path fill="#BFBFBF" d="M109.326,64.8c0.002,-1.321,1.076,-2.392,2.398,-2.39c1.318,0.002,2.387,1.07,2.389,2.39"/>
924
- <path fill="#E6E6E6" d="M114.113,64.8c0.002,1.322,-1.067,2.396,-2.389,2.397c-1.322,0.002,-2.396,-1.068,-2.398,-2.391c0,-0.002,0,-0.004,0,-0.007"/>
925
- <circle fill="#383838" r="1.196" cx="111.72" cy="64.8"/>
926
- </g>
927
- <g id="G15pin">
928
- <path fill="#BFBFBF" d="M109.326,72c0.002,-1.322,1.076,-2.393,2.398,-2.391c1.318,0.002,2.387,1.071,2.389,2.391"/>
929
- <path fill="#E6E6E6" d="M114.113,72c0.002,1.322,-1.067,2.395,-2.389,2.396c-1.322,0.002,-2.396,-1.067,-2.398,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
930
- <circle fill="#383838" r="1.197" cx="111.72" cy="72"/>
931
- </g>
932
- <g id="H15pin">
933
- <path fill="#BFBFBF" d="M109.326,79.2c0.002,-1.322,1.076,-2.392,2.398,-2.39c1.318,0.002,2.387,1.07,2.389,2.39"/>
934
- <path fill="#E6E6E6" d="M114.113,79.2c0.002,1.321,-1.067,2.396,-2.389,2.397c-1.322,0.002,-2.396,-1.068,-2.398,-2.391c0,-0.002,0,-0.005,0,-0.007"/>
935
- <circle fill="#383838" r="1.197" cx="111.72" cy="79.2"/>
936
- </g>
937
- <g id="I15pin">
938
- <path fill="#BFBFBF" d="M109.326,86.4c0.002,-1.322,1.076,-2.393,2.398,-2.391c1.318,0.002,2.387,1.07,2.389,2.391"/>
939
- <path fill="#E6E6E6" d="M114.113,86.4c0.002,1.321,-1.067,2.395,-2.389,2.396c-1.322,0.002,-2.396,-1.068,-2.398,-2.39c0,-0.003,0,-0.005,0,-0.007"/>
940
- <circle fill="#383838" r="1.197" cx="111.72" cy="86.4"/>
941
- </g>
942
- <g id="J15pin">
943
- <path fill="#BFBFBF" d="M109.326,93.6c0.002,-1.322,1.076,-2.392,2.398,-2.39c1.318,0.002,2.387,1.071,2.389,2.39"/>
944
- <path fill="#E6E6E6" d="M114.113,93.6c0.002,1.322,-1.067,2.396,-2.389,2.397c-1.322,0.002,-2.396,-1.067,-2.398,-2.39c0,-0.003,0,-0.005,0,-0.008"/>
945
- <circle fill="#383838" r="1.197" cx="111.72" cy="93.6"/>
946
- </g>
947
- <g id="F16pin">
948
- <path fill="#BFBFBF" d="M116.527,64.8c0.002,-1.321,1.074,-2.392,2.396,-2.39c1.319,0.002,2.389,1.07,2.391,2.39"/>
949
- <path fill="#E6E6E6" d="M121.314,64.8c0.002,1.322,-1.068,2.396,-2.391,2.397s-2.395,-1.068,-2.396,-2.391c0,-0.002,0,-0.004,0,-0.007"/>
950
- <circle fill="#383838" r="1.196" cx="118.919" cy="64.8"/>
951
- </g>
952
- <g id="G16pin">
953
- <path fill="#BFBFBF" d="M116.527,72c0.002,-1.322,1.074,-2.393,2.396,-2.391c1.319,0.002,2.389,1.071,2.391,2.391"/>
954
- <path fill="#E6E6E6" d="M121.314,72c0.002,1.322,-1.068,2.395,-2.391,2.396s-2.395,-1.067,-2.396,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
955
- <circle fill="#383838" r="1.197" cx="118.919" cy="72"/>
956
- </g>
957
- <g id="H16pin">
958
- <path fill="#BFBFBF" d="M116.527,79.2c0.002,-1.322,1.074,-2.392,2.396,-2.39c1.319,0.002,2.389,1.07,2.391,2.39"/>
959
- <path fill="#E6E6E6" d="M121.314,79.2c0.002,1.321,-1.068,2.396,-2.391,2.397s-2.395,-1.068,-2.396,-2.391c0,-0.002,0,-0.005,0,-0.007"/>
960
- <circle fill="#383838" r="1.197" cx="118.919" cy="79.2"/>
961
- </g>
962
- <g id="I16pin">
963
- <path fill="#BFBFBF" d="M116.527,86.4c0.002,-1.322,1.074,-2.393,2.396,-2.391c1.319,0.002,2.389,1.07,2.391,2.391"/>
964
- <path fill="#E6E6E6" d="M121.314,86.4c0.002,1.321,-1.068,2.395,-2.391,2.396s-2.395,-1.068,-2.396,-2.39c0,-0.003,0,-0.005,0,-0.007"/>
965
- <circle fill="#383838" r="1.197" cx="118.919" cy="86.4"/>
966
- </g>
967
- <g id="J16pin">
968
- <path fill="#BFBFBF" d="M116.527,93.6c0.002,-1.322,1.074,-2.392,2.396,-2.39c1.319,0.002,2.389,1.071,2.391,2.39"/>
969
- <path fill="#E6E6E6" d="M121.314,93.6c0.002,1.322,-1.068,2.396,-2.391,2.397s-2.395,-1.067,-2.396,-2.39c0,-0.003,0,-0.005,0,-0.008"/>
970
- <circle fill="#383838" r="1.197" cx="118.919" cy="93.6"/>
971
- </g>
972
- <g id="F17pin">
973
- <path fill="#BFBFBF" d="M123.726,64.8c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39"/>
974
- <path fill="#E6E6E6" d="M128.513,64.8c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007"/>
975
- <circle fill="#383838" r="1.196" cx="126.12" cy="64.8"/>
976
- </g>
977
- <g id="G17pin">
978
- <path fill="#BFBFBF" d="M123.726,72c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.071,2.39,2.391"/>
979
- <path fill="#E6E6E6" d="M128.513,72c0.002,1.322,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.396,-1.067,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
980
- <circle fill="#383838" r="1.197" cx="126.12" cy="72"/>
981
- </g>
982
- <g id="H17pin">
983
- <path fill="#BFBFBF" d="M123.726,79.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39"/>
984
- <path fill="#E6E6E6" d="M128.513,79.2c0.002,1.321,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.068,-2.397,-2.391c0,-0.002,0,-0.005,0,-0.007"/>
985
- <circle fill="#383838" r="1.197" cx="126.12" cy="79.2"/>
986
- </g>
987
- <g id="I17pin">
988
- <path fill="#BFBFBF" d="M123.726,86.4c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.319,0.002,2.388,1.07,2.39,2.391"/>
989
- <path fill="#E6E6E6" d="M128.513,86.4c0.002,1.321,-1.068,2.395,-2.39,2.396c-1.322,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.003,0,-0.005,0,-0.007"/>
990
- <circle fill="#383838" r="1.197" cx="126.12" cy="86.4"/>
991
- </g>
992
- <g id="J17pin">
993
- <path fill="#BFBFBF" d="M123.726,93.6c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39"/>
994
- <path fill="#E6E6E6" d="M128.513,93.6c0.002,1.322,-1.068,2.396,-2.39,2.397c-1.322,0.002,-2.396,-1.067,-2.397,-2.39c0,-0.003,0,-0.005,0,-0.008"/>
995
- <circle fill="#383838" r="1.197" cx="126.12" cy="93.6"/>
996
- </g>
997
- <g id="F18pin">
998
- <path fill="#BFBFBF" d="M130.926,64.8c0.002,-1.321,1.075,-2.392,2.397,-2.39c1.318,0.002,2.388,1.07,2.39,2.39"/>
999
- <path fill="#E6E6E6" d="M135.713,64.8c0.002,1.322,-1.067,2.396,-2.39,2.397s-2.396,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007"/>
1000
- <circle fill="#383838" r="1.196" cx="133.32" cy="64.8"/>
1001
- </g>
1002
- <g id="G18pin">
1003
- <path fill="#BFBFBF" d="M130.926,72c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.318,0.002,2.388,1.071,2.39,2.391"/>
1004
- <path fill="#E6E6E6" d="M135.713,72c0.002,1.322,-1.067,2.395,-2.39,2.396s-2.396,-1.067,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
1005
- <circle fill="#383838" r="1.197" cx="133.32" cy="72"/>
1006
- </g>
1007
- <g id="H18pin">
1008
- <path fill="#BFBFBF" d="M130.926,79.2c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.318,0.002,2.388,1.07,2.39,2.39"/>
1009
- <path fill="#E6E6E6" d="M135.713,79.2c0.002,1.321,-1.067,2.396,-2.39,2.397s-2.396,-1.068,-2.397,-2.391c0,-0.002,0,-0.005,0,-0.007"/>
1010
- <circle fill="#383838" r="1.197" cx="133.32" cy="79.2"/>
1011
- </g>
1012
- <g id="I18pin">
1013
- <path fill="#BFBFBF" d="M130.926,86.4c0.002,-1.322,1.075,-2.393,2.397,-2.391c1.318,0.002,2.388,1.07,2.39,2.391"/>
1014
- <path fill="#E6E6E6" d="M135.713,86.4c0.002,1.321,-1.067,2.395,-2.39,2.396s-2.396,-1.068,-2.397,-2.39c0,-0.003,0,-0.005,0,-0.007"/>
1015
- <circle fill="#383838" r="1.197" cx="133.32" cy="86.4"/>
1016
- </g>
1017
- <g id="J18pin">
1018
- <path fill="#BFBFBF" d="M130.926,93.6c0.002,-1.322,1.075,-2.392,2.397,-2.39c1.318,0.002,2.388,1.071,2.39,2.39"/>
1019
- <path fill="#E6E6E6" d="M135.713,93.6c0.002,1.322,-1.067,2.396,-2.39,2.397s-2.396,-1.067,-2.397,-2.39c0,-0.003,0,-0.005,0,-0.008"/>
1020
- <circle fill="#383838" r="1.197" cx="133.32" cy="93.6"/>
1021
- </g>
1022
- <g id="F19pin">
1023
- <path fill="#BFBFBF" d="M138.126,64.8c0.002,-1.321,1.075,-2.392,2.396,-2.39c1.319,0.002,2.389,1.07,2.391,2.39"/>
1024
- <path fill="#E6E6E6" d="M142.914,64.8c0.002,1.322,-1.068,2.396,-2.391,2.397c-1.321,0.002,-2.395,-1.068,-2.396,-2.391c0,-0.002,0,-0.004,0,-0.007"/>
1025
- <circle fill="#383838" r="1.196" cx="140.52" cy="64.8"/>
1026
- </g>
1027
- <g id="G19pin">
1028
- <path fill="#BFBFBF" d="M138.126,72c0.002,-1.322,1.075,-2.393,2.396,-2.391c1.319,0.002,2.389,1.071,2.391,2.391"/>
1029
- <path fill="#E6E6E6" d="M142.914,72c0.002,1.322,-1.068,2.395,-2.391,2.396c-1.321,0.002,-2.395,-1.067,-2.396,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
1030
- <circle fill="#383838" r="1.197" cx="140.52" cy="72"/>
1031
- </g>
1032
- <g id="H19pin">
1033
- <path fill="#BFBFBF" d="M138.126,79.2c0.002,-1.322,1.075,-2.392,2.396,-2.39c1.319,0.002,2.389,1.07,2.391,2.39"/>
1034
- <path fill="#E6E6E6" d="M142.914,79.2c0.002,1.321,-1.068,2.396,-2.391,2.397c-1.321,0.002,-2.395,-1.068,-2.396,-2.391c0,-0.002,0,-0.005,0,-0.007"/>
1035
- <circle fill="#383838" r="1.197" cx="140.52" cy="79.2"/>
1036
- </g>
1037
- <g id="I19pin">
1038
- <path fill="#BFBFBF" d="M138.126,86.4c0.002,-1.322,1.075,-2.393,2.396,-2.391c1.319,0.002,2.389,1.07,2.391,2.391"/>
1039
- <path fill="#E6E6E6" d="M142.914,86.4c0.002,1.321,-1.068,2.395,-2.391,2.396c-1.321,0.002,-2.395,-1.068,-2.396,-2.39c0,-0.003,0,-0.005,0,-0.007"/>
1040
- <circle fill="#383838" r="1.197" cx="140.52" cy="86.4"/>
1041
- </g>
1042
- <g id="J19pin">
1043
- <path fill="#BFBFBF" d="M138.126,93.6c0.002,-1.322,1.075,-2.392,2.396,-2.39c1.319,0.002,2.389,1.071,2.391,2.39"/>
1044
- <path fill="#E6E6E6" d="M142.914,93.6c0.002,1.322,-1.068,2.396,-2.391,2.397c-1.321,0.002,-2.395,-1.067,-2.396,-2.39c0,-0.003,0,-0.005,0,-0.008"/>
1045
- <circle fill="#383838" r="1.197" cx="140.52" cy="93.6"/>
1046
- </g>
1047
- <g id="F20pin">
1048
- <path fill="#BFBFBF" d="M145.326,64.8c0.002,-1.321,1.076,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39"/>
1049
- <path fill="#E6E6E6" d="M150.113,64.8c0.002,1.322,-1.067,2.396,-2.39,2.397c-1.321,0.002,-2.396,-1.068,-2.397,-2.391c0,-0.002,0,-0.004,0,-0.007"/>
1050
- <circle fill="#383838" r="1.196" cx="147.72" cy="64.8"/>
1051
- </g>
1052
- <g id="G20pin">
1053
- <path fill="#BFBFBF" d="M145.326,72c0.002,-1.322,1.076,-2.393,2.397,-2.391c1.319,0.002,2.388,1.071,2.39,2.391"/>
1054
- <path fill="#E6E6E6" d="M150.113,72c0.002,1.322,-1.067,2.395,-2.39,2.396c-1.321,0.002,-2.396,-1.067,-2.397,-2.39c0,-0.002,0,-0.005,0,-0.007"/>
1055
- <circle fill="#383838" r="1.197" cx="147.72" cy="72"/>
1056
- </g>
1057
- <g id="H20pin">
1058
- <path fill="#BFBFBF" d="M145.326,79.2c0.002,-1.322,1.076,-2.392,2.397,-2.39c1.319,0.002,2.388,1.07,2.39,2.39"/>
1059
- <path fill="#E6E6E6" d="M150.113,79.2c0.002,1.321,-1.067,2.396,-2.39,2.397c-1.321,0.002,-2.396,-1.068,-2.397,-2.391c0,-0.002,0,-0.005,0,-0.007"/>
1060
- <circle fill="#383838" r="1.197" cx="147.72" cy="79.2"/>
1061
- </g>
1062
- <g id="I20pin">
1063
- <path fill="#BFBFBF" d="M145.326,86.4c0.002,-1.322,1.076,-2.393,2.397,-2.391c1.319,0.002,2.388,1.07,2.39,2.391"/>
1064
- <path fill="#E6E6E6" d="M150.113,86.4c0.002,1.321,-1.067,2.395,-2.39,2.396c-1.321,0.002,-2.396,-1.068,-2.397,-2.39c0,-0.003,0,-0.005,0,-0.007"/>
1065
- <circle fill="#383838" r="1.197" cx="147.72" cy="86.4"/>
1066
- </g>
1067
- <g id="J20pin">
1068
- <path fill="#BFBFBF" d="M145.326,93.6c0.002,-1.322,1.076,-2.392,2.397,-2.39c1.319,0.002,2.388,1.071,2.39,2.39"/>
1069
- <path fill="#E6E6E6" d="M150.113,93.6c0.002,1.322,-1.067,2.396,-2.39,2.397c-1.321,0.002,-2.396,-1.067,-2.397,-2.39c0,-0.003,0,-0.005,0,-0.008"/>
1070
- <circle fill="#383838" r="1.197" cx="147.72" cy="93.6"/>
1071
- </g>
1072
- </g>
1073
- </g>
1074
- </g></g></g><g partID='854100910'><g transform='translate(164.339,0)' ><g transform='matrix(-3.46945e-18,1,-1,-3.46945e-18,0,0)' ><g transform="matrix(1, 0, 0, 1, -1.9627, 0.415188)">
1075
- <g id="breadboardbreadboard">
1076
- <g gorn="0.3.0.0">
1077
- <g transform="matrix(1, 0, 0, 1, 2, 0)">
1078
- <g >
1079
- <g >
1080
- <g gorn="0.3.0.0.0.0.0" id="layer1_1_">
1081
- <path gorn="0.3.0.0.0.0.0.0" fill="#007300" id="path5" d="M232.441,0,8.50399,0C3.826,0,0,3.82701,0,8.50401l0,141.731c0,4.67901,3.827,8.50501,8.50399,8.50501l223.938,0c4.679,0,8.50399,-3.82601,8.50399,-8.50501l0,-141.731C240.945,3.82701,237.119,0,232.441,0ZM9.92099,152.716c-2.152,0,-3.897,-1.744,-3.897,-3.89801,0,-2.152,1.745,-3.89601,3.897,-3.89601,2.153,0,3.898,1.744,3.898,3.89601,0,2.154,-1.746,3.89801,-3.898,3.89801zm0,-138.897c-2.152,0,-3.897,-1.745,-3.897,-3.89801,0,-2.152,1.745,-3.89701,3.897,-3.89701,2.153,0,3.898,1.745,3.898,3.89701,0,2.153,-1.746,3.89801,-3.898,3.89801zm164.411,138.897c-2.151,0,-3.897,-1.744,-3.897,-3.89801,0,-2.152,1.746,-3.89601,3.897,-3.89601,2.152,0,3.896,1.744,3.896,3.89601,0,2.154,-1.744,3.89801,-3.896,3.89801zm0,-138.897c-2.151,0,-3.897,-1.745,-3.897,-3.89801,0,-2.152,1.746,-3.89701,3.897,-3.89701,2.152,0,3.896,1.745,3.896,3.89701,0,2.153,-1.744,3.89801,-3.896,3.89801z"/>
1082
- <g transform="matrix(1.17692, 0, 0, 1.14343, -27.3073, -20.8817)">
1083
- <g >
1084
- <g >
1085
- <polygon gorn="0.3.0.0.0.0.0.1.0.0" points="109.335,94.8212,70.717,94.8212,70.717,60.1161,73.866,56.1161,109.335,56.1161" fill="#1a1a1a" id="rect3941-8_1_"/>
1086
- </g>
1087
- </g>
1088
- </g>
1089
- <rect gorn="0.3.0.0.0.0.0.2" x="164.009" y="48.5059" width="26.646" fill="#1a1a1a" id="rect3941-8-8_1_" height="26.456"/>
1090
- <g transform="matrix(1, 0, 0, 1, -1.05684, -1.96271)">
1091
- <g >
1092
- <g >
1093
- <g gorn="0.3.0.0.0.0.0.3.0.0" id="text3739_1_">
1094
- <g transform="matrix(1, 0, 0, 1, 52.9396, 963.432)">
1095
- <g >
1096
- <g >
1097
- <g gorn="0.3.0.0.0.0.0.3.0.0.0.0.0" id="_x30_.1.0.0.0.20.0">
1098
- <g gorn="0.3.0.0.0.0.0.3.0.0.0.0.0.0" id="_x30_.1.0.0.20.0">
1099
- <g transform="scale(0.98224562,1.0180753)">
1100
- <g >
1101
- <g >
1102
- <g gorn="0.3.0.0.0.0.0.3.0.0.0.0.0.0.0.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text12" font-size="0">
1103
- <text gorn="0.3.0.0.0.0.0.3.0.0.0.0.0.0.0.0.0.0" x="24.9825" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Droid Sans;-inkscape-font-specification:Droid Sans" y="-920.105" id="tspan6477" font-size="0">Raspberry Pi 3 Model B v1.2</text>
1104
- </g>
1105
- </g>
1106
- </g>
1107
- </g>
1108
- <g gorn="0.3.0.0.0.0.0.3.0.0.0.0.0.0.1" style="font-family:DroidSans;" fill="#ffffff" id="text14" font-size="0">
1109
- <text gorn="0.3.0.0.0.0.0.3.0.0.0.0.0.0.1.0" x="30.4731" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Droid Sans;-inkscape-font-specification:Droid Sans" y="-931.948" id="tspan6479" font-size="0">&#xa9; Raspberry Pi 2015</text>
1110
- </g>
1111
- </g>
1112
- </g>
1113
- </g>
1114
- </g>
1115
- </g>
1116
- </g>
1117
- </g>
1118
- </g>
1119
- </g>
1120
- <g gorn="0.3.0.0.0.0.0.4" id="text3739-6-1_1_">
1121
- <g transform="matrix(1, 0, 0, 1, 53.3649, 969.376)">
1122
- <g >
1123
- <g >
1124
- <g gorn="0.3.0.0.0.0.0.4.0.0.0" id="_x30_.1.0.0.0.21.0">
1125
- <g gorn="0.3.0.0.0.0.0.4.0.0.0.0" id="_x30_.1.0.0.21.0">
1126
- <g transform="matrix(1, 0, 0, 1, -24.2155, -864.636)">
1127
- <g >
1128
- <g >
1129
- <text gorn="0.3.0.0.0.0.0.4.0.0.0.0.0.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text19" font-size="0"/>
1130
- </g>
1131
- </g>
1132
- </g>
1133
- <g transform="matrix(1, 0, 0, 1, -22.5041, -864.636)">
1134
- <g >
1135
- <g >
1136
- <text gorn="0.3.0.0.0.0.0.4.0.0.0.0.1.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text21" font-size="0"/>
1137
- </g>
1138
- </g>
1139
- </g>
1140
- <g transform="matrix(1, 0, 0, 1, -21.4914, -864.636)">
1141
- <g >
1142
- <g >
1143
- <text gorn="0.3.0.0.0.0.0.4.0.0.0.0.2.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text23" font-size="0"/>
1144
- </g>
1145
- </g>
1146
- </g>
1147
- <g transform="matrix(1, 0, 0, 1, -20.5075, -864.636)">
1148
- <g >
1149
- <g >
1150
- <text gorn="0.3.0.0.0.0.0.4.0.0.0.0.3.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text25" font-size="0"/>
1151
- </g>
1152
- </g>
1153
- </g>
1154
- <g transform="matrix(1, 0, 0, 1, -18.8048, -864.636)">
1155
- <g >
1156
- <g >
1157
- <text gorn="0.3.0.0.0.0.0.4.0.0.0.0.4.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text27" font-size="0"/>
1158
- </g>
1159
- </g>
1160
- </g>
1161
- <g transform="matrix(1, 0, 0, 1, -18.0255, -864.636)">
1162
- <g >
1163
- <g >
1164
- <text gorn="0.3.0.0.0.0.0.4.0.0.0.0.5.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text29" font-size="0"/>
1165
- </g>
1166
- </g>
1167
- </g>
1168
- <g transform="matrix(1, 0, 0, 1, -16.9425, -864.636)">
1169
- <g >
1170
- <g >
1171
- <text gorn="0.3.0.0.0.0.0.4.0.0.0.0.6.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text31" font-size="0"/>
1172
- </g>
1173
- </g>
1174
- </g>
1175
- <g transform="matrix(1, 0, 0, 1, -15.8581, -864.636)">
1176
- <g >
1177
- <g >
1178
- <text gorn="0.3.0.0.0.0.0.4.0.0.0.0.7.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text33" font-size="0"/>
1179
- </g>
1180
- </g>
1181
- </g>
1182
- <g transform="matrix(1, 0, 0, 1, -13.6906, -864.636)">
1183
- <g >
1184
- <g >
1185
- <text gorn="0.3.0.0.0.0.0.4.0.0.0.0.8.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text35" font-size="0"/>
1186
- </g>
1187
- </g>
1188
- </g>
1189
- <g transform="matrix(1, 0, 0, 1, -11.5231, -864.636)">
1190
- <g >
1191
- <g >
1192
- <text gorn="0.3.0.0.0.0.0.4.0.0.0.0.9.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text37" font-size="0"/>
1193
- </g>
1194
- </g>
1195
- </g>
1196
- <g transform="matrix(1, 0, 0, 1, -9.35509, -864.636)">
1197
- <g >
1198
- <g >
1199
- <text gorn="0.3.0.0.0.0.0.4.0.0.0.0.10.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text39" font-size="0"/>
1200
- </g>
1201
- </g>
1202
- </g>
1203
- <g transform="matrix(1, 0, 0, 1, -8.57579, -864.636)">
1204
- <g >
1205
- <g >
1206
- <text gorn="0.3.0.0.0.0.0.4.0.0.0.0.11.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text41" font-size="0"/>
1207
- </g>
1208
- </g>
1209
- </g>
1210
- <g transform="matrix(1, 0, 0, 1, -7.4455, -864.636)">
1211
- <g >
1212
- <g >
1213
- <text gorn="0.3.0.0.0.0.0.4.0.0.0.0.12.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text43" font-size="0"/>
1214
- </g>
1215
- </g>
1216
- </g>
1217
- <g transform="matrix(1, 0, 0, 1, -5.904, -864.636)">
1218
- <g >
1219
- <g >
1220
- <text gorn="0.3.0.0.0.0.0.4.0.0.0.0.13.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text45" font-size="0"/>
1221
- </g>
1222
- </g>
1223
- </g>
1224
- <g transform="matrix(1, 0, 0, 1, -4.5929, -864.636)">
1225
- <g >
1226
- <g >
1227
- <text gorn="0.3.0.0.0.0.0.4.0.0.0.0.14.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text47" font-size="0"/>
1228
- </g>
1229
- </g>
1230
- </g>
1231
- <g transform="matrix(1, 0, 0, 1, -2.8908, -864.636)">
1232
- <g >
1233
- <g >
1234
- <text gorn="0.3.0.0.0.0.0.4.0.0.0.0.15.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text49" font-size="0"/>
1235
- </g>
1236
- </g>
1237
- </g>
1238
- <g transform="matrix(1, 0, 0, 1, -1.1881, -864.636)">
1239
- <g >
1240
- <g >
1241
- <text gorn="0.3.0.0.0.0.0.4.0.0.0.0.16.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text51" font-size="0"/>
1242
- </g>
1243
- </g>
1244
- </g>
1245
- <g transform="matrix(1, 0, 0, 1, 0.3661, -864.636)">
1246
- <g >
1247
- <g >
1248
- <text gorn="0.3.0.0.0.0.0.4.0.0.0.0.17.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text53" font-size="0"/>
1249
- </g>
1250
- </g>
1251
- </g>
1252
- <g transform="matrix(1, 0, 0, 1, 1.5252, -864.636)">
1253
- <g >
1254
- <g >
1255
- <text gorn="0.3.0.0.0.0.0.4.0.0.0.0.18.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text55" font-size="0"/>
1256
- </g>
1257
- </g>
1258
- </g>
1259
- <g transform="matrix(1, 0, 0, 1, 2.6844, -864.636)">
1260
- <g >
1261
- <g >
1262
- <text gorn="0.3.0.0.0.0.0.4.0.0.0.0.19.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text57" font-size="0"/>
1263
- </g>
1264
- </g>
1265
- </g>
1266
- <g transform="matrix(1, 0, 0, 1, 4.1043, -864.636)">
1267
- <g >
1268
- <g >
1269
- <text gorn="0.3.0.0.0.0.0.4.0.0.0.0.20.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text59" font-size="0"/>
1270
- </g>
1271
- </g>
1272
- </g>
1273
- <g transform="matrix(1, 0, 0, 1, 5.807, -864.636)">
1274
- <g >
1275
- <g >
1276
- <text gorn="0.3.0.0.0.0.0.4.0.0.0.0.21.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text61" font-size="0"/>
1277
- </g>
1278
- </g>
1279
- </g>
1280
- <g transform="matrix(1, 0, 0, 1, 6.5584, -864.636)">
1281
- <g >
1282
- <g >
1283
- <text gorn="0.3.0.0.0.0.0.4.0.0.0.0.22.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text63" font-size="0"/>
1284
- </g>
1285
- </g>
1286
- </g>
1287
- <g transform="matrix(1, 0, 0, 1, 7.3377, -864.636)">
1288
- <g >
1289
- <g >
1290
- <text gorn="0.3.0.0.0.0.0.4.0.0.0.0.23.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text65" font-size="0"/>
1291
- </g>
1292
- </g>
1293
- </g>
1294
- <g transform="matrix(1, 0, 0, 1, 9.01399, -864.636)">
1295
- <g >
1296
- <g >
1297
- <text gorn="0.3.0.0.0.0.0.4.0.0.0.0.24.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text67" font-size="0"/>
1298
- </g>
1299
- </g>
1300
- </g>
1301
- <g transform="matrix(1, 0, 0, 1, 10.1449, -864.636)">
1302
- <g >
1303
- <g >
1304
- <text gorn="0.3.0.0.0.0.0.4.0.0.0.0.25.0.0" style="font-family:DroidSans;" fill="#ffffff" id="text69" font-size="0"/>
1305
- </g>
1306
- </g>
1307
- </g>
1308
- </g>
1309
- </g>
1310
- </g>
1311
- </g>
1312
- </g>
1313
- </g>
1314
- <g transform="matrix(0,-1,1,0,0,0)">
1315
- <g >
1316
- <g >
1317
- <g gorn="0.3.0.0.0.0.0.5.0.0" id="_x30_.1.0.0.0.211">
1318
- <g gorn="0.3.0.0.0.0.0.5.0.0.0" id="_x30_.1.0.0.211">
1319
- <g gorn="0.3.0.0.0.0.0.5.0.0.0.0" id="text3663_5_">
1320
- <g transform="matrix(-1, 0, 0, -1, -1011.97, 13.4308)">
1321
- <g >
1322
- <g >
1323
- <g gorn="0.3.0.0.0.0.0.5.0.0.0.0.0.0.0" id="_x30_.1.0.0.0.211.0.0.0">
1324
- <g gorn="0.3.0.0.0.0.0.5.0.0.0.0.0.0.0.0" id="_x30_.1.0.0.211.0.0">
1325
- <g transform="matrix(0, -1, 1, 0, -868.501, -9.50962)">
1326
- <g >
1327
- <g >
1328
- <text gorn="0.3.0.0.0.0.0.5.0.0.0.0.0.0.0.0.0.0.0" style="font-family:OCRA;" fill="#ffffff" id="tspan8666_5_" font-size="0">Power</text>
1329
- </g>
1330
- </g>
1331
- </g>
1332
- </g>
1333
- </g>
1334
- </g>
1335
- </g>
1336
- </g>
1337
- </g>
1338
- </g>
1339
- </g>
1340
- </g>
1341
- </g>
1342
- </g>
1343
- <g transform="matrix(0,-1,1,0,0,0)">
1344
- <g >
1345
- <g >
1346
- <g gorn="0.3.0.0.0.0.0.6.0.0" id="_x30_.1.0.0.0.212">
1347
- <g gorn="0.3.0.0.0.0.0.6.0.0.0" id="_x30_.1.0.0.212">
1348
- <g gorn="0.3.0.0.0.0.0.6.0.0.0.0" id="text3663_2_">
1349
- <g transform="matrix(0, 1, -1, 0, -1009.99, 140.158)">
1350
- <g >
1351
- <g >
1352
- <g gorn="0.3.0.0.0.0.0.6.0.0.0.0.0.0.0" id="_x30_.1.0.0.0.212.0.0.0">
1353
- <g gorn="0.3.0.0.0.0.0.6.0.0.0.0.0.0.0.0" id="_x30_.1.0.0.212.0.0">
1354
- <g transform="matrix(1, 0, 0, 1, -56.0626, -883.334)">
1355
- <g >
1356
- <g >
1357
- <text gorn="0.3.0.0.0.0.0.6.0.0.0.0.0.0.0.0.0.0.0" style="font-family:OCRA;" fill="#ffffff" id="tspan8666_2_" font-size="0">HDMI</text>
1358
- </g>
1359
- </g>
1360
- </g>
1361
- </g>
1362
- </g>
1363
- </g>
1364
- </g>
1365
- </g>
1366
- </g>
1367
- </g>
1368
- </g>
1369
- </g>
1370
- </g>
1371
- </g>
1372
- <g transform="matrix(0,-1,1,0,0,0)">
1373
- <g >
1374
- <g >
1375
- <g gorn="0.3.0.0.0.0.0.7.0.0" id="_x30_.1.0.0.0.213">
1376
- <g gorn="0.3.0.0.0.0.0.7.0.0.0" id="_x30_.1.0.0.213">
1377
- <g gorn="0.3.0.0.0.0.0.7.0.0.0.0" id="text3663_6_">
1378
- <g transform="matrix(0, 1, -1, 0, -892.194, 212.481)">
1379
- <g >
1380
- <g >
1381
- <g gorn="0.3.0.0.0.0.0.7.0.0.0.0.0.0.0" id="_x30_.1.0.0.0.213.0.0.0">
1382
- <g gorn="0.3.0.0.0.0.0.7.0.0.0.0.0.0.0.0" id="_x30_.1.0.0.213.0.0">
1383
- <text gorn="0.3.0.0.0.0.0.7.0.0.0.0.0.0.0.0.0" x="-66.8515" style="font-family:OCRA;" y="-771.364" fill="#ffffff" id="tspan8666_6_" font-size="0">Audio</text>
1384
- </g>
1385
- </g>
1386
- </g>
1387
- </g>
1388
- </g>
1389
- </g>
1390
- </g>
1391
- </g>
1392
- </g>
1393
- </g>
1394
- </g>
1395
- <g transform="matrix(0,-1,1,0,0,0)">
1396
- <g >
1397
- <g >
1398
- <g gorn="0.3.0.0.0.0.0.8.0.0" id="_x30_.1.0.0.0.215">
1399
- <g gorn="0.3.0.0.0.0.0.8.0.0.0" id="_x30_.1.0.0.215">
1400
- <g gorn="0.3.0.0.0.0.0.8.0.0.0.0" id="text3663_3_">
1401
- <g transform="matrix(1, 0, 0, 1, -944.901, 261.888)">
1402
- <g >
1403
- <g >
1404
- <g gorn="0.3.0.0.0.0.0.8.0.0.0.0.0.0.0" id="_x30_.1.0.0.0.215.0.0.0">
1405
- <g gorn="0.3.0.0.0.0.0.8.0.0.0.0.0.0.0.0" id="_x30_.1.0.0.215.0.0">
1406
- <g transform="matrix(1, 0, 0, 1, 859.662, -55.3473)">
1407
- <g >
1408
- <g >
1409
- <text gorn="0.3.0.0.0.0.0.8.0.0.0.0.0.0.0.0.0.0.0" style="font-family:OCRA;" fill="#ffffff" id="tspan8666_3_" font-size="0">USB 2x</text>
1410
- </g>
1411
- </g>
1412
- </g>
1413
- </g>
1414
- </g>
1415
- </g>
1416
- </g>
1417
- </g>
1418
- </g>
1419
- </g>
1420
- </g>
1421
- </g>
1422
- </g>
1423
- </g>
1424
- <g transform="matrix(0,-1,1,0,0,0)">
1425
- <g >
1426
- <g >
1427
- <g gorn="0.3.0.0.0.0.0.9.0.0" id="_x30_.1.0.0.0.215_1_">
1428
- <g gorn="0.3.0.0.0.0.0.9.0.0.0" id="_x30_.1.0.0.215_1_">
1429
- <g gorn="0.3.0.0.0.0.0.9.0.0.0.0" id="text3663_1_">
1430
- <g transform="matrix(1, 0, 0, 1, -944.901, 261.888)">
1431
- <g >
1432
- <g >
1433
- <g gorn="0.3.0.0.0.0.0.9.0.0.0.0.0.0.0" id="_x30_.1.0.0.0.215.0.0.0_1_">
1434
- <g gorn="0.3.0.0.0.0.0.9.0.0.0.0.0.0.0.0" id="_x30_.1.0.0.215.0.0_1_">
1435
- <g transform="matrix(1, 0, 0, 1, 910.257, -55.3473)">
1436
- <g >
1437
- <g >
1438
- <text gorn="0.3.0.0.0.0.0.9.0.0.0.0.0.0.0.0.0.0.0" style="font-family:OCRA;" fill="#ffffff" id="tspan8666_7_" font-size="0">USB 2x</text>
1439
- </g>
1440
- </g>
1441
- </g>
1442
- </g>
1443
- </g>
1444
- </g>
1445
- </g>
1446
- </g>
1447
- </g>
1448
- </g>
1449
- </g>
1450
- </g>
1451
- </g>
1452
- </g>
1453
- <g transform="matrix(0,-1,1,0,0,0)">
1454
- <g >
1455
- <g >
1456
- <g gorn="0.3.0.0.0.0.0.10.0.0" id="_x30_.1.0.0.0.216">
1457
- <g gorn="0.3.0.0.0.0.0.10.0.0.0" id="_x30_.1.0.0.216">
1458
- <g gorn="0.3.0.0.0.0.0.10.0.0.0.0" id="text3663_4_">
1459
- <g transform="matrix(1, 0, 0, 1, -1031.92, 233.499)">
1460
- <g >
1461
- <g >
1462
- <g gorn="0.3.0.0.0.0.0.10.0.0.0.0.0.0.0" id="_x30_.1.0.0.0.216.0.0.0">
1463
- <g gorn="0.3.0.0.0.0.0.10.0.0.0.0.0.0.0.0" id="_x30_.1.0.0.216.0.0">
1464
- <g transform="matrix(1, 0, 0, 1, 890.268, -41.8219)">
1465
- <g >
1466
- <g >
1467
- <text gorn="0.3.0.0.0.0.0.10.0.0.0.0.0.0.0.0.0.0.0" style="font-family:OCRA;" fill="#ffffff" id="tspan8666_4_" font-size="0">ETHERNET</text>
1468
- </g>
1469
- </g>
1470
- </g>
1471
- </g>
1472
- </g>
1473
- </g>
1474
- </g>
1475
- </g>
1476
- </g>
1477
- </g>
1478
- </g>
1479
- </g>
1480
- </g>
1481
- </g>
1482
- <g transform="matrix(0,-1,1,0,0,0)">
1483
- <g >
1484
- <g >
1485
- <g gorn="0.3.0.0.0.0.0.11.0.0" id="_x30_.1.0.0.0.217">
1486
- <g gorn="0.3.0.0.0.0.0.11.0.0.0" id="_x30_.1.0.0.217">
1487
- <g gorn="0.3.0.0.0.0.0.11.0.0.0.0" id="text3663_8_">
1488
- <g transform="matrix(1, 0, 0, 1, -970.179, 17.1525)">
1489
- <g >
1490
- <g >
1491
- <g gorn="0.3.0.0.0.0.0.11.0.0.0.0.0.0.0" id="_x30_.1.0.0.0.217.0.0.0">
1492
- <g gorn="0.3.0.0.0.0.0.11.0.0.0.0.0.0.0.0" id="_x30_.1.0.0.217.0.0">
1493
- <text gorn="0.3.0.0.0.0.0.11.0.0.0.0.0.0.0.0.0" x="874.041" style="font-family:OCRA;" y="6.51111" fill="#ffffff" id="tspan8666_8_" font-size="0">DSI (DISPLAY)</text>
1494
- </g>
1495
- </g>
1496
- </g>
1497
- </g>
1498
- </g>
1499
- </g>
1500
- </g>
1501
- </g>
1502
- </g>
1503
- </g>
1504
- </g>
1505
- <g transform="matrix(0,-1,1,0,0,0)">
1506
- <g >
1507
- <g >
1508
- <g gorn="0.3.0.0.0.0.0.12.0.0" id="_x30_.1.0.0.0.218">
1509
- <g gorn="0.3.0.0.0.0.0.12.0.0.0" id="_x30_.1.0.0.218">
1510
- <g gorn="0.3.0.0.0.0.0.12.0.0.0.0" id="text3663_9_">
1511
- <g transform="matrix(-1, 0, 0, -1, -980.192, 209.782)">
1512
- <g >
1513
- <g >
1514
- <g gorn="0.3.0.0.0.0.0.12.0.0.0.0.0.0.0" id="_x30_.1.0.0.0.218.0.0.0">
1515
- <g gorn="0.3.0.0.0.0.0.12.0.0.0.0.0.0.0.0" id="_x30_.1.0.0.218.0.0">
1516
- <text gorn="0.3.0.0.0.0.0.12.0.0.0.0.0.0.0.0.0" x="-863.364" style="font-family:OCRA;" y="72.6509" fill="#ffffff" id="tspan8666_9_" font-size="0">CSI (CAMERA)</text>
1517
- </g>
1518
- </g>
1519
- </g>
1520
- </g>
1521
- </g>
1522
- </g>
1523
- </g>
1524
- </g>
1525
- </g>
1526
- </g>
1527
- </g>
1528
- <g gorn="0.3.0.0.0.0.0.13" id="_x30_.1.0.220">
1529
- <g gorn="0.3.0.0.0.0.0.13.0" id="_x30_.1.0.220.0">
1530
- <g gorn="0.3.0.0.0.0.0.13.0.0" id="_x30_.1.0.220.0.0">
1531
- <rect gorn="0.3.0.0.0.0.0.13.0.0.0" x="103.451" y="128.867" width="0.935999" fill="#cccccc" id="_x30_.1.0.220.0.0.0" height="3.07701"/>
1532
- </g>
1533
- <g gorn="0.3.0.0.0.0.0.13.0.1" id="_x30_.1.0.220.0.1">
1534
- <rect gorn="0.3.0.0.0.0.0.13.0.1.0" x="102.252" y="128.867" width="0.934999" fill="#cccccc" id="_x30_.1.0.220.0.1.0" height="3.07701"/>
1535
- </g>
1536
- <g gorn="0.3.0.0.0.0.0.13.0.2" id="_x30_.1.0.220.0.2">
1537
- <rect gorn="0.3.0.0.0.0.0.13.0.2.0" x="101.051" y="128.867" width="0.934999" fill="#cccccc" id="_x30_.1.0.220.0.2.0" height="3.07701"/>
1538
- </g>
1539
- <g gorn="0.3.0.0.0.0.0.13.0.3" id="_x30_.1.0.220.0.3">
1540
- <rect gorn="0.3.0.0.0.0.0.13.0.3.0" x="99.8479" y="128.867" width="0.933999" fill="#cccccc" id="_x30_.1.0.220.0.3.0" height="3.07701"/>
1541
- </g>
1542
- <g gorn="0.3.0.0.0.0.0.13.0.4" id="_x30_.1.0.220.0.4">
1543
- <rect gorn="0.3.0.0.0.0.0.13.0.4.0" x="98.6459" y="128.867" width="0.933999" fill="#cccccc" id="_x30_.1.0.220.0.4.0" height="3.07701"/>
1544
- </g>
1545
- <g gorn="0.3.0.0.0.0.0.13.0.5" id="_x30_.1.0.220.0.5">
1546
- <rect gorn="0.3.0.0.0.0.0.13.0.5.0" x="97.4449" y="128.867" width="0.933999" fill="#cccccc" id="_x30_.1.0.220.0.5.0" height="3.07701"/>
1547
- </g>
1548
- <g gorn="0.3.0.0.0.0.0.13.0.6" id="_x30_.1.0.220.0.6">
1549
- <rect gorn="0.3.0.0.0.0.0.13.0.6.0" x="96.2439" y="128.867" width="0.933999" fill="#cccccc" id="_x30_.1.0.220.0.6.0" height="3.07701"/>
1550
- </g>
1551
- <g gorn="0.3.0.0.0.0.0.13.0.7" id="_x30_.1.0.220.0.7">
1552
- <rect gorn="0.3.0.0.0.0.0.13.0.7.0" x="95.0429" y="128.867" width="0.934999" fill="#cccccc" id="_x30_.1.0.220.0.7.0" height="3.07701"/>
1553
- </g>
1554
- <g gorn="0.3.0.0.0.0.0.13.0.8" id="_x30_.1.0.220.0.8">
1555
- <rect gorn="0.3.0.0.0.0.0.13.0.8.0" x="93.8419" y="128.867" width="0.934999" fill="#cccccc" id="_x30_.1.0.220.0.8.0" height="3.07701"/>
1556
- </g>
1557
- <g gorn="0.3.0.0.0.0.0.13.0.9" id="_x30_.1.0.220.0.9">
1558
- <rect gorn="0.3.0.0.0.0.0.13.0.9.0" x="92.6389" y="128.867" width="0.933999" fill="#cccccc" id="_x30_.1.0.220.0.9.0" height="3.07701"/>
1559
- </g>
1560
- <g gorn="0.3.0.0.0.0.0.13.0.10" id="_x30_.1.0.220.0.10">
1561
- <rect gorn="0.3.0.0.0.0.0.13.0.10.0" x="91.4379" y="128.867" width="0.932999" fill="#cccccc" id="_x30_.1.0.220.0.10.0" height="3.07701"/>
1562
- </g>
1563
- <g gorn="0.3.0.0.0.0.0.13.0.11" id="_x30_.1.0.220.0.11">
1564
- <rect gorn="0.3.0.0.0.0.0.13.0.11.0" x="90.2369" y="128.867" width="0.934999" fill="#cccccc" id="_x30_.1.0.220.0.11.0" height="3.07701"/>
1565
- </g>
1566
- <g gorn="0.3.0.0.0.0.0.13.0.12" id="_x30_.1.0.220.0.12">
1567
- <rect gorn="0.3.0.0.0.0.0.13.0.12.0" x="89.0359" y="128.867" width="0.936999" fill="#cccccc" id="_x30_.1.0.220.0.12.0" height="3.07701"/>
1568
- </g>
1569
- <g gorn="0.3.0.0.0.0.0.13.0.13" id="_x30_.1.0.220.0.13">
1570
- <rect gorn="0.3.0.0.0.0.0.13.0.13.0" x="87.8339" y="128.867" width="0.935999" fill="#cccccc" id="_x30_.1.0.220.0.13.0" height="3.07701"/>
1571
- </g>
1572
- <g gorn="0.3.0.0.0.0.0.13.0.14" id="_x30_.1.0.220.0.14">
1573
- <rect gorn="0.3.0.0.0.0.0.13.0.14.0" x="86.6329" y="128.867" width="0.935999" fill="#cccccc" id="_x30_.1.0.220.0.14.0" height="3.07701"/>
1574
- </g>
1575
- <g gorn="0.3.0.0.0.0.0.13.0.15" id="_x30_.1.0.220.0.15">
1576
- <rect gorn="0.3.0.0.0.0.0.13.0.15.0" x="85.4319" y="128.867" width="0.933999" fill="#cccccc" id="_x30_.1.0.220.0.15.0" height="3.07701"/>
1577
- </g>
1578
- <g gorn="0.3.0.0.0.0.0.13.0.16" id="_x30_.1.0.220.0.16">
1579
- <rect gorn="0.3.0.0.0.0.0.13.0.16.0" x="84.2299" y="128.867" width="0.933999" fill="#cccccc" id="_x30_.1.0.220.0.16.0" height="3.07701"/>
1580
- </g>
1581
- <g gorn="0.3.0.0.0.0.0.13.0.17" id="_x30_.1.0.220.0.17">
1582
- <rect gorn="0.3.0.0.0.0.0.13.0.17.0" x="83.0289" y="128.867" width="0.934999" fill="#cccccc" id="_x30_.1.0.220.0.17.0" height="3.07701"/>
1583
- </g>
1584
- <g gorn="0.3.0.0.0.0.0.13.0.18" id="_x30_.1.0.220.0.18">
1585
- <rect gorn="0.3.0.0.0.0.0.13.0.18.0" x="81.8269" y="128.867" width="0.935999" fill="#cccccc" id="_x30_.1.0.220.0.18.0" height="3.07701"/>
1586
- </g>
1587
- <g gorn="0.3.0.0.0.0.0.13.0.19" id="_x30_.1.0.220.0.19">
1588
- <rect gorn="0.3.0.0.0.0.0.13.0.19.0" x="80.6269" y="128.867" width="0.935999" fill="#cccccc" id="_x30_.1.0.220.0.19.0" height="3.07701"/>
1589
- </g>
1590
- <g gorn="0.3.0.0.0.0.0.13.0.20" id="_x30_.1.0.220.0.20">
1591
- <rect gorn="0.3.0.0.0.0.0.13.0.20.0" x="79.425" y="128.867" width="0.935999" fill="#cccccc" id="_x30_.1.0.220.0.20.0" height="3.07701"/>
1592
- </g>
1593
- <g gorn="0.3.0.0.0.0.0.13.0.21" id="_x30_.1.0.220.0.21">
1594
- <rect gorn="0.3.0.0.0.0.0.13.0.21.0" x="78.2229" y="128.867" width="0.933999" fill="#cccccc" id="_x30_.1.0.220.0.21.0" height="3.07701"/>
1595
- </g>
1596
- <g gorn="0.3.0.0.0.0.0.13.0.22" id="_x30_.1.0.220.0.22">
1597
- <rect gorn="0.3.0.0.0.0.0.13.0.22.0" x="77.021" y="128.867" width="0.933999" fill="#cccccc" id="_x30_.1.0.220.0.22.0" height="3.07701"/>
1598
- </g>
1599
- </g>
1600
- <g gorn="0.3.0.0.0.0.0.13.1" id="_x30_.1.0.220.1">
1601
- <g gorn="0.3.0.0.0.0.0.13.1.0" id="_x30_.1.0.220.1.0">
1602
- <rect gorn="0.3.0.0.0.0.0.13.1.0.0" x="103.451" fill-opacity="0.2" y="128.867" width="0.935999" fill="#ffffff" id="_x30_.1.0.220.1.0.0" height="0.278"/>
1603
- </g>
1604
- <g gorn="0.3.0.0.0.0.0.13.1.1" id="_x30_.1.0.220.1.1">
1605
- <rect gorn="0.3.0.0.0.0.0.13.1.1.0" x="102.252" fill-opacity="0.2" y="128.867" width="0.934999" fill="#ffffff" id="_x30_.1.0.220.1.1.0" height="0.278"/>
1606
- </g>
1607
- <g gorn="0.3.0.0.0.0.0.13.1.2" id="_x30_.1.0.220.1.2">
1608
- <rect gorn="0.3.0.0.0.0.0.13.1.2.0" x="101.051" fill-opacity="0.2" y="128.867" width="0.934999" fill="#ffffff" id="_x30_.1.0.220.1.2.0" height="0.278"/>
1609
- </g>
1610
- <g gorn="0.3.0.0.0.0.0.13.1.3" id="_x30_.1.0.220.1.3">
1611
- <rect gorn="0.3.0.0.0.0.0.13.1.3.0" x="99.8479" fill-opacity="0.2" y="128.867" width="0.933999" fill="#ffffff" id="_x30_.1.0.220.1.3.0" height="0.278"/>
1612
- </g>
1613
- <g gorn="0.3.0.0.0.0.0.13.1.4" id="_x30_.1.0.220.1.4">
1614
- <rect gorn="0.3.0.0.0.0.0.13.1.4.0" x="98.6459" fill-opacity="0.2" y="128.867" width="0.933999" fill="#ffffff" id="_x30_.1.0.220.1.4.0" height="0.278"/>
1615
- </g>
1616
- <g gorn="0.3.0.0.0.0.0.13.1.5" id="_x30_.1.0.220.1.5">
1617
- <rect gorn="0.3.0.0.0.0.0.13.1.5.0" x="97.4449" fill-opacity="0.2" y="128.867" width="0.933999" fill="#ffffff" id="_x30_.1.0.220.1.5.0" height="0.278"/>
1618
- </g>
1619
- <g gorn="0.3.0.0.0.0.0.13.1.6" id="_x30_.1.0.220.1.6">
1620
- <rect gorn="0.3.0.0.0.0.0.13.1.6.0" x="96.2439" fill-opacity="0.2" y="128.867" width="0.933999" fill="#ffffff" id="_x30_.1.0.220.1.6.0" height="0.278"/>
1621
- </g>
1622
- <g gorn="0.3.0.0.0.0.0.13.1.7" id="_x30_.1.0.220.1.7">
1623
- <rect gorn="0.3.0.0.0.0.0.13.1.7.0" x="95.0429" fill-opacity="0.2" y="128.867" width="0.934999" fill="#ffffff" id="_x30_.1.0.220.1.7.0" height="0.278"/>
1624
- </g>
1625
- <g gorn="0.3.0.0.0.0.0.13.1.8" id="_x30_.1.0.220.1.8">
1626
- <rect gorn="0.3.0.0.0.0.0.13.1.8.0" x="93.8419" fill-opacity="0.2" y="128.867" width="0.934999" fill="#ffffff" id="_x30_.1.0.220.1.8.0" height="0.278"/>
1627
- </g>
1628
- <g gorn="0.3.0.0.0.0.0.13.1.9" id="_x30_.1.0.220.1.9">
1629
- <rect gorn="0.3.0.0.0.0.0.13.1.9.0" x="92.6389" fill-opacity="0.2" y="128.867" width="0.933999" fill="#ffffff" id="_x30_.1.0.220.1.9.0" height="0.278"/>
1630
- </g>
1631
- <g gorn="0.3.0.0.0.0.0.13.1.10" id="_x30_.1.0.220.1.10">
1632
- <rect gorn="0.3.0.0.0.0.0.13.1.10.0" x="91.4379" fill-opacity="0.2" y="128.867" width="0.932999" fill="#ffffff" id="_x30_.1.0.220.1.10.0" height="0.278"/>
1633
- </g>
1634
- <g gorn="0.3.0.0.0.0.0.13.1.11" id="_x30_.1.0.220.1.11">
1635
- <rect gorn="0.3.0.0.0.0.0.13.1.11.0" x="90.2369" fill-opacity="0.2" y="128.867" width="0.934999" fill="#ffffff" id="_x30_.1.0.220.1.11.0" height="0.278"/>
1636
- </g>
1637
- <g gorn="0.3.0.0.0.0.0.13.1.12" id="_x30_.1.0.220.1.12">
1638
- <rect gorn="0.3.0.0.0.0.0.13.1.12.0" x="89.0359" fill-opacity="0.2" y="128.867" width="0.936999" fill="#ffffff" id="_x30_.1.0.220.1.12.0" height="0.278"/>
1639
- </g>
1640
- <g gorn="0.3.0.0.0.0.0.13.1.13" id="_x30_.1.0.220.1.13">
1641
- <rect gorn="0.3.0.0.0.0.0.13.1.13.0" x="87.8339" fill-opacity="0.2" y="128.867" width="0.935999" fill="#ffffff" id="_x30_.1.0.220.1.13.0" height="0.278"/>
1642
- </g>
1643
- <g gorn="0.3.0.0.0.0.0.13.1.14" id="_x30_.1.0.220.1.14">
1644
- <rect gorn="0.3.0.0.0.0.0.13.1.14.0" x="86.6329" fill-opacity="0.2" y="128.867" width="0.935999" fill="#ffffff" id="_x30_.1.0.220.1.14.0" height="0.278"/>
1645
- </g>
1646
- <g gorn="0.3.0.0.0.0.0.13.1.15" id="_x30_.1.0.220.1.15">
1647
- <rect gorn="0.3.0.0.0.0.0.13.1.15.0" x="85.4319" fill-opacity="0.2" y="128.867" width="0.933999" fill="#ffffff" id="_x30_.1.0.220.1.15.0" height="0.278"/>
1648
- </g>
1649
- <g gorn="0.3.0.0.0.0.0.13.1.16" id="_x30_.1.0.220.1.16">
1650
- <rect gorn="0.3.0.0.0.0.0.13.1.16.0" x="84.2299" fill-opacity="0.2" y="128.867" width="0.933999" fill="#ffffff" id="_x30_.1.0.220.1.16.0" height="0.278"/>
1651
- </g>
1652
- <g gorn="0.3.0.0.0.0.0.13.1.17" id="_x30_.1.0.220.1.17">
1653
- <rect gorn="0.3.0.0.0.0.0.13.1.17.0" x="83.0289" fill-opacity="0.2" y="128.867" width="0.934999" fill="#ffffff" id="_x30_.1.0.220.1.17.0" height="0.278"/>
1654
- </g>
1655
- <g gorn="0.3.0.0.0.0.0.13.1.18" id="_x30_.1.0.220.1.18">
1656
- <rect gorn="0.3.0.0.0.0.0.13.1.18.0" x="81.8269" fill-opacity="0.2" y="128.867" width="0.935999" fill="#ffffff" id="_x30_.1.0.220.1.18.0" height="0.278"/>
1657
- </g>
1658
- <g gorn="0.3.0.0.0.0.0.13.1.19" id="_x30_.1.0.220.1.19">
1659
- <rect gorn="0.3.0.0.0.0.0.13.1.19.0" x="80.6269" fill-opacity="0.2" y="128.867" width="0.935999" fill="#ffffff" id="_x30_.1.0.220.1.19.0" height="0.278"/>
1660
- </g>
1661
- <g gorn="0.3.0.0.0.0.0.13.1.20" id="_x30_.1.0.220.1.20">
1662
- <rect gorn="0.3.0.0.0.0.0.13.1.20.0" x="79.425" fill-opacity="0.2" y="128.867" width="0.935999" fill="#ffffff" id="_x30_.1.0.220.1.20.0" height="0.278"/>
1663
- </g>
1664
- <g gorn="0.3.0.0.0.0.0.13.1.21" id="_x30_.1.0.220.1.21">
1665
- <rect gorn="0.3.0.0.0.0.0.13.1.21.0" x="78.2229" fill-opacity="0.2" y="128.867" width="0.933999" fill="#ffffff" id="_x30_.1.0.220.1.21.0" height="0.278"/>
1666
- </g>
1667
- <g gorn="0.3.0.0.0.0.0.13.1.22" id="_x30_.1.0.220.1.22">
1668
- <rect gorn="0.3.0.0.0.0.0.13.1.22.0" x="77.021" fill-opacity="0.2" y="128.867" width="0.933999" fill="#ffffff" id="_x30_.1.0.220.1.22.0" height="0.278"/>
1669
- </g>
1670
- </g>
1671
- <g gorn="0.3.0.0.0.0.0.13.2" id="_x30_.1.0.220.2">
1672
- <path gorn="0.3.0.0.0.0.0.13.2.0" fill="#cccccc" id="_x30_.1.0.220.2.0" d="m69.515,164.134c-0.913999,0,-1.66,-0.748001,-1.66,-1.66l0,-29.5921c0,-0.914002,0.747,-1.662,1.66,-1.662l42.353,0c0.915999,0,1.66,0.748001,1.66,1.662l0,29.5921c0,0.912002,-0.746,1.66,-1.66,1.66l-42.353,0z"/>
1673
- <path gorn="0.3.0.0.0.0.0.13.2.1" fill-opacity="0.2" fill="#ffffff" id="_x30_.1.0.220.2.1" d="m113.527,133.294c0,-0.914002,-0.746,-1.66,-1.66,-1.66l-42.352,0c-0.913999,0,-1.66,0.746001,-1.66,1.66l0,-0.414001c0,-0.916002,0.747,-1.66,1.66,-1.66l42.353,0c0.915999,0,1.66,0.744001,1.66,1.66l-0.000999999,0.414001,0,0z"/>
1674
- <rect gorn="0.3.0.0.0.0.0.13.2.2" x="67.855" y="141.521" width="45.672" fill="#333333" id="_x30_.1.0.220.2.2" height="22.613"/>
1675
- <path gorn="0.3.0.0.0.0.0.13.2.3" fill="#b3b3b3" id="_x30_.1.0.220.2.3" d="m106.172,131.144,-30.938,0,0,5.64601,-7.382,0,0,26.401,0,1.146,1.946,0,41.802,0,1.945,0,0,-1.146,0,-26.401,-7.381,0,0.00799999,-5.64601,0,0zm-22.49,30.4211,-0.551,0c-0.331,0,-0.633,-0.209,-0.669,-0.463001l-1.773,-14.435c-0.026,-0.268,-0.313,-0.471001,-0.666,-0.471001l-1.386,0c-0.322,0,-0.641,0.217,-0.671,0.471001L76.201,161.1c-0.039,0.256,-0.313,0.463001,-0.668,0.463001l-0.544,0.002c-0.329,0,-0.582,-0.209,-0.548,-0.463001l2.356,-17.175c0.045,-0.254,0.33,-0.459001,0.667,-0.459001l3.732,0c0.333,0,0.64,0.209,0.671,0.459001l2.354,17.175c0.046,0.254,-0.211,0.463001,-0.539,0.463001zm2.464,-20.858,0.618,0c0.372,0,0.71,0.266,0.75,0.580001l1.994,18.159c0.027,0.324001,0.353,0.582001,0.746,0.582001l1.558,0c0.36,0,0.715,-0.266,0.75,-0.582001l1.979,-18.157c0.045,-0.316001,0.354,-0.580001,0.75,-0.580001l0.606,-0.002c0.367,0,0.651,0.264,0.614,0.580001l-2.506,20c-0.053,0.317001,-0.371,0.573001,-0.748,0.573001l-4.194,0c-0.375,0,-0.716,-0.262,-0.752,-0.573001l-2.784,-20c-0.038,-0.317001,0.251,-0.580001,0.619,-0.580001zm20.264,20.858,-0.551,0c-0.33,0,-0.635,-0.209,-0.67,-0.463001l-1.775,-14.435c-0.024,-0.268,-0.313,-0.471001,-0.666,-0.471001l-1.385,0c-0.324,0,-0.639,0.217,-0.67,0.471001L98.9249,161.1c-0.041,0.256,-0.313,0.463001,-0.668,0.463001l-0.547,0.002c-0.326,0,-0.582,-0.209,-0.547,-0.463001l2.354,-17.175c0.047,-0.254,0.33,-0.459001,0.668,-0.459001l3.731,0c0.332,0,0.64,0.209,0.672,0.459001l2.353,17.175c0.053,0.254,-0.205,0.463001,-0.531,0.463001z"/>
1676
- <polygon gorn="0.3.0.0.0.0.0.13.2.4" points="100.5,147.548,100.662,146.192,103.473,146.192,103.617,147.548" fill="#939393" id="_x30_.1.0.220.2.4"/>
1677
- <polygon gorn="0.3.0.0.0.0.0.13.2.5" points="100.5,147.548,100.422,148.112,103.703,148.112,103.617,147.548" fill="#666666" id="_x30_.1.0.220.2.5"/>
1678
- <polygon gorn="0.3.0.0.0.0.0.13.2.6" points="77.7529,147.548,77.9179,146.192,80.7259,146.192,80.8719,147.548" fill="#939393" id="_x30_.1.0.220.2.6"/>
1679
- <polygon gorn="0.3.0.0.0.0.0.13.2.7" points="77.7529,147.548,77.6769,148.112,80.9589,148.112,80.8719,147.548" fill="#666666" id="_x30_.1.0.220.2.7"/>
1680
- <polygon gorn="0.3.0.0.0.0.0.13.2.8" points="92.6719,158.582,92.4999,160.05,89.5489,160.05,89.3949,158.582" fill="#939393" id="_x30_.1.0.220.2.8"/>
1681
- <polygon gorn="0.3.0.0.0.0.0.13.2.9" points="92.6719,158.582,92.7519,157.966,89.3059,157.966,89.3949,158.582" fill="#666666" id="_x30_.1.0.220.2.9"/>
1682
- </g>
1683
- <rect gorn="0.3.0.0.0.0.0.13.3" x="67.855" y="139.177" width="3.039" fill="#808080" id="_x30_.1.0.220.3" height="0.830001"/>
1684
- <rect gorn="0.3.0.0.0.0.0.13.4" x="67.855" y="141.521" width="3.039" fill="#808080" id="_x30_.1.0.220.4" height="0.830001"/>
1685
- <rect gorn="0.3.0.0.0.0.0.13.5" x="110.514" y="139.177" width="3.036" fill="#808080" id="_x30_.1.0.220.5" height="0.830001"/>
1686
- <rect gorn="0.3.0.0.0.0.0.13.6" x="110.514" y="141.521" width="3.036" fill="#808080" id="_x30_.1.0.220.6" height="0.830001"/>
1687
- <path gorn="0.3.0.0.0.0.0.13.7" fill="#808080" id="_x30_.1.0.220.7" d="m79.4299,131.22c-0.457,0,-0.829999,0,-0.829999,0,0,0,0,0.348001,0,0.771001,0,0.422001,0,1.143,0,1.598l0,2.231c0,0.457001,0.346,0.832001,0.769999,0.832001,0.426,0,0.770999,-0.375001,0.770999,-0.832001l0,-2.231c0,-0.455001,0.372,-0.830001,0.828999,-0.830001l19.472,0c0.457,0,0.829999,0.375001,0.829999,0.830001l0,2.231c0,0.457001,0.349,0.832001,0.770999,0.832001,0.422,0,0.768999,-0.375001,0.768999,-0.832001l0,-2.231c0,-0.455001,0,-1.174,0,-1.598,0,-0.425001,0,-0.771001,0,-0.771001,0,0,-0.373,0,-0.829999,0l-22.552,0z"/>
1688
- <rect gorn="0.3.0.0.0.0.0.13.8" x="67.842" fill-opacity="0.1" y="136.791" width="1.946" fill="#ffffff" id="_x30_.1.0.220.8" height="27.547"/>
1689
- <rect gorn="0.3.0.0.0.0.0.13.9" x="68.39" fill-opacity="0.2" y="136.791" width="1.396" fill="#ffffff" id="_x30_.1.0.220.9" height="27.547"/>
1690
- <rect gorn="0.3.0.0.0.0.0.13.10" x="111.592" fill-opacity="0.2" y="136.791" width="1.4" id="_x30_.1.0.220.11" height="27.547"/>
1691
- <line gorn="0.3.0.0.0.0.0.13.11" x1="69.79" y1="163.673" x2="111.588" y2="163.673" fill="none" id="_x30_.1.0.220.12"/>
1692
- </g>
1693
- <g gorn="0.3.0.0.0.0.0.14" id="_x30_.1.0.221">
1694
- <g transform="matrix(1, 0, 0, 1, 18.6038, 120.082)">
1695
- <g >
1696
- <g >
1697
- <g gorn="0.3.0.0.0.0.0.14.0.0.0" id="_x30_.1.0.0.0.221.0">
1698
- <g gorn="0.3.0.0.0.0.0.14.0.0.0.0" id="_x30_.1.0.0.221.0">
1699
- <g gorn="0.3.0.0.0.0.0.14.0.0.0.0.0" id="con2_usb_micro_b_at">
1700
- <g gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.0" id="_x30_.1.0.221.0.0">
1701
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.0.0" x="8.029" y="26.485" width="0.821999" fill="#666666" id="_x30_.1.0.221.0.0.0" height="1.022"/>
1702
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.0.1" x="8.029" y="26.48" width="0.074" fill="#999999" id="_x30_.1.0.221.0.0.1" height="0.912002"/>
1703
- </g>
1704
- <g gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.1" id="_x30_.1.0.221.0.1">
1705
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.1.0" x="9.55999" y="26.485" width="0.817999" fill="#666666" id="_x30_.1.0.221.0.1.0" height="1.022"/>
1706
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.1.1" x="9.55999" y="26.48" width="0.072" fill="#999999" id="_x30_.1.0.221.0.1.1" height="0.912002"/>
1707
- </g>
1708
- <g gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.2" id="_x30_.1.0.221.0.2">
1709
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.2.0" x="11.087" y="26.485" width="0.821999" fill="#666666" id="_x30_.1.0.221.0.2.0" height="1.022"/>
1710
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.2.1" x="11.087" y="26.48" width="0.074" fill="#999999" id="_x30_.1.0.221.0.2.1" height="0.912002"/>
1711
- </g>
1712
- <g gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.3" id="_x30_.1.0.221.0.3">
1713
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.3.0" x="12.619" y="26.485" width="0.819999" fill="#666666" id="_x30_.1.0.221.0.3.0" height="1.022"/>
1714
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.3.1" x="12.619" y="26.48" width="0.072" fill="#999999" id="_x30_.1.0.221.0.3.1" height="0.912002"/>
1715
- </g>
1716
- <g gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.4" id="_x30_.1.0.221.0.4">
1717
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.4.0" x="14.146" y="26.485" width="0.821999" fill="#666666" id="_x30_.1.0.221.0.4.0" height="1.022"/>
1718
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.4.1" x="14.146" y="26.48" width="0.074" fill="#999999" id="_x30_.1.0.221.0.4.1" height="0.912002"/>
1719
- </g>
1720
- <g gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5" id="_x30_.1.0.221.0.5">
1721
- <polygon gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.0" points="19.333,41.3901,3.691,41.3901,3.691,27.272,19.335,27.272" fill="#b3b3b3" id="_x30_.1.0.221.0.5.0"/>
1722
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.1" x="19.503" y="32.7651" width="0.825999" fill="#666666" id="_x30_.1.0.221.0.5.1" height="2.523"/>
1723
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.2" x="2.667" y="32.7651" width="0.829999" fill="#666666" id="_x30_.1.0.221.0.5.2" height="2.523"/>
1724
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.3" x="3.691" y="27.272" width="15.646" fill="#cccccc" id="_x30_.1.0.221.0.5.3" height="0.108"/>
1725
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.4" x="7.65702" y="27.272" width="8.00721" fill="#333333" id="_x30_.1.0.221.0.5.4" height="12.961"/>
1726
- <polygon gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.5" points="3.497,41.0851,3.497,41.4801,2.968,42.3801,2.667,42.3801" fill="#b3b3b3" id="_x30_.1.0.221.0.5.5"/>
1727
- <polygon gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.6" points="3.497,41.4801,3.499,41.4801,3.497,41.9291,2.968,42.3801" fill="#cccccc" id="_x30_.1.0.221.0.5.6"/>
1728
- <polygon gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.7" points="20.331,42.3801,20.031,42.3801,19.501,41.4801,19.501,41.0851" fill="#b3b3b3" id="_x30_.1.0.221.0.5.7"/>
1729
- <polygon gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.8" points="20.031,42.3801,19.501,41.9291,19.497,41.4801,19.501,41.4801" fill="#cccccc" id="_x30_.1.0.221.0.5.8"/>
1730
- <g gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.9" id="_x30_.1.0.221.0.5.9">
1731
- <g gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.9.0" id="_x30_.1.0.221.0.5.9.0">
1732
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.9.0.0" x="14.765" y="40.5481" width="0.398" fill="#f2f2f2" id="_x30_.1.0.221.0.5.9.0.0" height="0.535001"/>
1733
- </g>
1734
- <g gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.9.1" id="_x30_.1.0.221.0.5.9.1">
1735
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.9.1.0" x="13.033" y="40.5481" width="0.398" fill="#f2f2f2" id="_x30_.1.0.221.0.5.9.1.0" height="0.535001"/>
1736
- </g>
1737
- <g gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.9.2" id="_x30_.1.0.221.0.5.9.2">
1738
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.9.2.0" x="11.302" y="40.5481" width="0.396" fill="#f2f2f2" id="_x30_.1.0.221.0.5.9.2.0" height="0.535001"/>
1739
- </g>
1740
- <g gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.9.3" id="_x30_.1.0.221.0.5.9.3">
1741
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.9.3.0" x="9.56999" y="40.5481" width="0.396" fill="#f2f2f2" id="_x30_.1.0.221.0.5.9.3.0" height="0.535001"/>
1742
- </g>
1743
- <g gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.9.4" id="_x30_.1.0.221.0.5.9.4">
1744
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.9.4.0" x="7.84099" y="40.5481" width="0.395" fill="#f2f2f2" id="_x30_.1.0.221.0.5.9.4.0" height="0.535001"/>
1745
- </g>
1746
- <g gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.9.5" id="_x30_.1.0.221.0.5.9.5">
1747
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.9.5.0" x="7.84099" y="40.5481" width="0.078" fill="#808080" id="_x30_.1.0.221.0.5.9.5.0" height="0.535001"/>
1748
- </g>
1749
- <g gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.9.6" id="_x30_.1.0.221.0.5.9.6">
1750
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.9.6.0" x="9.56999" y="40.5481" width="0.0799999" fill="#808080" id="_x30_.1.0.221.0.5.9.6.0" height="0.535001"/>
1751
- </g>
1752
- <g gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.9.7" id="_x30_.1.0.221.0.5.9.7">
1753
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.9.7.0" x="11.302" y="40.5481" width="0.0799999" fill="#808080" id="_x30_.1.0.221.0.5.9.7.0" height="0.535001"/>
1754
- </g>
1755
- <g gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.9.8" id="_x30_.1.0.221.0.5.9.8">
1756
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.9.8.0" x="13.033" y="40.5481" width="0.0819999" fill="#808080" id="_x30_.1.0.221.0.5.9.8.0" height="0.535001"/>
1757
- </g>
1758
- <g gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.9.9" id="_x30_.1.0.221.0.5.9.9">
1759
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.9.9.0" x="14.765" y="40.5481" width="0.0839999" fill="#808080" id="_x30_.1.0.221.0.5.9.9.0" height="0.535001"/>
1760
- </g>
1761
- </g>
1762
- <path gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.10" fill="#4d4d4d" id="_x30_.1.0.221.0.5.10" d="m7.415,41.2371,0.428,0,0,-0.325001,0.395,0,0,0.325001,1.338,0,0,-0.325001,0.396,0,0,0.325001,1.334,0,0,-0.325001,0.395,0,0,0.325001,1.334,0,0,-0.325001,0.398,0,0,0.325001,1.332,0,0,-0.325001,0.396,0,0,0.325001,0.269,0,0.225,0c0.063,0,0.121,-0.0530001,0.121,-0.118l0,-0.886002c0,-0.0630001,-0.051,-0.121,-0.121,-0.121l-8.30399,0c-0.065,0,-0.121,0.0560001,-0.121,0.121l0,0.886002c0,0.0630001,0.054,0.118,0.121,0.118l0.064,0z"/>
1763
- <path gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.11" fill="#cccccc" id="_x30_.1.0.221.0.5.11" d="m3.497,27.744,0.189,-0.472001,2.104,0c0,0,-1.914,0.0950002,-1.979,0.231,-0.067,0.144,0.0889999,0.239,0.0889999,0.239l-0.403,0.002,0,0z"/>
1764
- <path gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.12" fill="#cccccc" id="_x30_.1.0.221.0.5.12" d="m19.501,27.744,-0.191,-0.472001,-2.104,0c0,0,1.91,0.0970002,1.979,0.233,0.066,0.144,-0.0899999,0.234,-0.0899999,0.234l0.406,0.00500001,0,0z"/>
1765
- <path gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.13" fill="#e6e6e6" id="_x30_.1.0.221.0.5.13" d="m17.0389,27.272,0,1.356,-1.36756,0,0,-1.356,-0.393225,0,0,0.472001,-7.12835,0,0,-0.472001,-0.445586,0,0,1.358,-1.36756,0,0,-1.358,-2.83163,0,0,14.119,16.423,0,0,-14.119,-2.88912,0zm-9.33677,11.502,0,0.677001,-1.35934,0,0,-0.730001C5.97933,38.4911,5.74114,38.0901,5.74114,37.6351c0,-0.498001,0.193019,-0.916002,0.601643,-1.135l0,0,0,-3.72201,1.35729,0,0,3.72201c0.412731,0.221,0.706366,0.641001,0.706366,1.139,-0.00205,0.495001,-0.287475,0.917002,-0.704313,1.135zm9.27825,0,0,0.677001,-1.35729,0,0,-0.730001c-0.363451,-0.23,-0.603697,-0.631001,-0.603697,-1.086,0,-0.498001,0.188912,-0.916002,0.603697,-1.135l0,0,0,-3.72201,1.35729,0,0,3.72201c0.416838,0.221,0.704313,0.641001,0.704313,1.139,0,0.495001,-0.286448,0.917002,-0.704313,1.135z"/>
1766
- <polygon gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.14" points="3.835,41.3901,3.497,41.3901,3.497,27.744,4.771,27.744" fill="#f2f2f2" id="_x30_.1.0.221.0.5.14"/>
1767
- <polygon gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.15" points="19.501,41.3901,19.027,32.2761,18.556,27.744,19.501,27.744" fill="#999999" id="_x30_.1.0.221.0.5.15"/>
1768
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.16" x="6.271" y="32.7781" width="1.32" fill="#cccccc" id="_x30_.1.0.221.0.5.16" height="0.109"/>
1769
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.17" x="15.31" y="32.7781" width="1.322" fill="#cccccc" id="_x30_.1.0.221.0.5.17" height="0.109"/>
1770
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.18" x="4.285" y="40.6751" width="14.432" fill="#b3b3b3" id="_x30_.1.0.221.0.5.18" height="0.547001"/>
1771
- <rect gorn="0.3.0.0.0.0.0.14.0.0.0.0.0.5.19" x="4.285" y="41.1301" width="14.432" fill="#cccccc" id="_x30_.1.0.221.0.5.19" height="0.26"/>
1772
- </g>
1773
- </g>
1774
- </g>
1775
- </g>
1776
- </g>
1777
- </g>
1778
- </g>
1779
- </g>
1780
- <g gorn="0.3.0.0.0.0.0.15" id="_x30_.1.0.222">
1781
- <g gorn="0.3.0.0.0.0.0.15.0" id="breadboard_1_">
1782
- <polygon gorn="0.3.0.0.0.0.0.15.0.0" points="145.058,160.56,158.763,160.56,161.046,160.56,161.046,127.505,159.326,123.464,144.496,123.464,142.775,127.505,142.775,160.56" fill="#cccccc" id="_x30_.1.0.222.0.13"/>
1783
- <rect gorn="0.3.0.0.0.0.0.15.0.1" x="160.513" y="129.72" width="0.533" fill="#1a1a1a" id="_x30_.1.0.222.0.14" height="3.70901"/>
1784
- <rect gorn="0.3.0.0.0.0.0.15.0.2" x="142.775" y="129.72" width="0.533" fill="#1a1a1a" id="_x30_.1.0.222.0.15" height="3.70901"/>
1785
- <rect gorn="0.3.0.0.0.0.0.15.0.3" x="143.798" y="133.906" width="0.760999" fill="#1a1a1a" id="_x30_.1.0.222.0.16" height="3.71101"/>
1786
- <rect gorn="0.3.0.0.0.0.0.15.0.4" x="143.969" y="134.708" width="0.415" fill="#cccccc" id="_x30_.1.0.222.0.17" height="2.108"/>
1787
- <rect gorn="0.3.0.0.0.0.0.15.0.5" x="159.265" y="133.906" width="0.762" fill="#1a1a1a" id="_x30_.1.0.222.0.18" height="3.71101"/>
1788
- <rect gorn="0.3.0.0.0.0.0.15.0.6" x="147.666" y="133.908" width="0.763" fill="#1a1a1a" id="_x30_.1.0.222.0.19" height="3.70901"/>
1789
- <rect gorn="0.3.0.0.0.0.0.15.0.7" x="155.4" y="133.908" width="0.759999" fill="#1a1a1a" id="_x30_.1.0.222.0.20" height="3.70901"/>
1790
- <rect gorn="0.3.0.0.0.0.0.15.0.8" x="159.437" y="134.708" width="0.418" fill="#cccccc" id="_x30_.1.0.222.0.21" height="2.108"/>
1791
- <rect gorn="0.3.0.0.0.0.0.15.0.9" x="155.57" y="134.708" width="0.418" fill="#cccccc" id="_x30_.1.0.222.0.22" height="2.108"/>
1792
- <rect gorn="0.3.0.0.0.0.0.15.0.10" x="147.835" y="134.708" width="0.418" fill="#cccccc" id="_x30_.1.0.222.0.23" height="2.108"/>
1793
- <rect gorn="0.3.0.0.0.0.0.15.0.11" x="147.664" y="141.974" width="8.49599" fill="#939393" id="_x30_.1.0.222.0.24" height="5.73401"/>
1794
- <polyline gorn="0.3.0.0.0.0.0.15.0.12" style="stroke-linecap:square" stroke="#1a1a1a" points="147.666,147.708,147.666,141.974,156.16,141.974" stroke-width="0.1699" fill="none" id="_x30_.1.0.222.0.25"/>
1795
- <polyline gorn="0.3.0.0.0.0.0.15.0.13" style="stroke-linecap:square" stroke="#262626" points="156.16,141.974,156.16,147.708,147.666,147.708" stroke-width="0.1699" fill="none" id="_x30_.1.0.222.0.26"/>
1796
- <g gorn="0.3.0.0.0.0.0.15.0.14" id="_x30_.1.0.222.0.27">
1797
- <line gorn="0.3.0.0.0.0.0.15.0.14.0" x1="149.009" y1="159.503" x2="149.009" y2="159.509" fill="none" id="_x30_.1.0.222.0.27.0"/>
1798
- <line gorn="0.3.0.0.0.0.0.15.0.14.1" x1="154.82" y1="159.509" x2="154.818" y2="159.503" fill="none" id="_x30_.1.0.222.0.27.1"/>
1799
- </g>
1800
- <rect gorn="0.3.0.0.0.0.0.15.0.15" x="151.134" y="148.66" width="1.523" fill="#1a1a1a" id="_x30_.1.0.222.0.28" height="1.854"/>
1801
- <rect gorn="0.3.0.0.0.0.0.15.0.16" x="151.462" y="149.078" width="0.864999" fill="#cccccc" id="_x30_.1.0.222.0.29" height="1.018"/>
1802
- <rect gorn="0.3.0.0.0.0.0.15.0.17" x="142.464" y="158.296" width="18.894" fill="#212121" id="_x30_.1.0.222.0.0" height="5.94901"/>
1803
- <polygon gorn="0.3.0.0.0.0.0.15.0.18" points="145.449,164.119,145.449,164.244,158.418,164.244,158.418,164.119,158.386,164.119,158.386,158.267,145.443,158.267,145.443,164.119" fill="#2b2b2b" id="_x30_.1.0.222.0.1"/>
1804
- <polygon gorn="0.3.0.0.0.0.0.15.0.19" points="145.869,164.244,145.869,158.267,145.443,158.267,143.144,158.294,143.144,164.244" fill="#292929" id="_x30_.1.0.222.0.2"/>
1805
- <polygon gorn="0.3.0.0.0.0.0.15.0.20" points="157.488,164.244,157.488,158.267,158.441,158.267,160.738,158.296,160.738,164.244" fill="#292929" id="_x30_.1.0.222.0.3"/>
1806
- <rect gorn="0.3.0.0.0.0.0.15.0.21" x="150.289" y="158.294" width="5.023" fill="#333333" id="_x30_.1.0.222.0.4" height="5.92001"/>
1807
- <rect gorn="0.3.0.0.0.0.0.15.0.22" x="151.111" y="158.294" width="2.754" fill="#383838" id="_x30_.1.0.222.0.5" height="5.92001"/>
1808
- <rect gorn="0.3.0.0.0.0.0.15.0.23" x="160.74" y="158.298" width="0.615" fill="#212121" id="_x30_.1.0.222.0.6" height="5.94701"/>
1809
- </g>
1810
- </g>
1811
- <g gorn="0.3.0.0.0.0.0.16" id="_x30_.1.0.223">
1812
- <g transform="matrix(1, 0, 0, 1, 7.7428, 14.064)">
1813
- <g >
1814
- <g >
1815
- <g gorn="0.3.0.0.0.0.0.16.0.0.0" id="_x30_.1.0.0.0.223.0">
1816
- <g gorn="0.3.0.0.0.0.0.16.0.0.0.0" id="_x30_.1.0.0.223.0">
1817
- <g gorn="0.3.0.0.0.0.0.16.0.0.0.0.0" id="poe-rj45">
1818
- <g gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0" id="_x30_.1.0.223.0.0">
1819
- <rect gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.0" x="192.347" y="96.7732" width="45.183" fill="#1a1a1a" id="_x30_.1.0.223.0.0.0" height="36.3361"/>
1820
- <g gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.1" id="_x30_.1.0.223.0.0.1">
1821
- <path gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.1.0" fill="#b3b3b3" id="_x30_.1.0.223.0.0.1.0" d="m237.626,105.77c0.324,0,0.6,0.27,0.6,0.604001l0,2.195c0,0.332001,-0.271,0.604001,-0.6,0.604001l-7.84399,0c-0.33,0,-0.602,-0.271,-0.602,-0.604001l0,-2.195c0,-0.334001,0.27,-0.604001,0.602,-0.604001l7.84399,0z"/>
1822
- <path gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.1.1" fill="#b3b3b3" id="_x30_.1.0.223.0.0.1.1" d="m237.626,120.717c0.324,0,0.6,0.272,0.6,0.604001l0,2.197c0,0.332001,-0.271,0.604001,-0.6,0.604001l-7.84399,0c-0.33,0,-0.602,-0.271,-0.602,-0.604001l0,-2.197c0,-0.332001,0.27,-0.604001,0.602,-0.604001l7.84399,0z"/>
1823
- <path gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.1.2" fill="#cccccc" id="_x30_.1.0.223.0.0.1.2" d="m229.782,105.77,0.972999,0,0,3.40101,-0.972999,0c-0.328,0,-0.6,-0.272,-0.6,-0.604001l0,-2.197c0.000999999,-0.333001,0.27,-0.600001,0.6,-0.600001l0,0z"/>
1824
- <path gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.1.3" fill="#cccccc" id="_x30_.1.0.223.0.0.1.3" d="m230.755,120.717,0,3.40101,-0.974999,0c-0.328,0,-0.602,-0.272,-0.602,-0.603001l0,-2.197c0,-0.332001,0.271,-0.604001,0.602,-0.604001l0.974999,0,0,0.00300001z"/>
1825
- <rect gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.1.4" x="230.595" y="105.77" width="3.373" fill="#999999" id="_x30_.1.0.223.0.0.1.4" height="3.40101"/>
1826
- <rect gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.1.5" x="230.595" y="120.717" width="3.373" fill="#999999" id="_x30_.1.0.223.0.0.1.5" height="3.40101"/>
1827
- <rect gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.1.6" x="232.724" y="105.77" width="3.217" fill="#b3b3b3" id="_x30_.1.0.223.0.0.1.6" height="3.40101"/>
1828
- <rect gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.1.7" x="232.724" y="120.717" width="3.217" fill="#b3b3b3" id="_x30_.1.0.223.0.0.1.7" height="3.40101"/>
1829
- <rect gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.1.8" x="234.202" y="105.77" width="1.221" fill="#cccccc" id="_x30_.1.0.223.0.0.1.8" height="3.40101"/>
1830
- <rect gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.1.9" x="234.202" y="120.717" width="1.221" fill="#cccccc" id="_x30_.1.0.223.0.0.1.9" height="3.40101"/>
1831
- <rect gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.1.10" x="230.468" y="105.77" width="0.26" fill="#e6e6e6" id="_x30_.1.0.223.0.0.1.10" height="3.40101"/>
1832
- <rect gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.1.11" x="230.013" y="105.771" width="0.406" fill="#f2f2f2" id="_x30_.1.0.223.0.0.1.11" height="3.40401"/>
1833
- <path gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.1.12" fill="#cccccc" id="_x30_.1.0.223.0.0.1.12" d="m228.868,133.113,0,-0.225,8.65999,0,0,-0.359001,0,-7.16201,0,-0.598001,-0.598,-0.0410001,0,0,-4.236,-0.287,-4.234,-0.289c-0.328,-0.025,-0.598,-0.311001,-0.598,-0.641001l0,-2.183c0,-0.330001,0.27,-0.617001,0.598,-0.644001l4.234,-0.289,4.236,-0.289,0,0,0.598,-0.0410001,0,-0.602001,0,-9.06302,0,-0.600001,-0.598,-0.0430001,0,0,-4.236,-0.275,-4.234,-0.281c-0.326,-0.02,-0.598,-0.307001,-0.598,-0.637001l0,-2.213c0,-0.332001,0.271,-0.619001,0.598,-0.646001l4.234,-0.273,4.236,-0.279,0.598,-0.0380001,0,-0.601001,0,-7.16201,0,-0.362001,-8.65999,0,0,-0.236,-41.314,0,-0.604,0,0,0.601001,0,35.1461,0,0.603001,0.604,0,41.314,0,0,0.00900002,0,0z"/>
1834
- </g>
1835
- <rect gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.2" x="186.95" fill-opacity="0.37000002" y="96.7732" width="50.578" fill="#e6e6e6" id="_x30_.1.0.223.0.0.2" height="2.889"/>
1836
- <rect gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.3" x="186.95" fill-opacity="0.37000002" y="130.23" width="50.578" fill="#808080" id="_x30_.1.0.223.0.0.3" height="2.88701"/>
1837
- <path gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.4" fill-opacity="0.45" fill="#e6e6e6" id="_x30_.1.0.223.0.0.4" d="m229.183,107.467c0,0,0,-0.855001,0,-1.097,0,-0.242,0.199,-0.604001,0.603,-0.604001,0.396,0,7.74399,0,7.74399,0l0,1.697,-8.34699,0,0,0.00400001,0,0z"/>
1838
- <path gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.5" fill-opacity="0.45" fill="#e6e6e6" id="_x30_.1.0.223.0.0.5" d="m237.528,122.412,-8.34799,0c0,0,0,-0.854001,0,-1.096,0,-0.242,0.201,-0.600001,0.602,-0.600001,0.396,0,7.74599,0,7.74599,0l0,1.696,0,0z"/>
1839
- <path gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.6" fill-opacity="0.45" fill="#b3b3b3" id="_x30_.1.0.223.0.0.6" d="m229.183,122.417c0,0,0,0.854001,0,1.097,0,0.241,0.199,0.604001,0.603,0.604001,0.396,0,7.74399,0,7.74399,0l0,-1.703,-8.34699,0,0,0.002,0,0z"/>
1840
- <path gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.7" fill-opacity="0.45" fill="#b3b3b3" id="_x30_.1.0.223.0.0.7" d="m229.183,107.467c0,0,0,0.860001,0,1.104,0,0.24,0.199,0.604001,0.603,0.604001,0.396,0,7.74399,0,7.74399,0l0,-1.703,-8.34699,0,0,-0.00500001,0,0z"/>
1841
- <g gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.8" id="_x30_.1.0.223.0.0.12">
1842
- <g gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.8.0" id="_x30_.1.0.223.0.0.12.0">
1843
- <rect gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.8.0.0" x="226.88" y="95.7892" width="1.408" fill="#999999" id="_x30_.1.0.223.0.0.12.0.0" height="0.322001"/>
1844
- <rect gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.8.0.1" x="226.88" y="95.7892" width="1.408" fill="#999999" id="_x30_.1.0.223.0.0.12.0.1" height="0.322001"/>
1845
- </g>
1846
- <path gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.8.1" fill="#999999" id="_x30_.1.0.223.0.0.12.1" d="m233.806,96.7702c-0.336,-0.117,-1.578,-0.330001,-1.578,-0.330001,0,0,-2.479,-0.543001,-3.936,-0.646001l0,0.324001c1.447,0.104,3.936,0.646001,3.936,0.646001,0,0,0.774999,0.00700001,1.578,0.00600001z"/>
1847
- <path gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.8.2" fill="#cccccc" id="_x30_.1.0.223.0.0.12.2" d="m232.405,96.7702c-0.336,-0.117,-1.576,-0.330001,-1.576,-0.330001,0,0,-2.492,-0.555001,-3.945,-0.658001l0,0.328001c1.453,0.104,3.945,0.660001,3.945,0.660001,0,0,0.770999,0.001,1.576,0z"/>
1848
- </g>
1849
- <g gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.9" id="_x30_.1.0.223.0.0.13">
1850
- <g gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.9.0" id="_x30_.1.0.223.0.0.13.0">
1851
- <rect gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.9.0.0" x="226.88" y="133.775" width="1.408" fill="#999999" id="_x30_.1.0.223.0.0.13.0.0" height="0.322001"/>
1852
- <rect gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.9.0.1" x="226.88" y="133.775" width="1.408" fill="#999999" id="_x30_.1.0.223.0.0.13.0.1" height="0.322001"/>
1853
- </g>
1854
- <path gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.9.1" fill="#999999" id="_x30_.1.0.223.0.0.13.1" d="m233.806,133.117c-0.336,0.119,-1.578,0.328001,-1.578,0.328001,0,0,-2.479,0.547001,-3.936,0.648001l0,-0.328001c1.447,-0.105,3.936,-0.648001,3.936,-0.648001,0,0,0.774999,0,1.578,0z"/>
1855
- <path gorn="0.3.0.0.0.0.0.16.0.0.0.0.0.0.9.2" fill="#cccccc" id="_x30_.1.0.223.0.0.13.2" d="m232.405,133.117c-0.336,0.119,-1.576,0.328001,-1.576,0.328001,0,0,-2.492,0.557001,-3.945,0.660001l0,-0.330001c1.453,-0.102,3.945,-0.658001,3.945,-0.658001,0,0,0.770999,0,1.576,0z"/>
1856
- </g>
1857
- </g>
1858
- </g>
1859
- </g>
1860
- </g>
1861
- </g>
1862
- </g>
1863
- </g>
1864
- </g>
1865
- <g gorn="0.3.0.0.0.0.0.17" id="_x30_.1.0.224">
1866
- <g gorn="0.3.0.0.0.0.0.17.0" id="_x30_.1.0.224.0">
1867
- <path gorn="0.3.0.0.0.0.0.17.0.0" fill="#7a7a7a" id="_x30_.1.0.224.0.0" d="m243.289,81.2241c0.258,0.0450001,0.463,0.329001,0.463,0.660001l0,3.69601c0,0.328001,-0.209,0.631001,-0.463,0.664001l-16.336,2.326c-0.254,0.0470001,-0.463,-0.213,-0.463,-0.535001l0,-0.543001c0,-0.328001,0.211,-0.625001,0.463,-0.660001l14.437,-1.76c0.258,-0.023,0.463,-0.309001,0.463,-0.658001l0,-1.369c0,-0.319001,-0.209,-0.633001,-0.463,-0.665001l-14.431,-1.746c-0.258,-0.0390001,-0.467,-0.311001,-0.467,-0.661001l-0.002,-0.538001c0,-0.326001,0.211,-0.574001,0.465,-0.542001l16.334,2.331zm0,-15.467c0.258,0.0470001,0.463,0.329001,0.463,0.663001l0,3.69001c0,0.329001,-0.209,0.633001,-0.463,0.667001l-16.334,2.329c-0.256,0.0430001,-0.465,-0.211,-0.465,-0.536001l0,-0.540001c0,-0.329001,0.211,-0.627001,0.465,-0.662001L241.39,69.6101c0.258,-0.028,0.465,-0.310001,0.465,-0.658001l0,-1.369c0,-0.320001,-0.211,-0.633001,-0.465,-0.663001l-14.435,-1.747c-0.254,-0.0390001,-0.463,-0.309001,-0.463,-0.660001l-0.002,-0.536001c0,-0.327001,0.211,-0.573001,0.463,-0.542001l16.336,2.322z"/>
1868
- <rect gorn="0.3.0.0.0.0.0.17.0.1" x="216.945" y="62.6481" width="26.639" fill="#333333" id="_x30_.1.0.224.0.1" height="26.719"/>
1869
- <path gorn="0.3.0.0.0.0.0.17.0.2" fill="#b0b0b0" id="_x30_.1.0.224.0.2" d="m242.31,61.6361,0,-0.830001c0.445,0,0.734,-0.0830001,0.827999,-0.225,0.021,-0.0520001,0.0879999,-0.521001,0.0879999,-0.841001l0.561,0,0.271,0,0.049,0,0.127,0,0.701,0c0,0.501001,-0.0919999,1.09,-0.225,1.297,-0.369,0.551001,-1.113,0.597001,-1.441,0.600001l-0.002,0.002,-0.621,0,0.016,-0.018c-0.155,0.014,-0.278,0.015,-0.352,0.015z"/>
1870
- <path gorn="0.3.0.0.0.0.0.17.0.3" fill="#8f8f8f" id="_x30_.1.0.224.0.3" d="m243.023,60.6821c-0.143,0.0830001,-0.387,0.122,-0.715,0.122l0,0.831001,0.874999,0c0.234,0,0.858999,-0.00600001,1.297,-0.358001,0.123,-0.104,0.262,-0.156,0.375,-0.675001,-0.145,0.0880001,-1.832,0.0800001,-1.832,0.0800001z"/>
1871
- <rect gorn="0.3.0.0.0.0.0.17.0.4" x="209.851" y="82.4691" width="1.627" fill="#4d4d4d" id="_x30_.1.0.224.0.4" height="2.357"/>
1872
- <rect gorn="0.3.0.0.0.0.0.17.0.5" x="209.851" y="77.1771" width="1.627" fill="#4d4d4d" id="_x30_.1.0.224.0.5" height="2.354"/>
1873
- <rect gorn="0.3.0.0.0.0.0.17.0.6" x="209.851" y="72.4691" width="1.627" fill="#4d4d4d" id="_x30_.1.0.224.0.6" height="2.354"/>
1874
- <rect gorn="0.3.0.0.0.0.0.17.0.7" x="209.851" y="67.1731" width="1.627" fill="#4d4d4d" id="_x30_.1.0.224.0.7" height="2.356"/>
1875
- <path gorn="0.3.0.0.0.0.0.17.0.8" fill="#b0b0b0" id="_x30_.1.0.224.0.8" d="m242.31,90.3532,0,0.830001c0.445,0,0.734,0.0840001,0.827999,0.229,0.021,0.0600001,0.0879999,0.521001,0.0879999,0.840001l0.561,0,0.271,0,0.049,0,0.127,0,0.701,0c0,-0.502001,-0.0919999,-1.092,-0.225,-1.295,-0.369,-0.557001,-1.113,-0.600001,-1.441,-0.604001l-0.002,0,-0.621,0,0.016,0.02c-0.155,-0.02,-0.278,-0.02,-0.352,-0.02z"/>
1876
- <path gorn="0.3.0.0.0.0.0.17.0.9" fill="#8f8f8f" id="_x30_.1.0.224.0.9" d="m244.851,91.3822c-0.111,-0.514001,-0.26,-0.570001,-0.375,-0.674001,-0.434,-0.351001,-1.057,-0.355001,-1.295,-0.355001l-0.874999,0,0,0.830001c0.328,0,0.572,0.0470001,0.711,0.121,0.006,0.00400001,1.693,-0.002,1.834,0.0780001z"/>
1877
- <path gorn="0.3.0.0.0.0.0.17.0.10" fill="#b3b3b3" id="_x30_.1.0.224.0.10" d="m210.589,91.5422,32.052,0,0,-1.326,1.146,0,0,-28.432,-1.146,0,0,-1.327,-32.052,0,0,31.0851,0,0zM240.55,81.2241c0.257,0.0450001,0.462,0.329001,0.462,0.660001l0,3.69601c0,0.328001,-0.209,0.631001,-0.462,0.664001l-17.172,2.326c-0.252,0.0470001,-0.459,-0.213,-0.459,-0.535001l0,-0.543001c0,-0.328001,0.207,-0.625001,0.459,-0.660001l14.437,-1.76c0.261,-0.023,0.468,-0.309001,0.468,-0.658001l0,-1.369c0,-0.319001,-0.216,-0.633001,-0.468,-0.665001L223.38,80.6341c-0.254,-0.0390001,-0.461,-0.311001,-0.461,-0.661001l0,-0.538001c0,-0.326001,0.207,-0.574001,0.459,-0.542001l17.172,2.331zm0,-15.467c0.257,0.0470001,0.462,0.329001,0.462,0.663001l0,3.69001c0,0.329001,-0.209,0.633001,-0.462,0.667001l-17.172,2.329c-0.252,0.0430001,-0.461,-0.211,-0.461,-0.536001l0,-0.540001c0,-0.329001,0.209,-0.627001,0.461,-0.662001l14.437,-1.758c0.261,-0.028,0.468,-0.310001,0.468,-0.658001l0,-1.369c0,-0.320001,-0.216,-0.633001,-0.468,-0.663001L223.38,65.1731c-0.254,-0.0390001,-0.461,-0.309001,-0.461,-0.660001l-0.002,-0.536001c0,-0.327001,0.209,-0.573001,0.461,-0.542001l17.172,2.322z"/>
1878
- <polygon gorn="0.3.0.0.0.0.0.17.0.11" points="238.263,85.0271,238.263,82.4441,236.912,82.2911,236.912,85.1621" fill="none" id="_x30_.1.0.224.0.11"/>
1879
- <polygon gorn="0.3.0.0.0.0.0.17.0.12" points="236.912,82.2911,238.263,82.4441,238.263,85.0271,236.912,85.1621" fill="#939393" id="_x30_.1.0.224.0.12"/>
1880
- <polygon gorn="0.3.0.0.0.0.0.17.0.13" points="236.912,82.2911,236.344,82.2211,236.344,85.2401,236.912,85.1621" fill="#666666" id="_x30_.1.0.224.0.13"/>
1881
- <polygon gorn="0.3.0.0.0.0.0.17.0.14" points="238.263,69.5581,238.263,66.9781,236.912,66.8251,236.912,69.6951" fill="none" id="_x30_.1.0.224.0.14"/>
1882
- <polygon gorn="0.3.0.0.0.0.0.17.0.15" points="236.912,66.8251,238.263,66.9781,238.263,69.5581,236.912,69.6951" fill="#939393" id="_x30_.1.0.224.0.15"/>
1883
- <polygon gorn="0.3.0.0.0.0.0.17.0.16" points="236.912,66.8251,236.344,66.7561,236.344,69.7761,236.912,69.6951" fill="#666666" id="_x30_.1.0.224.0.16"/>
1884
- <line gorn="0.3.0.0.0.0.0.17.0.17" x1="211.472" y1="91.0712" style="stroke-linecap:round;" x2="242.054" stroke="#ffffff" y2="91.0712" stroke-width="0.806399" stroke-opacity="0.23999999" fill="none" id="_x30_.1.0.224.0.17"/>
1885
- <line gorn="0.3.0.0.0.0.0.17.0.18" x1="211.472" y1="60.9301" style="stroke-linecap:round;" x2="242.177" stroke="#ffffff" y2="60.9301" stroke-width="0.806399" stroke-opacity="0.23999999" fill="none" id="_x30_.1.0.224.0.18"/>
1886
- <line gorn="0.3.0.0.0.0.0.17.0.19" x1="243.121" y1="61.9671" style="stroke-linecap:round;" x2="243.121" stroke="#000000" y2="90.0352" stroke-width="0.4032" stroke-opacity="0.15" fill="none" id="_x30_.1.0.224.0.19"/>
1887
- <path gorn="0.3.0.0.0.0.0.17.0.20" fill="#999999" id="_x30_.1.0.224.0.20" d="m218.619,58.5741,1.711,0,0,1.181,0,0,0,0.706001,-2.826,0,0,-1.361c0,-0.292,0.234,-0.526001,0.529,-0.526001l0.586,0z"/>
1888
- <path gorn="0.3.0.0.0.0.0.17.0.21" fill="#808080" id="_x30_.1.0.224.0.21" d="m217.966,58.5741,0,1.884,-0.471,0c0,0,0,-1.293,0,-1.444,0.006,-0.233,0.331,-0.440001,0.471,-0.440001z"/>
1889
- <path gorn="0.3.0.0.0.0.0.17.0.22" fill="#b3b3b3" id="_x30_.1.0.224.0.22" d="m218.619,93.4402,1.711,0,0,-1.181,0,0,0,-0.725001,-2.826,0,0,1.375c0,0.293,0.234,0.523001,0.529,0.523001l0.586,0,0,0.00800001z"/>
1890
- <path gorn="0.3.0.0.0.0.0.17.0.23" fill="#e6e6e6" id="_x30_.1.0.224.0.23" d="m217.966,93.4402,0,-1.899,-0.471,0c0,0,0,1.305,0,1.461,0.006,0.233,0.331,0.438001,0.471,0.438001z"/>
1891
- </g>
1892
- </g>
1893
- <g gorn="0.3.0.0.0.0.0.18" id="_x30_.1.0.224_1_">
1894
- <g gorn="0.3.0.0.0.0.0.18.0" id="_x30_.1.0.224.0_1_">
1895
- <path gorn="0.3.0.0.0.0.0.18.0.0" fill="#7a7a7a" id="_x30_.1.0.224.0.0_1_" d="m243.289,30.7051c0.258,0.0450001,0.463,0.329001,0.463,0.660001l0,3.69501c0,0.328001,-0.209,0.631001,-0.463,0.664001l-16.336,2.327c-0.254,0.0460001,-0.463,-0.213,-0.463,-0.536001l0,-0.543001c0,-0.328001,0.211,-0.625001,0.463,-0.660001l14.437,-1.759c0.258,-0.024,0.463,-0.309001,0.463,-0.659001l0,-1.369c0,-0.319001,-0.209,-0.633001,-0.463,-0.664001l-14.431,-1.746c-0.258,-0.0390001,-0.467,-0.311001,-0.467,-0.661001l-0.002,-0.538001c0,-0.326001,0.211,-0.574001,0.465,-0.542001l16.334,2.331zm0,-15.467c0.258,0.0470001,0.463,0.329001,0.463,0.663001l0,3.69001c0,0.329001,-0.209,0.633001,-0.463,0.667001l-16.334,2.329c-0.256,0.0430001,-0.465,-0.211,-0.465,-0.536001l0,-0.540001c0,-0.329001,0.211,-0.627001,0.465,-0.662001l14.435,-1.758c0.258,-0.028,0.465,-0.310001,0.465,-0.658001l0,-1.369c0,-0.320001,-0.211,-0.633001,-0.465,-0.663001l-14.435,-1.747c-0.254,-0.0390001,-0.463,-0.309001,-0.463,-0.660001l-0.002,-0.536001c0,-0.327001,0.211,-0.573001,0.463,-0.542001l16.336,2.322z"/>
1896
- <rect gorn="0.3.0.0.0.0.0.18.0.1" x="216.945" y="12.129" width="26.639" fill="#333333" id="_x30_.1.0.224.0.1_1_" height="26.719"/>
1897
- <path gorn="0.3.0.0.0.0.0.18.0.2" fill="#b0b0b0" id="_x30_.1.0.224.0.2_1_" d="m242.31,11.117,0,-0.830001c0.445,0,0.734,-0.0830001,0.827999,-0.225,0.021,-0.0520001,0.0879999,-0.521001,0.0879999,-0.841001l0.561,0,0.271,0,0.049,0,0.127,0,0.701,0c0,0.501001,-0.0919999,1.09,-0.225,1.297,-0.369,0.551001,-1.113,0.597001,-1.441,0.600001l-0.002,0.002,-0.621,0,0.016,-0.018c-0.155,0.014,-0.278,0.015,-0.352,0.015z"/>
1898
- <path gorn="0.3.0.0.0.0.0.18.0.3" fill="#8f8f8f" id="_x30_.1.0.224.0.3_1_" d="m243.023,10.163c-0.143,0.0830001,-0.387,0.122,-0.715,0.122l0,0.831001,0.874999,0c0.234,0,0.858999,-0.00600001,1.297,-0.358001,0.123,-0.104,0.262,-0.156,0.375,-0.675001,-0.145,0.0880001,-1.832,0.0800001,-1.832,0.0800001z"/>
1899
- <rect gorn="0.3.0.0.0.0.0.18.0.4" x="209.851" y="31.9501" width="1.627" fill="#4d4d4d" id="_x30_.1.0.224.0.4_1_" height="2.356"/>
1900
- <rect gorn="0.3.0.0.0.0.0.18.0.5" x="209.851" y="26.658" width="1.627" fill="#4d4d4d" id="_x30_.1.0.224.0.5_1_" height="2.353"/>
1901
- <rect gorn="0.3.0.0.0.0.0.18.0.6" x="209.851" y="21.95" width="1.627" fill="#4d4d4d" id="_x30_.1.0.224.0.6_1_" height="2.354"/>
1902
- <rect gorn="0.3.0.0.0.0.0.18.0.7" x="209.851" y="16.654" width="1.627" fill="#4d4d4d" id="_x30_.1.0.224.0.7_1_" height="2.356"/>
1903
- <path gorn="0.3.0.0.0.0.0.18.0.8" fill="#b0b0b0" id="_x30_.1.0.224.0.8_1_" d="m242.31,39.8341,0,0.830001c0.445,0,0.734,0.0840001,0.827999,0.229,0.021,0.0590001,0.0879999,0.521001,0.0879999,0.840001l0.561,0,0.271,0,0.049,0,0.127,0,0.701,0c0,-0.502001,-0.0919999,-1.092,-0.225,-1.295,-0.369,-0.557001,-1.113,-0.600001,-1.441,-0.604001l-0.002,0,-0.621,0,0.016,0.02c-0.155,-0.02,-0.278,-0.02,-0.352,-0.02z"/>
1904
- <path gorn="0.3.0.0.0.0.0.18.0.9" fill="#8f8f8f" id="_x30_.1.0.224.0.9_1_" d="m244.851,40.8631c-0.111,-0.514001,-0.26,-0.570001,-0.375,-0.674001,-0.434,-0.350001,-1.057,-0.355001,-1.295,-0.355001l-0.874999,0,0,0.830001c0.328,0,0.572,0.0470001,0.711,0.121,0.006,0.00400001,1.693,-0.002,1.834,0.0780001z"/>
1905
- <path gorn="0.3.0.0.0.0.0.18.0.10" fill="#b3b3b3" id="_x30_.1.0.224.0.10_1_" d="m210.589,41.0231,32.052,0,0,-1.326,1.146,0,0,-28.432,-1.146,0,0,-1.327,-32.052,0,0,31.0851,0,0zM240.55,30.7051c0.257,0.0450001,0.462,0.329001,0.462,0.660001l0,3.69501c0,0.328001,-0.209,0.631001,-0.462,0.664001l-17.172,2.327c-0.252,0.0460001,-0.459,-0.213,-0.459,-0.536001l0,-0.543001c0,-0.328001,0.207,-0.625001,0.459,-0.660001l14.437,-1.759c0.261,-0.024,0.468,-0.309001,0.468,-0.659001l0,-1.369c0,-0.319001,-0.216,-0.633001,-0.468,-0.664001L223.38,30.1151c-0.254,-0.0390001,-0.461,-0.311001,-0.461,-0.661001l0,-0.538001c0,-0.326001,0.207,-0.574001,0.459,-0.542001l17.172,2.331zm0,-15.467c0.257,0.0470001,0.462,0.329001,0.462,0.663001l0,3.69001c0,0.329001,-0.209,0.633001,-0.462,0.667001l-17.172,2.329c-0.252,0.0430001,-0.461,-0.211,-0.461,-0.536001l0,-0.540001c0,-0.329001,0.209,-0.627001,0.461,-0.662001l14.437,-1.758c0.261,-0.028,0.468,-0.310001,0.468,-0.658001l0,-1.369c0,-0.320001,-0.216,-0.633001,-0.468,-0.663001L223.38,14.654c-0.254,-0.0390001,-0.461,-0.309001,-0.461,-0.660001l-0.002,-0.536001c0,-0.327001,0.209,-0.573001,0.461,-0.542001l17.172,2.322z"/>
1906
- <polygon gorn="0.3.0.0.0.0.0.18.0.11" points="238.263,34.5081,238.263,31.9251,236.912,31.7711,236.912,34.6431" fill="none" id="_x30_.1.0.224.0.11_1_"/>
1907
- <polygon gorn="0.3.0.0.0.0.0.18.0.12" points="236.912,31.7711,238.263,31.9251,238.263,34.5081,236.912,34.6431" fill="#939393" id="_x30_.1.0.224.0.12_1_"/>
1908
- <polygon gorn="0.3.0.0.0.0.0.18.0.13" points="236.912,31.7711,236.344,31.7021,236.344,34.7211,236.912,34.6431" fill="#666666" id="_x30_.1.0.224.0.13_1_"/>
1909
- <polygon gorn="0.3.0.0.0.0.0.18.0.14" points="238.263,19.039,238.263,16.459,236.912,16.306,236.912,19.176" fill="none" id="_x30_.1.0.224.0.14_1_"/>
1910
- <polygon gorn="0.3.0.0.0.0.0.18.0.15" points="236.912,16.306,238.263,16.459,238.263,19.039,236.912,19.176" fill="#939393" id="_x30_.1.0.224.0.15_1_"/>
1911
- <polygon gorn="0.3.0.0.0.0.0.18.0.16" points="236.912,16.306,236.344,16.237,236.344,19.257,236.912,19.176" fill="#666666" id="_x30_.1.0.224.0.16_1_"/>
1912
- <line gorn="0.3.0.0.0.0.0.18.0.17" x1="211.472" y1="40.5531" style="stroke-linecap:round;" x2="242.054" stroke="#ffffff" y2="40.5531" stroke-width="0.806399" stroke-opacity="0.23999999" fill="none" id="_x30_.1.0.224.0.17_1_"/>
1913
- <line gorn="0.3.0.0.0.0.0.18.0.18" x1="211.472" y1="10.411" style="stroke-linecap:round;" x2="242.177" stroke="#ffffff" y2="10.411" stroke-width="0.806399" stroke-opacity="0.23999999" fill="none" id="_x30_.1.0.224.0.18_1_"/>
1914
- <line gorn="0.3.0.0.0.0.0.18.0.19" x1="243.121" y1="11.448" style="stroke-linecap:round;" x2="243.121" stroke="#000000" y2="39.5161" stroke-width="0.4032" stroke-opacity="0.15" fill="none" id="_x30_.1.0.224.0.19_1_"/>
1915
- <path gorn="0.3.0.0.0.0.0.18.0.20" fill="#999999" id="_x30_.1.0.224.0.20_1_" d="m218.619,8.05501,1.711,0,0,1.181,0,0,0,0.706001,-2.826,0,0,-1.361c0,-0.292,0.234,-0.526001,0.529,-0.526001l0.586,0z"/>
1916
- <path gorn="0.3.0.0.0.0.0.18.0.21" fill="#808080" id="_x30_.1.0.224.0.21_1_" d="m217.966,8.05501,0,1.884,-0.471,0c0,0,0,-1.293,0,-1.444,0.006,-0.233,0.331,-0.440001,0.471,-0.440001z"/>
1917
- <path gorn="0.3.0.0.0.0.0.18.0.22" fill="#b3b3b3" id="_x30_.1.0.224.0.22_1_" d="m218.619,42.9221,1.711,0,0,-1.18,0,0,0,-0.725001,-2.826,0,0,1.375c0,0.293,0.234,0.523001,0.529,0.523001l0.586,0,0,0.00700001z"/>
1918
- <path gorn="0.3.0.0.0.0.0.18.0.23" fill="#e6e6e6" id="_x30_.1.0.224.0.23_1_" d="m217.966,42.9221,0,-1.9,-0.471,0c0,0,0,1.305,0,1.461,0.006,0.234,0.331,0.439001,0.471,0.439001z"/>
1919
- </g>
1920
- </g>
1921
- <g gorn="0.3.0.0.0.0.0.19" id="_x30_.1.0.226">
1922
- <g gorn="0.3.0.0.0.0.0.19.0" id="_x30_.1.0.226.0">
1923
- <g gorn="0.3.0.0.0.0.0.19.0.0" id="_x30_.1.0.226.0.0">
1924
- <g gorn="0.3.0.0.0.0.0.19.0.0.0" id="_x30_.1.0.226.0.0.0">
1925
- <g gorn="0.3.0.0.0.0.0.19.0.0.0.0" id="_x30_.1.0.226.0.0.0.0"/>
1926
- <g gorn="0.3.0.0.0.0.0.19.0.0.0.1" id="_x30_.1.0.226.0.0.0.1"/>
1927
- <g gorn="0.3.0.0.0.0.0.19.0.0.0.2" id="_x30_.1.0.226.0.0.0.2"/>
1928
- <g gorn="0.3.0.0.0.0.0.19.0.0.0.3" id="_x30_.1.0.226.0.0.0.3"/>
1929
- <g gorn="0.3.0.0.0.0.0.19.0.0.0.4" id="_x30_.1.0.226.0.0.0.4"/>
1930
- <g gorn="0.3.0.0.0.0.0.19.0.0.0.5" id="_x30_.1.0.226.0.0.0.5"/>
1931
- <g gorn="0.3.0.0.0.0.0.19.0.0.0.6" id="_x30_.1.0.226.0.0.0.6"/>
1932
- <g gorn="0.3.0.0.0.0.0.19.0.0.0.7" id="_x30_.1.0.226.0.0.0.7"/>
1933
- <g gorn="0.3.0.0.0.0.0.19.0.0.0.8" id="_x30_.1.0.226.0.0.0.8"/>
1934
- <g gorn="0.3.0.0.0.0.0.19.0.0.0.9" id="_x30_.1.0.226.0.0.0.9"/>
1935
- <g gorn="0.3.0.0.0.0.0.19.0.0.0.10" id="_x30_.1.0.226.0.0.0.10"/>
1936
- <g gorn="0.3.0.0.0.0.0.19.0.0.0.11" id="_x30_.1.0.226.0.0.0.11"/>
1937
- <g gorn="0.3.0.0.0.0.0.19.0.0.0.12" id="_x30_.1.0.226.0.0.0.12"/>
1938
- <g gorn="0.3.0.0.0.0.0.19.0.0.0.13" id="_x30_.1.0.226.0.0.0.13"/>
1939
- <g gorn="0.3.0.0.0.0.0.19.0.0.0.14" id="_x30_.1.0.226.0.0.0.14"/>
1940
- </g>
1941
- <g gorn="0.3.0.0.0.0.0.19.0.0.1" id="_x30_.1.0.226.0.0.1">
1942
- <g gorn="0.3.0.0.0.0.0.19.0.0.1.0" id="_x30_.1.0.226.0.0.1.0"/>
1943
- <g gorn="0.3.0.0.0.0.0.19.0.0.1.1" id="_x30_.1.0.226.0.0.1.1"/>
1944
- <g gorn="0.3.0.0.0.0.0.19.0.0.1.2" id="_x30_.1.0.226.0.0.1.2"/>
1945
- <g gorn="0.3.0.0.0.0.0.19.0.0.1.3" id="_x30_.1.0.226.0.0.1.3"/>
1946
- <g gorn="0.3.0.0.0.0.0.19.0.0.1.4" id="_x30_.1.0.226.0.0.1.4"/>
1947
- <g gorn="0.3.0.0.0.0.0.19.0.0.1.5" id="_x30_.1.0.226.0.0.1.5"/>
1948
- <g gorn="0.3.0.0.0.0.0.19.0.0.1.6" id="_x30_.1.0.226.0.0.1.6"/>
1949
- <g gorn="0.3.0.0.0.0.0.19.0.0.1.7" id="_x30_.1.0.226.0.0.1.7"/>
1950
- <g gorn="0.3.0.0.0.0.0.19.0.0.1.8" id="_x30_.1.0.226.0.0.1.8"/>
1951
- <g gorn="0.3.0.0.0.0.0.19.0.0.1.9" id="_x30_.1.0.226.0.0.1.9"/>
1952
- <g gorn="0.3.0.0.0.0.0.19.0.0.1.10" id="_x30_.1.0.226.0.0.1.10"/>
1953
- <g gorn="0.3.0.0.0.0.0.19.0.0.1.11" id="_x30_.1.0.226.0.0.1.11"/>
1954
- <g gorn="0.3.0.0.0.0.0.19.0.0.1.12" id="_x30_.1.0.226.0.0.1.12"/>
1955
- <g gorn="0.3.0.0.0.0.0.19.0.0.1.13" id="_x30_.1.0.226.0.0.1.13"/>
1956
- <g gorn="0.3.0.0.0.0.0.19.0.0.1.14" id="_x30_.1.0.226.0.0.1.14"/>
1957
- </g>
1958
- <g gorn="0.3.0.0.0.0.0.19.0.0.2" id="_x30_.1.0.226.0.0.2">
1959
- <g gorn="0.3.0.0.0.0.0.19.0.0.2.0" id="_x30_.1.0.226.0.0.2.0"/>
1960
- <g gorn="0.3.0.0.0.0.0.19.0.0.2.1" id="_x30_.1.0.226.0.0.2.1"/>
1961
- <g gorn="0.3.0.0.0.0.0.19.0.0.2.2" id="_x30_.1.0.226.0.0.2.2"/>
1962
- <g gorn="0.3.0.0.0.0.0.19.0.0.2.3" id="_x30_.1.0.226.0.0.2.3"/>
1963
- <g gorn="0.3.0.0.0.0.0.19.0.0.2.4" id="_x30_.1.0.226.0.0.2.4"/>
1964
- <g gorn="0.3.0.0.0.0.0.19.0.0.2.5" id="_x30_.1.0.226.0.0.2.5"/>
1965
- <g gorn="0.3.0.0.0.0.0.19.0.0.2.6" id="_x30_.1.0.226.0.0.2.6"/>
1966
- <g gorn="0.3.0.0.0.0.0.19.0.0.2.7" id="_x30_.1.0.226.0.0.2.7"/>
1967
- <g gorn="0.3.0.0.0.0.0.19.0.0.2.8" id="_x30_.1.0.226.0.0.2.8"/>
1968
- <g gorn="0.3.0.0.0.0.0.19.0.0.2.9" id="_x30_.1.0.226.0.0.2.9"/>
1969
- <g gorn="0.3.0.0.0.0.0.19.0.0.2.10" id="_x30_.1.0.226.0.0.2.10"/>
1970
- <g gorn="0.3.0.0.0.0.0.19.0.0.2.11" id="_x30_.1.0.226.0.0.2.11"/>
1971
- <g gorn="0.3.0.0.0.0.0.19.0.0.2.12" id="_x30_.1.0.226.0.0.2.12"/>
1972
- <g gorn="0.3.0.0.0.0.0.19.0.0.2.13" id="_x30_.1.0.226.0.0.2.13"/>
1973
- <g gorn="0.3.0.0.0.0.0.19.0.0.2.14" id="_x30_.1.0.226.0.0.2.14"/>
1974
- </g>
1975
- <g gorn="0.3.0.0.0.0.0.19.0.0.3" id="_x30_.1.0.226.0.0.3">
1976
- <g gorn="0.3.0.0.0.0.0.19.0.0.3.0" id="_x30_.1.0.226.0.0.3.0"/>
1977
- <g gorn="0.3.0.0.0.0.0.19.0.0.3.1" id="_x30_.1.0.226.0.0.3.1"/>
1978
- <g gorn="0.3.0.0.0.0.0.19.0.0.3.2" id="_x30_.1.0.226.0.0.3.2"/>
1979
- <g gorn="0.3.0.0.0.0.0.19.0.0.3.3" id="_x30_.1.0.226.0.0.3.3"/>
1980
- <g gorn="0.3.0.0.0.0.0.19.0.0.3.4" id="_x30_.1.0.226.0.0.3.4"/>
1981
- <g gorn="0.3.0.0.0.0.0.19.0.0.3.5" id="_x30_.1.0.226.0.0.3.5"/>
1982
- <g gorn="0.3.0.0.0.0.0.19.0.0.3.6" id="_x30_.1.0.226.0.0.3.6"/>
1983
- <g gorn="0.3.0.0.0.0.0.19.0.0.3.7" id="_x30_.1.0.226.0.0.3.7"/>
1984
- <g gorn="0.3.0.0.0.0.0.19.0.0.3.8" id="_x30_.1.0.226.0.0.3.8"/>
1985
- <g gorn="0.3.0.0.0.0.0.19.0.0.3.9" id="_x30_.1.0.226.0.0.3.9"/>
1986
- <g gorn="0.3.0.0.0.0.0.19.0.0.3.10" id="_x30_.1.0.226.0.0.3.10"/>
1987
- <g gorn="0.3.0.0.0.0.0.19.0.0.3.11" id="_x30_.1.0.226.0.0.3.11"/>
1988
- <g gorn="0.3.0.0.0.0.0.19.0.0.3.12" id="_x30_.1.0.226.0.0.3.12"/>
1989
- <g gorn="0.3.0.0.0.0.0.19.0.0.3.13" id="_x30_.1.0.226.0.0.3.13"/>
1990
- <g gorn="0.3.0.0.0.0.0.19.0.0.3.14" id="_x30_.1.0.226.0.0.3.14"/>
1991
- </g>
1992
- <g gorn="0.3.0.0.0.0.0.19.0.0.4" id="_x30_.1.0.226.0.0.4">
1993
- <g gorn="0.3.0.0.0.0.0.19.0.0.4.0" id="_x30_.1.0.226.0.0.4.0"/>
1994
- <g gorn="0.3.0.0.0.0.0.19.0.0.4.1" id="_x30_.1.0.226.0.0.4.1"/>
1995
- <g gorn="0.3.0.0.0.0.0.19.0.0.4.2" id="_x30_.1.0.226.0.0.4.2"/>
1996
- <g gorn="0.3.0.0.0.0.0.19.0.0.4.3" id="_x30_.1.0.226.0.0.4.3"/>
1997
- <g gorn="0.3.0.0.0.0.0.19.0.0.4.4" id="_x30_.1.0.226.0.0.4.4"/>
1998
- <g gorn="0.3.0.0.0.0.0.19.0.0.4.5" id="_x30_.1.0.226.0.0.4.5"/>
1999
- <g gorn="0.3.0.0.0.0.0.19.0.0.4.6" id="_x30_.1.0.226.0.0.4.6"/>
2000
- <g gorn="0.3.0.0.0.0.0.19.0.0.4.7" id="_x30_.1.0.226.0.0.4.7"/>
2001
- <g gorn="0.3.0.0.0.0.0.19.0.0.4.8" id="_x30_.1.0.226.0.0.4.8"/>
2002
- <g gorn="0.3.0.0.0.0.0.19.0.0.4.9" id="_x30_.1.0.226.0.0.4.9"/>
2003
- <g gorn="0.3.0.0.0.0.0.19.0.0.4.10" id="_x30_.1.0.226.0.0.4.10"/>
2004
- <g gorn="0.3.0.0.0.0.0.19.0.0.4.11" id="_x30_.1.0.226.0.0.4.11"/>
2005
- <g gorn="0.3.0.0.0.0.0.19.0.0.4.12" id="_x30_.1.0.226.0.0.4.12"/>
2006
- <g gorn="0.3.0.0.0.0.0.19.0.0.4.13" id="_x30_.1.0.226.0.0.4.13"/>
2007
- <g gorn="0.3.0.0.0.0.0.19.0.0.4.14" id="_x30_.1.0.226.0.0.4.14"/>
2008
- </g>
2009
- <g gorn="0.3.0.0.0.0.0.19.0.0.5" id="_x30_.1.0.226.0.0.5">
2010
- <g gorn="0.3.0.0.0.0.0.19.0.0.5.0" id="_x30_.1.0.226.0.0.5.0"/>
2011
- <g gorn="0.3.0.0.0.0.0.19.0.0.5.1" id="_x30_.1.0.226.0.0.5.1"/>
2012
- <g gorn="0.3.0.0.0.0.0.19.0.0.5.2" id="_x30_.1.0.226.0.0.5.2"/>
2013
- <g gorn="0.3.0.0.0.0.0.19.0.0.5.3" id="_x30_.1.0.226.0.0.5.3"/>
2014
- <g gorn="0.3.0.0.0.0.0.19.0.0.5.4" id="_x30_.1.0.226.0.0.5.4"/>
2015
- <g gorn="0.3.0.0.0.0.0.19.0.0.5.5" id="_x30_.1.0.226.0.0.5.5"/>
2016
- <g gorn="0.3.0.0.0.0.0.19.0.0.5.6" id="_x30_.1.0.226.0.0.5.6"/>
2017
- <g gorn="0.3.0.0.0.0.0.19.0.0.5.7" id="_x30_.1.0.226.0.0.5.7"/>
2018
- <g gorn="0.3.0.0.0.0.0.19.0.0.5.8" id="_x30_.1.0.226.0.0.5.8"/>
2019
- <g gorn="0.3.0.0.0.0.0.19.0.0.5.9" id="_x30_.1.0.226.0.0.5.9"/>
2020
- <g gorn="0.3.0.0.0.0.0.19.0.0.5.10" id="_x30_.1.0.226.0.0.5.10"/>
2021
- <g gorn="0.3.0.0.0.0.0.19.0.0.5.11" id="_x30_.1.0.226.0.0.5.11"/>
2022
- <g gorn="0.3.0.0.0.0.0.19.0.0.5.12" id="_x30_.1.0.226.0.0.5.12"/>
2023
- <g gorn="0.3.0.0.0.0.0.19.0.0.5.13" id="_x30_.1.0.226.0.0.5.13"/>
2024
- <g gorn="0.3.0.0.0.0.0.19.0.0.5.14" id="_x30_.1.0.226.0.0.5.14"/>
2025
- </g>
2026
- </g>
2027
- <rect gorn="0.3.0.0.0.0.0.19.0.1" x="130.8" fill-opacity="0.1" y="142.479" width="3.408" fill="#ffffff" id="_x30_.1.0.226.0.4" height="0.576001"/>
2028
- <rect gorn="0.3.0.0.0.0.0.19.0.2" x="123.584" fill-opacity="0.1" y="149.458" width="2.578" fill="#ffffff" id="_x30_.1.0.226.0.8" height="0.375001"/>
2029
- </g>
2030
- </g>
2031
- <g gorn="0.3.0.0.0.0.0.20" id="_x30_.1.0.227">
2032
- <g gorn="0.3.0.0.0.0.0.20.0" id="_x30_.1.0.227.0">
2033
- <g gorn="0.3.0.0.0.0.0.20.0.0" id="_x30_.1.0.227.0.0">
2034
- <g gorn="0.3.0.0.0.0.0.20.0.0.0" id="_x30_.1.0.227.0.0.0">
2035
- <rect gorn="0.3.0.0.0.0.0.20.0.0.0.0" x="15.348" y="99.9142" width="3.792" fill="#999999" id="_x30_.1.0.227.0.0.0.0" height="1.938"/>
2036
- </g>
2037
- <g gorn="0.3.0.0.0.0.0.20.0.0.1" id="_x30_.1.0.227.0.0.1">
2038
- <rect gorn="0.3.0.0.0.0.0.20.0.0.1.0" x="15.348" y="96.9252" width="3.792" fill="#999999" id="_x30_.1.0.227.0.0.1.0" height="1.939"/>
2039
- </g>
2040
- <g gorn="0.3.0.0.0.0.0.20.0.0.2" id="_x30_.1.0.227.0.0.2">
2041
- <rect gorn="0.3.0.0.0.0.0.20.0.0.2.0" x="15.348" y="93.9372" width="3.792" fill="#999999" id="_x30_.1.0.227.0.0.2.0" height="1.939"/>
2042
- </g>
2043
- <g gorn="0.3.0.0.0.0.0.20.0.0.3" id="_x30_.1.0.227.0.0.3">
2044
- <rect gorn="0.3.0.0.0.0.0.20.0.0.3.0" x="15.348" y="90.9492" width="3.792" fill="#999999" id="_x30_.1.0.227.0.0.3.0" height="1.938"/>
2045
- </g>
2046
- <g gorn="0.3.0.0.0.0.0.20.0.0.4" id="_x30_.1.0.227.0.0.4">
2047
- <rect gorn="0.3.0.0.0.0.0.20.0.0.4.0" x="15.348" y="87.9601" width="3.792" fill="#999999" id="_x30_.1.0.227.0.0.4.0" height="1.94"/>
2048
- </g>
2049
- <g gorn="0.3.0.0.0.0.0.20.0.0.5" id="_x30_.1.0.227.0.0.5">
2050
- <rect gorn="0.3.0.0.0.0.0.20.0.0.5.0" x="15.348" y="84.9741" width="3.792" fill="#999999" id="_x30_.1.0.227.0.0.5.0" height="1.938"/>
2051
- </g>
2052
- <g gorn="0.3.0.0.0.0.0.20.0.0.6" id="_x30_.1.0.227.0.0.6">
2053
- <rect gorn="0.3.0.0.0.0.0.20.0.0.6.0" x="15.348" y="81.9841" width="3.792" fill="#999999" id="_x30_.1.0.227.0.0.6.0" height="1.938"/>
2054
- </g>
2055
- <g gorn="0.3.0.0.0.0.0.20.0.0.7" id="_x30_.1.0.227.0.0.7">
2056
- <rect gorn="0.3.0.0.0.0.0.20.0.0.7.0" x="15.348" y="78.9971" width="3.792" fill="#999999" id="_x30_.1.0.227.0.0.7.0" height="1.94"/>
2057
- </g>
2058
- <g gorn="0.3.0.0.0.0.0.20.0.0.8" id="_x30_.1.0.227.0.0.8">
2059
- <rect gorn="0.3.0.0.0.0.0.20.0.0.8.0" x="15.348" y="76.0071" width="3.792" fill="#999999" id="_x30_.1.0.227.0.0.8.0" height="1.938"/>
2060
- </g>
2061
- <g gorn="0.3.0.0.0.0.0.20.0.0.9" id="_x30_.1.0.227.0.0.9">
2062
- <rect gorn="0.3.0.0.0.0.0.20.0.0.9.0" x="15.348" y="73.0201" width="3.792" fill="#999999" id="_x30_.1.0.227.0.0.9.0" height="1.939"/>
2063
- </g>
2064
- <g gorn="0.3.0.0.0.0.0.20.0.0.10" id="_x30_.1.0.227.0.0.10">
2065
- <rect gorn="0.3.0.0.0.0.0.20.0.0.10.0" x="15.348" y="70.0311" width="3.792" fill="#999999" id="_x30_.1.0.227.0.0.10.0" height="1.938"/>
2066
- </g>
2067
- <g gorn="0.3.0.0.0.0.0.20.0.0.11" id="_x30_.1.0.227.0.0.11">
2068
- <rect gorn="0.3.0.0.0.0.0.20.0.0.11.0" x="15.348" y="67.0431" width="3.792" fill="#999999" id="_x30_.1.0.227.0.0.11.0" height="1.938"/>
2069
- </g>
2070
- <g gorn="0.3.0.0.0.0.0.20.0.0.12" id="_x30_.1.0.227.0.0.12">
2071
- <rect gorn="0.3.0.0.0.0.0.20.0.0.12.0" x="15.348" y="64.0561" width="3.792" fill="#999999" id="_x30_.1.0.227.0.0.12.0" height="1.939"/>
2072
- </g>
2073
- <g gorn="0.3.0.0.0.0.0.20.0.0.13" id="_x30_.1.0.227.0.0.13">
2074
- <rect gorn="0.3.0.0.0.0.0.20.0.0.13.0" x="15.348" y="61.0671" width="3.792" fill="#999999" id="_x30_.1.0.227.0.0.13.0" height="1.939"/>
2075
- </g>
2076
- <g gorn="0.3.0.0.0.0.0.20.0.0.14" id="_x30_.1.0.227.0.0.14">
2077
- <rect gorn="0.3.0.0.0.0.0.20.0.0.14.0" x="15.348" y="58.0811" width="3.792" fill="#999999" id="_x30_.1.0.227.0.0.14.0" height="1.938"/>
2078
- </g>
2079
- </g>
2080
- <g gorn="0.3.0.0.0.0.0.20.0.1" id="_x30_.1.0.227.0.1">
2081
- <g gorn="0.3.0.0.0.0.0.20.0.1.0" id="_x30_.1.0.227.0.1.0">
2082
- <rect gorn="0.3.0.0.0.0.0.20.0.1.0.0" x="3.43" y="99.9142" width="3.793" fill="#999999" id="_x30_.1.0.227.0.1.0.0" height="1.938"/>
2083
- </g>
2084
- <g gorn="0.3.0.0.0.0.0.20.0.1.1" id="_x30_.1.0.227.0.1.1">
2085
- <rect gorn="0.3.0.0.0.0.0.20.0.1.1.0" x="3.43" y="96.9252" width="3.793" fill="#999999" id="_x30_.1.0.227.0.1.1.0" height="1.939"/>
2086
- </g>
2087
- <g gorn="0.3.0.0.0.0.0.20.0.1.2" id="_x30_.1.0.227.0.1.2">
2088
- <rect gorn="0.3.0.0.0.0.0.20.0.1.2.0" x="3.43" y="93.9372" width="3.793" fill="#999999" id="_x30_.1.0.227.0.1.2.0" height="1.939"/>
2089
- </g>
2090
- <g gorn="0.3.0.0.0.0.0.20.0.1.3" id="_x30_.1.0.227.0.1.3">
2091
- <rect gorn="0.3.0.0.0.0.0.20.0.1.3.0" x="3.43" y="90.9492" width="3.793" fill="#999999" id="_x30_.1.0.227.0.1.3.0" height="1.938"/>
2092
- </g>
2093
- <g gorn="0.3.0.0.0.0.0.20.0.1.4" id="_x30_.1.0.227.0.1.4">
2094
- <rect gorn="0.3.0.0.0.0.0.20.0.1.4.0" x="3.43" y="87.9601" width="3.793" fill="#999999" id="_x30_.1.0.227.0.1.4.0" height="1.94"/>
2095
- </g>
2096
- <g gorn="0.3.0.0.0.0.0.20.0.1.5" id="_x30_.1.0.227.0.1.5">
2097
- <rect gorn="0.3.0.0.0.0.0.20.0.1.5.0" x="3.43" y="84.9741" width="3.793" fill="#999999" id="_x30_.1.0.227.0.1.5.0" height="1.938"/>
2098
- </g>
2099
- <g gorn="0.3.0.0.0.0.0.20.0.1.6" id="_x30_.1.0.227.0.1.6">
2100
- <rect gorn="0.3.0.0.0.0.0.20.0.1.6.0" x="3.43" y="81.9841" width="3.793" fill="#999999" id="_x30_.1.0.227.0.1.6.0" height="1.938"/>
2101
- </g>
2102
- <g gorn="0.3.0.0.0.0.0.20.0.1.7" id="_x30_.1.0.227.0.1.7">
2103
- <rect gorn="0.3.0.0.0.0.0.20.0.1.7.0" x="3.43" y="78.9971" width="3.793" fill="#999999" id="_x30_.1.0.227.0.1.7.0" height="1.94"/>
2104
- </g>
2105
- <g gorn="0.3.0.0.0.0.0.20.0.1.8" id="_x30_.1.0.227.0.1.8">
2106
- <rect gorn="0.3.0.0.0.0.0.20.0.1.8.0" x="3.43" y="76.0071" width="3.793" fill="#999999" id="_x30_.1.0.227.0.1.8.0" height="1.938"/>
2107
- </g>
2108
- <g gorn="0.3.0.0.0.0.0.20.0.1.9" id="_x30_.1.0.227.0.1.9">
2109
- <rect gorn="0.3.0.0.0.0.0.20.0.1.9.0" x="3.43" y="73.0201" width="3.793" fill="#999999" id="_x30_.1.0.227.0.1.9.0" height="1.939"/>
2110
- </g>
2111
- <g gorn="0.3.0.0.0.0.0.20.0.1.10" id="_x30_.1.0.227.0.1.10">
2112
- <rect gorn="0.3.0.0.0.0.0.20.0.1.10.0" x="3.43" y="70.0311" width="3.793" fill="#999999" id="_x30_.1.0.227.0.1.10.0" height="1.938"/>
2113
- </g>
2114
- <g gorn="0.3.0.0.0.0.0.20.0.1.11" id="_x30_.1.0.227.0.1.11">
2115
- <rect gorn="0.3.0.0.0.0.0.20.0.1.11.0" x="3.43" y="67.0431" width="3.793" fill="#999999" id="_x30_.1.0.227.0.1.11.0" height="1.938"/>
2116
- </g>
2117
- <g gorn="0.3.0.0.0.0.0.20.0.1.12" id="_x30_.1.0.227.0.1.12">
2118
- <rect gorn="0.3.0.0.0.0.0.20.0.1.12.0" x="3.43" y="64.0561" width="3.793" fill="#999999" id="_x30_.1.0.227.0.1.12.0" height="1.939"/>
2119
- </g>
2120
- <g gorn="0.3.0.0.0.0.0.20.0.1.13" id="_x30_.1.0.227.0.1.13">
2121
- <rect gorn="0.3.0.0.0.0.0.20.0.1.13.0" x="3.43" y="61.0671" width="3.793" fill="#999999" id="_x30_.1.0.227.0.1.13.0" height="1.939"/>
2122
- </g>
2123
- <g gorn="0.3.0.0.0.0.0.20.0.1.14" id="_x30_.1.0.227.0.1.14">
2124
- <rect gorn="0.3.0.0.0.0.0.20.0.1.14.0" x="3.43" y="58.0811" width="3.793" fill="#999999" id="_x30_.1.0.227.0.1.14.0" height="1.938"/>
2125
- </g>
2126
- </g>
2127
- <g gorn="0.3.0.0.0.0.0.20.0.2" id="_x30_.1.0.227.0.2">
2128
- <g gorn="0.3.0.0.0.0.0.20.0.2.0" id="_x30_.1.0.227.0.2.0">
2129
- <rect gorn="0.3.0.0.0.0.0.20.0.2.0.0" x="3.43" fill-opacity="0.2" y="99.9142" width="3.793" fill="#ffffff" id="_x30_.1.0.227.0.2.0.0" height="0.244"/>
2130
- </g>
2131
- <g gorn="0.3.0.0.0.0.0.20.0.2.1" id="_x30_.1.0.227.0.2.1">
2132
- <rect gorn="0.3.0.0.0.0.0.20.0.2.1.0" x="3.43" fill-opacity="0.2" y="96.9252" width="3.793" fill="#ffffff" id="_x30_.1.0.227.0.2.1.0" height="0.244"/>
2133
- </g>
2134
- <g gorn="0.3.0.0.0.0.0.20.0.2.2" id="_x30_.1.0.227.0.2.2">
2135
- <rect gorn="0.3.0.0.0.0.0.20.0.2.2.0" x="3.43" fill-opacity="0.2" y="93.9372" width="3.793" fill="#ffffff" id="_x30_.1.0.227.0.2.2.0" height="0.246"/>
2136
- </g>
2137
- <g gorn="0.3.0.0.0.0.0.20.0.2.3" id="_x30_.1.0.227.0.2.3">
2138
- <rect gorn="0.3.0.0.0.0.0.20.0.2.3.0" x="3.43" fill-opacity="0.2" y="90.9492" width="3.793" fill="#ffffff" id="_x30_.1.0.227.0.2.3.0" height="0.243"/>
2139
- </g>
2140
- <g gorn="0.3.0.0.0.0.0.20.0.2.4" id="_x30_.1.0.227.0.2.4">
2141
- <rect gorn="0.3.0.0.0.0.0.20.0.2.4.0" x="3.43" fill-opacity="0.2" y="87.9601" width="3.793" fill="#ffffff" id="_x30_.1.0.227.0.2.4.0" height="0.246"/>
2142
- </g>
2143
- <g gorn="0.3.0.0.0.0.0.20.0.2.5" id="_x30_.1.0.227.0.2.5">
2144
- <rect gorn="0.3.0.0.0.0.0.20.0.2.5.0" x="3.43" fill-opacity="0.2" y="84.9741" width="3.793" fill="#ffffff" id="_x30_.1.0.227.0.2.5.0" height="0.244"/>
2145
- </g>
2146
- <g gorn="0.3.0.0.0.0.0.20.0.2.6" id="_x30_.1.0.227.0.2.6">
2147
- <rect gorn="0.3.0.0.0.0.0.20.0.2.6.0" x="3.43" fill-opacity="0.2" y="81.9841" width="3.793" fill="#ffffff" id="_x30_.1.0.227.0.2.6.0" height="0.246"/>
2148
- </g>
2149
- <g gorn="0.3.0.0.0.0.0.20.0.2.7" id="_x30_.1.0.227.0.2.7">
2150
- <rect gorn="0.3.0.0.0.0.0.20.0.2.7.0" x="3.43" fill-opacity="0.2" y="78.9971" width="3.793" fill="#ffffff" id="_x30_.1.0.227.0.2.7.0" height="0.244"/>
2151
- </g>
2152
- <g gorn="0.3.0.0.0.0.0.20.0.2.8" id="_x30_.1.0.227.0.2.8">
2153
- <rect gorn="0.3.0.0.0.0.0.20.0.2.8.0" x="3.43" fill-opacity="0.2" y="76.0071" width="3.793" fill="#ffffff" id="_x30_.1.0.227.0.2.8.0" height="0.245"/>
2154
- </g>
2155
- <g gorn="0.3.0.0.0.0.0.20.0.2.9" id="_x30_.1.0.227.0.2.9">
2156
- <rect gorn="0.3.0.0.0.0.0.20.0.2.9.0" x="3.43" fill-opacity="0.2" y="73.0201" width="3.793" fill="#ffffff" id="_x30_.1.0.227.0.2.9.0" height="0.245"/>
2157
- </g>
2158
- <g gorn="0.3.0.0.0.0.0.20.0.2.10" id="_x30_.1.0.227.0.2.10">
2159
- <rect gorn="0.3.0.0.0.0.0.20.0.2.10.0" x="3.43" fill-opacity="0.2" y="70.0311" width="3.793" fill="#ffffff" id="_x30_.1.0.227.0.2.10.0" height="0.245"/>
2160
- </g>
2161
- <g gorn="0.3.0.0.0.0.0.20.0.2.11" id="_x30_.1.0.227.0.2.11">
2162
- <rect gorn="0.3.0.0.0.0.0.20.0.2.11.0" x="3.43" fill-opacity="0.2" y="67.0431" width="3.793" fill="#ffffff" id="_x30_.1.0.227.0.2.11.0" height="0.244"/>
2163
- </g>
2164
- <g gorn="0.3.0.0.0.0.0.20.0.2.12" id="_x30_.1.0.227.0.2.12">
2165
- <rect gorn="0.3.0.0.0.0.0.20.0.2.12.0" x="3.43" fill-opacity="0.2" y="64.0561" width="3.793" fill="#ffffff" id="_x30_.1.0.227.0.2.12.0" height="0.245"/>
2166
- </g>
2167
- <g gorn="0.3.0.0.0.0.0.20.0.2.13" id="_x30_.1.0.227.0.2.13">
2168
- <rect gorn="0.3.0.0.0.0.0.20.0.2.13.0" x="3.43" fill-opacity="0.2" y="61.0671" width="3.793" fill="#ffffff" id="_x30_.1.0.227.0.2.13.0" height="0.245"/>
2169
- </g>
2170
- <g gorn="0.3.0.0.0.0.0.20.0.2.14" id="_x30_.1.0.227.0.2.14">
2171
- <rect gorn="0.3.0.0.0.0.0.20.0.2.14.0" x="3.43" fill-opacity="0.2" y="58.0811" width="3.793" fill="#ffffff" id="_x30_.1.0.227.0.2.14.0" height="0.244"/>
2172
- </g>
2173
- </g>
2174
- <g gorn="0.3.0.0.0.0.0.20.0.3" id="_x30_.1.0.227.0.3">
2175
- <g gorn="0.3.0.0.0.0.0.20.0.3.0" id="_x30_.1.0.227.0.3.0">
2176
- <rect gorn="0.3.0.0.0.0.0.20.0.3.0.0" x="3.43" fill-opacity="0.2" y="101.608" width="3.793" id="_x30_.1.0.227.0.3.0.0" height="0.244"/>
2177
- </g>
2178
- <g gorn="0.3.0.0.0.0.0.20.0.3.1" id="_x30_.1.0.227.0.3.1">
2179
- <rect gorn="0.3.0.0.0.0.0.20.0.3.1.0" x="3.43" fill-opacity="0.2" y="98.6212" width="3.793" id="_x30_.1.0.227.0.3.1.0" height="0.244"/>
2180
- </g>
2181
- <g gorn="0.3.0.0.0.0.0.20.0.3.2" id="_x30_.1.0.227.0.3.2">
2182
- <rect gorn="0.3.0.0.0.0.0.20.0.3.2.0" x="3.43" fill-opacity="0.2" y="95.6322" width="3.793" id="_x30_.1.0.227.0.3.2.0" height="0.242"/>
2183
- </g>
2184
- <g gorn="0.3.0.0.0.0.0.20.0.3.3" id="_x30_.1.0.227.0.3.3">
2185
- <rect gorn="0.3.0.0.0.0.0.20.0.3.3.0" x="3.43" fill-opacity="0.2" y="92.6462" width="3.793" id="_x30_.1.0.227.0.3.3.0" height="0.242"/>
2186
- </g>
2187
- <g gorn="0.3.0.0.0.0.0.20.0.3.4" id="_x30_.1.0.227.0.3.4">
2188
- <rect gorn="0.3.0.0.0.0.0.20.0.3.4.0" x="3.43" fill-opacity="0.2" y="89.6562" width="3.793" id="_x30_.1.0.227.0.3.4.0" height="0.243"/>
2189
- </g>
2190
- <g gorn="0.3.0.0.0.0.0.20.0.3.5" id="_x30_.1.0.227.0.3.5">
2191
- <rect gorn="0.3.0.0.0.0.0.20.0.3.5.0" x="3.43" fill-opacity="0.2" y="86.6671" width="3.793" id="_x30_.1.0.227.0.3.5.0" height="0.244"/>
2192
- </g>
2193
- <g gorn="0.3.0.0.0.0.0.20.0.3.6" id="_x30_.1.0.227.0.3.6">
2194
- <rect gorn="0.3.0.0.0.0.0.20.0.3.6.0" x="3.43" fill-opacity="0.2" y="83.6811" width="3.793" id="_x30_.1.0.227.0.3.6.0" height="0.242"/>
2195
- </g>
2196
- <g gorn="0.3.0.0.0.0.0.20.0.3.7" id="_x30_.1.0.227.0.3.7">
2197
- <rect gorn="0.3.0.0.0.0.0.20.0.3.7.0" x="3.43" fill-opacity="0.2" y="80.6931" width="3.793" id="_x30_.1.0.227.0.3.7.0" height="0.242"/>
2198
- </g>
2199
- <g gorn="0.3.0.0.0.0.0.20.0.3.8" id="_x30_.1.0.227.0.3.8">
2200
- <rect gorn="0.3.0.0.0.0.0.20.0.3.8.0" x="3.43" fill-opacity="0.2" y="77.7051" width="3.793" id="_x30_.1.0.227.0.3.8.0" height="0.243"/>
2201
- </g>
2202
- <g gorn="0.3.0.0.0.0.0.20.0.3.9" id="_x30_.1.0.227.0.3.9">
2203
- <rect gorn="0.3.0.0.0.0.0.20.0.3.9.0" x="3.43" fill-opacity="0.2" y="74.7151" width="3.793" id="_x30_.1.0.227.0.3.9.0" height="0.243"/>
2204
- </g>
2205
- <g gorn="0.3.0.0.0.0.0.20.0.3.10" id="_x30_.1.0.227.0.3.10">
2206
- <rect gorn="0.3.0.0.0.0.0.20.0.3.10.0" x="3.43" fill-opacity="0.2" y="71.7281" width="3.793" id="_x30_.1.0.227.0.3.10.0" height="0.243"/>
2207
- </g>
2208
- <g gorn="0.3.0.0.0.0.0.20.0.3.11" id="_x30_.1.0.227.0.3.11">
2209
- <rect gorn="0.3.0.0.0.0.0.20.0.3.11.0" x="3.43" fill-opacity="0.2" y="68.7391" width="3.793" id="_x30_.1.0.227.0.3.11.0" height="0.243"/>
2210
- </g>
2211
- <g gorn="0.3.0.0.0.0.0.20.0.3.12" id="_x30_.1.0.227.0.3.12">
2212
- <rect gorn="0.3.0.0.0.0.0.20.0.3.12.0" x="3.43" fill-opacity="0.2" y="65.7501" width="3.793" id="_x30_.1.0.227.0.3.12.0" height="0.244"/>
2213
- </g>
2214
- <g gorn="0.3.0.0.0.0.0.20.0.3.13" id="_x30_.1.0.227.0.3.13">
2215
- <rect gorn="0.3.0.0.0.0.0.20.0.3.13.0" x="3.43" fill-opacity="0.2" y="62.7631" width="3.793" id="_x30_.1.0.227.0.3.13.0" height="0.245"/>
2216
- </g>
2217
- <g gorn="0.3.0.0.0.0.0.20.0.3.14" id="_x30_.1.0.227.0.3.14">
2218
- <rect gorn="0.3.0.0.0.0.0.20.0.3.14.0" x="3.43" fill-opacity="0.2" y="59.7741" width="3.793" id="_x30_.1.0.227.0.3.14.0" height="0.244"/>
2219
- </g>
2220
- </g>
2221
- <g gorn="0.3.0.0.0.0.0.20.0.4" id="_x30_.1.0.227.0.4">
2222
- <g gorn="0.3.0.0.0.0.0.20.0.4.0" id="_x30_.1.0.227.0.4.0">
2223
- <rect gorn="0.3.0.0.0.0.0.20.0.4.0.0" x="15.348" fill-opacity="0.2" y="101.608" width="3.792" id="_x30_.1.0.227.0.4.0.0" height="0.244"/>
2224
- </g>
2225
- <g gorn="0.3.0.0.0.0.0.20.0.4.1" id="_x30_.1.0.227.0.4.1">
2226
- <rect gorn="0.3.0.0.0.0.0.20.0.4.1.0" x="15.348" fill-opacity="0.2" y="98.6212" width="3.792" id="_x30_.1.0.227.0.4.1.0" height="0.244"/>
2227
- </g>
2228
- <g gorn="0.3.0.0.0.0.0.20.0.4.2" id="_x30_.1.0.227.0.4.2">
2229
- <rect gorn="0.3.0.0.0.0.0.20.0.4.2.0" x="15.348" fill-opacity="0.2" y="95.6322" width="3.792" id="_x30_.1.0.227.0.4.2.0" height="0.242"/>
2230
- </g>
2231
- <g gorn="0.3.0.0.0.0.0.20.0.4.3" id="_x30_.1.0.227.0.4.3">
2232
- <rect gorn="0.3.0.0.0.0.0.20.0.4.3.0" x="15.348" fill-opacity="0.2" y="92.6462" width="3.792" id="_x30_.1.0.227.0.4.3.0" height="0.242"/>
2233
- </g>
2234
- <g gorn="0.3.0.0.0.0.0.20.0.4.4" id="_x30_.1.0.227.0.4.4">
2235
- <rect gorn="0.3.0.0.0.0.0.20.0.4.4.0" x="15.348" fill-opacity="0.2" y="89.6562" width="3.792" id="_x30_.1.0.227.0.4.4.0" height="0.243"/>
2236
- </g>
2237
- <g gorn="0.3.0.0.0.0.0.20.0.4.5" id="_x30_.1.0.227.0.4.5">
2238
- <rect gorn="0.3.0.0.0.0.0.20.0.4.5.0" x="15.348" fill-opacity="0.2" y="86.6671" width="3.792" id="_x30_.1.0.227.0.4.5.0" height="0.244"/>
2239
- </g>
2240
- <g gorn="0.3.0.0.0.0.0.20.0.4.6" id="_x30_.1.0.227.0.4.6">
2241
- <rect gorn="0.3.0.0.0.0.0.20.0.4.6.0" x="15.348" fill-opacity="0.2" y="83.6811" width="3.792" id="_x30_.1.0.227.0.4.6.0" height="0.242"/>
2242
- </g>
2243
- <g gorn="0.3.0.0.0.0.0.20.0.4.7" id="_x30_.1.0.227.0.4.7">
2244
- <rect gorn="0.3.0.0.0.0.0.20.0.4.7.0" x="15.348" fill-opacity="0.2" y="80.6931" width="3.792" id="_x30_.1.0.227.0.4.7.0" height="0.242"/>
2245
- </g>
2246
- <g gorn="0.3.0.0.0.0.0.20.0.4.8" id="_x30_.1.0.227.0.4.8">
2247
- <rect gorn="0.3.0.0.0.0.0.20.0.4.8.0" x="15.348" fill-opacity="0.2" y="77.7051" width="3.792" id="_x30_.1.0.227.0.4.8.0" height="0.243"/>
2248
- </g>
2249
- <g gorn="0.3.0.0.0.0.0.20.0.4.9" id="_x30_.1.0.227.0.4.9">
2250
- <rect gorn="0.3.0.0.0.0.0.20.0.4.9.0" x="15.348" fill-opacity="0.2" y="74.7151" width="3.792" id="_x30_.1.0.227.0.4.9.0" height="0.243"/>
2251
- </g>
2252
- <g gorn="0.3.0.0.0.0.0.20.0.4.10" id="_x30_.1.0.227.0.4.10">
2253
- <rect gorn="0.3.0.0.0.0.0.20.0.4.10.0" x="15.348" fill-opacity="0.2" y="71.7281" width="3.792" id="_x30_.1.0.227.0.4.10.0" height="0.243"/>
2254
- </g>
2255
- <g gorn="0.3.0.0.0.0.0.20.0.4.11" id="_x30_.1.0.227.0.4.11">
2256
- <rect gorn="0.3.0.0.0.0.0.20.0.4.11.0" x="15.348" fill-opacity="0.2" y="68.7391" width="3.792" id="_x30_.1.0.227.0.4.11.0" height="0.243"/>
2257
- </g>
2258
- <g gorn="0.3.0.0.0.0.0.20.0.4.12" id="_x30_.1.0.227.0.4.12">
2259
- <rect gorn="0.3.0.0.0.0.0.20.0.4.12.0" x="15.348" fill-opacity="0.2" y="65.7501" width="3.792" id="_x30_.1.0.227.0.4.12.0" height="0.244"/>
2260
- </g>
2261
- <g gorn="0.3.0.0.0.0.0.20.0.4.13" id="_x30_.1.0.227.0.4.13">
2262
- <rect gorn="0.3.0.0.0.0.0.20.0.4.13.0" x="15.348" fill-opacity="0.2" y="62.7631" width="3.792" id="_x30_.1.0.227.0.4.13.0" height="0.245"/>
2263
- </g>
2264
- <g gorn="0.3.0.0.0.0.0.20.0.4.14" id="_x30_.1.0.227.0.4.14">
2265
- <rect gorn="0.3.0.0.0.0.0.20.0.4.14.0" x="15.348" fill-opacity="0.2" y="59.7741" width="3.792" id="_x30_.1.0.227.0.4.14.0" height="0.244"/>
2266
- </g>
2267
- </g>
2268
- <g gorn="0.3.0.0.0.0.0.20.0.5" id="_x30_.1.0.227.0.5">
2269
- <g gorn="0.3.0.0.0.0.0.20.0.5.0" id="_x30_.1.0.227.0.5.0">
2270
- <rect gorn="0.3.0.0.0.0.0.20.0.5.0.0" x="15.348" fill-opacity="0.2" y="99.9142" width="3.792" fill="#ffffff" id="_x30_.1.0.227.0.5.0.0" height="0.244"/>
2271
- </g>
2272
- <g gorn="0.3.0.0.0.0.0.20.0.5.1" id="_x30_.1.0.227.0.5.1">
2273
- <rect gorn="0.3.0.0.0.0.0.20.0.5.1.0" x="15.348" fill-opacity="0.2" y="96.9252" width="3.792" fill="#ffffff" id="_x30_.1.0.227.0.5.1.0" height="0.244"/>
2274
- </g>
2275
- <g gorn="0.3.0.0.0.0.0.20.0.5.2" id="_x30_.1.0.227.0.5.2">
2276
- <rect gorn="0.3.0.0.0.0.0.20.0.5.2.0" x="15.348" fill-opacity="0.2" y="93.9372" width="3.792" fill="#ffffff" id="_x30_.1.0.227.0.5.2.0" height="0.246"/>
2277
- </g>
2278
- <g gorn="0.3.0.0.0.0.0.20.0.5.3" id="_x30_.1.0.227.0.5.3">
2279
- <rect gorn="0.3.0.0.0.0.0.20.0.5.3.0" x="15.348" fill-opacity="0.2" y="90.9492" width="3.792" fill="#ffffff" id="_x30_.1.0.227.0.5.3.0" height="0.243"/>
2280
- </g>
2281
- <g gorn="0.3.0.0.0.0.0.20.0.5.4" id="_x30_.1.0.227.0.5.4">
2282
- <rect gorn="0.3.0.0.0.0.0.20.0.5.4.0" x="15.348" fill-opacity="0.2" y="87.9601" width="3.792" fill="#ffffff" id="_x30_.1.0.227.0.5.4.0" height="0.246"/>
2283
- </g>
2284
- <g gorn="0.3.0.0.0.0.0.20.0.5.5" id="_x30_.1.0.227.0.5.5">
2285
- <rect gorn="0.3.0.0.0.0.0.20.0.5.5.0" x="15.348" fill-opacity="0.2" y="84.9741" width="3.792" fill="#ffffff" id="_x30_.1.0.227.0.5.5.0" height="0.244"/>
2286
- </g>
2287
- <g gorn="0.3.0.0.0.0.0.20.0.5.6" id="_x30_.1.0.227.0.5.6">
2288
- <rect gorn="0.3.0.0.0.0.0.20.0.5.6.0" x="15.348" fill-opacity="0.2" y="81.9841" width="3.792" fill="#ffffff" id="_x30_.1.0.227.0.5.6.0" height="0.246"/>
2289
- </g>
2290
- <g gorn="0.3.0.0.0.0.0.20.0.5.7" id="_x30_.1.0.227.0.5.7">
2291
- <rect gorn="0.3.0.0.0.0.0.20.0.5.7.0" x="15.348" fill-opacity="0.2" y="78.9971" width="3.792" fill="#ffffff" id="_x30_.1.0.227.0.5.7.0" height="0.244"/>
2292
- </g>
2293
- <g gorn="0.3.0.0.0.0.0.20.0.5.8" id="_x30_.1.0.227.0.5.8">
2294
- <rect gorn="0.3.0.0.0.0.0.20.0.5.8.0" x="15.348" fill-opacity="0.2" y="76.0071" width="3.792" fill="#ffffff" id="_x30_.1.0.227.0.5.8.0" height="0.245"/>
2295
- </g>
2296
- <g gorn="0.3.0.0.0.0.0.20.0.5.9" id="_x30_.1.0.227.0.5.9">
2297
- <rect gorn="0.3.0.0.0.0.0.20.0.5.9.0" x="15.348" fill-opacity="0.2" y="73.0201" width="3.792" fill="#ffffff" id="_x30_.1.0.227.0.5.9.0" height="0.245"/>
2298
- </g>
2299
- <g gorn="0.3.0.0.0.0.0.20.0.5.10" id="_x30_.1.0.227.0.5.10">
2300
- <rect gorn="0.3.0.0.0.0.0.20.0.5.10.0" x="15.348" fill-opacity="0.2" y="70.0311" width="3.792" fill="#ffffff" id="_x30_.1.0.227.0.5.10.0" height="0.245"/>
2301
- </g>
2302
- <g gorn="0.3.0.0.0.0.0.20.0.5.11" id="_x30_.1.0.227.0.5.11">
2303
- <rect gorn="0.3.0.0.0.0.0.20.0.5.11.0" x="15.348" fill-opacity="0.2" y="67.0431" width="3.792" fill="#ffffff" id="_x30_.1.0.227.0.5.11.0" height="0.244"/>
2304
- </g>
2305
- <g gorn="0.3.0.0.0.0.0.20.0.5.12" id="_x30_.1.0.227.0.5.12">
2306
- <rect gorn="0.3.0.0.0.0.0.20.0.5.12.0" x="15.348" fill-opacity="0.2" y="64.0561" width="3.792" fill="#ffffff" id="_x30_.1.0.227.0.5.12.0" height="0.245"/>
2307
- </g>
2308
- <g gorn="0.3.0.0.0.0.0.20.0.5.13" id="_x30_.1.0.227.0.5.13">
2309
- <rect gorn="0.3.0.0.0.0.0.20.0.5.13.0" x="15.348" fill-opacity="0.2" y="61.0671" width="3.792" fill="#ffffff" id="_x30_.1.0.227.0.5.13.0" height="0.245"/>
2310
- </g>
2311
- <g gorn="0.3.0.0.0.0.0.20.0.5.14" id="_x30_.1.0.227.0.5.14">
2312
- <rect gorn="0.3.0.0.0.0.0.20.0.5.14.0" x="15.348" fill-opacity="0.2" y="58.0811" width="3.792" fill="#ffffff" id="_x30_.1.0.227.0.5.14.0" height="0.244"/>
2313
- </g>
2314
- </g>
2315
- </g>
2316
- <polyline gorn="0.3.0.0.0.0.0.20.1" fill-opacity="0.1" points="15.348,46.9171,7.034,46.9171,7.034,46.3431,15.348,46.3431" fill="#ffffff" id="_x30_.1.0.227.2"/>
2317
- <rect gorn="0.3.0.0.0.0.0.20.2" x="11.673" y="54.1321" width="2.577" id="_x30_.1.0.227.3" height="50.7131"/>
2318
- <rect gorn="0.3.0.0.0.0.0.20.3" x="3.624" fill-opacity="0.1" y="60.5801" width="3.407" fill="#ffffff" id="_x30_.1.0.227.4" height="0.575001"/>
2319
- <polyline gorn="0.3.0.0.0.0.0.20.4" fill-opacity="0.2" points="15.348,112.593,7.034,112.593,7.034,112.015,15.348,112.015" id="_x30_.1.0.227.5"/>
2320
- <rect gorn="0.3.0.0.0.0.0.20.5" x="3.624" fill-opacity="0.2" y="97.8242" width="3.407" id="_x30_.1.0.227.6" height="0.573001"/>
2321
- <rect gorn="0.3.0.0.0.0.0.20.6" x="11.673" fill-opacity="0.2" y="104.845" width="2.577" id="_x30_.1.0.227.7" height="0.576001"/>
2322
- <rect gorn="0.3.0.0.0.0.0.20.7" x="11.67" fill-opacity="0.1" y="53.8011" width="2.579" fill="#ffffff" id="_x30_.1.0.227.8" height="0.376001"/>
2323
- </g>
2324
- <g transform="matrix(0.999898, 0, 0, 0.990573, -142.045, -29.3417)">
2325
- <g >
2326
- <g >
2327
- <g gorn="0.3.0.0.0.0.0.21.0.0" id="_x30_.1.0.0.0.233">
2328
- <g gorn="0.3.0.0.0.0.0.21.0.0.0" id="_x30_.1.0.0.233">
2329
- <g gorn="0.3.0.0.0.0.0.21.0.0.0.0" id="g9340">
2330
- <path gorn="0.3.0.0.0.0.0.21.0.0.0.0.0" fill="#ffffff" id="path808" d="m214.917,56.9528,-0.12437,-0.227543c0.006,-1.64175,-0.7221,-2.31137,-1.56855,-2.81961,0.25796,-0.0711301,0.52038,-0.129641,0.59367,-0.467323,0.43932,-0.118169,0.53185,-0.331944,0.57627,-0.558722,0.11472,-0.0795501,0.50076,-0.306705,0.46079,-0.695248,0.21542,-0.156028,0.33532,-0.357183,0.27499,-0.640561,0.23169,-0.265402,0.29277,-0.485297,0.19468,-0.687599,0.27943,-0.36292,0.15582,-0.551072,0.036,-0.741518,0.208,-0.397724,0.0256,-0.822213,-0.55776,-0.751083,-0.23243,-0.357185,-0.7369,-0.275727,-0.816099,-0.274962,-0.0873999,-0.114346,-0.20282,-0.21301,-0.55851,-0.164825,-0.22984,-0.215304,-0.48781,-0.178591,-0.75244,-0.0730401,-0.31609,-0.256224,-0.52445,-0.0512601,-0.76169,0.02677,-0.38234,-0.128496,-0.4682,0.0474401,-0.65622,0.119698,-0.41602,-0.0906302,-0.54222,0.107079,-0.74135,0.315883l-0.23316,-0.00540001c-0.62772,0.382042,-0.939349,1.15989,-1.04929,1.56067,-0.11104,-0.400015,-0.4223,-1.17863,-1.04964,-1.56067l-0.23133,0.00540001c-0.19949,-0.208804,-0.32643,-0.406518,-0.74245,-0.315883,-0.18727,-0.0718901,-0.27499,-0.247427,-0.65546,-0.119698,-0.15731,-0.0512601,-0.30128,-0.157942,-0.47042,-0.151822,-0.0887999,0.0029,-0.18395,0.0371001,-0.29239,0.125052,-0.265,-0.105934,-0.52298,-0.142263,-0.75283,0.0730401,-0.35531,-0.0478101,-0.4704,0.0504701,-0.55887,0.164825,-0.0766,-0.0016,-0.58367,-0.0826101,-0.815349,0.274963,-0.58258,-0.0715101,-0.76762,0.353742,-0.55962,0.751082,-0.11844,0.190446,-0.24131,0.378599,0.036,0.741519,-0.0977999,0.202685,-0.0374,0.421431,0.19543,0.687599,-0.0615,0.283376,0.0592,0.484532,0.27572,0.64056,-0.0411,0.388927,0.34422,0.615323,0.46006,0.695249,0.0437,0.226778,0.13511,0.44017,0.57702,0.558721,0.0723,0.336918,0.33717,0.396574,0.59181,0.467323,-0.846069,0.507859,-1.57262,1.17748,-1.56632,2.81961l-0.12436,0.227543c-0.971559,0.611497,-1.84466,2.57333,-0.4793,4.16613,0.0905999,0.500213,0.23872,0.857394,0.37269,1.25474,0.19839,1.59777,1.5001,2.34541,1.84281,2.43375,0.50373,0.397338,1.03818,0.772114,1.76213,1.03369,0.68324,0.728136,1.42273,1.00654,2.16702,1.00578,0.00999999,0,0.023,0,0.0326,0,0.74467,0,1.48379,-0.27764,2.16702,-1.00578,0.72468,-0.262725,1.26062,-0.638648,1.76324,-1.03369,0.34309,-0.0875801,1.64368,-0.836745,1.84316,-2.43375,0.13286,-0.397341,0.28241,-0.755288,0.3716,-1.25474,1.36759,-1.59318,0.49336,-3.55502,-0.47669,-4.16613zm-0.879039,-0.280699c-0.0493,0.660828,-3.33473,-2.30372,-2.76772,-2.40124,1.53895,-0.269223,2.81954,0.676127,2.76772,2.40124zm-1.35906,3.29459c-0.826469,0.559487,-2.01676,0.198862,-2.65965,-0.805767,-0.64178,-1.00425,-0.49336,-2.27275,0.33273,-2.83185,0.825359,-0.558722,2.0164,-0.198859,2.66003,0.805769,0.64177,1.00501,0.49298,2.27275,-0.33311,2.83185zm-2.24512,-10.2042c0.0274,0.147997,0.0592,0.242074,0.0965999,0.270373,0.18322,-0.206126,0.33201,-0.415696,0.56777,-0.613792,0.00037,0.115491,-0.0562,0.241691,0.0835999,0.333859,0.12659,-0.177828,0.29685,-0.336536,0.52335,-0.470384,-0.10917,0.196948,-0.0189,0.256989,0.04,0.338446,0.17173,-0.154881,0.3357,-0.312057,0.65473,-0.434816,-0.0876999,0.111669,-0.20911,0.219511,-0.0787999,0.347623,0.1773,-0.116639,0.35645,-0.232895,0.779109,-0.316265,-0.0957999,0.111295,-0.29238,0.222954,-0.17284,0.334239,0.22317,-0.0887302,0.46931,-0.154882,0.74429,-0.19121,-0.1325,0.112054,-0.2413,0.22295,-0.13472,0.310528,0.23946,-0.0780201,0.56962,-0.180886,0.890869,-0.0921602l-0.20356,0.215687c-0.0233,0.02829,0.47709,0.02142,0.806109,0.02638,-0.11991,0.174767,-0.24243,0.344184,-0.31459,0.645531,0.0326,0.0351801,0.19468,0.0153,0.34975,0,-0.15729,0.348007,-0.43266,0.436348,-0.49632,0.585876,0.0968999,0.0768601,0.23095,0.0573601,0.37678,0.00490001,-0.11288,0.246282,-0.35236,0.41455,-0.54037,0.613792,0.0478,0.0351801,0.13064,0.0562201,0.32792,0.0325001,-0.17322,0.19389,-0.38344,0.370954,-0.6329,0.530425,0.0444,0.0527901,0.19579,0.0512501,0.33718,0.0547001,-0.22651,0.231747,-0.51593,0.352978,-0.789089,0.503652,0.1362,0.0982702,0.23243,0.0745701,0.33644,0.0734101,-0.19208,0.166356,-0.52002,0.253547,-0.824619,0.352595,0.0585,0.0948402,0.11584,0.120082,0.23946,0.147235,-0.322,0.185474,-0.782419,0.100187,-0.912689,0.196566,0.03,0.0937002,0.1188,0.154117,0.22538,0.205361,-0.51779,0.0317401,-1.93495,-0.01988,-2.20625,-1.14383,0.53002,-0.612263,1.49749,-1.32969,3.16338,-2.21615,-1.29577,0.454704,-2.46461,1.06123,-3.44096,1.89568,-1.14959,-0.561782,-0.35642,-1.97828,0.20503,-2.54083zm0.61513,5.28396c-0.002,0.531186,-0.70728,0.961031,-1.81393,0.952236,-1.08333,-0.01377,-1.81209,-0.539983,-1.80951,-1.05434,0.002,-0.421814,0.883489,-1.15186,1.80247,-1.12739,0.815369,-0.00870001,1.82504,0.629087,1.82097,1.2295zm-5.94442,-1.68152c0.12436,-0.02677,0.18135,-0.0523901,0.23871,-0.147233,-0.30275,-0.0990502,-0.63104,-0.186241,-0.824239,-0.352596,0.10439,0.0011,0.20024,0.02486,0.33681,-0.0734001,-0.27242,-0.150675,-0.56295,-0.271903,-0.788719,-0.503652,0.14065,-0.00350001,0.29313,-0.0019,0.33718,-0.0546901,-0.24908,-0.15947,-0.45968,-0.336533,-0.63364,-0.530423,0.19727,0.02371,0.27981,0.0026,0.32756,-0.0325001,-0.18841,-0.199243,-0.426,-0.367511,-0.54,-0.613792,0.14582,0.0523901,0.2798,0.0718901,0.37602,-0.00490001,-0.0633,-0.149527,-0.33791,-0.237867,-0.49557,-0.585874,0.15545,0.0153,0.31792,0.0351801,0.35013,0,-0.0714,-0.301351,-0.19395,-0.470763,-0.31461,-0.645531,0.32941,-0.00490001,0.828689,0.0019,0.806489,-0.02638l-0.20394,-0.215686c0.32127,-0.0887302,0.65177,0.01416,0.889769,0.0921602,0.10807,-0.0875801,-0.000899999,-0.198477,-0.13251,-0.310527,0.27426,0.0367201,0.52149,0.102873,0.7443,0.191211,0.11844,-0.111295,-0.0772999,-0.222953,-0.17321,-0.334239,0.42231,0.0829801,0.60182,0.199242,0.779829,0.316265,0.12918,-0.128111,0.00899999,-0.235956,-0.0795999,-0.347624,0.31792,0.122376,0.48299,0.279551,0.65472,0.434815,0.0589,-0.0810901,0.14842,-0.141496,0.04,-0.338444,0.22614,0.13423,0.39639,0.292937,0.52298,0.470381,0.14063,-0.0921602,0.0835999,-0.218364,0.0846999,-0.333857,0.23539,0.198095,0.38381,0.407666,0.56702,0.613792,0.0374,-0.02829,0.0696,-0.122375,0.0977999,-0.270373,0.56034,0.562546,1.35425,1.97904,0.20393,2.54006,-0.975999,-0.83445,-2.14519,-1.44097,-3.44022,-1.89568,1.66441,0.886462,2.63336,1.60389,3.16263,2.21615,-0.2713,1.12356,-1.68884,1.17557,-2.207,1.14383,0.10696,-0.0512401,0.19505,-0.111669,0.2254,-0.20536,-0.12991,-0.0956102,-0.59144,-0.01009,-0.912709,-0.195801zm1.91164,0.854335c0.56664,0.0994302,-2.71813,3.06322,-2.76883,2.40163,-0.0507,-1.7255,1.22841,-2.67009,2.76883,-2.40163zm-3.45021,6.606c-0.797609,-0.662742,-1.05483,-2.60699,0.42525,-3.4793,0.891989,-0.247427,0.30054,3.81315,-0.42525,3.4793zm3.11415,3.47891c-0.4497,0.279551,-1.54449,0.165973,-2.32174,-0.989714,-0.5252,-0.968682,-0.45672,-1.95381,-0.0891999,-2.24254,0.55036,-0.346477,1.40125,0.120462,2.05562,0.905581,0.57071,0.712075,0.830899,1.95801,0.35531,2.32667zm-0.879389,-4.23038c-0.002,-0.0011,-0.005,-0.0026,-0.00899999,-0.00610001,-0.824619,-0.561017,-0.970829,-1.83028,-0.32608,-2.83338,0.64401,-0.998892,1.82949,-1.35761,2.65485,-0.803857,0.827939,0.556046,0.980789,1.8234,0.33901,2.82956,-0.63955,1.00616,-1.83132,1.37061,-2.65963,0.8138zm3.42875,6.20904c-0.989329,0.0424501,-1.96088,-0.84095,-1.9494,-1.14574,-0.0134,-0.448202,1.20805,-0.797736,2.00343,-0.778234,0.802039,-0.0359401,1.87648,0.26655,1.87834,0.668478,0.0126,0.389309,-0.974509,1.27041,-1.93237,1.2555zm2.04006,-4.42503c-0.003,1.04937,-0.897519,1.89874,-1.99935,1.89644,-1.0974,-0.0024,-1.98789,-0.849746,-1.99048,-1.89644,-0.002,-1.04975,0.889009,-1.9018,1.99048,-1.90256,1.10183,-0.0026,1.99676,0.846687,1.99935,1.89682,0,0.0024,0,0.00370001,0,0.00580001zm2.78882,1.51249c-0.852739,1.22452,-2.00897,1.27156,-2.43868,0.931203,-0.4508,-0.438258,-0.10663,-1.8016,0.50964,-2.54771,0.70655,-0.825272,1.46085,-1.36258,1.98678,-0.940764,0.3542,0.363302,0.56221,1.7362,-0.0577,2.55727zm0.66806,-2.59666c-0.72542,0.333857,-1.31724,-3.72711,-0.42489,-3.47968,1.48046,0.87384,1.22324,2.81656,0.42489,3.47968z"/>
2331
- <g transform="matrix(0.0649686, 0, 0, 0.0649686, 191.979, 965.534)">
2332
- <g >
2333
- <g >
2334
- <g gorn="0.3.0.0.0.0.0.21.0.0.0.0.1.0.0" id="_x30_.1.0.0.0.233.0.0.15">
2335
- <g gorn="0.3.0.0.0.0.0.21.0.0.0.0.1.0.0.0" id="_x30_.1.0.0.233.0.15">
2336
- <g gorn="0.3.0.0.0.0.0.21.0.0.0.0.1.0.0.0.0" id="flowRoot4415"/>
2337
- </g>
2338
- </g>
2339
- </g>
2340
- </g>
2341
- </g>
2342
- </g>
2343
- </g>
2344
- </g>
2345
- </g>
2346
- </g>
2347
- </g>
2348
- <g gorn="0.3.0.0.0.0.0.22" style="font-family:OCRA;" fill="#ffffff" id="tspan8666_1_" font-size="0">
2349
- <text gorn="0.3.0.0.0.0.0.22.0" x="43.8409" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Droid Sans;-inkscape-font-specification:Droid Sans" y="21.4629" id="tspan6539">GPIO</text>
2350
- </g>
2351
- <g gorn="0.3.0.0.0.0.0.23" id="g817">
2352
- <path gorn="0.3.0.0.0.0.0.23.0" fill="#b8af82" id="path819" d="m9.91999,1.134c-4.852,0,-8.78699,3.93501,-8.78699,8.78701,0,4.85401,3.935,8.78801,8.78699,8.78801,4.854,0,8.78799,-3.93501,8.78799,-8.78801,0,-4.85301,-3.934,-8.78701,-8.78799,-8.78701zm0.000999999,12.685c-2.152,0,-3.897,-1.745,-3.897,-3.89801,0,-2.152,1.745,-3.89701,3.897,-3.89701,2.153,0,3.898,1.745,3.898,3.89701,0,2.153,-1.746,3.89801,-3.898,3.89801z"/>
2353
- <path gorn="0.3.0.0.0.0.0.23.1" fill="#b8af82" id="path821" d="m9.91999,140.031c-4.852,0,-8.78699,3.93601,-8.78699,8.78601,0,4.85401,3.935,8.78901,8.78699,8.78901,4.854,0,8.78799,-3.93701,8.78799,-8.78901,0,-4.85101,-3.934,-8.78601,-8.78799,-8.78601zm0.000999999,12.685c-2.152,0,-3.897,-1.744,-3.897,-3.89801,0,-2.152,1.745,-3.89601,3.897,-3.89601,2.153,0,3.898,1.744,3.898,3.89601,0,2.154,-1.746,3.89801,-3.898,3.89801z"/>
2354
- <path gorn="0.3.0.0.0.0.0.23.2" fill="#b8af82" id="path823" d="m174.33,1.134c-4.852,0,-8.78499,3.93501,-8.78499,8.78701,0,4.85401,3.935,8.78801,8.78499,8.78801,4.855,0,8.78899,-3.93501,8.78899,-8.78801,0,-4.85301,-3.934,-8.78701,-8.78899,-8.78701zm0.002,12.685c-2.151,0,-3.897,-1.745,-3.897,-3.89801,0,-2.152,1.746,-3.89701,3.897,-3.89701,2.152,0,3.896,1.745,3.896,3.89701,0,2.153,-1.744,3.89801,-3.896,3.89801z"/>
2355
- <path gorn="0.3.0.0.0.0.0.23.3" fill="#b8af82" id="path825" d="m174.33,140.031c-4.852,0,-8.78499,3.93601,-8.78499,8.78601,0,4.85401,3.935,8.78901,8.78499,8.78901,4.855,0,8.78899,-3.93701,8.78899,-8.78901,0,-4.85101,-3.934,-8.78601,-8.78899,-8.78601zm0.002,12.685c-2.151,0,-3.897,-1.744,-3.897,-3.89801,0,-2.152,1.746,-3.89601,3.897,-3.89601,2.152,0,3.896,1.744,3.896,3.89601,0,2.154,-1.744,3.89801,-3.896,3.89801z"/>
2356
- </g>
2357
- <g gorn="0.3.0.0.0.0.0.24" id="connectors">
2358
- <g gorn="0.3.0.0.0.0.0.24.0" id="g828">
2359
- <circle gorn="0.3.0.0.0.0.0.24.0.0" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector0pin" r="2.088" cy="12.355" cx="23.715"/>
2360
- <circle gorn="0.3.0.0.0.0.0.24.0.1" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector1pin" r="2.088" cy="12.355" cx="30.915"/>
2361
- <circle gorn="0.3.0.0.0.0.0.24.0.2" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector2pin" r="2.088" cy="12.355" cx="38.115"/>
2362
- <circle gorn="0.3.0.0.0.0.0.24.0.3" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector3pin" r="2.088" cy="12.355" cx="45.315"/>
2363
- <circle gorn="0.3.0.0.0.0.0.24.0.4" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector4pin" r="2.088" cy="12.355" cx="52.515"/>
2364
- <circle gorn="0.3.0.0.0.0.0.24.0.5" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector5pin" r="2.088" cy="12.355" cx="59.715"/>
2365
- <circle gorn="0.3.0.0.0.0.0.24.0.6" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector6pin" r="2.088" cy="12.355" cx="66.915"/>
2366
- <circle gorn="0.3.0.0.0.0.0.24.0.7" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector7pin" r="2.088" cy="12.355" cx="74.1149"/>
2367
- <circle gorn="0.3.0.0.0.0.0.24.0.8" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector8pin" r="2.088" cy="12.355" cx="81.3159"/>
2368
- <circle gorn="0.3.0.0.0.0.0.24.0.9" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector9pin" r="2.088" cy="12.355" cx="88.5149"/>
2369
- <circle gorn="0.3.0.0.0.0.0.24.0.10" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector10pin" r="2.088" cy="12.355" cx="95.7149"/>
2370
- <circle gorn="0.3.0.0.0.0.0.24.0.11" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector11pin" r="2.089" cy="12.355" cx="102.915"/>
2371
- <circle gorn="0.3.0.0.0.0.0.24.0.12" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector12pin" r="2.088" cy="12.355" cx="110.115"/>
2372
- <circle gorn="0.3.0.0.0.0.0.24.0.13" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector13pin" r="2.088" cy="12.355" cx="117.315"/>
2373
- <circle gorn="0.3.0.0.0.0.0.24.0.14" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector14pin" r="2.088" cy="12.355" cx="124.516"/>
2374
- <circle gorn="0.3.0.0.0.0.0.24.0.15" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector15pin" r="2.088" cy="12.355" cx="131.714"/>
2375
- <circle gorn="0.3.0.0.0.0.0.24.0.16" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector16pin" r="2.089" cy="12.355" cx="138.916"/>
2376
- <circle gorn="0.3.0.0.0.0.0.24.0.17" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector17pin" r="2.088" cy="12.355" cx="146.115"/>
2377
- <circle gorn="0.3.0.0.0.0.0.24.0.18" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector18pin" r="2.088" cy="12.355" cx="153.314"/>
2378
- <circle gorn="0.3.0.0.0.0.0.24.0.19" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector19pin" r="2.088" cy="12.355" cx="160.515"/>
2379
- <circle gorn="0.3.0.0.0.0.0.24.0.20" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector20pin" r="2.088" cy="5.15601" cx="160.515"/>
2380
- <circle gorn="0.3.0.0.0.0.0.24.0.21" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector21pin" r="2.088" cy="5.15601" cx="153.314"/>
2381
- <circle gorn="0.3.0.0.0.0.0.24.0.22" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector22pin" r="2.088" cy="5.15601" cx="146.115"/>
2382
- <circle gorn="0.3.0.0.0.0.0.24.0.23" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector23pin" r="2.089" cy="5.15601" cx="138.916"/>
2383
- <circle gorn="0.3.0.0.0.0.0.24.0.24" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector24pin" r="2.088" cy="5.15601" cx="131.714"/>
2384
- <circle gorn="0.3.0.0.0.0.0.24.0.25" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector25pin" r="2.088" cy="5.15601" cx="124.516"/>
2385
- <circle gorn="0.3.0.0.0.0.0.24.0.26" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector26pin" r="2.088" cy="5.15601" cx="117.315"/>
2386
- <circle gorn="0.3.0.0.0.0.0.24.0.27" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector27pin" r="2.088" cy="5.15601" cx="110.115"/>
2387
- <circle gorn="0.3.0.0.0.0.0.24.0.28" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector28pin" r="2.089" cy="5.15601" cx="102.915"/>
2388
- <circle gorn="0.3.0.0.0.0.0.24.0.29" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector29pin" r="2.088" cy="5.15601" cx="95.7149"/>
2389
- <circle gorn="0.3.0.0.0.0.0.24.0.30" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector30pin" r="2.088" cy="5.15601" cx="88.5149"/>
2390
- <circle gorn="0.3.0.0.0.0.0.24.0.31" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector31pin" r="2.088" cy="5.15601" cx="81.3159"/>
2391
- <circle gorn="0.3.0.0.0.0.0.24.0.32" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector32pin" r="2.088" cy="5.15601" cx="74.1149"/>
2392
- <circle gorn="0.3.0.0.0.0.0.24.0.33" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector33pin" r="2.088" cy="5.15601" cx="66.915"/>
2393
- <circle gorn="0.3.0.0.0.0.0.24.0.34" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector34pin" r="2.088" cy="5.15601" cx="59.715"/>
2394
- <circle gorn="0.3.0.0.0.0.0.24.0.35" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector35pin" r="2.088" cy="5.15601" cx="52.515"/>
2395
- <circle gorn="0.3.0.0.0.0.0.24.0.36" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector36pin" r="2.088" cy="5.15601" cx="45.315"/>
2396
- <circle gorn="0.3.0.0.0.0.0.24.0.37" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector37pin" r="2.088" cy="5.15601" cx="38.115"/>
2397
- <circle gorn="0.3.0.0.0.0.0.24.0.38" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector38pin" r="2.088" cy="5.15601" cx="30.915"/>
2398
- <circle gorn="0.3.0.0.0.0.0.24.0.39" stroke="#ffbf00" stroke-width="0.999999" fill="none" id="connector39pin" r="2.088" cy="5.15601" cx="23.715"/>
2399
- </g>
2400
- </g>
2401
- <g gorn="0.3.0.0.0.0.0.25" id="g870">
2402
- <g gorn="0.3.0.0.0.0.0.25.0" id="g872">
2403
- <polygon gorn="0.3.0.0.0.0.0.25.0.0" points="25.759,15.842,27.323,14.334,27.323,10.406,27.323,7.07001,27.323,3.14301,25.759,1.634,21.689,1.634,20.124,3.14301,20.124,7.07001,20.124,10.406,20.124,14.334,21.689,15.842" fill="#404040" id="polygon3153-8_21_"/>
2404
- <polygon gorn="0.3.0.0.0.0.0.25.0.1" points="25.759,15.842,27.323,14.334,27.323,10.406,27.323,7.07001,27.323,3.14301,25.759,1.634,21.689,1.634,20.124,3.14301,20.124,7.07001,20.124,10.406,20.124,14.334,21.689,15.842" fill="#404040" id="polygon3159-0_21_"/>
2405
- <rect gorn="0.3.0.0.0.0.0.25.0.2" x="23.133" y="4.51001" width="1.182" fill="#8c8663" id="rect3213-8_21_" height="1.181"/>
2406
- <polygon gorn="0.3.0.0.0.0.0.25.0.3" points="23.133,5.69001,23.133,4.51401,22.575,3.95401,22.575,6.25001" fill="#b8af82" id="polygon3215-9_21_"/>
2407
- <polygon gorn="0.3.0.0.0.0.0.25.0.4" points="23.133,4.51401,22.575,3.95401,24.872,3.95401,24.317,4.51401" fill="#80795b" id="polygon3217-7_21_"/>
2408
- <polygon gorn="0.3.0.0.0.0.0.25.0.5" points="24.317,4.51401,24.872,3.95401,24.872,6.25001,24.317,5.69001" fill="#5e5b43" id="polygon3219-2_21_"/>
2409
- <polygon gorn="0.3.0.0.0.0.0.25.0.6" points="24.317,5.69001,24.872,6.25001,22.575,6.25001,23.133,5.69001" fill="#9a916c" id="connector25pin_21_"/>
2410
- <rect gorn="0.3.0.0.0.0.0.25.0.7" x="23.133" y="11.698" width="1.182" fill="#8c8663" id="rect3223-82_21_" height="1.182"/>
2411
- <polygon gorn="0.3.0.0.0.0.0.25.0.8" points="23.133,12.878,23.133,11.701,22.575,11.143,22.575,13.437" fill="#b8af82" id="polygon3225-89_21_"/>
2412
- <polygon gorn="0.3.0.0.0.0.0.25.0.9" points="23.133,11.701,22.575,11.143,24.872,11.143,24.317,11.701" fill="#80795b" id="polygon3227-07_21_"/>
2413
- <polygon gorn="0.3.0.0.0.0.0.25.0.10" points="24.317,11.701,24.872,11.143,24.872,13.437,24.317,12.878" fill="#5e5b43" id="polygon3229-8_21_"/>
2414
- <polygon gorn="0.3.0.0.0.0.0.25.0.11" points="22.575,13.437,23.133,12.878,24.317,12.878,24.872,13.437" fill="#9a916c" id="dnc24pin_21_"/>
2415
- </g>
2416
- <g gorn="0.3.0.0.0.0.0.25.1" id="g886">
2417
- <polygon gorn="0.3.0.0.0.0.0.25.1.0" points="32.959,15.842,34.524,14.334,34.524,10.406,34.524,7.07001,34.524,3.14301,32.959,1.634,28.889,1.634,27.324,3.14301,27.324,7.07001,27.324,10.406,27.324,14.334,28.889,15.842" fill="#404040" id="polygon3153-8_20_"/>
2418
- <polygon gorn="0.3.0.0.0.0.0.25.1.1" points="32.959,15.842,34.524,14.334,34.524,10.406,34.524,7.07001,34.524,3.14301,32.959,1.634,28.889,1.634,27.324,3.14301,27.324,7.07001,27.324,10.406,27.324,14.334,28.889,15.842" fill="#404040" id="polygon3159-0_20_"/>
2419
- <rect gorn="0.3.0.0.0.0.0.25.1.2" x="30.333" y="4.51001" width="1.182" fill="#8c8663" id="rect3213-8_20_" height="1.181"/>
2420
- <polygon gorn="0.3.0.0.0.0.0.25.1.3" points="30.333,5.69001,30.333,4.51401,29.776,3.95401,29.776,6.25001" fill="#b8af82" id="polygon3215-9_20_"/>
2421
- <polygon gorn="0.3.0.0.0.0.0.25.1.4" points="30.333,4.51401,29.776,3.95401,32.072,3.95401,31.517,4.51401" fill="#80795b" id="polygon3217-7_20_"/>
2422
- <polygon gorn="0.3.0.0.0.0.0.25.1.5" points="31.517,4.51401,32.072,3.95401,32.072,6.25001,31.517,5.69001" fill="#5e5b43" id="polygon3219-2_20_"/>
2423
- <polygon gorn="0.3.0.0.0.0.0.25.1.6" points="31.517,5.69001,32.072,6.25001,29.776,6.25001,30.333,5.69001" fill="#9a916c" id="connector25pin_20_"/>
2424
- <rect gorn="0.3.0.0.0.0.0.25.1.7" x="30.333" y="11.698" width="1.182" fill="#8c8663" id="rect3223-82_20_" height="1.182"/>
2425
- <polygon gorn="0.3.0.0.0.0.0.25.1.8" points="30.333,12.878,30.333,11.701,29.776,11.143,29.776,13.437" fill="#b8af82" id="polygon3225-89_20_"/>
2426
- <polygon gorn="0.3.0.0.0.0.0.25.1.9" points="30.333,11.701,29.776,11.143,32.072,11.143,31.517,11.701" fill="#80795b" id="polygon3227-07_20_"/>
2427
- <polygon gorn="0.3.0.0.0.0.0.25.1.10" points="31.517,11.701,32.072,11.143,32.072,13.437,31.517,12.878" fill="#5e5b43" id="polygon3229-8_20_"/>
2428
- <polygon gorn="0.3.0.0.0.0.0.25.1.11" points="29.776,13.437,30.333,12.878,31.517,12.878,32.072,13.437" fill="#9a916c" id="dnc24pin_20_"/>
2429
- </g>
2430
- <g gorn="0.3.0.0.0.0.0.25.2" id="g900">
2431
- <polygon gorn="0.3.0.0.0.0.0.25.2.0" points="40.159,15.842,41.724,14.334,41.724,10.406,41.724,7.07001,41.724,3.14301,40.159,1.634,36.089,1.634,34.525,3.14301,34.525,7.07001,34.525,10.406,34.525,14.334,36.089,15.842" fill="#404040" id="polygon3153-8_19_"/>
2432
- <polygon gorn="0.3.0.0.0.0.0.25.2.1" points="40.159,15.842,41.724,14.334,41.724,10.406,41.724,7.07001,41.724,3.14301,40.159,1.634,36.089,1.634,34.525,3.14301,34.525,7.07001,34.525,10.406,34.525,14.334,36.089,15.842" fill="#404040" id="polygon3159-0_19_"/>
2433
- <rect gorn="0.3.0.0.0.0.0.25.2.2" x="37.533" y="4.51001" width="1.182" fill="#8c8663" id="rect3213-8_19_" height="1.181"/>
2434
- <polygon gorn="0.3.0.0.0.0.0.25.2.3" points="37.533,5.69001,37.533,4.51401,36.976,3.95401,36.976,6.25001" fill="#b8af82" id="polygon3215-9_19_"/>
2435
- <polygon gorn="0.3.0.0.0.0.0.25.2.4" points="37.533,4.51401,36.976,3.95401,39.273,3.95401,38.717,4.51401" fill="#80795b" id="polygon3217-7_19_"/>
2436
- <polygon gorn="0.3.0.0.0.0.0.25.2.5" points="38.717,4.51401,39.273,3.95401,39.273,6.25001,38.717,5.69001" fill="#5e5b43" id="polygon3219-2_19_"/>
2437
- <polygon gorn="0.3.0.0.0.0.0.25.2.6" points="38.717,5.69001,39.273,6.25001,36.976,6.25001,37.533,5.69001" fill="#9a916c" id="connector25pin_19_"/>
2438
- <rect gorn="0.3.0.0.0.0.0.25.2.7" x="37.533" y="11.698" width="1.182" fill="#8c8663" id="rect3223-82_19_" height="1.182"/>
2439
- <polygon gorn="0.3.0.0.0.0.0.25.2.8" points="37.533,12.878,37.533,11.701,36.976,11.143,36.976,13.437" fill="#b8af82" id="polygon3225-89_19_"/>
2440
- <polygon gorn="0.3.0.0.0.0.0.25.2.9" points="37.533,11.701,36.976,11.143,39.273,11.143,38.717,11.701" fill="#80795b" id="polygon3227-07_19_"/>
2441
- <polygon gorn="0.3.0.0.0.0.0.25.2.10" points="38.717,11.701,39.273,11.143,39.273,13.437,38.717,12.878" fill="#5e5b43" id="polygon3229-8_19_"/>
2442
- <polygon gorn="0.3.0.0.0.0.0.25.2.11" points="36.976,13.437,37.533,12.878,38.717,12.878,39.273,13.437" fill="#9a916c" id="dnc24pin_19_"/>
2443
- </g>
2444
- <g gorn="0.3.0.0.0.0.0.25.3" id="g914">
2445
- <polygon gorn="0.3.0.0.0.0.0.25.3.0" points="47.36,15.842,48.924,14.334,48.924,10.406,48.924,7.07001,48.924,3.14301,47.36,1.634,43.289,1.634,41.725,3.14301,41.725,7.07001,41.725,10.406,41.725,14.334,43.289,15.842" fill="#404040" id="polygon3153-8_18_"/>
2446
- <polygon gorn="0.3.0.0.0.0.0.25.3.1" points="47.36,15.842,48.924,14.334,48.924,10.406,48.924,7.07001,48.924,3.14301,47.36,1.634,43.289,1.634,41.725,3.14301,41.725,7.07001,41.725,10.406,41.725,14.334,43.289,15.842" fill="#404040" id="polygon3159-0_18_"/>
2447
- <rect gorn="0.3.0.0.0.0.0.25.3.2" x="44.734" y="4.51001" width="1.182" fill="#8c8663" id="rect3213-8_18_" height="1.181"/>
2448
- <polygon gorn="0.3.0.0.0.0.0.25.3.3" points="44.734,5.69001,44.734,4.51401,44.176,3.95401,44.176,6.25001" fill="#b8af82" id="polygon3215-9_18_"/>
2449
- <polygon gorn="0.3.0.0.0.0.0.25.3.4" points="44.734,4.51401,44.176,3.95401,46.473,3.95401,45.917,4.51401" fill="#80795b" id="polygon3217-7_18_"/>
2450
- <polygon gorn="0.3.0.0.0.0.0.25.3.5" points="45.917,4.51401,46.473,3.95401,46.473,6.25001,45.917,5.69001" fill="#5e5b43" id="polygon3219-2_18_"/>
2451
- <polygon gorn="0.3.0.0.0.0.0.25.3.6" points="45.917,5.69001,46.473,6.25001,44.176,6.25001,44.734,5.69001" fill="#9a916c" id="connector25pin_18_"/>
2452
- <rect gorn="0.3.0.0.0.0.0.25.3.7" x="44.734" y="11.698" width="1.182" fill="#8c8663" id="rect3223-82_18_" height="1.182"/>
2453
- <polygon gorn="0.3.0.0.0.0.0.25.3.8" points="44.734,12.878,44.734,11.701,44.176,11.143,44.176,13.437" fill="#b8af82" id="polygon3225-89_18_"/>
2454
- <polygon gorn="0.3.0.0.0.0.0.25.3.9" points="44.734,11.701,44.176,11.143,46.473,11.143,45.917,11.701" fill="#80795b" id="polygon3227-07_18_"/>
2455
- <polygon gorn="0.3.0.0.0.0.0.25.3.10" points="45.917,11.701,46.473,11.143,46.473,13.437,45.917,12.878" fill="#5e5b43" id="polygon3229-8_18_"/>
2456
- <polygon gorn="0.3.0.0.0.0.0.25.3.11" points="44.176,13.437,44.734,12.878,45.917,12.878,46.473,13.437" fill="#9a916c" id="dnc24pin_18_"/>
2457
- </g>
2458
- <g gorn="0.3.0.0.0.0.0.25.4" id="g928">
2459
- <polygon gorn="0.3.0.0.0.0.0.25.4.0" points="54.56,15.842,56.124,14.334,56.124,10.406,56.124,7.07001,56.124,3.14301,54.56,1.634,50.489,1.634,48.925,3.14301,48.925,7.07001,48.925,10.406,48.925,14.334,50.489,15.842" fill="#404040" id="polygon3153-8_17_"/>
2460
- <polygon gorn="0.3.0.0.0.0.0.25.4.1" points="54.56,15.842,56.124,14.334,56.124,10.406,56.124,7.07001,56.124,3.14301,54.56,1.634,50.489,1.634,48.925,3.14301,48.925,7.07001,48.925,10.406,48.925,14.334,50.489,15.842" fill="#404040" id="polygon3159-0_17_"/>
2461
- <rect gorn="0.3.0.0.0.0.0.25.4.2" x="51.934" y="4.51001" width="1.182" fill="#8c8663" id="rect3213-8_17_" height="1.181"/>
2462
- <polygon gorn="0.3.0.0.0.0.0.25.4.3" points="51.934,5.69001,51.934,4.51401,51.376,3.95401,51.376,6.25001" fill="#b8af82" id="polygon3215-9_17_"/>
2463
- <polygon gorn="0.3.0.0.0.0.0.25.4.4" points="51.934,4.51401,51.376,3.95401,53.673,3.95401,53.117,4.51401" fill="#80795b" id="polygon3217-7_17_"/>
2464
- <polygon gorn="0.3.0.0.0.0.0.25.4.5" points="53.117,4.51401,53.673,3.95401,53.673,6.25001,53.117,5.69001" fill="#5e5b43" id="polygon3219-2_17_"/>
2465
- <polygon gorn="0.3.0.0.0.0.0.25.4.6" points="53.117,5.69001,53.673,6.25001,51.376,6.25001,51.934,5.69001" fill="#9a916c" id="connector25pin_17_"/>
2466
- <rect gorn="0.3.0.0.0.0.0.25.4.7" x="51.934" y="11.698" width="1.182" fill="#8c8663" id="rect3223-82_17_" height="1.182"/>
2467
- <polygon gorn="0.3.0.0.0.0.0.25.4.8" points="51.934,12.878,51.934,11.701,51.376,11.143,51.376,13.437" fill="#b8af82" id="polygon3225-89_17_"/>
2468
- <polygon gorn="0.3.0.0.0.0.0.25.4.9" points="51.934,11.701,51.376,11.143,53.673,11.143,53.117,11.701" fill="#80795b" id="polygon3227-07_17_"/>
2469
- <polygon gorn="0.3.0.0.0.0.0.25.4.10" points="53.117,11.701,53.673,11.143,53.673,13.437,53.117,12.878" fill="#5e5b43" id="polygon3229-8_17_"/>
2470
- <polygon gorn="0.3.0.0.0.0.0.25.4.11" points="51.376,13.437,51.934,12.878,53.117,12.878,53.673,13.437" fill="#9a916c" id="dnc24pin_17_"/>
2471
- </g>
2472
- <g gorn="0.3.0.0.0.0.0.25.5" id="g942">
2473
- <polygon gorn="0.3.0.0.0.0.0.25.5.0" points="61.76,15.842,63.324,14.334,63.324,10.406,63.324,7.07001,63.324,3.14301,61.76,1.634,57.69,1.634,56.125,3.14301,56.125,7.07001,56.125,10.406,56.125,14.334,57.69,15.842" fill="#404040" id="polygon3153-8_16_"/>
2474
- <polygon gorn="0.3.0.0.0.0.0.25.5.1" points="61.76,15.842,63.324,14.334,63.324,10.406,63.324,7.07001,63.324,3.14301,61.76,1.634,57.69,1.634,56.125,3.14301,56.125,7.07001,56.125,10.406,56.125,14.334,57.69,15.842" fill="#404040" id="polygon3159-0_16_"/>
2475
- <rect gorn="0.3.0.0.0.0.0.25.5.2" x="59.134" y="4.51001" width="1.182" fill="#8c8663" id="rect3213-8_16_" height="1.181"/>
2476
- <polygon gorn="0.3.0.0.0.0.0.25.5.3" points="59.134,5.69001,59.134,4.51401,58.576,3.95401,58.576,6.25001" fill="#b8af82" id="polygon3215-9_16_"/>
2477
- <polygon gorn="0.3.0.0.0.0.0.25.5.4" points="59.134,4.51401,58.576,3.95401,60.873,3.95401,60.318,4.51401" fill="#80795b" id="polygon3217-7_16_"/>
2478
- <polygon gorn="0.3.0.0.0.0.0.25.5.5" points="60.318,4.51401,60.873,3.95401,60.873,6.25001,60.318,5.69001" fill="#5e5b43" id="polygon3219-2_16_"/>
2479
- <polygon gorn="0.3.0.0.0.0.0.25.5.6" points="60.318,5.69001,60.873,6.25001,58.576,6.25001,59.134,5.69001" fill="#9a916c" id="connector25pin_16_"/>
2480
- <rect gorn="0.3.0.0.0.0.0.25.5.7" x="59.134" y="11.698" width="1.182" fill="#8c8663" id="rect3223-82_16_" height="1.182"/>
2481
- <polygon gorn="0.3.0.0.0.0.0.25.5.8" points="59.134,12.878,59.134,11.701,58.576,11.143,58.576,13.437" fill="#b8af82" id="polygon3225-89_16_"/>
2482
- <polygon gorn="0.3.0.0.0.0.0.25.5.9" points="59.134,11.701,58.576,11.143,60.873,11.143,60.318,11.701" fill="#80795b" id="polygon3227-07_16_"/>
2483
- <polygon gorn="0.3.0.0.0.0.0.25.5.10" points="60.318,11.701,60.873,11.143,60.873,13.437,60.318,12.878" fill="#5e5b43" id="polygon3229-8_16_"/>
2484
- <polygon gorn="0.3.0.0.0.0.0.25.5.11" points="58.576,13.437,59.134,12.878,60.318,12.878,60.873,13.437" fill="#9a916c" id="dnc24pin_16_"/>
2485
- </g>
2486
- <g gorn="0.3.0.0.0.0.0.25.6" id="g956">
2487
- <polygon gorn="0.3.0.0.0.0.0.25.6.0" points="68.96,15.842,70.525,14.334,70.525,10.406,70.525,7.07001,70.525,3.14301,68.96,1.634,64.89,1.634,63.325,3.14301,63.325,7.07001,63.325,10.406,63.325,14.334,64.89,15.842" fill="#404040" id="polygon3153-8_15_"/>
2488
- <polygon gorn="0.3.0.0.0.0.0.25.6.1" points="68.96,15.842,70.525,14.334,70.525,10.406,70.525,7.07001,70.525,3.14301,68.96,1.634,64.89,1.634,63.325,3.14301,63.325,7.07001,63.325,10.406,63.325,14.334,64.89,15.842" fill="#404040" id="polygon3159-0_15_"/>
2489
- <rect gorn="0.3.0.0.0.0.0.25.6.2" x="66.334" y="4.51001" width="1.182" fill="#8c8663" id="rect3213-8_15_" height="1.181"/>
2490
- <polygon gorn="0.3.0.0.0.0.0.25.6.3" points="66.334,5.69001,66.334,4.51401,65.777,3.95401,65.777,6.25001" fill="#b8af82" id="polygon3215-9_15_"/>
2491
- <polygon gorn="0.3.0.0.0.0.0.25.6.4" points="66.334,4.51401,65.777,3.95401,68.073,3.95401,67.518,4.51401" fill="#80795b" id="polygon3217-7_15_"/>
2492
- <polygon gorn="0.3.0.0.0.0.0.25.6.5" points="67.518,4.51401,68.073,3.95401,68.073,6.25001,67.518,5.69001" fill="#5e5b43" id="polygon3219-2_15_"/>
2493
- <polygon gorn="0.3.0.0.0.0.0.25.6.6" points="67.518,5.69001,68.073,6.25001,65.777,6.25001,66.334,5.69001" fill="#9a916c" id="connector25pin_15_"/>
2494
- <rect gorn="0.3.0.0.0.0.0.25.6.7" x="66.334" y="11.698" width="1.182" fill="#8c8663" id="rect3223-82_15_" height="1.182"/>
2495
- <polygon gorn="0.3.0.0.0.0.0.25.6.8" points="66.334,12.878,66.334,11.701,65.777,11.143,65.777,13.437" fill="#b8af82" id="polygon3225-89_15_"/>
2496
- <polygon gorn="0.3.0.0.0.0.0.25.6.9" points="66.334,11.701,65.777,11.143,68.073,11.143,67.518,11.701" fill="#80795b" id="polygon3227-07_15_"/>
2497
- <polygon gorn="0.3.0.0.0.0.0.25.6.10" points="67.518,11.701,68.073,11.143,68.073,13.437,67.518,12.878" fill="#5e5b43" id="polygon3229-8_15_"/>
2498
- <polygon gorn="0.3.0.0.0.0.0.25.6.11" points="65.777,13.437,66.334,12.878,67.518,12.878,68.073,13.437" fill="#9a916c" id="dnc24pin_15_"/>
2499
- </g>
2500
- <g gorn="0.3.0.0.0.0.0.25.7" id="g970">
2501
- <polygon gorn="0.3.0.0.0.0.0.25.7.0" points="76.16,15.842,77.7249,14.334,77.7249,10.406,77.7249,7.07001,77.7249,3.14301,76.16,1.634,72.09,1.634,70.526,3.14301,70.526,7.07001,70.526,10.406,70.526,14.334,72.09,15.842" fill="#404040" id="polygon3153-8_14_"/>
2502
- <polygon gorn="0.3.0.0.0.0.0.25.7.1" points="76.16,15.842,77.7249,14.334,77.7249,10.406,77.7249,7.07001,77.7249,3.14301,76.16,1.634,72.09,1.634,70.526,3.14301,70.526,7.07001,70.526,10.406,70.526,14.334,72.09,15.842" fill="#404040" id="polygon3159-0_14_"/>
2503
- <rect gorn="0.3.0.0.0.0.0.25.7.2" x="73.5339" y="4.51001" width="1.182" fill="#8c8663" id="rect3213-8_14_" height="1.181"/>
2504
- <polygon gorn="0.3.0.0.0.0.0.25.7.3" points="73.534,5.69001,73.534,4.51401,72.977,3.95401,72.977,6.25001" fill="#b8af82" id="polygon3215-9_14_"/>
2505
- <polygon gorn="0.3.0.0.0.0.0.25.7.4" points="73.534,4.51401,72.977,3.95401,75.274,3.95401,74.718,4.51401" fill="#80795b" id="polygon3217-7_14_"/>
2506
- <polygon gorn="0.3.0.0.0.0.0.25.7.5" points="74.718,4.51401,75.274,3.95401,75.274,6.25001,74.718,5.69001" fill="#5e5b43" id="polygon3219-2_14_"/>
2507
- <polygon gorn="0.3.0.0.0.0.0.25.7.6" points="74.718,5.69001,75.274,6.25001,72.977,6.25001,73.534,5.69001" fill="#9a916c" id="connector25pin_14_"/>
2508
- <rect gorn="0.3.0.0.0.0.0.25.7.7" x="73.5339" y="11.698" width="1.182" fill="#8c8663" id="rect3223-82_14_" height="1.182"/>
2509
- <polygon gorn="0.3.0.0.0.0.0.25.7.8" points="73.534,12.878,73.534,11.701,72.977,11.143,72.977,13.437" fill="#b8af82" id="polygon3225-89_14_"/>
2510
- <polygon gorn="0.3.0.0.0.0.0.25.7.9" points="73.534,11.701,72.977,11.143,75.274,11.143,74.718,11.701" fill="#80795b" id="polygon3227-07_14_"/>
2511
- <polygon gorn="0.3.0.0.0.0.0.25.7.10" points="74.718,11.701,75.274,11.143,75.274,13.437,74.718,12.878" fill="#5e5b43" id="polygon3229-8_14_"/>
2512
- <polygon gorn="0.3.0.0.0.0.0.25.7.11" points="72.977,13.437,73.534,12.878,74.718,12.878,75.274,13.437" fill="#9a916c" id="dnc24pin_14_"/>
2513
- </g>
2514
- <g gorn="0.3.0.0.0.0.0.25.8" id="g984">
2515
- <polygon gorn="0.3.0.0.0.0.0.25.8.0" points="83.3609,15.842,84.9249,14.334,84.9249,10.406,84.9249,7.07001,84.9249,3.14301,83.3609,1.634,79.2899,1.634,77.7259,3.14301,77.7259,7.07001,77.7259,10.406,77.7259,14.334,79.2899,15.842" fill="#404040" id="polygon3153-8_13_"/>
2516
- <polygon gorn="0.3.0.0.0.0.0.25.8.1" points="83.3609,15.842,84.9249,14.334,84.9249,10.406,84.9249,7.07001,84.9249,3.14301,83.3609,1.634,79.2899,1.634,77.7259,3.14301,77.7259,7.07001,77.7259,10.406,77.7259,14.334,79.2899,15.842" fill="#404040" id="polygon3159-0_13_"/>
2517
- <rect gorn="0.3.0.0.0.0.0.25.8.2" x="80.7349" y="4.51001" width="1.182" fill="#8c8663" id="rect3213-8_13_" height="1.181"/>
2518
- <polygon gorn="0.3.0.0.0.0.0.25.8.3" points="80.7349,5.69001,80.7349,4.51401,80.1769,3.95401,80.1769,6.25001" fill="#b8af82" id="polygon3215-9_13_"/>
2519
- <polygon gorn="0.3.0.0.0.0.0.25.8.4" points="80.7349,4.51401,80.1769,3.95401,82.4739,3.95401,81.9179,4.51401" fill="#80795b" id="polygon3217-7_13_"/>
2520
- <polygon gorn="0.3.0.0.0.0.0.25.8.5" points="81.9179,4.51401,82.4739,3.95401,82.4739,6.25001,81.9179,5.69001" fill="#5e5b43" id="polygon3219-2_13_"/>
2521
- <polygon gorn="0.3.0.0.0.0.0.25.8.6" points="81.9179,5.69001,82.4739,6.25001,80.1769,6.25001,80.7349,5.69001" fill="#9a916c" id="connector25pin_13_"/>
2522
- <rect gorn="0.3.0.0.0.0.0.25.8.7" x="80.7349" y="11.698" width="1.182" fill="#8c8663" id="rect3223-82_13_" height="1.182"/>
2523
- <polygon gorn="0.3.0.0.0.0.0.25.8.8" points="80.7349,12.878,80.7349,11.701,80.1769,11.143,80.1769,13.437" fill="#b8af82" id="polygon3225-89_13_"/>
2524
- <polygon gorn="0.3.0.0.0.0.0.25.8.9" points="80.7349,11.701,80.1769,11.143,82.4739,11.143,81.9179,11.701" fill="#80795b" id="polygon3227-07_13_"/>
2525
- <polygon gorn="0.3.0.0.0.0.0.25.8.10" points="81.9179,11.701,82.4739,11.143,82.4739,13.437,81.9179,12.878" fill="#5e5b43" id="polygon3229-8_13_"/>
2526
- <polygon gorn="0.3.0.0.0.0.0.25.8.11" points="80.1769,13.437,80.7349,12.878,81.9179,12.878,82.4739,13.437" fill="#9a916c" id="dnc24pin_13_"/>
2527
- </g>
2528
- <g gorn="0.3.0.0.0.0.0.25.9" id="g998">
2529
- <polygon gorn="0.3.0.0.0.0.0.25.9.0" points="90.5609,15.842,92.1249,14.334,92.1249,10.406,92.1249,7.07001,92.1249,3.14301,90.5609,1.634,86.4899,1.634,84.9259,3.14301,84.9259,7.07001,84.9259,10.406,84.9259,14.334,86.4899,15.842" fill="#404040" id="polygon3153-8_12_"/>
2530
- <polygon gorn="0.3.0.0.0.0.0.25.9.1" points="90.5609,15.842,92.1249,14.334,92.1249,10.406,92.1249,7.07001,92.1249,3.14301,90.5609,1.634,86.4899,1.634,84.9259,3.14301,84.9259,7.07001,84.9259,10.406,84.9259,14.334,86.4899,15.842" fill="#404040" id="polygon3159-0_12_"/>
2531
- <rect gorn="0.3.0.0.0.0.0.25.9.2" x="87.9349" y="4.51001" width="1.182" fill="#8c8663" id="rect3213-8_12_" height="1.181"/>
2532
- <polygon gorn="0.3.0.0.0.0.0.25.9.3" points="87.9349,5.69001,87.9349,4.51401,87.3769,3.95401,87.3769,6.25001" fill="#b8af82" id="polygon3215-9_12_"/>
2533
- <polygon gorn="0.3.0.0.0.0.0.25.9.4" points="87.9349,4.51401,87.3769,3.95401,89.6739,3.95401,89.1179,4.51401" fill="#80795b" id="polygon3217-7_12_"/>
2534
- <polygon gorn="0.3.0.0.0.0.0.25.9.5" points="89.1179,4.51401,89.6739,3.95401,89.6739,6.25001,89.1179,5.69001" fill="#5e5b43" id="polygon3219-2_12_"/>
2535
- <polygon gorn="0.3.0.0.0.0.0.25.9.6" points="89.1179,5.69001,89.6739,6.25001,87.3769,6.25001,87.9349,5.69001" fill="#9a916c" id="connector25pin_12_"/>
2536
- <rect gorn="0.3.0.0.0.0.0.25.9.7" x="87.9349" y="11.698" width="1.182" fill="#8c8663" id="rect3223-82_12_" height="1.182"/>
2537
- <polygon gorn="0.3.0.0.0.0.0.25.9.8" points="87.9349,12.878,87.9349,11.701,87.3769,11.143,87.3769,13.437" fill="#b8af82" id="polygon3225-89_12_"/>
2538
- <polygon gorn="0.3.0.0.0.0.0.25.9.9" points="87.9349,11.701,87.3769,11.143,89.6739,11.143,89.1179,11.701" fill="#80795b" id="polygon3227-07_12_"/>
2539
- <polygon gorn="0.3.0.0.0.0.0.25.9.10" points="89.1179,11.701,89.6739,11.143,89.6739,13.437,89.1179,12.878" fill="#5e5b43" id="polygon3229-8_12_"/>
2540
- <polygon gorn="0.3.0.0.0.0.0.25.9.11" points="87.3769,13.437,87.9349,12.878,89.1179,12.878,89.6739,13.437" fill="#9a916c" id="dnc24pin_12_"/>
2541
- </g>
2542
- <g gorn="0.3.0.0.0.0.0.25.10" id="g1012">
2543
- <polygon gorn="0.3.0.0.0.0.0.25.10.0" points="97.7609,15.842,99.3249,14.334,99.3249,10.406,99.3249,7.07001,99.3249,3.14301,97.7609,1.634,93.6909,1.634,92.1259,3.14301,92.1259,7.07001,92.1259,10.406,92.1259,14.334,93.6909,15.842" fill="#404040" id="polygon3153-8_11_"/>
2544
- <polygon gorn="0.3.0.0.0.0.0.25.10.1" points="97.7609,15.842,99.3249,14.334,99.3249,10.406,99.3249,7.07001,99.3249,3.14301,97.7609,1.634,93.6909,1.634,92.1259,3.14301,92.1259,7.07001,92.1259,10.406,92.1259,14.334,93.6909,15.842" fill="#404040" id="polygon3159-0_11_"/>
2545
- <rect gorn="0.3.0.0.0.0.0.25.10.2" x="95.1349" y="4.51001" width="1.182" fill="#8c8663" id="rect3213-8_11_" height="1.181"/>
2546
- <polygon gorn="0.3.0.0.0.0.0.25.10.3" points="95.1349,5.69001,95.1349,4.51401,94.5769,3.95401,94.5769,6.25001" fill="#b8af82" id="polygon3215-9_11_"/>
2547
- <polygon gorn="0.3.0.0.0.0.0.25.10.4" points="95.1349,4.51401,94.5769,3.95401,96.8739,3.95401,96.3189,4.51401" fill="#80795b" id="polygon3217-7_11_"/>
2548
- <polygon gorn="0.3.0.0.0.0.0.25.10.5" points="96.3189,4.51401,96.8739,3.95401,96.8739,6.25001,96.3189,5.69001" fill="#5e5b43" id="polygon3219-2_11_"/>
2549
- <polygon gorn="0.3.0.0.0.0.0.25.10.6" points="96.3189,5.69001,96.8739,6.25001,94.5769,6.25001,95.1349,5.69001" fill="#9a916c" id="connector25pin_11_"/>
2550
- <rect gorn="0.3.0.0.0.0.0.25.10.7" x="95.1349" y="11.698" width="1.182" fill="#8c8663" id="rect3223-82_11_" height="1.182"/>
2551
- <polygon gorn="0.3.0.0.0.0.0.25.10.8" points="95.1349,12.878,95.1349,11.701,94.5769,11.143,94.5769,13.437" fill="#b8af82" id="polygon3225-89_11_"/>
2552
- <polygon gorn="0.3.0.0.0.0.0.25.10.9" points="95.1349,11.701,94.5769,11.143,96.8739,11.143,96.3189,11.701" fill="#80795b" id="polygon3227-07_11_"/>
2553
- <polygon gorn="0.3.0.0.0.0.0.25.10.10" points="96.3189,11.701,96.8739,11.143,96.8739,13.437,96.3189,12.878" fill="#5e5b43" id="polygon3229-8_11_"/>
2554
- <polygon gorn="0.3.0.0.0.0.0.25.10.11" points="94.5769,13.437,95.1349,12.878,96.3189,12.878,96.8739,13.437" fill="#9a916c" id="dnc24pin_11_"/>
2555
- </g>
2556
- <g gorn="0.3.0.0.0.0.0.25.11" id="g1026">
2557
- <polygon gorn="0.3.0.0.0.0.0.25.11.0" points="104.961,15.842,106.526,14.334,106.526,10.406,106.526,7.07001,106.526,3.14301,104.961,1.634,100.891,1.634,99.3259,3.14301,99.3259,7.07001,99.3259,10.406,99.3259,14.334,100.891,15.842" fill="#404040" id="polygon3153-8_10_"/>
2558
- <polygon gorn="0.3.0.0.0.0.0.25.11.1" points="104.961,15.842,106.526,14.334,106.526,10.406,106.526,7.07001,106.526,3.14301,104.961,1.634,100.891,1.634,99.3259,3.14301,99.3259,7.07001,99.3259,10.406,99.3259,14.334,100.891,15.842" fill="#404040" id="polygon3159-0_10_"/>
2559
- <rect gorn="0.3.0.0.0.0.0.25.11.2" x="102.335" y="4.51001" width="1.182" fill="#8c8663" id="rect3213-8_10_" height="1.181"/>
2560
- <polygon gorn="0.3.0.0.0.0.0.25.11.3" points="102.335,5.69001,102.335,4.51401,101.778,3.95401,101.778,6.25001" fill="#b8af82" id="polygon3215-9_10_"/>
2561
- <polygon gorn="0.3.0.0.0.0.0.25.11.4" points="102.335,4.51401,101.778,3.95401,104.074,3.95401,103.519,4.51401" fill="#80795b" id="polygon3217-7_10_"/>
2562
- <polygon gorn="0.3.0.0.0.0.0.25.11.5" points="103.519,4.51401,104.074,3.95401,104.074,6.25001,103.519,5.69001" fill="#5e5b43" id="polygon3219-2_10_"/>
2563
- <polygon gorn="0.3.0.0.0.0.0.25.11.6" points="103.519,5.69001,104.074,6.25001,101.778,6.25001,102.335,5.69001" fill="#9a916c" id="connector25pin_10_"/>
2564
- <rect gorn="0.3.0.0.0.0.0.25.11.7" x="102.335" y="11.698" width="1.182" fill="#8c8663" id="rect3223-82_10_" height="1.182"/>
2565
- <polygon gorn="0.3.0.0.0.0.0.25.11.8" points="102.335,12.878,102.335,11.701,101.778,11.143,101.778,13.437" fill="#b8af82" id="polygon3225-89_10_"/>
2566
- <polygon gorn="0.3.0.0.0.0.0.25.11.9" points="102.335,11.701,101.778,11.143,104.074,11.143,103.519,11.701" fill="#80795b" id="polygon3227-07_10_"/>
2567
- <polygon gorn="0.3.0.0.0.0.0.25.11.10" points="103.519,11.701,104.074,11.143,104.074,13.437,103.519,12.878" fill="#5e5b43" id="polygon3229-8_10_"/>
2568
- <polygon gorn="0.3.0.0.0.0.0.25.11.11" points="101.778,13.437,102.335,12.878,103.519,12.878,104.074,13.437" fill="#9a916c" id="dnc24pin_10_"/>
2569
- </g>
2570
- <g gorn="0.3.0.0.0.0.0.25.12" id="g1040">
2571
- <polygon gorn="0.3.0.0.0.0.0.25.12.0" points="112.161,15.842,113.726,14.334,113.726,10.406,113.726,7.07001,113.726,3.14301,112.161,1.634,108.091,1.634,106.527,3.14301,106.527,7.07001,106.527,10.406,106.527,14.334,108.091,15.842" fill="#404040" id="polygon3153-8_9_"/>
2572
- <polygon gorn="0.3.0.0.0.0.0.25.12.1" points="112.161,15.842,113.726,14.334,113.726,10.406,113.726,7.07001,113.726,3.14301,112.161,1.634,108.091,1.634,106.527,3.14301,106.527,7.07001,106.527,10.406,106.527,14.334,108.091,15.842" fill="#404040" id="polygon3159-0_9_"/>
2573
- <rect gorn="0.3.0.0.0.0.0.25.12.2" x="109.535" y="4.51001" width="1.182" fill="#8c8663" id="rect3213-8_9_" height="1.181"/>
2574
- <polygon gorn="0.3.0.0.0.0.0.25.12.3" points="109.535,5.69001,109.535,4.51401,108.978,3.95401,108.978,6.25001" fill="#b8af82" id="polygon3215-9_9_"/>
2575
- <polygon gorn="0.3.0.0.0.0.0.25.12.4" points="109.535,4.51401,108.978,3.95401,111.275,3.95401,110.719,4.51401" fill="#80795b" id="polygon3217-7_9_"/>
2576
- <polygon gorn="0.3.0.0.0.0.0.25.12.5" points="110.719,4.51401,111.275,3.95401,111.275,6.25001,110.719,5.69001" fill="#5e5b43" id="polygon3219-2_9_"/>
2577
- <polygon gorn="0.3.0.0.0.0.0.25.12.6" points="110.719,5.69001,111.275,6.25001,108.978,6.25001,109.535,5.69001" fill="#9a916c" id="connector25pin_9_"/>
2578
- <rect gorn="0.3.0.0.0.0.0.25.12.7" x="109.535" y="11.698" width="1.182" fill="#8c8663" id="rect3223-82_9_" height="1.182"/>
2579
- <polygon gorn="0.3.0.0.0.0.0.25.12.8" points="109.535,12.878,109.535,11.701,108.978,11.143,108.978,13.437" fill="#b8af82" id="polygon3225-89_9_"/>
2580
- <polygon gorn="0.3.0.0.0.0.0.25.12.9" points="109.535,11.701,108.978,11.143,111.275,11.143,110.719,11.701" fill="#80795b" id="polygon3227-07_9_"/>
2581
- <polygon gorn="0.3.0.0.0.0.0.25.12.10" points="110.719,11.701,111.275,11.143,111.275,13.437,110.719,12.878" fill="#5e5b43" id="polygon3229-8_9_"/>
2582
- <polygon gorn="0.3.0.0.0.0.0.25.12.11" points="108.978,13.437,109.535,12.878,110.719,12.878,111.275,13.437" fill="#9a916c" id="dnc24pin_9_"/>
2583
- </g>
2584
- <g gorn="0.3.0.0.0.0.0.25.13" id="g1054">
2585
- <polygon gorn="0.3.0.0.0.0.0.25.13.0" points="119.362,15.842,120.926,14.334,120.926,10.406,120.926,7.07001,120.926,3.14301,119.362,1.634,115.291,1.634,113.727,3.14301,113.727,7.07001,113.727,10.406,113.727,14.334,115.291,15.842" fill="#404040" id="polygon3153-8_8_"/>
2586
- <polygon gorn="0.3.0.0.0.0.0.25.13.1" points="119.362,15.842,120.926,14.334,120.926,10.406,120.926,7.07001,120.926,3.14301,119.362,1.634,115.291,1.634,113.727,3.14301,113.727,7.07001,113.727,10.406,113.727,14.334,115.291,15.842" fill="#404040" id="polygon3159-0_8_"/>
2587
- <rect gorn="0.3.0.0.0.0.0.25.13.2" x="116.736" y="4.51001" width="1.182" fill="#8c8663" id="rect3213-8_8_" height="1.181"/>
2588
- <polygon gorn="0.3.0.0.0.0.0.25.13.3" points="116.736,5.69001,116.736,4.51401,116.178,3.95401,116.178,6.25001" fill="#b8af82" id="polygon3215-9_8_"/>
2589
- <polygon gorn="0.3.0.0.0.0.0.25.13.4" points="116.736,4.51401,116.178,3.95401,118.475,3.95401,117.919,4.51401" fill="#80795b" id="polygon3217-7_8_"/>
2590
- <polygon gorn="0.3.0.0.0.0.0.25.13.5" points="117.919,4.51401,118.475,3.95401,118.475,6.25001,117.919,5.69001" fill="#5e5b43" id="polygon3219-2_8_"/>
2591
- <polygon gorn="0.3.0.0.0.0.0.25.13.6" points="117.919,5.69001,118.475,6.25001,116.178,6.25001,116.736,5.69001" fill="#9a916c" id="connector25pin_8_"/>
2592
- <rect gorn="0.3.0.0.0.0.0.25.13.7" x="116.736" y="11.698" width="1.182" fill="#8c8663" id="rect3223-82_8_" height="1.182"/>
2593
- <polygon gorn="0.3.0.0.0.0.0.25.13.8" points="116.736,12.878,116.736,11.701,116.178,11.143,116.178,13.437" fill="#b8af82" id="polygon3225-89_8_"/>
2594
- <polygon gorn="0.3.0.0.0.0.0.25.13.9" points="116.736,11.701,116.178,11.143,118.475,11.143,117.919,11.701" fill="#80795b" id="polygon3227-07_8_"/>
2595
- <polygon gorn="0.3.0.0.0.0.0.25.13.10" points="117.919,11.701,118.475,11.143,118.475,13.437,117.919,12.878" fill="#5e5b43" id="polygon3229-8_8_"/>
2596
- <polygon gorn="0.3.0.0.0.0.0.25.13.11" points="116.178,13.437,116.736,12.878,117.919,12.878,118.475,13.437" fill="#9a916c" id="dnc24pin_8_"/>
2597
- </g>
2598
- <g gorn="0.3.0.0.0.0.0.25.14" id="g1068">
2599
- <polygon gorn="0.3.0.0.0.0.0.25.14.0" points="126.562,15.842,128.126,14.334,128.126,10.406,128.126,7.07001,128.126,3.14301,126.562,1.634,122.491,1.634,120.927,3.14301,120.927,7.07001,120.927,10.406,120.927,14.334,122.491,15.842" fill="#404040" id="polygon3153-8_7_"/>
2600
- <polygon gorn="0.3.0.0.0.0.0.25.14.1" points="126.562,15.842,128.126,14.334,128.126,10.406,128.126,7.07001,128.126,3.14301,126.562,1.634,122.491,1.634,120.927,3.14301,120.927,7.07001,120.927,10.406,120.927,14.334,122.491,15.842" fill="#404040" id="polygon3159-0_7_"/>
2601
- <rect gorn="0.3.0.0.0.0.0.25.14.2" x="123.936" y="4.51001" width="1.183" fill="#8c8663" id="rect3213-8_7_" height="1.181"/>
2602
- <polygon gorn="0.3.0.0.0.0.0.25.14.3" points="123.936,5.69001,123.936,4.51401,123.378,3.95401,123.378,6.25001" fill="#b8af82" id="polygon3215-9_7_"/>
2603
- <polygon gorn="0.3.0.0.0.0.0.25.14.4" points="123.936,4.51401,123.378,3.95401,125.675,3.95401,125.119,4.51401" fill="#80795b" id="polygon3217-7_7_"/>
2604
- <polygon gorn="0.3.0.0.0.0.0.25.14.5" points="125.119,4.51401,125.675,3.95401,125.675,6.25001,125.119,5.69001" fill="#5e5b43" id="polygon3219-2_7_"/>
2605
- <polygon gorn="0.3.0.0.0.0.0.25.14.6" points="125.119,5.69001,125.675,6.25001,123.378,6.25001,123.936,5.69001" fill="#9a916c" id="connector25pin_7_"/>
2606
- <rect gorn="0.3.0.0.0.0.0.25.14.7" x="123.936" y="11.698" width="1.183" fill="#8c8663" id="rect3223-82_7_" height="1.182"/>
2607
- <polygon gorn="0.3.0.0.0.0.0.25.14.8" points="123.936,12.878,123.936,11.701,123.378,11.143,123.378,13.437" fill="#b8af82" id="polygon3225-89_7_"/>
2608
- <polygon gorn="0.3.0.0.0.0.0.25.14.9" points="123.936,11.701,123.378,11.143,125.675,11.143,125.119,11.701" fill="#80795b" id="polygon3227-07_7_"/>
2609
- <polygon gorn="0.3.0.0.0.0.0.25.14.10" points="125.119,11.701,125.675,11.143,125.675,13.437,125.119,12.878" fill="#5e5b43" id="polygon3229-8_7_"/>
2610
- <polygon gorn="0.3.0.0.0.0.0.25.14.11" points="123.378,13.437,123.936,12.878,125.119,12.878,125.675,13.437" fill="#9a916c" id="dnc24pin_7_"/>
2611
- </g>
2612
- <g gorn="0.3.0.0.0.0.0.25.15" id="g1082">
2613
- <polygon gorn="0.3.0.0.0.0.0.25.15.0" points="133.761,15.842,135.326,14.334,135.326,10.406,135.326,7.07001,135.326,3.14301,133.761,1.634,129.691,1.634,128.126,3.14301,128.126,7.07001,128.126,10.406,128.126,14.334,129.691,15.842" fill="#404040" id="polygon3153-8_6_"/>
2614
- <polygon gorn="0.3.0.0.0.0.0.25.15.1" points="133.761,15.842,135.326,14.334,135.326,10.406,135.326,7.07001,135.326,3.14301,133.761,1.634,129.691,1.634,128.126,3.14301,128.126,7.07001,128.126,10.406,128.126,14.334,129.691,15.842" fill="#404040" id="polygon3159-0_6_"/>
2615
- <rect gorn="0.3.0.0.0.0.0.25.15.2" x="131.136" y="4.51001" width="1.182" fill="#8c8663" id="rect3213-8_6_" height="1.181"/>
2616
- <polygon gorn="0.3.0.0.0.0.0.25.15.3" points="131.136,5.69001,131.136,4.51401,130.578,3.95401,130.578,6.25001" fill="#b8af82" id="polygon3215-9_6_"/>
2617
- <polygon gorn="0.3.0.0.0.0.0.25.15.4" points="131.136,4.51401,130.578,3.95401,132.875,3.95401,132.32,4.51401" fill="#80795b" id="polygon3217-7_6_"/>
2618
- <polygon gorn="0.3.0.0.0.0.0.25.15.5" points="132.32,4.51401,132.875,3.95401,132.875,6.25001,132.32,5.69001" fill="#5e5b43" id="polygon3219-2_6_"/>
2619
- <polygon gorn="0.3.0.0.0.0.0.25.15.6" points="132.32,5.69001,132.875,6.25001,130.578,6.25001,131.136,5.69001" fill="#9a916c" id="connector25pin_6_"/>
2620
- <rect gorn="0.3.0.0.0.0.0.25.15.7" x="131.136" y="11.698" width="1.182" fill="#8c8663" id="rect3223-82_6_" height="1.182"/>
2621
- <polygon gorn="0.3.0.0.0.0.0.25.15.8" points="131.136,12.878,131.136,11.701,130.578,11.143,130.578,13.437" fill="#b8af82" id="polygon3225-89_6_"/>
2622
- <polygon gorn="0.3.0.0.0.0.0.25.15.9" points="131.136,11.701,130.578,11.143,132.875,11.143,132.32,11.701" fill="#80795b" id="polygon3227-07_6_"/>
2623
- <polygon gorn="0.3.0.0.0.0.0.25.15.10" points="132.32,11.701,132.875,11.143,132.875,13.437,132.32,12.878" fill="#5e5b43" id="polygon3229-8_6_"/>
2624
- <polygon gorn="0.3.0.0.0.0.0.25.15.11" points="130.578,13.437,131.136,12.878,132.32,12.878,132.875,13.437" fill="#9a916c" id="dnc24pin_6_"/>
2625
- </g>
2626
- <g gorn="0.3.0.0.0.0.0.25.16" id="g1096">
2627
- <polygon gorn="0.3.0.0.0.0.0.25.16.0" points="140.962,15.842,142.527,14.334,142.527,10.406,142.527,7.07001,142.527,3.14301,140.962,1.634,136.892,1.634,135.328,3.14301,135.328,7.07001,135.328,10.406,135.328,14.334,136.892,15.842" fill="#404040" id="polygon3153-8_5_"/>
2628
- <polygon gorn="0.3.0.0.0.0.0.25.16.1" points="140.962,15.842,142.527,14.334,142.527,10.406,142.527,7.07001,142.527,3.14301,140.962,1.634,136.892,1.634,135.328,3.14301,135.328,7.07001,135.328,10.406,135.328,14.334,136.892,15.842" fill="#404040" id="polygon3159-0_5_"/>
2629
- <rect gorn="0.3.0.0.0.0.0.25.16.2" x="138.335" y="4.51001" width="1.183" fill="#8c8663" id="rect3213-8_5_" height="1.181"/>
2630
- <polygon gorn="0.3.0.0.0.0.0.25.16.3" points="138.335,5.69001,138.335,4.51401,137.779,3.95401,137.779,6.25001" fill="#b8af82" id="polygon3215-9_5_"/>
2631
- <polygon gorn="0.3.0.0.0.0.0.25.16.4" points="138.335,4.51401,137.779,3.95401,140.076,3.95401,139.519,4.51401" fill="#80795b" id="polygon3217-7_5_"/>
2632
- <polygon gorn="0.3.0.0.0.0.0.25.16.5" points="139.519,4.51401,140.076,3.95401,140.076,6.25001,139.519,5.69001" fill="#5e5b43" id="polygon3219-2_5_"/>
2633
- <polygon gorn="0.3.0.0.0.0.0.25.16.6" points="139.519,5.69001,140.076,6.25001,137.779,6.25001,138.335,5.69001" fill="#9a916c" id="connector25pin_5_"/>
2634
- <rect gorn="0.3.0.0.0.0.0.25.16.7" x="138.335" y="11.698" width="1.183" fill="#8c8663" id="rect3223-82_5_" height="1.182"/>
2635
- <polygon gorn="0.3.0.0.0.0.0.25.16.8" points="138.335,12.878,138.335,11.701,137.779,11.143,137.779,13.437" fill="#b8af82" id="polygon3225-89_5_"/>
2636
- <polygon gorn="0.3.0.0.0.0.0.25.16.9" points="138.335,11.701,137.779,11.143,140.076,11.143,139.519,11.701" fill="#80795b" id="polygon3227-07_5_"/>
2637
- <polygon gorn="0.3.0.0.0.0.0.25.16.10" points="139.519,11.701,140.076,11.143,140.076,13.437,139.519,12.878" fill="#5e5b43" id="polygon3229-8_5_"/>
2638
- <polygon gorn="0.3.0.0.0.0.0.25.16.11" points="137.779,13.437,138.335,12.878,139.519,12.878,140.076,13.437" fill="#9a916c" id="dnc24pin_5_"/>
2639
- </g>
2640
- <g gorn="0.3.0.0.0.0.0.25.17" id="g1110">
2641
- <polygon gorn="0.3.0.0.0.0.0.25.17.0" points="148.162,15.842,149.726,14.334,149.726,10.406,149.726,7.07001,149.726,3.14301,148.162,1.634,144.091,1.634,142.527,3.14301,142.527,7.07001,142.527,10.406,142.527,14.334,144.091,15.842" fill="#404040" id="polygon3153-8_4_"/>
2642
- <polygon gorn="0.3.0.0.0.0.0.25.17.1" points="148.162,15.842,149.726,14.334,149.726,10.406,149.726,7.07001,149.726,3.14301,148.162,1.634,144.091,1.634,142.527,3.14301,142.527,7.07001,142.527,10.406,142.527,14.334,144.091,15.842" fill="#404040" id="polygon3159-0_4_"/>
2643
- <rect gorn="0.3.0.0.0.0.0.25.17.2" x="145.537" y="4.51001" width="1.183" fill="#8c8663" id="rect3213-8_4_" height="1.181"/>
2644
- <polygon gorn="0.3.0.0.0.0.0.25.17.3" points="145.537,5.69001,145.537,4.51401,144.978,3.95401,144.978,6.25001" fill="#b8af82" id="polygon3215-9_4_"/>
2645
- <polygon gorn="0.3.0.0.0.0.0.25.17.4" points="145.537,4.51401,144.978,3.95401,147.275,3.95401,146.72,4.51401" fill="#80795b" id="polygon3217-7_4_"/>
2646
- <polygon gorn="0.3.0.0.0.0.0.25.17.5" points="146.72,4.51401,147.275,3.95401,147.275,6.25001,146.72,5.69001" fill="#5e5b43" id="polygon3219-2_4_"/>
2647
- <polygon gorn="0.3.0.0.0.0.0.25.17.6" points="146.72,5.69001,147.275,6.25001,144.978,6.25001,145.537,5.69001" fill="#9a916c" id="connector25pin_4_"/>
2648
- <rect gorn="0.3.0.0.0.0.0.25.17.7" x="145.537" y="11.698" width="1.183" fill="#8c8663" id="rect3223-82_4_" height="1.182"/>
2649
- <polygon gorn="0.3.0.0.0.0.0.25.17.8" points="145.537,12.878,145.537,11.701,144.978,11.143,144.978,13.437" fill="#b8af82" id="polygon3225-89_4_"/>
2650
- <polygon gorn="0.3.0.0.0.0.0.25.17.9" points="145.537,11.701,144.978,11.143,147.275,11.143,146.72,11.701" fill="#80795b" id="polygon3227-07_4_"/>
2651
- <polygon gorn="0.3.0.0.0.0.0.25.17.10" points="146.72,11.701,147.275,11.143,147.275,13.437,146.72,12.878" fill="#5e5b43" id="polygon3229-8_4_"/>
2652
- <polygon gorn="0.3.0.0.0.0.0.25.17.11" points="144.978,13.437,145.537,12.878,146.72,12.878,147.275,13.437" fill="#9a916c" id="dnc24pin_4_"/>
2653
- </g>
2654
- <g gorn="0.3.0.0.0.0.0.25.18" id="g1124">
2655
- <polygon gorn="0.3.0.0.0.0.0.25.18.0" points="155.363,15.842,156.927,14.334,156.927,10.406,156.927,7.07001,156.927,3.14301,155.363,1.634,151.292,1.634,149.728,3.14301,149.728,7.07001,149.728,10.406,149.728,14.334,151.292,15.842" fill="#404040" id="polygon3153-8_3_"/>
2656
- <polygon gorn="0.3.0.0.0.0.0.25.18.1" points="155.363,15.842,156.927,14.334,156.927,10.406,156.927,7.07001,156.927,3.14301,155.363,1.634,151.292,1.634,149.728,3.14301,149.728,7.07001,149.728,10.406,149.728,14.334,151.292,15.842" fill="#404040" id="polygon3159-0_3_"/>
2657
- <rect gorn="0.3.0.0.0.0.0.25.18.2" x="152.736" y="4.51001" width="1.182" fill="#8c8663" id="rect3213-8_3_" height="1.181"/>
2658
- <polygon gorn="0.3.0.0.0.0.0.25.18.3" points="152.736,5.69001,152.736,4.51401,152.179,3.95401,152.179,6.25001" fill="#b8af82" id="polygon3215-9_3_"/>
2659
- <polygon gorn="0.3.0.0.0.0.0.25.18.4" points="152.736,4.51401,152.179,3.95401,154.476,3.95401,153.919,4.51401" fill="#80795b" id="polygon3217-7_3_"/>
2660
- <polygon gorn="0.3.0.0.0.0.0.25.18.5" points="153.919,4.51401,154.476,3.95401,154.476,6.25001,153.919,5.69001" fill="#5e5b43" id="polygon3219-2_3_"/>
2661
- <polygon gorn="0.3.0.0.0.0.0.25.18.6" points="153.919,5.69001,154.476,6.25001,152.179,6.25001,152.736,5.69001" fill="#9a916c" id="connector25pin_3_"/>
2662
- <rect gorn="0.3.0.0.0.0.0.25.18.7" x="152.736" y="11.698" width="1.182" fill="#8c8663" id="rect3223-82_3_" height="1.182"/>
2663
- <polygon gorn="0.3.0.0.0.0.0.25.18.8" points="152.736,12.878,152.736,11.701,152.179,11.143,152.179,13.437" fill="#b8af82" id="polygon3225-89_3_"/>
2664
- <polygon gorn="0.3.0.0.0.0.0.25.18.9" points="152.736,11.701,152.179,11.143,154.476,11.143,153.919,11.701" fill="#80795b" id="polygon3227-07_3_"/>
2665
- <polygon gorn="0.3.0.0.0.0.0.25.18.10" points="153.919,11.701,154.476,11.143,154.476,13.437,153.919,12.878" fill="#5e5b43" id="polygon3229-8_3_"/>
2666
- <polygon gorn="0.3.0.0.0.0.0.25.18.11" points="152.179,13.437,152.736,12.878,153.919,12.878,154.476,13.437" fill="#9a916c" id="dnc24pin_3_"/>
2667
- </g>
2668
- <g gorn="0.3.0.0.0.0.0.25.19" id="g1138">
2669
- <polygon gorn="0.3.0.0.0.0.0.25.19.0" points="162.562,15.842,164.126,14.334,164.126,10.406,164.126,7.07001,164.126,3.14301,162.562,1.634,158.492,1.634,156.927,3.14301,156.927,7.07001,156.927,10.406,156.927,14.334,158.492,15.842" fill="#404040" id="polygon3153-8_1_"/>
2670
- <polygon gorn="0.3.0.0.0.0.0.25.19.1" points="162.562,15.842,164.126,14.334,164.126,10.406,164.126,7.07001,164.126,3.14301,162.562,1.634,158.492,1.634,156.927,3.14301,156.927,7.07001,156.927,10.406,156.927,14.334,158.492,15.842" fill="#404040" id="polygon3159-0_1_"/>
2671
- <rect gorn="0.3.0.0.0.0.0.25.19.2" x="159.937" y="4.51001" width="1.182" fill="#8c8663" id="rect3213-8_1_" height="1.181"/>
2672
- <polygon gorn="0.3.0.0.0.0.0.25.19.3" points="159.937,5.69001,159.937,4.51401,159.378,3.95401,159.378,6.25001" fill="#b8af82" id="polygon3215-9_1_"/>
2673
- <polygon gorn="0.3.0.0.0.0.0.25.19.4" points="159.937,4.51401,159.378,3.95401,161.675,3.95401,161.121,4.51401" fill="#80795b" id="polygon3217-7_1_"/>
2674
- <polygon gorn="0.3.0.0.0.0.0.25.19.5" points="161.121,4.51401,161.675,3.95401,161.675,6.25001,161.121,5.69001" fill="#5e5b43" id="polygon3219-2_1_"/>
2675
- <polygon gorn="0.3.0.0.0.0.0.25.19.6" points="161.121,5.69001,161.675,6.25001,159.378,6.25001,159.937,5.69001" fill="#9a916c" id="connector25pin_1_"/>
2676
- <rect gorn="0.3.0.0.0.0.0.25.19.7" x="159.937" y="11.698" width="1.182" fill="#8c8663" id="rect3223-82_1_" height="1.182"/>
2677
- <polygon gorn="0.3.0.0.0.0.0.25.19.8" points="159.937,12.878,159.937,11.701,159.378,11.143,159.378,13.437" fill="#b8af82" id="polygon3225-89_1_"/>
2678
- <polygon gorn="0.3.0.0.0.0.0.25.19.9" points="159.937,11.701,159.378,11.143,161.675,11.143,161.121,11.701" fill="#80795b" id="polygon3227-07_1_"/>
2679
- <polygon gorn="0.3.0.0.0.0.0.25.19.10" points="161.121,11.701,161.675,11.143,161.675,13.437,161.121,12.878" fill="#5e5b43" id="polygon3229-8_1_"/>
2680
- <polygon gorn="0.3.0.0.0.0.0.25.19.11" points="159.378,13.437,159.937,12.878,161.121,12.878,161.675,13.437" fill="#9a916c" id="dnc24pin_1_"/>
2681
- </g>
2682
- </g>
2683
- </g>
2684
- </g>
2685
- </g>
2686
- </g>
2687
- </g>
2688
- </g>
2689
- </g>
2690
- </g></g></g><g partID='854103830'><path stroke-linecap='round' fill='none' stroke-width='3.2' stroke='#d6d63a' d='M151.569,66.9523C151.569,66.9523, 182.862,61.8515 216.368,74.1518' /><path stroke-linecap='round' fill='none' stroke-width='1.6' stroke='#fff800' d='M151.569,66.9523C151.569,66.9523, 182.862,61.8515 216.368,74.1518' /></g><g partID='854103970'><path stroke-linecap='round' fill='none' stroke-width='3.2' stroke='#1b5bb3' d='M245.168,74.1518C245.168,74.1518, 208.87,90.432 151.569,74.1522' /><path stroke-linecap='round' fill='none' stroke-width='1.6' stroke='#418dd9' d='M245.168,74.1518C245.168,74.1518, 208.87,90.432 151.569,74.1522' /></g></svg>