Merge lp:~facundo/ubuntuone-client/states-refactor into lp:ubuntuone-client

Proposed by Facundo Batista
Status: Merged
Approved by: Eric Casteleijn
Approved revision: not available
Merged at revision: not available
Proposed branch: lp:~facundo/ubuntuone-client/states-refactor
Merge into: lp:ubuntuone-client
Diff against target: 16453 lines (+11590/-2428)
19 files modified
bin/ubuntuone-syncdaemon (+0/-1)
contrib/testing/testcase.py (+15/-13)
data/syncdaemon.conf (+0/-5)
docs/states_connection.svg (+1884/-0)
docs/states_manager.svg (+7360/-622)
docs/states_queues.svg (+2064/-0)
tests/syncdaemon/test_action_queue.py (+108/-14)
tests/syncdaemon/test_dbus.py (+28/-37)
tests/syncdaemon/test_main.py (+33/-81)
tests/syncdaemon/test_states.py (+0/-571)
tests/syncdaemon/test_tools.py (+18/-12)
tests/syncdaemon/test_u1sdtool.py (+11/-4)
ubuntuone/syncdaemon/action_queue.py (+29/-37)
ubuntuone/syncdaemon/dbus_interface.py (+21/-15)
ubuntuone/syncdaemon/event_queue.py (+6/-8)
ubuntuone/syncdaemon/main.py (+12/-14)
ubuntuone/syncdaemon/state.py (+0/-117)
ubuntuone/syncdaemon/states.py (+0/-876)
ubuntuone/syncdaemon/tools.py (+1/-1)
To merge this branch: bzr merge lp:~facundo/ubuntuone-client/states-refactor
Reviewer Review Type Date Requested Status
Natalia Bidart (community) Approve
Eric Casteleijn (community) Approve
Rick McBride (community) Approve
Review via email: mp+20565@code.launchpad.net

Commit message

Big States refactor.

To post a comment you must log in.
Revision history for this message
Facundo Batista (facundo) wrote :

Big States refactor.

This is the new States, the machine the makes the big transitions in
SyncDaemon.

Previously, we had the manager in state.py, and a big collection of
states in states.py.

Now we have only one states.py, that is much much simpler. The
responsibilities are split in three:

- StateManager: big states

- QueueManager: handles which AQ queue to execute.

- ConnectionManager: hanldes the network status.

You can check graphs for all three in the 'docs' directory.

Also, some other changes are in this branch:

- a couple of events renaming, to make it more clear, and removed some
  unused events.

- LocalRescan is another step in the big states, not something semi-handled
  by main.py.

- Lot of docstring fixes

- No more max handshake timeouts, so that option is removed everywhere

- RequestQueue behaviour about what is WAITING and what is DONE.

Of course, previous tests are adapted to these changes.

Finally, included an extensive test suite for this.

Revision history for this message
Rick McBride (rmcbride) wrote :

Looks good!

review: Approve
393. By Facundo Batista

Small addition

Revision history for this message
Eric Casteleijn (thisfred) wrote :

Great, looks good, tests pass!

review: Approve
394. By Facundo Batista

Docstring

Revision history for this message
Natalia Bidart (nataliabidart) wrote :

And another approve from me!

review: Approve
395. By Facundo Batista

Docstrings, comments, and ordered the events by alphabetical order.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'bin/ubuntuone-syncdaemon'
--- bin/ubuntuone-syncdaemon 2009-12-21 22:12:20 +0000
+++ bin/ubuntuone-syncdaemon 2010-03-04 14:52:23 +0000
@@ -129,7 +129,6 @@
129 realm=options.realm, mark_interval=options.mark_interval,129 realm=options.realm, mark_interval=options.mark_interval,
130 dbus_events=options.send_events_over_dbus,130 dbus_events=options.send_events_over_dbus,
131 handshake_timeout=options.handshake_timeout,131 handshake_timeout=options.handshake_timeout,
132 max_handshake_timeouts=options.max_handshake_timeouts,
133 shares_symlink_name='Shared With Me',132 shares_symlink_name='Shared With Me',
134 read_limit=options.bandwidth_throttling_read_limit, 133 read_limit=options.bandwidth_throttling_read_limit,
135 write_limit=options.bandwidth_throttling_write_limit, 134 write_limit=options.bandwidth_throttling_write_limit,
136135
=== modified file 'contrib/testing/testcase.py'
--- contrib/testing/testcase.py 2010-03-04 02:55:09 +0000
+++ contrib/testing/testcase.py 2010-03-04 14:52:23 +0000
@@ -122,7 +122,7 @@
122 self.event_q = event_queue.EventQueue(self.fs)122 self.event_q = event_queue.EventQueue(self.fs)
123 self.fs.register_eq(self.event_q)123 self.fs.register_eq(self.event_q)
124 self.action_q = FakeActionQueue(self.event_q, main=self)124 self.action_q = FakeActionQueue(self.event_q, main=self)
125 self.state = main.SyncDaemonStateManager(self, 2, 0)125 self.state_manager = main.StateManager(self, 2)
126 self.event_q.subscribe(self.vm)126 self.event_q.subscribe(self.vm)
127 self.vm.init_root()127 self.vm.init_root()
128 self.hash_q = FakeHashQueue()128 self.hash_q = FakeHashQueue()
@@ -132,39 +132,42 @@
132 self.event_q, self.action_q)132 self.event_q, self.action_q)
133133
134 def _connect_aq(self, token):134 def _connect_aq(self, token):
135 """ Connect the fake action queue """135 """Connect the fake action queue."""
136 self.action_q.connect()136 self.action_q.connect()
137137
138 def _disconnect_aq(self):138 def _disconnect_aq(self):
139 """ Disconnect the fake action queue """139 """Disconnect the fake action queue."""
140 self.action_q.disconnect()140 self.action_q.disconnect()
141141
142 def get_access_token(self):142 def get_access_token(self):
143 """fake get token"""143 """Fake get token."""
144 return None144 return None
145145
146 def check_version(self):146 def check_version(self):
147 """ Check the client protocol version matches that of the server. """147 """Check the client protocol version matches that of the server."""
148 self.event_q.push('SYS_PROTOCOL_VERSION_OK')148 self.event_q.push('SYS_PROTOCOL_VERSION_OK')
149149
150 def authenticate(self):150 def authenticate(self):
151 """ Do the OAuth dance. """151 """Do the OAuth dance."""
152 self.event_q.push('SYS_OAUTH_OK')152 self.event_q.push('SYS_AUTH_OK')
153153
154 def set_capabilities(self):154 def set_capabilities(self):
155 """Set the capabilities"""155 """Set the capabilities."""
156 self.event_q.push('SYS_SET_CAPABILITIES_OK')156 self.event_q.push('SYS_SET_CAPABILITIES_OK')
157157
158 def get_root(self, root_mdid):158 def get_root(self, root_mdid):
159 """ Ask que AQ for our root's uuid. """159 """Ask que AQ for our root's uuid."""
160 return defer.succeed('root_uuid')160 return defer.succeed('root_uuid')
161161
162 def server_rescan(self):162 def server_rescan(self):
163 """ Do the server rescan? naaa! """163 """Do the server rescan? naaa!"""
164 self.event_q.push('SYS_SERVER_RESCAN_STARTING')
165 self.event_q.push('SYS_SERVER_RESCAN_DONE')164 self.event_q.push('SYS_SERVER_RESCAN_DONE')
166 return defer.succeed('root_uuid')165 return defer.succeed('root_uuid')
167166
167 def local_rescan(self):
168 """Do the local rescan? naaa!"""
169 self.event_q.push('SYS_LOCAL_RESCAN_DONE')
170 return defer.succeed(True)
168171
169172
170class BaseTwistedTestCase(TwistedTestCase):173class BaseTwistedTestCase(TwistedTestCase):
@@ -284,8 +287,7 @@
284 self.busName = self.dbus_iface.busName287 self.busName = self.dbus_iface.busName
285 self.bus.set_exit_on_disconnect(False)288 self.bus.set_exit_on_disconnect(False)
286 self.dbus_iface.connect()289 self.dbus_iface.connect()
287 self.event_q.push('SYS_WAIT_FOR_LOCAL_RESCAN')290 self.event_q.push('SYS_INIT_DONE')
288 self.event_q.push('SYS_LOCAL_RESCAN_DONE')
289 self.signal_receivers = set()291 self.signal_receivers = set()
290 self.action_q.content_queue.set_change_notification_cb(292 self.action_q.content_queue.set_change_notification_cb(
291 self.dbus_iface.status.emit_content_queue_changed)293 self.dbus_iface.status.emit_content_queue_changed)
292294
=== modified file 'data/syncdaemon.conf'
--- data/syncdaemon.conf 2010-02-15 13:53:00 +0000
+++ data/syncdaemon.conf 2010-03-04 14:52:23 +0000
@@ -57,11 +57,6 @@
57handshake_timeout.parser = int57handshake_timeout.parser = int
58handshake_timeout.help = The timeout for the connection and related states, in seconds58handshake_timeout.help = The timeout for the connection and related states, in seconds
5959
60max_handshake_timeouts.default = 10
61max_handshake_timeouts.parser = int
62max_handshake_timeouts.help = The number of consecutive handshake timeouts
63 before we give up
64
65udf_autosubscribe.default = True60udf_autosubscribe.default = True
66udf_autosubscribe.parser = bool61udf_autosubscribe.parser = bool
67udf_autosubscribe.help = Autosubsribe to new User Defined Folders, 'on' by default. 62udf_autosubscribe.help = Autosubsribe to new User Defined Folders, 'on' by default.
6863
=== added file 'docs/states_connection.svg'
--- docs/states_connection.svg 1970-01-01 00:00:00 +0000
+++ docs/states_connection.svg 2010-03-04 14:52:23 +0000
@@ -0,0 +1,1884 @@
1<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
4<svg
5 xmlns:dc="http://purl.org/dc/elements/1.1/"
6 xmlns:cc="http://creativecommons.org/ns#"
7 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8 xmlns:svg="http://www.w3.org/2000/svg"
9 xmlns="http://www.w3.org/2000/svg"
10 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12 width="1052.3622"
13 height="744.09448"
14 id="svg2"
15 sodipodi:version="0.32"
16 inkscape:version="0.47pre4 r22446"
17 version="1.0"
18 sodipodi:docname="states_connection.svg"
19 inkscape:output_extension="org.inkscape.output.svg.inkscape">
20 <sodipodi:namedview
21 id="base"
22 pagecolor="#ffffff"
23 bordercolor="#666666"
24 borderopacity="1.0"
25 gridtolerance="10000"
26 guidetolerance="10"
27 objecttolerance="10"
28 inkscape:pageopacity="0.0"
29 inkscape:pageshadow="2"
30 inkscape:zoom="1.0213757"
31 inkscape:cx="526.18109"
32 inkscape:cy="372.04724"
33 inkscape:document-units="px"
34 inkscape:current-layer="layer1"
35 showgrid="false"
36 inkscape:window-width="1920"
37 inkscape:window-height="1008"
38 inkscape:window-x="0"
39 inkscape:window-y="25"
40 inkscape:window-maximized="1"
41 showguides="true"
42 inkscape:guide-bbox="true" />
43 <defs
44 id="defs4">
45 <marker
46 inkscape:stockid="Arrow1Lstart"
47 orient="auto"
48 refY="0.0"
49 refX="0.0"
50 id="Arrow1Lstart"
51 style="overflow:visible">
52 <path
53 id="path7549"
54 d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
55 style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
56 transform="scale(0.8) translate(12.5,0)" />
57 </marker>
58 <marker
59 inkscape:stockid="Arrow1Mstart"
60 orient="auto"
61 refY="0.0"
62 refX="0.0"
63 id="Arrow1Mstart"
64 style="overflow:visible">
65 <path
66 id="path7555"
67 d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
68 style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
69 transform="scale(0.4) translate(10,0)" />
70 </marker>
71 <marker
72 inkscape:stockid="Arrow1Sstart"
73 orient="auto"
74 refY="0.0"
75 refX="0.0"
76 id="Arrow1Sstart"
77 style="overflow:visible">
78 <path
79 id="path3697"
80 d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
81 style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
82 transform="scale(0.2) translate(6,0)" />
83 </marker>
84 <marker
85 style="overflow:visible;"
86 id="Arrow1Send"
87 refX="0.0"
88 refY="0.0"
89 orient="auto"
90 inkscape:stockid="Arrow1Send">
91 <path
92 transform="scale(0.2) rotate(180) translate(6,0)"
93 style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
94 d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
95 id="path3700" />
96 </marker>
97 <marker
98 style="overflow: visible;"
99 id="Arrow1Mend"
100 refX="0.0"
101 refY="0.0"
102 orient="auto"
103 inkscape:stockid="Arrow1Mend">
104 <path
105 transform="scale(0.4, 0.4) rotate(180) translate(10)"
106 style="fill-rule: evenodd; stroke: rgb(0, 0, 0); stroke-width: 1pt; marker-start: none;"
107 d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
108 id="path3429" />
109 </marker>
110 <inkscape:perspective
111 id="perspective10"
112 inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
113 inkscape:vp_z="744.09448 : 526.18109 : 1"
114 inkscape:vp_y="0 : 1000 : 0"
115 inkscape:vp_x="0 : 526.18109 : 1"
116 sodipodi:type="inkscape:persp3d" />
117 <inkscape:perspective
118 sodipodi:type="inkscape:persp3d"
119 inkscape:vp_x="0 : 0.5 : 1"
120 inkscape:vp_y="0 : 1000 : 0"
121 inkscape:vp_z="1 : 0.5 : 1"
122 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
123 id="perspective4326" />
124 <marker
125 style="overflow:visible"
126 id="Arrow1Mend-9"
127 refX="0"
128 refY="0"
129 orient="auto"
130 inkscape:stockid="Arrow1Mend">
131 <path
132 transform="matrix(-0.4,0,0,-0.4,-4,0)"
133 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
134 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
135 id="path3429-5" />
136 </marker>
137 <marker
138 style="overflow: visible;"
139 id="Arrow1Mend1"
140 refX="0.0"
141 refY="0.0"
142 orient="auto"
143 inkscape:stockid="Arrow1Mend1">
144 <path
145 transform="scale(0.4, 0.4) rotate(180) translate(10)"
146 style="fill-rule: evenodd; marker-start: none;stroke:#00ff00; stroke: rgb(0, 0, 0); stroke-width: 1pt;fill:#00ff00"
147 d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
148 id="path4357" />
149 </marker>
150 <marker
151 style="overflow: visible;"
152 id="Arrow1Mend1u"
153 refX="0.0"
154 refY="0.0"
155 orient="auto"
156 inkscape:stockid="Arrow1Mend1u">
157 <path
158 transform="scale(0.4, 0.4) rotate(180) translate(10)"
159 style="fill-rule: evenodd; marker-start: none;stroke:#00ff00; stroke: rgb(0, 0, 0); stroke-width: 1pt;fill:#00ff00"
160 d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
161 id="path5351" />
162 </marker>
163 <inkscape:perspective
164 sodipodi:type="inkscape:persp3d"
165 inkscape:vp_x="0 : 0.5 : 1"
166 inkscape:vp_y="0 : 1000 : 0"
167 inkscape:vp_z="1 : 0.5 : 1"
168 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
169 id="perspective5562" />
170 <marker
171 style="overflow:visible"
172 id="Arrow1Mend1u-4"
173 refX="0"
174 refY="0"
175 orient="auto"
176 inkscape:stockid="Arrow1Mend1u">
177 <path
178 transform="matrix(-0.4,0,0,-0.4,-4,0)"
179 style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
180 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
181 id="path5351-6" />
182 </marker>
183 <marker
184 style="overflow: visible;"
185 id="Arrow1Mend1u6"
186 refX="0.0"
187 refY="0.0"
188 orient="auto"
189 inkscape:stockid="Arrow1Mend1u6">
190 <path
191 transform="scale(0.4, 0.4) rotate(180) translate(10)"
192 style="fill-rule: evenodd; marker-start: none;stroke:#00ffec; stroke: rgb(0, 0, 0); stroke-width: 1pt;fill:#00ffec"
193 d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
194 id="path5603" />
195 </marker>
196 <inkscape:perspective
197 id="perspective5866"
198 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
199 inkscape:vp_z="1 : 0.5 : 1"
200 inkscape:vp_y="0 : 1000 : 0"
201 inkscape:vp_x="0 : 0.5 : 1"
202 sodipodi:type="inkscape:persp3d" />
203 <inkscape:perspective
204 id="perspective5866-1"
205 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
206 inkscape:vp_z="1 : 0.5 : 1"
207 inkscape:vp_y="0 : 1000 : 0"
208 inkscape:vp_x="0 : 0.5 : 1"
209 sodipodi:type="inkscape:persp3d" />
210 <inkscape:perspective
211 id="perspective5866-0"
212 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
213 inkscape:vp_z="1 : 0.5 : 1"
214 inkscape:vp_y="0 : 1000 : 0"
215 inkscape:vp_x="0 : 0.5 : 1"
216 sodipodi:type="inkscape:persp3d" />
217 <inkscape:perspective
218 id="perspective5936"
219 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
220 inkscape:vp_z="1 : 0.5 : 1"
221 inkscape:vp_y="0 : 1000 : 0"
222 inkscape:vp_x="0 : 0.5 : 1"
223 sodipodi:type="inkscape:persp3d" />
224 <inkscape:perspective
225 id="perspective5990"
226 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
227 inkscape:vp_z="1 : 0.5 : 1"
228 inkscape:vp_y="0 : 1000 : 0"
229 inkscape:vp_x="0 : 0.5 : 1"
230 sodipodi:type="inkscape:persp3d" />
231 <inkscape:perspective
232 id="perspective5990-1"
233 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
234 inkscape:vp_z="1 : 0.5 : 1"
235 inkscape:vp_y="0 : 1000 : 0"
236 inkscape:vp_x="0 : 0.5 : 1"
237 sodipodi:type="inkscape:persp3d" />
238 <inkscape:perspective
239 id="perspective3695"
240 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
241 inkscape:vp_z="1 : 0.5 : 1"
242 inkscape:vp_y="0 : 1000 : 0"
243 inkscape:vp_x="0 : 0.5 : 1"
244 sodipodi:type="inkscape:persp3d" />
245 <marker
246 style="overflow:visible"
247 id="Arrow1Mend-6"
248 refX="0"
249 refY="0"
250 orient="auto"
251 inkscape:stockid="Arrow1Mend">
252 <path
253 transform="matrix(-0.4,0,0,-0.4,-4,0)"
254 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
255 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
256 id="path3429-2" />
257 </marker>
258 <inkscape:perspective
259 id="perspective3723"
260 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
261 inkscape:vp_z="1 : 0.5 : 1"
262 inkscape:vp_y="0 : 1000 : 0"
263 inkscape:vp_x="0 : 0.5 : 1"
264 sodipodi:type="inkscape:persp3d" />
265 <marker
266 style="overflow:visible"
267 id="Arrow1Mend-7"
268 refX="0"
269 refY="0"
270 orient="auto"
271 inkscape:stockid="Arrow1Mend">
272 <path
273 transform="matrix(-0.4,0,0,-0.4,-4,0)"
274 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
275 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
276 id="path3429-7" />
277 </marker>
278 <marker
279 style="overflow:visible"
280 id="marker3729"
281 refX="0"
282 refY="0"
283 orient="auto"
284 inkscape:stockid="Arrow1Mend">
285 <path
286 transform="matrix(-0.4,0,0,-0.4,-4,0)"
287 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
288 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
289 id="path3731" />
290 </marker>
291 <inkscape:perspective
292 id="perspective3762"
293 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
294 inkscape:vp_z="1 : 0.5 : 1"
295 inkscape:vp_y="0 : 1000 : 0"
296 inkscape:vp_x="0 : 0.5 : 1"
297 sodipodi:type="inkscape:persp3d" />
298 <marker
299 style="overflow:visible"
300 id="Arrow1Mend-2"
301 refX="0"
302 refY="0"
303 orient="auto"
304 inkscape:stockid="Arrow1Mend">
305 <path
306 transform="matrix(-0.4,0,0,-0.4,-4,0)"
307 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
308 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
309 id="path3429-1" />
310 </marker>
311 <marker
312 style="overflow:visible"
313 id="marker3768"
314 refX="0"
315 refY="0"
316 orient="auto"
317 inkscape:stockid="Arrow1Mend">
318 <path
319 transform="matrix(-0.4,0,0,-0.4,-4,0)"
320 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
321 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
322 id="path3770" />
323 </marker>
324 <inkscape:perspective
325 id="perspective3801"
326 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
327 inkscape:vp_z="1 : 0.5 : 1"
328 inkscape:vp_y="0 : 1000 : 0"
329 inkscape:vp_x="0 : 0.5 : 1"
330 sodipodi:type="inkscape:persp3d" />
331 <marker
332 style="overflow:visible"
333 id="Arrow1Mend-5"
334 refX="0"
335 refY="0"
336 orient="auto"
337 inkscape:stockid="Arrow1Mend">
338 <path
339 transform="matrix(-0.4,0,0,-0.4,-4,0)"
340 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
341 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
342 id="path3429-8" />
343 </marker>
344 <inkscape:perspective
345 id="perspective3829"
346 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
347 inkscape:vp_z="1 : 0.5 : 1"
348 inkscape:vp_y="0 : 1000 : 0"
349 inkscape:vp_x="0 : 0.5 : 1"
350 sodipodi:type="inkscape:persp3d" />
351 <marker
352 style="overflow:visible"
353 id="Arrow1Mend-4"
354 refX="0"
355 refY="0"
356 orient="auto"
357 inkscape:stockid="Arrow1Mend">
358 <path
359 transform="matrix(-0.4,0,0,-0.4,-4,0)"
360 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
361 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
362 id="path3429-6" />
363 </marker>
364 <marker
365 style="overflow:visible"
366 id="marker3835"
367 refX="0"
368 refY="0"
369 orient="auto"
370 inkscape:stockid="Arrow1Mend">
371 <path
372 transform="matrix(-0.4,0,0,-0.4,-4,0)"
373 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
374 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
375 id="path3837" />
376 </marker>
377 <inkscape:perspective
378 id="perspective3872"
379 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
380 inkscape:vp_z="1 : 0.5 : 1"
381 inkscape:vp_y="0 : 1000 : 0"
382 inkscape:vp_x="0 : 0.5 : 1"
383 sodipodi:type="inkscape:persp3d" />
384 <inkscape:perspective
385 id="perspective3872-0"
386 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
387 inkscape:vp_z="1 : 0.5 : 1"
388 inkscape:vp_y="0 : 1000 : 0"
389 inkscape:vp_x="0 : 0.5 : 1"
390 sodipodi:type="inkscape:persp3d" />
391 <inkscape:perspective
392 id="perspective3872-5"
393 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
394 inkscape:vp_z="1 : 0.5 : 1"
395 inkscape:vp_y="0 : 1000 : 0"
396 inkscape:vp_x="0 : 0.5 : 1"
397 sodipodi:type="inkscape:persp3d" />
398 <inkscape:perspective
399 id="perspective3919"
400 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
401 inkscape:vp_z="1 : 0.5 : 1"
402 inkscape:vp_y="0 : 1000 : 0"
403 inkscape:vp_x="0 : 0.5 : 1"
404 sodipodi:type="inkscape:persp3d" />
405 <inkscape:perspective
406 id="perspective3944"
407 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
408 inkscape:vp_z="1 : 0.5 : 1"
409 inkscape:vp_y="0 : 1000 : 0"
410 inkscape:vp_x="0 : 0.5 : 1"
411 sodipodi:type="inkscape:persp3d" />
412 <inkscape:perspective
413 id="perspective3969"
414 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
415 inkscape:vp_z="1 : 0.5 : 1"
416 inkscape:vp_y="0 : 1000 : 0"
417 inkscape:vp_x="0 : 0.5 : 1"
418 sodipodi:type="inkscape:persp3d" />
419 <inkscape:perspective
420 id="perspective3994"
421 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
422 inkscape:vp_z="1 : 0.5 : 1"
423 inkscape:vp_y="0 : 1000 : 0"
424 inkscape:vp_x="0 : 0.5 : 1"
425 sodipodi:type="inkscape:persp3d" />
426 <inkscape:perspective
427 id="perspective4019"
428 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
429 inkscape:vp_z="1 : 0.5 : 1"
430 inkscape:vp_y="0 : 1000 : 0"
431 inkscape:vp_x="0 : 0.5 : 1"
432 sodipodi:type="inkscape:persp3d" />
433 <marker
434 style="overflow:visible"
435 id="Arrow1Mend1u-7"
436 refX="0"
437 refY="0"
438 orient="auto"
439 inkscape:stockid="Arrow1Mend1u">
440 <path
441 transform="matrix(-0.4,0,0,-0.4,-4,0)"
442 style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
443 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
444 id="path5351-0" />
445 </marker>
446 <inkscape:perspective
447 id="perspective4047"
448 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
449 inkscape:vp_z="1 : 0.5 : 1"
450 inkscape:vp_y="0 : 1000 : 0"
451 inkscape:vp_x="0 : 0.5 : 1"
452 sodipodi:type="inkscape:persp3d" />
453 <marker
454 style="overflow:visible"
455 id="Arrow1Mend1u-42"
456 refX="0"
457 refY="0"
458 orient="auto"
459 inkscape:stockid="Arrow1Mend1u">
460 <path
461 transform="matrix(-0.4,0,0,-0.4,-4,0)"
462 style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
463 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
464 id="path5351-2" />
465 </marker>
466 <inkscape:perspective
467 id="perspective4075"
468 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
469 inkscape:vp_z="1 : 0.5 : 1"
470 inkscape:vp_y="0 : 1000 : 0"
471 inkscape:vp_x="0 : 0.5 : 1"
472 sodipodi:type="inkscape:persp3d" />
473 <marker
474 style="overflow:visible"
475 id="Arrow1Mend1u-44"
476 refX="0"
477 refY="0"
478 orient="auto"
479 inkscape:stockid="Arrow1Mend1u">
480 <path
481 transform="matrix(-0.4,0,0,-0.4,-4,0)"
482 style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
483 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
484 id="path5351-06" />
485 </marker>
486 <inkscape:perspective
487 id="perspective4103"
488 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
489 inkscape:vp_z="1 : 0.5 : 1"
490 inkscape:vp_y="0 : 1000 : 0"
491 inkscape:vp_x="0 : 0.5 : 1"
492 sodipodi:type="inkscape:persp3d" />
493 <marker
494 style="overflow:visible"
495 id="Arrow1Mend-69"
496 refX="0"
497 refY="0"
498 orient="auto"
499 inkscape:stockid="Arrow1Mend">
500 <path
501 transform="matrix(-0.4,0,0,-0.4,-4,0)"
502 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
503 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
504 id="path3429-76" />
505 </marker>
506 <inkscape:perspective
507 id="perspective4161"
508 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
509 inkscape:vp_z="1 : 0.5 : 1"
510 inkscape:vp_y="0 : 1000 : 0"
511 inkscape:vp_x="0 : 0.5 : 1"
512 sodipodi:type="inkscape:persp3d" />
513 <inkscape:perspective
514 id="perspective4186"
515 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
516 inkscape:vp_z="1 : 0.5 : 1"
517 inkscape:vp_y="0 : 1000 : 0"
518 inkscape:vp_x="0 : 0.5 : 1"
519 sodipodi:type="inkscape:persp3d" />
520 <marker
521 style="overflow:visible"
522 id="Arrow1Mend-91"
523 refX="0"
524 refY="0"
525 orient="auto"
526 inkscape:stockid="Arrow1Mend">
527 <path
528 transform="matrix(-0.4,0,0,-0.4,-4,0)"
529 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
530 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
531 id="path3429-24" />
532 </marker>
533 <inkscape:perspective
534 id="perspective4186-3"
535 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
536 inkscape:vp_z="1 : 0.5 : 1"
537 inkscape:vp_y="0 : 1000 : 0"
538 inkscape:vp_x="0 : 0.5 : 1"
539 sodipodi:type="inkscape:persp3d" />
540 <marker
541 style="overflow:visible"
542 id="Arrow1Mend-25"
543 refX="0"
544 refY="0"
545 orient="auto"
546 inkscape:stockid="Arrow1Mend">
547 <path
548 transform="matrix(-0.4,0,0,-0.4,-4,0)"
549 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
550 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
551 id="path3429-13" />
552 </marker>
553 <inkscape:perspective
554 id="perspective4237"
555 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
556 inkscape:vp_z="1 : 0.5 : 1"
557 inkscape:vp_y="0 : 1000 : 0"
558 inkscape:vp_x="0 : 0.5 : 1"
559 sodipodi:type="inkscape:persp3d" />
560 <marker
561 style="overflow:visible"
562 id="Arrow1Mend1u-8"
563 refX="0"
564 refY="0"
565 orient="auto"
566 inkscape:stockid="Arrow1Mend1u">
567 <path
568 transform="matrix(-0.4,0,0,-0.4,-4,0)"
569 style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
570 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
571 id="path5351-3" />
572 </marker>
573 <inkscape:perspective
574 id="perspective4265"
575 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
576 inkscape:vp_z="1 : 0.5 : 1"
577 inkscape:vp_y="0 : 1000 : 0"
578 inkscape:vp_x="0 : 0.5 : 1"
579 sodipodi:type="inkscape:persp3d" />
580 <marker
581 style="overflow:visible"
582 id="Arrow1Mend1u6-2"
583 refX="0"
584 refY="0"
585 orient="auto"
586 inkscape:stockid="Arrow1Mend1u6">
587 <path
588 transform="matrix(-0.4,0,0,-0.4,-4,0)"
589 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
590 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
591 id="path5603-5" />
592 </marker>
593 <inkscape:perspective
594 id="perspective4292"
595 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
596 inkscape:vp_z="1 : 0.5 : 1"
597 inkscape:vp_y="0 : 1000 : 0"
598 inkscape:vp_x="0 : 0.5 : 1"
599 sodipodi:type="inkscape:persp3d" />
600 <marker
601 style="overflow:visible"
602 id="Arrow1Mend1u6-1"
603 refX="0"
604 refY="0"
605 orient="auto"
606 inkscape:stockid="Arrow1Mend1u6">
607 <path
608 transform="matrix(-0.4,0,0,-0.4,-4,0)"
609 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
610 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
611 id="path5603-6" />
612 </marker>
613 <inkscape:perspective
614 id="perspective4320"
615 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
616 inkscape:vp_z="1 : 0.5 : 1"
617 inkscape:vp_y="0 : 1000 : 0"
618 inkscape:vp_x="0 : 0.5 : 1"
619 sodipodi:type="inkscape:persp3d" />
620 <marker
621 style="overflow:visible"
622 id="Arrow1Mend1u6-8"
623 refX="0"
624 refY="0"
625 orient="auto"
626 inkscape:stockid="Arrow1Mend1u6">
627 <path
628 transform="matrix(-0.4,0,0,-0.4,-4,0)"
629 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
630 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
631 id="path5603-9" />
632 </marker>
633 <inkscape:perspective
634 id="perspective4348"
635 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
636 inkscape:vp_z="1 : 0.5 : 1"
637 inkscape:vp_y="0 : 1000 : 0"
638 inkscape:vp_x="0 : 0.5 : 1"
639 sodipodi:type="inkscape:persp3d" />
640 <inkscape:perspective
641 id="perspective4400"
642 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
643 inkscape:vp_z="1 : 0.5 : 1"
644 inkscape:vp_y="0 : 1000 : 0"
645 inkscape:vp_x="0 : 0.5 : 1"
646 sodipodi:type="inkscape:persp3d" />
647 <inkscape:perspective
648 id="perspective4425"
649 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
650 inkscape:vp_z="1 : 0.5 : 1"
651 inkscape:vp_y="0 : 1000 : 0"
652 inkscape:vp_x="0 : 0.5 : 1"
653 sodipodi:type="inkscape:persp3d" />
654 <inkscape:perspective
655 id="perspective4450"
656 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
657 inkscape:vp_z="1 : 0.5 : 1"
658 inkscape:vp_y="0 : 1000 : 0"
659 inkscape:vp_x="0 : 0.5 : 1"
660 sodipodi:type="inkscape:persp3d" />
661 <marker
662 style="overflow:visible"
663 id="Arrow1Mend1u6-6"
664 refX="0"
665 refY="0"
666 orient="auto"
667 inkscape:stockid="Arrow1Mend1u6">
668 <path
669 transform="matrix(-0.4,0,0,-0.4,-4,0)"
670 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
671 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
672 id="path5603-96" />
673 </marker>
674 <inkscape:perspective
675 id="perspective4450-1"
676 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
677 inkscape:vp_z="1 : 0.5 : 1"
678 inkscape:vp_y="0 : 1000 : 0"
679 inkscape:vp_x="0 : 0.5 : 1"
680 sodipodi:type="inkscape:persp3d" />
681 <marker
682 style="overflow:visible"
683 id="Arrow1Mend1u6-7"
684 refX="0"
685 refY="0"
686 orient="auto"
687 inkscape:stockid="Arrow1Mend1u6">
688 <path
689 transform="matrix(-0.4,0,0,-0.4,-4,0)"
690 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
691 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
692 id="path5603-55" />
693 </marker>
694 <inkscape:perspective
695 id="perspective4491"
696 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
697 inkscape:vp_z="1 : 0.5 : 1"
698 inkscape:vp_y="0 : 1000 : 0"
699 inkscape:vp_x="0 : 0.5 : 1"
700 sodipodi:type="inkscape:persp3d" />
701 <inkscape:perspective
702 id="perspective4516"
703 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
704 inkscape:vp_z="1 : 0.5 : 1"
705 inkscape:vp_y="0 : 1000 : 0"
706 inkscape:vp_x="0 : 0.5 : 1"
707 sodipodi:type="inkscape:persp3d" />
708 <inkscape:perspective
709 id="perspective4516-9"
710 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
711 inkscape:vp_z="1 : 0.5 : 1"
712 inkscape:vp_y="0 : 1000 : 0"
713 inkscape:vp_x="0 : 0.5 : 1"
714 sodipodi:type="inkscape:persp3d" />
715 <inkscape:perspective
716 id="perspective4552"
717 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
718 inkscape:vp_z="1 : 0.5 : 1"
719 inkscape:vp_y="0 : 1000 : 0"
720 inkscape:vp_x="0 : 0.5 : 1"
721 sodipodi:type="inkscape:persp3d" />
722 <marker
723 style="overflow:visible"
724 id="Arrow1Mend1u6-81"
725 refX="0"
726 refY="0"
727 orient="auto"
728 inkscape:stockid="Arrow1Mend1u6">
729 <path
730 transform="matrix(-0.4,0,0,-0.4,-4,0)"
731 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
732 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
733 id="path5603-65" />
734 </marker>
735 <inkscape:perspective
736 id="perspective4580"
737 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
738 inkscape:vp_z="1 : 0.5 : 1"
739 inkscape:vp_y="0 : 1000 : 0"
740 inkscape:vp_x="0 : 0.5 : 1"
741 sodipodi:type="inkscape:persp3d" />
742 <marker
743 style="overflow:visible"
744 id="Arrow1Mend1u6-3"
745 refX="0"
746 refY="0"
747 orient="auto"
748 inkscape:stockid="Arrow1Mend1u6">
749 <path
750 transform="matrix(-0.4,0,0,-0.4,-4,0)"
751 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
752 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
753 id="path5603-62" />
754 </marker>
755 <inkscape:perspective
756 id="perspective4608"
757 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
758 inkscape:vp_z="1 : 0.5 : 1"
759 inkscape:vp_y="0 : 1000 : 0"
760 inkscape:vp_x="0 : 0.5 : 1"
761 sodipodi:type="inkscape:persp3d" />
762 <marker
763 style="overflow:visible"
764 id="Arrow1Mend1u-9"
765 refX="0"
766 refY="0"
767 orient="auto"
768 inkscape:stockid="Arrow1Mend1u">
769 <path
770 transform="matrix(-0.4,0,0,-0.4,-4,0)"
771 style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
772 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
773 id="path5351-7" />
774 </marker>
775 <inkscape:perspective
776 id="perspective5125"
777 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
778 inkscape:vp_z="1 : 0.5 : 1"
779 inkscape:vp_y="0 : 1000 : 0"
780 inkscape:vp_x="0 : 0.5 : 1"
781 sodipodi:type="inkscape:persp3d" />
782 <inkscape:perspective
783 id="perspective5147"
784 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
785 inkscape:vp_z="1 : 0.5 : 1"
786 inkscape:vp_y="0 : 1000 : 0"
787 inkscape:vp_x="0 : 0.5 : 1"
788 sodipodi:type="inkscape:persp3d" />
789 <inkscape:perspective
790 id="perspective5172"
791 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
792 inkscape:vp_z="1 : 0.5 : 1"
793 inkscape:vp_y="0 : 1000 : 0"
794 inkscape:vp_x="0 : 0.5 : 1"
795 sodipodi:type="inkscape:persp3d" />
796 <inkscape:perspective
797 id="perspective5197"
798 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
799 inkscape:vp_z="1 : 0.5 : 1"
800 inkscape:vp_y="0 : 1000 : 0"
801 inkscape:vp_x="0 : 0.5 : 1"
802 sodipodi:type="inkscape:persp3d" />
803 <marker
804 style="overflow:visible"
805 id="Arrow1Mend1u6-5"
806 refX="0"
807 refY="0"
808 orient="auto"
809 inkscape:stockid="Arrow1Mend1u6">
810 <path
811 transform="matrix(-0.4,0,0,-0.4,-4,0)"
812 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
813 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
814 id="path5603-7" />
815 </marker>
816 <marker
817 style="overflow:visible"
818 id="marker5203"
819 refX="0"
820 refY="0"
821 orient="auto"
822 inkscape:stockid="Arrow1Mend1u6">
823 <path
824 transform="matrix(-0.4,0,0,-0.4,-4,0)"
825 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
826 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
827 id="path5205" />
828 </marker>
829 <inkscape:perspective
830 id="perspective5263"
831 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
832 inkscape:vp_z="1 : 0.5 : 1"
833 inkscape:vp_y="0 : 1000 : 0"
834 inkscape:vp_x="0 : 0.5 : 1"
835 sodipodi:type="inkscape:persp3d" />
836 <marker
837 style="overflow:visible"
838 id="Arrow1Mend1u-0"
839 refX="0"
840 refY="0"
841 orient="auto"
842 inkscape:stockid="Arrow1Mend1u">
843 <path
844 transform="matrix(-0.4,0,0,-0.4,-4,0)"
845 style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
846 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
847 id="path5351-02" />
848 </marker>
849 <inkscape:perspective
850 id="perspective5291"
851 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
852 inkscape:vp_z="1 : 0.5 : 1"
853 inkscape:vp_y="0 : 1000 : 0"
854 inkscape:vp_x="0 : 0.5 : 1"
855 sodipodi:type="inkscape:persp3d" />
856 <marker
857 style="overflow:visible"
858 id="Arrow1Mend-98"
859 refX="0"
860 refY="0"
861 orient="auto"
862 inkscape:stockid="Arrow1Mend">
863 <path
864 transform="matrix(-0.4,0,0,-0.4,-4,0)"
865 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
866 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
867 id="path3429-9" />
868 </marker>
869 <inkscape:perspective
870 id="perspective5318"
871 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
872 inkscape:vp_z="1 : 0.5 : 1"
873 inkscape:vp_y="0 : 1000 : 0"
874 inkscape:vp_x="0 : 0.5 : 1"
875 sodipodi:type="inkscape:persp3d" />
876 <marker
877 style="overflow:visible"
878 id="Arrow1Mend-47"
879 refX="0"
880 refY="0"
881 orient="auto"
882 inkscape:stockid="Arrow1Mend">
883 <path
884 transform="matrix(-0.4,0,0,-0.4,-4,0)"
885 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
886 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
887 id="path3429-83" />
888 </marker>
889 <inkscape:perspective
890 id="perspective5318-6"
891 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
892 inkscape:vp_z="1 : 0.5 : 1"
893 inkscape:vp_y="0 : 1000 : 0"
894 inkscape:vp_x="0 : 0.5 : 1"
895 sodipodi:type="inkscape:persp3d" />
896 <marker
897 style="overflow:visible"
898 id="Arrow1Mend-474"
899 refX="0"
900 refY="0"
901 orient="auto"
902 inkscape:stockid="Arrow1Mend">
903 <path
904 transform="matrix(-0.4,0,0,-0.4,-4,0)"
905 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
906 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
907 id="path3429-77" />
908 </marker>
909 <inkscape:perspective
910 id="perspective5318-0"
911 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
912 inkscape:vp_z="1 : 0.5 : 1"
913 inkscape:vp_y="0 : 1000 : 0"
914 inkscape:vp_x="0 : 0.5 : 1"
915 sodipodi:type="inkscape:persp3d" />
916 <marker
917 style="overflow:visible"
918 id="Arrow1Mend-0"
919 refX="0"
920 refY="0"
921 orient="auto"
922 inkscape:stockid="Arrow1Mend">
923 <path
924 transform="matrix(-0.4,0,0,-0.4,-4,0)"
925 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
926 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
927 id="path3429-0" />
928 </marker>
929 <inkscape:perspective
930 id="perspective5372"
931 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
932 inkscape:vp_z="1 : 0.5 : 1"
933 inkscape:vp_y="0 : 1000 : 0"
934 inkscape:vp_x="0 : 0.5 : 1"
935 sodipodi:type="inkscape:persp3d" />
936 <inkscape:perspective
937 id="perspective5397"
938 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
939 inkscape:vp_z="1 : 0.5 : 1"
940 inkscape:vp_y="0 : 1000 : 0"
941 inkscape:vp_x="0 : 0.5 : 1"
942 sodipodi:type="inkscape:persp3d" />
943 <inkscape:perspective
944 id="perspective5422"
945 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
946 inkscape:vp_z="1 : 0.5 : 1"
947 inkscape:vp_y="0 : 1000 : 0"
948 inkscape:vp_x="0 : 0.5 : 1"
949 sodipodi:type="inkscape:persp3d" />
950 <inkscape:perspective
951 id="perspective5447"
952 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
953 inkscape:vp_z="1 : 0.5 : 1"
954 inkscape:vp_y="0 : 1000 : 0"
955 inkscape:vp_x="0 : 0.5 : 1"
956 sodipodi:type="inkscape:persp3d" />
957 <inkscape:perspective
958 id="perspective5472"
959 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
960 inkscape:vp_z="1 : 0.5 : 1"
961 inkscape:vp_y="0 : 1000 : 0"
962 inkscape:vp_x="0 : 0.5 : 1"
963 sodipodi:type="inkscape:persp3d" />
964 <inkscape:perspective
965 id="perspective5497"
966 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
967 inkscape:vp_z="1 : 0.5 : 1"
968 inkscape:vp_y="0 : 1000 : 0"
969 inkscape:vp_x="0 : 0.5 : 1"
970 sodipodi:type="inkscape:persp3d" />
971 <inkscape:perspective
972 id="perspective5522"
973 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
974 inkscape:vp_z="1 : 0.5 : 1"
975 inkscape:vp_y="0 : 1000 : 0"
976 inkscape:vp_x="0 : 0.5 : 1"
977 sodipodi:type="inkscape:persp3d" />
978 <inkscape:perspective
979 id="perspective5522-3"
980 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
981 inkscape:vp_z="1 : 0.5 : 1"
982 inkscape:vp_y="0 : 1000 : 0"
983 inkscape:vp_x="0 : 0.5 : 1"
984 sodipodi:type="inkscape:persp3d" />
985 <inkscape:perspective
986 id="perspective5601"
987 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
988 inkscape:vp_z="1 : 0.5 : 1"
989 inkscape:vp_y="0 : 1000 : 0"
990 inkscape:vp_x="0 : 0.5 : 1"
991 sodipodi:type="inkscape:persp3d" />
992 <inkscape:perspective
993 id="perspective5644"
994 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
995 inkscape:vp_z="1 : 0.5 : 1"
996 inkscape:vp_y="0 : 1000 : 0"
997 inkscape:vp_x="0 : 0.5 : 1"
998 sodipodi:type="inkscape:persp3d" />
999 <inkscape:perspective
1000 id="perspective5669"
1001 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1002 inkscape:vp_z="1 : 0.5 : 1"
1003 inkscape:vp_y="0 : 1000 : 0"
1004 inkscape:vp_x="0 : 0.5 : 1"
1005 sodipodi:type="inkscape:persp3d" />
1006 <inkscape:perspective
1007 id="perspective5694"
1008 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1009 inkscape:vp_z="1 : 0.5 : 1"
1010 inkscape:vp_y="0 : 1000 : 0"
1011 inkscape:vp_x="0 : 0.5 : 1"
1012 sodipodi:type="inkscape:persp3d" />
1013 <inkscape:perspective
1014 id="perspective5719"
1015 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1016 inkscape:vp_z="1 : 0.5 : 1"
1017 inkscape:vp_y="0 : 1000 : 0"
1018 inkscape:vp_x="0 : 0.5 : 1"
1019 sodipodi:type="inkscape:persp3d" />
1020 <inkscape:perspective
1021 id="perspective5744"
1022 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1023 inkscape:vp_z="1 : 0.5 : 1"
1024 inkscape:vp_y="0 : 1000 : 0"
1025 inkscape:vp_x="0 : 0.5 : 1"
1026 sodipodi:type="inkscape:persp3d" />
1027 <inkscape:perspective
1028 id="perspective5744-7"
1029 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1030 inkscape:vp_z="1 : 0.5 : 1"
1031 inkscape:vp_y="0 : 1000 : 0"
1032 inkscape:vp_x="0 : 0.5 : 1"
1033 sodipodi:type="inkscape:persp3d" />
1034 <inkscape:perspective
1035 id="perspective5744-2"
1036 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1037 inkscape:vp_z="1 : 0.5 : 1"
1038 inkscape:vp_y="0 : 1000 : 0"
1039 inkscape:vp_x="0 : 0.5 : 1"
1040 sodipodi:type="inkscape:persp3d" />
1041 <inkscape:perspective
1042 id="perspective5784"
1043 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1044 inkscape:vp_z="1 : 0.5 : 1"
1045 inkscape:vp_y="0 : 1000 : 0"
1046 inkscape:vp_x="0 : 0.5 : 1"
1047 sodipodi:type="inkscape:persp3d" />
1048 <marker
1049 style="overflow:visible"
1050 id="Arrow1Mend-989"
1051 refX="0"
1052 refY="0"
1053 orient="auto"
1054 inkscape:stockid="Arrow1Mend">
1055 <path
1056 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1057 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1058 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1059 id="path3429-65" />
1060 </marker>
1061 <inkscape:perspective
1062 id="perspective5818"
1063 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1064 inkscape:vp_z="1 : 0.5 : 1"
1065 inkscape:vp_y="0 : 1000 : 0"
1066 inkscape:vp_x="0 : 0.5 : 1"
1067 sodipodi:type="inkscape:persp3d" />
1068 <inkscape:perspective
1069 id="perspective5818-0"
1070 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1071 inkscape:vp_z="1 : 0.5 : 1"
1072 inkscape:vp_y="0 : 1000 : 0"
1073 inkscape:vp_x="0 : 0.5 : 1"
1074 sodipodi:type="inkscape:persp3d" />
1075 <inkscape:perspective
1076 id="perspective5849"
1077 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1078 inkscape:vp_z="1 : 0.5 : 1"
1079 inkscape:vp_y="0 : 1000 : 0"
1080 inkscape:vp_x="0 : 0.5 : 1"
1081 sodipodi:type="inkscape:persp3d" />
1082 <inkscape:perspective
1083 id="perspective5849-8"
1084 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1085 inkscape:vp_z="1 : 0.5 : 1"
1086 inkscape:vp_y="0 : 1000 : 0"
1087 inkscape:vp_x="0 : 0.5 : 1"
1088 sodipodi:type="inkscape:persp3d" />
1089 <inkscape:perspective
1090 id="perspective5849-3"
1091 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1092 inkscape:vp_z="1 : 0.5 : 1"
1093 inkscape:vp_y="0 : 1000 : 0"
1094 inkscape:vp_x="0 : 0.5 : 1"
1095 sodipodi:type="inkscape:persp3d" />
1096 <inkscape:perspective
1097 id="perspective5849-4"
1098 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1099 inkscape:vp_z="1 : 0.5 : 1"
1100 inkscape:vp_y="0 : 1000 : 0"
1101 inkscape:vp_x="0 : 0.5 : 1"
1102 sodipodi:type="inkscape:persp3d" />
1103 <inkscape:perspective
1104 id="perspective5898"
1105 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1106 inkscape:vp_z="1 : 0.5 : 1"
1107 inkscape:vp_y="0 : 1000 : 0"
1108 inkscape:vp_x="0 : 0.5 : 1"
1109 sodipodi:type="inkscape:persp3d" />
1110 <inkscape:perspective
1111 id="perspective6442"
1112 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1113 inkscape:vp_z="1 : 0.5 : 1"
1114 inkscape:vp_y="0 : 1000 : 0"
1115 inkscape:vp_x="0 : 0.5 : 1"
1116 sodipodi:type="inkscape:persp3d" />
1117 <inkscape:perspective
1118 id="perspective7524"
1119 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1120 inkscape:vp_z="1 : 0.5 : 1"
1121 inkscape:vp_y="0 : 1000 : 0"
1122 inkscape:vp_x="0 : 0.5 : 1"
1123 sodipodi:type="inkscape:persp3d" />
1124 <inkscape:perspective
1125 id="perspective7524-6"
1126 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1127 inkscape:vp_z="1 : 0.5 : 1"
1128 inkscape:vp_y="0 : 1000 : 0"
1129 inkscape:vp_x="0 : 0.5 : 1"
1130 sodipodi:type="inkscape:persp3d" />
1131 <inkscape:perspective
1132 id="perspective9910"
1133 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1134 inkscape:vp_z="1 : 0.5 : 1"
1135 inkscape:vp_y="0 : 1000 : 0"
1136 inkscape:vp_x="0 : 0.5 : 1"
1137 sodipodi:type="inkscape:persp3d" />
1138 <inkscape:perspective
1139 id="perspective9935"
1140 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1141 inkscape:vp_z="1 : 0.5 : 1"
1142 inkscape:vp_y="0 : 1000 : 0"
1143 inkscape:vp_x="0 : 0.5 : 1"
1144 sodipodi:type="inkscape:persp3d" />
1145 <inkscape:perspective
1146 id="perspective9935-9"
1147 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1148 inkscape:vp_z="1 : 0.5 : 1"
1149 inkscape:vp_y="0 : 1000 : 0"
1150 inkscape:vp_x="0 : 0.5 : 1"
1151 sodipodi:type="inkscape:persp3d" />
1152 <inkscape:perspective
1153 id="perspective3135"
1154 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1155 inkscape:vp_z="1 : 0.5 : 1"
1156 inkscape:vp_y="0 : 1000 : 0"
1157 inkscape:vp_x="0 : 0.5 : 1"
1158 sodipodi:type="inkscape:persp3d" />
1159 <marker
1160 style="overflow:visible"
1161 id="Arrow1Mend-8"
1162 refX="0"
1163 refY="0"
1164 orient="auto"
1165 inkscape:stockid="Arrow1Mend">
1166 <path
1167 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1168 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1169 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1170 id="path3429-96" />
1171 </marker>
1172 <inkscape:perspective
1173 id="perspective3135-3"
1174 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1175 inkscape:vp_z="1 : 0.5 : 1"
1176 inkscape:vp_y="0 : 1000 : 0"
1177 inkscape:vp_x="0 : 0.5 : 1"
1178 sodipodi:type="inkscape:persp3d" />
1179 <marker
1180 style="overflow:visible"
1181 id="Arrow1Mend-3"
1182 refX="0"
1183 refY="0"
1184 orient="auto"
1185 inkscape:stockid="Arrow1Mend">
1186 <path
1187 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1188 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1189 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1190 id="path3429-3" />
1191 </marker>
1192 <inkscape:perspective
1193 id="perspective3174"
1194 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1195 inkscape:vp_z="1 : 0.5 : 1"
1196 inkscape:vp_y="0 : 1000 : 0"
1197 inkscape:vp_x="0 : 0.5 : 1"
1198 sodipodi:type="inkscape:persp3d" />
1199 <marker
1200 style="overflow:visible"
1201 id="Arrow1Mend-60"
1202 refX="0"
1203 refY="0"
1204 orient="auto"
1205 inkscape:stockid="Arrow1Mend">
1206 <path
1207 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1208 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1209 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1210 id="path3429-4" />
1211 </marker>
1212 <inkscape:perspective
1213 id="perspective3202"
1214 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1215 inkscape:vp_z="1 : 0.5 : 1"
1216 inkscape:vp_y="0 : 1000 : 0"
1217 inkscape:vp_x="0 : 0.5 : 1"
1218 sodipodi:type="inkscape:persp3d" />
1219 <marker
1220 style="overflow:visible"
1221 id="Arrow1Mend-03"
1222 refX="0"
1223 refY="0"
1224 orient="auto"
1225 inkscape:stockid="Arrow1Mend">
1226 <path
1227 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1228 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1229 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1230 id="path3429-09" />
1231 </marker>
1232 <inkscape:perspective
1233 id="perspective3266"
1234 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1235 inkscape:vp_z="1 : 0.5 : 1"
1236 inkscape:vp_y="0 : 1000 : 0"
1237 inkscape:vp_x="0 : 0.5 : 1"
1238 sodipodi:type="inkscape:persp3d" />
1239 <inkscape:perspective
1240 id="perspective4601"
1241 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1242 inkscape:vp_z="1 : 0.5 : 1"
1243 inkscape:vp_y="0 : 1000 : 0"
1244 inkscape:vp_x="0 : 0.5 : 1"
1245 sodipodi:type="inkscape:persp3d" />
1246 <inkscape:perspective
1247 id="perspective4686"
1248 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1249 inkscape:vp_z="1 : 0.5 : 1"
1250 inkscape:vp_y="0 : 1000 : 0"
1251 inkscape:vp_x="0 : 0.5 : 1"
1252 sodipodi:type="inkscape:persp3d" />
1253 <inkscape:perspective
1254 id="perspective4720"
1255 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1256 inkscape:vp_z="1 : 0.5 : 1"
1257 inkscape:vp_y="0 : 1000 : 0"
1258 inkscape:vp_x="0 : 0.5 : 1"
1259 sodipodi:type="inkscape:persp3d" />
1260 <inkscape:perspective
1261 id="perspective4772"
1262 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1263 inkscape:vp_z="1 : 0.5 : 1"
1264 inkscape:vp_y="0 : 1000 : 0"
1265 inkscape:vp_x="0 : 0.5 : 1"
1266 sodipodi:type="inkscape:persp3d" />
1267 <marker
1268 style="overflow:visible"
1269 id="Arrow1Mend-84"
1270 refX="0"
1271 refY="0"
1272 orient="auto"
1273 inkscape:stockid="Arrow1Mend">
1274 <path
1275 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1276 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1277 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1278 id="path3429-08" />
1279 </marker>
1280 <inkscape:perspective
1281 id="perspective4800"
1282 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1283 inkscape:vp_z="1 : 0.5 : 1"
1284 inkscape:vp_y="0 : 1000 : 0"
1285 inkscape:vp_x="0 : 0.5 : 1"
1286 sodipodi:type="inkscape:persp3d" />
1287 <marker
1288 style="overflow:visible"
1289 id="Arrow1Mend-254"
1290 refX="0"
1291 refY="0"
1292 orient="auto"
1293 inkscape:stockid="Arrow1Mend">
1294 <path
1295 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1296 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1297 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1298 id="path3429-27" />
1299 </marker>
1300 <marker
1301 style="overflow:visible"
1302 id="marker4806"
1303 refX="0"
1304 refY="0"
1305 orient="auto"
1306 inkscape:stockid="Arrow1Mend">
1307 <path
1308 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1309 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1310 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1311 id="path4808" />
1312 </marker>
1313 <inkscape:perspective
1314 id="perspective4839"
1315 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1316 inkscape:vp_z="1 : 0.5 : 1"
1317 inkscape:vp_y="0 : 1000 : 0"
1318 inkscape:vp_x="0 : 0.5 : 1"
1319 sodipodi:type="inkscape:persp3d" />
1320 <inkscape:perspective
1321 id="perspective4873"
1322 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1323 inkscape:vp_z="1 : 0.5 : 1"
1324 inkscape:vp_y="0 : 1000 : 0"
1325 inkscape:vp_x="0 : 0.5 : 1"
1326 sodipodi:type="inkscape:persp3d" />
1327 <inkscape:perspective
1328 id="perspective4873-7"
1329 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1330 inkscape:vp_z="1 : 0.5 : 1"
1331 inkscape:vp_y="0 : 1000 : 0"
1332 inkscape:vp_x="0 : 0.5 : 1"
1333 sodipodi:type="inkscape:persp3d" />
1334 <inkscape:perspective
1335 id="perspective4873-8"
1336 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1337 inkscape:vp_z="1 : 0.5 : 1"
1338 inkscape:vp_y="0 : 1000 : 0"
1339 inkscape:vp_x="0 : 0.5 : 1"
1340 sodipodi:type="inkscape:persp3d" />
1341 <inkscape:perspective
1342 id="perspective4873-2"
1343 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1344 inkscape:vp_z="1 : 0.5 : 1"
1345 inkscape:vp_y="0 : 1000 : 0"
1346 inkscape:vp_x="0 : 0.5 : 1"
1347 sodipodi:type="inkscape:persp3d" />
1348 <inkscape:perspective
1349 id="perspective4931"
1350 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1351 inkscape:vp_z="1 : 0.5 : 1"
1352 inkscape:vp_y="0 : 1000 : 0"
1353 inkscape:vp_x="0 : 0.5 : 1"
1354 sodipodi:type="inkscape:persp3d" />
1355 <inkscape:perspective
1356 id="perspective4962"
1357 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1358 inkscape:vp_z="1 : 0.5 : 1"
1359 inkscape:vp_y="0 : 1000 : 0"
1360 inkscape:vp_x="0 : 0.5 : 1"
1361 sodipodi:type="inkscape:persp3d" />
1362 <inkscape:perspective
1363 id="perspective4987"
1364 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1365 inkscape:vp_z="1 : 0.5 : 1"
1366 inkscape:vp_y="0 : 1000 : 0"
1367 inkscape:vp_x="0 : 0.5 : 1"
1368 sodipodi:type="inkscape:persp3d" />
1369 <inkscape:perspective
1370 id="perspective5012"
1371 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1372 inkscape:vp_z="1 : 0.5 : 1"
1373 inkscape:vp_y="0 : 1000 : 0"
1374 inkscape:vp_x="0 : 0.5 : 1"
1375 sodipodi:type="inkscape:persp3d" />
1376 <inkscape:perspective
1377 id="perspective5037"
1378 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1379 inkscape:vp_z="1 : 0.5 : 1"
1380 inkscape:vp_y="0 : 1000 : 0"
1381 inkscape:vp_x="0 : 0.5 : 1"
1382 sodipodi:type="inkscape:persp3d" />
1383 <inkscape:perspective
1384 id="perspective5062"
1385 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1386 inkscape:vp_z="1 : 0.5 : 1"
1387 inkscape:vp_y="0 : 1000 : 0"
1388 inkscape:vp_x="0 : 0.5 : 1"
1389 sodipodi:type="inkscape:persp3d" />
1390 <inkscape:perspective
1391 id="perspective5087"
1392 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1393 inkscape:vp_z="1 : 0.5 : 1"
1394 inkscape:vp_y="0 : 1000 : 0"
1395 inkscape:vp_x="0 : 0.5 : 1"
1396 sodipodi:type="inkscape:persp3d" />
1397 <inkscape:perspective
1398 id="perspective5112"
1399 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1400 inkscape:vp_z="1 : 0.5 : 1"
1401 inkscape:vp_y="0 : 1000 : 0"
1402 inkscape:vp_x="0 : 0.5 : 1"
1403 sodipodi:type="inkscape:persp3d" />
1404 <inkscape:perspective
1405 id="perspective5137"
1406 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1407 inkscape:vp_z="1 : 0.5 : 1"
1408 inkscape:vp_y="0 : 1000 : 0"
1409 inkscape:vp_x="0 : 0.5 : 1"
1410 sodipodi:type="inkscape:persp3d" />
1411 <inkscape:perspective
1412 id="perspective5162"
1413 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1414 inkscape:vp_z="1 : 0.5 : 1"
1415 inkscape:vp_y="0 : 1000 : 0"
1416 inkscape:vp_x="0 : 0.5 : 1"
1417 sodipodi:type="inkscape:persp3d" />
1418 <inkscape:perspective
1419 id="perspective5187"
1420 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1421 inkscape:vp_z="1 : 0.5 : 1"
1422 inkscape:vp_y="0 : 1000 : 0"
1423 inkscape:vp_x="0 : 0.5 : 1"
1424 sodipodi:type="inkscape:persp3d" />
1425 <inkscape:perspective
1426 id="perspective5212"
1427 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1428 inkscape:vp_z="1 : 0.5 : 1"
1429 inkscape:vp_y="0 : 1000 : 0"
1430 inkscape:vp_x="0 : 0.5 : 1"
1431 sodipodi:type="inkscape:persp3d" />
1432 <inkscape:perspective
1433 id="perspective5237"
1434 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1435 inkscape:vp_z="1 : 0.5 : 1"
1436 inkscape:vp_y="0 : 1000 : 0"
1437 inkscape:vp_x="0 : 0.5 : 1"
1438 sodipodi:type="inkscape:persp3d" />
1439 </defs>
1440 <metadata
1441 id="metadata7">
1442 <rdf:RDF>
1443 <cc:Work
1444 rdf:about="">
1445 <dc:format>image/svg+xml</dc:format>
1446 <dc:type
1447 rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
1448 </cc:Work>
1449 </rdf:RDF>
1450 </metadata>
1451 <g
1452 style="display:inline"
1453 id="layer1"
1454 inkscape:groupmode="layer"
1455 inkscape:label="Layer 1">
1456 <path
1457 sodipodi:nodetypes="cc"
1458 id="path2532"
1459 d="m 302.58379,141.59356 c 177.43313,-25.92765 266.07608,-27.85764 467.79018,-1.60789"
1460 style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:none;marker-mid:none;marker-end:url(#Arrow1Mend);visibility:visible;display:inline;overflow:visible" />
1461 <text
1462 id="text2461"
1463 y="612.55127"
1464 x="596.30316"
1465 style="font-size:15.87116718px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans Italic"
1466 xml:space="preserve"
1467 sodipodi:linespacing="125%"><tspan
1468 id="tspan2463"
1469 y="612.55127"
1470 x="596.30316"
1471 sodipodi:role="line">Origin of the events:</tspan></text>
1472 <path
1473 sodipodi:nodetypes="cc"
1474 id="path2532-1"
1475 d="m 772.04136,164.26506 c -177.43313,25.92765 -265.1703,26.22723 -466.8844,-0.0225"
1476 style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:none;marker-mid:none;marker-end:url(#Arrow1Mend);visibility:visible;display:inline;overflow:visible" />
1477 <path
1478 sodipodi:nodetypes="cc"
1479 id="path2532-2"
1480 d="m 303.11443,482.80366 c 177.43313,-25.92765 264.63636,-25.57412 466.35046,0.67563"
1481 style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:none;marker-mid:none;marker-end:url(#Arrow1Mend);visibility:visible;display:inline;overflow:visible" />
1482 <path
1483 sodipodi:nodetypes="cc"
1484 id="path2532-1-6"
1485 d="m 771.63285,510.29912 c -177.43313,25.92765 -264.46952,26.57524 -466.18362,0.32549"
1486 style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:none;marker-mid:none;marker-end:url(#Arrow1Mend);visibility:visible;display:inline;overflow:visible" />
1487 <path
1488 sodipodi:nodetypes="cc"
1489 id="path2532-56"
1490 d="m 299.41953,201.28885 c 185.99663,64.13849 331.58433,106.16076 488.21769,234.17614"
1491 style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:none;marker-mid:none;marker-end:url(#Arrow1Mend);visibility:visible;display:inline;overflow:visible" />
1492 <path
1493 sodipodi:nodetypes="cc"
1494 id="path2532-56-5"
1495 d="M 775.95523,452.35873 C 589.9586,388.22024 444.7952,347.0656 288.16185,219.05022"
1496 style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:none;marker-mid:none;marker-end:url(#Arrow1Mend);visibility:visible;display:inline;overflow:visible" />
1497 <g
1498 id="g3860"
1499 transform="matrix(0.50373996,-0.86385534,0.86385534,0.50373996,66.088389,488.04335)">
1500 <path
1501 style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:none;marker-mid:none;marker-end:url(#Arrow1Mend);visibility:visible;display:inline;overflow:visible"
1502 d="M 153.85513,168.36645 C 339.85176,232.50494 445.41408,339.98332 602.04744,467.9987"
1503 id="path2532-56-1"
1504 sodipodi:nodetypes="cc" />
1505 <path
1506 style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:none;marker-mid:none;marker-end:url(#Arrow1Mend);visibility:visible;display:inline;overflow:visible"
1507 d="M 597.61127,487.12339 C 411.61464,422.9849 306.50192,312.83273 149.86857,184.81735"
1508 id="path2532-56-5-5"
1509 sodipodi:nodetypes="cc" />
1510 </g>
1511 <text
1512 id="text2461-6"
1513 y="641.22632"
1514 x="631.14868"
1515 style="font-size:15.87116718px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans Italic"
1516 xml:space="preserve"
1517 sodipodi:linespacing="125%"><tspan
1518 id="tspan2463-3"
1519 y="641.22632"
1520 x="631.14868"
1521 sodipodi:role="line">3, 5: NetworkManager</tspan></text>
1522 <text
1523 id="text2461-6-0"
1524 y="669.90137"
1525 x="630.89294"
1526 style="font-size:15.87116718px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans Italic"
1527 xml:space="preserve"
1528 sodipodi:linespacing="125%"><tspan
1529 id="tspan2463-3-4"
1530 y="669.90137"
1531 x="630.89294"
1532 sodipodi:role="line">4, 6: User through DBus/GUI</tspan></text>
1533 <path
1534 sodipodi:nodetypes="cc"
1535 id="path2532-5-97-6"
1536 d="m 212.8562,428.48286 c 3.29172,-79.50308 -41.37363,-74.63266 -39.58536,-0.71527"
1537 style="color:#000000;fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-end:url(#Arrow1Mend);visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
1538 <text
1539 id="text2467-1-5-4"
1540 y="608.15686"
1541 x="212.06067"
1542 style="font-size:23.83253098px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans"
1543 xml:space="preserve"
1544 sodipodi:linespacing="125%"><tspan
1545 style="font-size:15.16615677px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono"
1546 y="608.15686"
1547 x="212.06067"
1548 id="tspan2469-4-3-8"
1549 sodipodi:role="line">3. SYS_NET_CONNECTED</tspan></text>
1550 <g
1551 id="g4621"
1552 transform="translate(293.94017,163.8462)">
1553 <rect
1554 ry="38.842182"
1555 rx="38.842182"
1556 y="266.95135"
1557 x="-181.18971"
1558 height="119.77809"
1559 width="189.23656"
1560 id="rect3256"
1561 style="opacity:0.80373798;color:#000000;fill:#ececec;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.52658218;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
1562 <text
1563 id="text2429-9-7-0"
1564 y="319.48944"
1565 x="-86.856911"
1566 style="font-size:19.48836136px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:150%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
1567 xml:space="preserve"
1568 sodipodi:linespacing="150%"><tspan
1569 id="tspan5921-6-2"
1570 y="319.48944"
1571 x="-86.856911"
1572 sodipodi:role="line">With User</tspan><tspan
1573 y="348.72198"
1574 x="-86.856911"
1575 sodipodi:role="line"
1576 id="tspan3250-1">With Network</tspan></text>
1577 </g>
1578 <g
1579 style="display:inline"
1580 id="g4621-4"
1581 transform="translate(954.2989,163.8462)">
1582 <rect
1583 ry="38.842182"
1584 rx="38.842182"
1585 y="266.95135"
1586 x="-181.18971"
1587 height="119.77809"
1588 width="189.23656"
1589 id="rect3256-5"
1590 style="opacity:0.80373798;color:#000000;fill:#ececec;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.52658218;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
1591 <text
1592 id="text2429-9-7-0-3"
1593 y="319.48944"
1594 x="-86.856911"
1595 style="font-size:19.48836136px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:150%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
1596 xml:space="preserve"
1597 sodipodi:linespacing="150%"><tspan
1598 id="tspan5921-6-2-8"
1599 y="319.48944"
1600 x="-86.856911"
1601 sodipodi:role="line">With User</tspan><tspan
1602 y="348.72198"
1603 x="-86.856911"
1604 sodipodi:role="line"
1605 id="tspan3250-1-1">Not Network</tspan></text>
1606 </g>
1607 <g
1608 style="display:inline"
1609 id="g4621-4-4"
1610 transform="translate(954.2989,-162.06975)">
1611 <rect
1612 ry="38.842182"
1613 rx="38.842182"
1614 y="266.95135"
1615 x="-181.18971"
1616 height="119.77809"
1617 width="189.23656"
1618 id="rect3256-5-7"
1619 style="opacity:0.80373798;color:#000000;fill:#ececec;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.52658218;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
1620 <text
1621 id="text2429-9-7-0-3-7"
1622 y="319.48944"
1623 x="-86.856911"
1624 style="font-size:19.48836136px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:150%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
1625 xml:space="preserve"
1626 sodipodi:linespacing="150%"><tspan
1627 id="tspan5921-6-2-8-0"
1628 y="319.48944"
1629 x="-86.856911"
1630 sodipodi:role="line">Not User</tspan><tspan
1631 y="348.72198"
1632 x="-86.856911"
1633 sodipodi:role="line"
1634 id="tspan3250-1-1-7">With Network</tspan></text>
1635 </g>
1636 <path
1637 sodipodi:nodetypes="cc"
1638 id="path2532-5-97-6-4"
1639 d="m 861.98022,428.48286 c 3.29172,-79.50308 -41.37363,-74.63266 -39.58536,-0.71527"
1640 style="color:#000000;fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-end:url(#Arrow1Mend);visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
1641 <path
1642 sodipodi:nodetypes="cc"
1643 id="path2532-5-97-6-5"
1644 d="m 212.8562,102.87131 c 3.29172,-79.503077 -41.37363,-74.632657 -39.58536,-0.71527"
1645 style="color:#000000;fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-end:url(#Arrow1Mend);visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
1646 <path
1647 sodipodi:nodetypes="cc"
1648 id="path2532-5-97-6-4-7"
1649 d="m 861.98022,102.87131 c 3.29172,-79.503077 -41.37363,-74.632657 -39.58536,-0.71527"
1650 style="color:#000000;fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-end:url(#Arrow1Mend);visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
1651 <g
1652 style="display:inline"
1653 id="g4621-4-4-3"
1654 transform="translate(293.94017,-162.06975)">
1655 <rect
1656 ry="38.842182"
1657 rx="38.842182"
1658 y="266.95135"
1659 x="-181.18971"
1660 height="119.77809"
1661 width="189.23656"
1662 id="rect3256-5-7-6"
1663 style="opacity:0.80373798;color:#000000;fill:#ececec;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.52658218;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
1664 <text
1665 id="text2429-9-7-0-3-7-3"
1666 y="319.48944"
1667 x="-86.856911"
1668 style="font-size:19.48836136px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:150%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
1669 xml:space="preserve"
1670 sodipodi:linespacing="150%"><tspan
1671 id="tspan5921-6-2-8-0-6"
1672 y="319.48944"
1673 x="-86.856911"
1674 sodipodi:role="line">Not User</tspan><tspan
1675 y="348.72198"
1676 x="-86.856911"
1677 sodipodi:role="line"
1678 id="tspan3250-1-1-7-0">Not Network</tspan></text>
1679 </g>
1680 <text
1681 id="text2467-1-5-4-4"
1682 y="634.37036"
1683 x="212.31985"
1684 style="font-size:23.83253098px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans"
1685 xml:space="preserve"
1686 sodipodi:linespacing="125%"><tspan
1687 style="font-size:15.16615677px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono"
1688 y="634.37036"
1689 x="212.31985"
1690 id="tspan2469-4-3-8-1"
1691 sodipodi:role="line">4. SYS_USER_CONNECT</tspan></text>
1692 <text
1693 id="text2467-1-5-4-5"
1694 y="713.01086"
1695 x="212.04585"
1696 style="font-size:23.83253098px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans"
1697 xml:space="preserve"
1698 sodipodi:linespacing="125%"><tspan
1699 style="font-size:15.16615677px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono"
1700 y="713.01086"
1701 x="212.04585"
1702 id="tspan2469-4-3-8-3"
1703 sodipodi:role="line">7. SYS_CONNECTION_LOST</tspan></text>
1704 <text
1705 id="text2467-1-5-4-3"
1706 y="660.58386"
1707 x="212.01624"
1708 style="font-size:23.83253098px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans"
1709 xml:space="preserve"
1710 sodipodi:linespacing="125%"><tspan
1711 style="font-size:15.16615677px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono"
1712 y="660.58386"
1713 x="212.01624"
1714 id="tspan2469-4-3-8-38"
1715 sodipodi:role="line">5. SYS_NET_DISCONNECTED</tspan></text>
1716 <text
1717 id="text2467-1-5-4-4-0"
1718 y="686.79736"
1719 x="212.09029"
1720 style="font-size:23.83253098px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans"
1721 xml:space="preserve"
1722 sodipodi:linespacing="125%"><tspan
1723 style="font-size:15.16615677px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono"
1724 y="686.79736"
1725 x="212.09029"
1726 id="tspan2469-4-3-8-1-3"
1727 sodipodi:role="line">6. SYS_USER_DISCONNECT</tspan></text>
1728 <text
1729 id="text2461-6-0-3"
1730 y="700.11469"
1731 x="629.70728"
1732 style="font-size:15.87116718px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans Italic"
1733 xml:space="preserve"
1734 sodipodi:linespacing="125%"><tspan
1735 id="tspan2463-3-4-1"
1736 y="700.11469"
1737 x="629.70728"
1738 sodipodi:role="line">7: Twisted</tspan></text>
1739 <text
1740 id="text2467-1-5-4-8"
1741 y="110.73177"
1742 x="534.09271"
1743 style="font-size:33.63773346px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans"
1744 xml:space="preserve"
1745 sodipodi:linespacing="125%"><tspan
1746 style="font-size:21.40583229px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono"
1747 y="110.73177"
1748 x="534.09271"
1749 id="tspan2469-4-3-8-6"
1750 sodipodi:role="line">3</tspan></text>
1751 <text
1752 id="text2467-1-5-4-8-6"
1753 y="522.52545"
1754 x="534.09271"
1755 style="font-size:33.63773346px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans"
1756 xml:space="preserve"
1757 sodipodi:linespacing="125%"><tspan
1758 style="font-size:21.40583229px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono"
1759 y="522.52545"
1760 x="534.09271"
1761 id="tspan2469-4-3-8-6-7"
1762 sodipodi:role="line">3</tspan></text>
1763 <text
1764 id="text2467-1-5-4-8-6-6"
1765 y="457.39822"
1766 x="534.11359"
1767 style="font-size:33.63773346px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans"
1768 xml:space="preserve"
1769 sodipodi:linespacing="125%"><tspan
1770 style="font-size:21.40583229px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono"
1771 y="457.39822"
1772 x="534.11359"
1773 id="tspan2469-4-3-8-6-7-3"
1774 sodipodi:role="line">5</tspan></text>
1775 <text
1776 id="text2467-1-5-4-8-6-6-9"
1777 y="173.11403"
1778 x="534.11359"
1779 style="font-size:33.63773346px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans"
1780 xml:space="preserve"
1781 sodipodi:linespacing="125%"><tspan
1782 style="font-size:21.40583229px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono"
1783 y="173.11403"
1784 x="534.11359"
1785 id="tspan2469-4-3-8-6-7-3-0"
1786 sodipodi:role="line">5</tspan></text>
1787 <text
1788 id="text2467-1-5-4-8-6-6-9-8"
1789 y="258.29327"
1790 x="291.30383"
1791 style="font-size:33.63773346px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans"
1792 xml:space="preserve"
1793 sodipodi:linespacing="125%"><tspan
1794 style="font-size:21.40583229px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono"
1795 y="258.29327"
1796 x="291.30383"
1797 id="tspan2469-4-3-8-6-7-3-0-6"
1798 sodipodi:role="line">6</tspan></text>
1799 <text
1800 id="text2467-1-5-4-8-6-6-9-8-0"
1801 y="210.45985"
1802 x="721.98566"
1803 style="font-size:33.63773346px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans"
1804 xml:space="preserve"
1805 sodipodi:linespacing="125%"><tspan
1806 style="font-size:21.40583229px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono"
1807 y="210.45985"
1808 x="721.98566"
1809 id="tspan2469-4-3-8-6-7-3-0-6-7"
1810 sodipodi:role="line">6</tspan></text>
1811 <text
1812 id="text2467-1-5-4-8-6-6-9-8-0-6"
1813 y="412.14865"
1814 x="772.89734"
1815 style="font-size:33.63773346px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans"
1816 xml:space="preserve"
1817 sodipodi:linespacing="125%"><tspan
1818 style="font-size:21.40583229px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono"
1819 y="412.14865"
1820 x="772.89734"
1821 id="tspan2469-4-3-8-6-7-3-0-6-7-3"
1822 sodipodi:role="line">4</tspan></text>
1823 <text
1824 id="text2467-1-5-4-8-6-6-9-8-0-6-3"
1825 y="423.90793"
1826 x="351.87561"
1827 style="font-size:33.63773346px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans"
1828 xml:space="preserve"
1829 sodipodi:linespacing="125%"><tspan
1830 style="font-size:21.40583229px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono"
1831 y="423.90793"
1832 x="351.87561"
1833 id="tspan2469-4-3-8-6-7-3-0-6-7-3-4"
1834 sodipodi:role="line">4</tspan></text>
1835 <text
1836 id="text2467-1-5-4-8-6-6-9-8-6"
1837 y="61.640957"
1838 x="220.70093"
1839 style="font-size:33.63773346px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans"
1840 xml:space="preserve"
1841 sodipodi:linespacing="125%"><tspan
1842 style="font-size:21.40583229px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono"
1843 y="61.640957"
1844 x="220.70093"
1845 id="tspan2469-4-3-8-6-7-3-0-6-3"
1846 sodipodi:role="line">5,6,7</tspan></text>
1847 <text
1848 id="text2467-1-5-4-8-6-6-9-8-6-7"
1849 y="61.640957"
1850 x="871.39404"
1851 style="font-size:33.63773346px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans"
1852 xml:space="preserve"
1853 sodipodi:linespacing="125%"><tspan
1854 style="font-size:21.40583229px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono"
1855 y="61.640957"
1856 x="871.39404"
1857 id="tspan2469-4-3-8-6-7-3-0-6-3-0"
1858 sodipodi:role="line">3,6,7</tspan></text>
1859 <text
1860 id="text2467-1-5-4-8-6-6-9-8-6-71"
1861 y="386.69275"
1862 x="220.70093"
1863 style="font-size:33.63773346px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans"
1864 xml:space="preserve"
1865 sodipodi:linespacing="125%"><tspan
1866 style="font-size:21.40583229px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono"
1867 y="386.69275"
1868 x="220.70093"
1869 id="tspan2469-4-3-8-6-7-3-0-6-3-00"
1870 sodipodi:role="line">3,4,7</tspan></text>
1871 <text
1872 id="text2467-1-5-4-8-6-6-9-8-6-7-0"
1873 y="386.69275"
1874 x="871.39404"
1875 style="font-size:33.63773346px;font-style:italic;font-weight:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans;-inkscape-font-specification:Sans"
1876 xml:space="preserve"
1877 sodipodi:linespacing="125%"><tspan
1878 style="font-size:21.40583229px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff6600;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans Mono"
1879 y="386.69275"
1880 x="871.39404"
1881 id="tspan2469-4-3-8-6-7-3-0-6-3-0-3"
1882 sodipodi:role="line">4,5,7</tspan></text>
1883 </g>
1884</svg>
01885
=== renamed file 'docs/action_queue_states.svg' => 'docs/states_manager.svg'
--- docs/action_queue_states.svg 2009-05-12 13:36:05 +0000
+++ docs/states_manager.svg 2010-03-04 14:52:23 +0000
@@ -1,5 +1,6 @@
1<?xml version="1.0" encoding="UTF-8" standalone="no"?>1<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2<!-- Created with Inkscape (http://www.inkscape.org/) -->2<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
3<svg4<svg
4 xmlns:dc="http://purl.org/dc/elements/1.1/"5 xmlns:dc="http://purl.org/dc/elements/1.1/"
5 xmlns:cc="http://creativecommons.org/ns#"6 xmlns:cc="http://creativecommons.org/ns#"
@@ -12,33 +13,10 @@
12 height="744.09448"13 height="744.09448"
13 id="svg2"14 id="svg2"
14 sodipodi:version="0.32"15 sodipodi:version="0.32"
15 inkscape:version="0.46"16 inkscape:version="0.47 r22583"
16 version="1.0"17 version="1.0"
17 sodipodi:docname="action_queue_states.svg"18 sodipodi:docname="states_manager.svg"
18 inkscape:output_extension="org.inkscape.output.svg.inkscape">19 inkscape:output_extension="org.inkscape.output.svg.inkscape">
19 <defs
20 id="defs4">
21 <marker
22 inkscape:stockid="Arrow1Mend"
23 orient="auto"
24 refY="0.0"
25 refX="0.0"
26 id="Arrow1Mend"
27 style="overflow: visible;">
28 <path
29 id="path3429"
30 d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
31 style="fill-rule: evenodd; stroke: rgb(0, 0, 0); stroke-width: 1pt; marker-start: none;"
32 transform="scale(0.4, 0.4) rotate(180) translate(10)" />
33 </marker>
34 <inkscape:perspective
35 sodipodi:type="inkscape:persp3d"
36 inkscape:vp_x="0 : 526.18109 : 1"
37 inkscape:vp_y="0 : 1000 : 0"
38 inkscape:vp_z="744.09448 : 526.18109 : 1"
39 inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
40 id="perspective10" />
41 </defs>
42 <sodipodi:namedview20 <sodipodi:namedview
43 id="base"21 id="base"
44 pagecolor="#ffffff"22 pagecolor="#ffffff"
@@ -49,16 +27,5713 @@
49 objecttolerance="10"27 objecttolerance="10"
50 inkscape:pageopacity="0.0"28 inkscape:pageopacity="0.0"
51 inkscape:pageshadow="2"29 inkscape:pageshadow="2"
52 inkscape:zoom="0.66389419"30 inkscape:zoom="1.0427072"
53 inkscape:cx="526.18109"31 inkscape:cx="427.40282"
54 inkscape:cy="372.04724"32 inkscape:cy="337.25026"
55 inkscape:document-units="px"33 inkscape:document-units="px"
56 inkscape:current-layer="layer1"34 inkscape:current-layer="layer1"
57 showgrid="false"35 showgrid="false"
58 inkscape:window-width="1278"36 inkscape:window-width="1280"
59 inkscape:window-height="718"37 inkscape:window-height="728"
60 inkscape:window-x="0"38 inkscape:window-x="0"
61 inkscape:window-y="25" />39 inkscape:window-y="25"
40 inkscape:window-maximized="1"
41 showguides="true"
42 inkscape:guide-bbox="true" />
43 <defs
44 id="defs4">
45 <marker
46 inkscape:stockid="DotM"
47 orient="auto"
48 refY="0.0"
49 refX="0.0"
50 id="DotM"
51 style="overflow:visible">
52 <path
53 id="path12320"
54 d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
55 style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none"
56 transform="scale(0.4) translate(7.4, 1)" />
57 </marker>
58 <marker
59 inkscape:stockid="DotL"
60 orient="auto"
61 refY="0.0"
62 refX="0.0"
63 id="DotL"
64 style="overflow:visible">
65 <path
66 id="path12317"
67 d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
68 style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none"
69 transform="scale(0.8) translate(7.4, 1)" />
70 </marker>
71 <linearGradient
72 id="linearGradient9804">
73 <stop
74 style="stop-color:#ffff00;stop-opacity:1;"
75 offset="0"
76 id="stop9806" />
77 <stop
78 style="stop-color:#000000;stop-opacity:0;"
79 offset="1"
80 id="stop9808" />
81 </linearGradient>
82 <marker
83 style="overflow:visible"
84 id="Arrow1Lstart"
85 refX="0.0"
86 refY="0.0"
87 orient="auto"
88 inkscape:stockid="Arrow1Lstart">
89 <path
90 transform="scale(0.8) translate(12.5,0)"
91 style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
92 d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
93 id="path7549" />
94 </marker>
95 <marker
96 style="overflow:visible"
97 id="Arrow1Mstart"
98 refX="0.0"
99 refY="0.0"
100 orient="auto"
101 inkscape:stockid="Arrow1Mstart">
102 <path
103 transform="scale(0.4) translate(10,0)"
104 style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
105 d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
106 id="path7555" />
107 </marker>
108 <marker
109 style="overflow:visible"
110 id="Arrow1Sstart"
111 refX="0.0"
112 refY="0.0"
113 orient="auto"
114 inkscape:stockid="Arrow1Sstart">
115 <path
116 transform="scale(0.2) translate(6,0)"
117 style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
118 d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
119 id="path3697" />
120 </marker>
121 <marker
122 inkscape:stockid="Arrow1Send"
123 orient="auto"
124 refY="0.0"
125 refX="0.0"
126 id="Arrow1Send"
127 style="overflow:visible;">
128 <path
129 id="path3700"
130 d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
131 style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
132 transform="scale(0.2) rotate(180) translate(6,0)" />
133 </marker>
134 <marker
135 inkscape:stockid="Arrow1Mend"
136 orient="auto"
137 refY="0.0"
138 refX="0.0"
139 id="Arrow1Mend"
140 style="overflow: visible;">
141 <path
142 id="path3429"
143 d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
144 style="fill-rule: evenodd; stroke: rgb(0, 0, 0); stroke-width: 1pt; marker-start: none;"
145 transform="scale(0.4, 0.4) rotate(180) translate(10)" />
146 </marker>
147 <inkscape:perspective
148 sodipodi:type="inkscape:persp3d"
149 inkscape:vp_x="0 : 526.18109 : 1"
150 inkscape:vp_y="0 : 1000 : 0"
151 inkscape:vp_z="744.09448 : 526.18109 : 1"
152 inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
153 id="perspective10" />
154 <inkscape:perspective
155 id="perspective4326"
156 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
157 inkscape:vp_z="1 : 0.5 : 1"
158 inkscape:vp_y="0 : 1000 : 0"
159 inkscape:vp_x="0 : 0.5 : 1"
160 sodipodi:type="inkscape:persp3d" />
161 <marker
162 inkscape:stockid="Arrow1Mend"
163 orient="auto"
164 refY="0"
165 refX="0"
166 id="Arrow1Mend-9"
167 style="overflow:visible">
168 <path
169 id="path3429-5"
170 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
171 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
172 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
173 </marker>
174 <marker
175 inkscape:stockid="Arrow1Mend1"
176 orient="auto"
177 refY="0.0"
178 refX="0.0"
179 id="Arrow1Mend1"
180 style="overflow: visible;">
181 <path
182 id="path4357"
183 d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
184 style="fill-rule: evenodd; marker-start: none;stroke:#00ff00; stroke: rgb(0, 0, 0); stroke-width: 1pt;fill:#00ff00"
185 transform="scale(0.4, 0.4) rotate(180) translate(10)" />
186 </marker>
187 <marker
188 inkscape:stockid="Arrow1Mend1u"
189 orient="auto"
190 refY="0.0"
191 refX="0.0"
192 id="Arrow1Mend1u"
193 style="overflow: visible;">
194 <path
195 id="path5351"
196 d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
197 style="fill-rule: evenodd; marker-start: none;stroke:#00ff00; stroke: rgb(0, 0, 0); stroke-width: 1pt;fill:#00ff00"
198 transform="scale(0.4, 0.4) rotate(180) translate(10)" />
199 </marker>
200 <inkscape:perspective
201 id="perspective5562"
202 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
203 inkscape:vp_z="1 : 0.5 : 1"
204 inkscape:vp_y="0 : 1000 : 0"
205 inkscape:vp_x="0 : 0.5 : 1"
206 sodipodi:type="inkscape:persp3d" />
207 <marker
208 inkscape:stockid="Arrow1Mend1u"
209 orient="auto"
210 refY="0"
211 refX="0"
212 id="Arrow1Mend1u-4"
213 style="overflow:visible">
214 <path
215 id="path5351-6"
216 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
217 style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
218 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
219 </marker>
220 <marker
221 inkscape:stockid="Arrow1Mend1u6"
222 orient="auto"
223 refY="0.0"
224 refX="0.0"
225 id="Arrow1Mend1u6"
226 style="overflow: visible;">
227 <path
228 id="path5603"
229 d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
230 style="fill-rule: evenodd; marker-start: none;stroke:#00ffec; stroke: rgb(0, 0, 0); stroke-width: 1pt;fill:#00ffec"
231 transform="scale(0.4, 0.4) rotate(180) translate(10)" />
232 </marker>
233 <inkscape:perspective
234 sodipodi:type="inkscape:persp3d"
235 inkscape:vp_x="0 : 0.5 : 1"
236 inkscape:vp_y="0 : 1000 : 0"
237 inkscape:vp_z="1 : 0.5 : 1"
238 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
239 id="perspective5866" />
240 <inkscape:perspective
241 sodipodi:type="inkscape:persp3d"
242 inkscape:vp_x="0 : 0.5 : 1"
243 inkscape:vp_y="0 : 1000 : 0"
244 inkscape:vp_z="1 : 0.5 : 1"
245 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
246 id="perspective5866-1" />
247 <inkscape:perspective
248 sodipodi:type="inkscape:persp3d"
249 inkscape:vp_x="0 : 0.5 : 1"
250 inkscape:vp_y="0 : 1000 : 0"
251 inkscape:vp_z="1 : 0.5 : 1"
252 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
253 id="perspective5866-0" />
254 <inkscape:perspective
255 sodipodi:type="inkscape:persp3d"
256 inkscape:vp_x="0 : 0.5 : 1"
257 inkscape:vp_y="0 : 1000 : 0"
258 inkscape:vp_z="1 : 0.5 : 1"
259 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
260 id="perspective5936" />
261 <inkscape:perspective
262 sodipodi:type="inkscape:persp3d"
263 inkscape:vp_x="0 : 0.5 : 1"
264 inkscape:vp_y="0 : 1000 : 0"
265 inkscape:vp_z="1 : 0.5 : 1"
266 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
267 id="perspective5990" />
268 <inkscape:perspective
269 sodipodi:type="inkscape:persp3d"
270 inkscape:vp_x="0 : 0.5 : 1"
271 inkscape:vp_y="0 : 1000 : 0"
272 inkscape:vp_z="1 : 0.5 : 1"
273 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
274 id="perspective5990-1" />
275 <inkscape:perspective
276 sodipodi:type="inkscape:persp3d"
277 inkscape:vp_x="0 : 0.5 : 1"
278 inkscape:vp_y="0 : 1000 : 0"
279 inkscape:vp_z="1 : 0.5 : 1"
280 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
281 id="perspective3695" />
282 <marker
283 inkscape:stockid="Arrow1Mend"
284 orient="auto"
285 refY="0"
286 refX="0"
287 id="Arrow1Mend-6"
288 style="overflow:visible">
289 <path
290 id="path3429-2"
291 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
292 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
293 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
294 </marker>
295 <inkscape:perspective
296 sodipodi:type="inkscape:persp3d"
297 inkscape:vp_x="0 : 0.5 : 1"
298 inkscape:vp_y="0 : 1000 : 0"
299 inkscape:vp_z="1 : 0.5 : 1"
300 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
301 id="perspective3723" />
302 <marker
303 inkscape:stockid="Arrow1Mend"
304 orient="auto"
305 refY="0"
306 refX="0"
307 id="Arrow1Mend-7"
308 style="overflow:visible">
309 <path
310 id="path3429-7"
311 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
312 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
313 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
314 </marker>
315 <marker
316 inkscape:stockid="Arrow1Mend"
317 orient="auto"
318 refY="0"
319 refX="0"
320 id="marker3729"
321 style="overflow:visible">
322 <path
323 id="path3731"
324 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
325 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
326 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
327 </marker>
328 <inkscape:perspective
329 sodipodi:type="inkscape:persp3d"
330 inkscape:vp_x="0 : 0.5 : 1"
331 inkscape:vp_y="0 : 1000 : 0"
332 inkscape:vp_z="1 : 0.5 : 1"
333 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
334 id="perspective3762" />
335 <marker
336 inkscape:stockid="Arrow1Mend"
337 orient="auto"
338 refY="0"
339 refX="0"
340 id="Arrow1Mend-2"
341 style="overflow:visible">
342 <path
343 id="path3429-1"
344 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
345 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
346 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
347 </marker>
348 <marker
349 inkscape:stockid="Arrow1Mend"
350 orient="auto"
351 refY="0"
352 refX="0"
353 id="marker3768"
354 style="overflow:visible">
355 <path
356 id="path3770"
357 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
358 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
359 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
360 </marker>
361 <inkscape:perspective
362 sodipodi:type="inkscape:persp3d"
363 inkscape:vp_x="0 : 0.5 : 1"
364 inkscape:vp_y="0 : 1000 : 0"
365 inkscape:vp_z="1 : 0.5 : 1"
366 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
367 id="perspective3801" />
368 <marker
369 inkscape:stockid="Arrow1Mend"
370 orient="auto"
371 refY="0"
372 refX="0"
373 id="Arrow1Mend-5"
374 style="overflow:visible">
375 <path
376 id="path3429-8"
377 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
378 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
379 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
380 </marker>
381 <inkscape:perspective
382 sodipodi:type="inkscape:persp3d"
383 inkscape:vp_x="0 : 0.5 : 1"
384 inkscape:vp_y="0 : 1000 : 0"
385 inkscape:vp_z="1 : 0.5 : 1"
386 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
387 id="perspective3829" />
388 <marker
389 inkscape:stockid="Arrow1Mend"
390 orient="auto"
391 refY="0"
392 refX="0"
393 id="Arrow1Mend-4"
394 style="overflow:visible">
395 <path
396 id="path3429-6"
397 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
398 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
399 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
400 </marker>
401 <marker
402 inkscape:stockid="Arrow1Mend"
403 orient="auto"
404 refY="0"
405 refX="0"
406 id="marker3835"
407 style="overflow:visible">
408 <path
409 id="path3837"
410 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
411 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
412 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
413 </marker>
414 <inkscape:perspective
415 sodipodi:type="inkscape:persp3d"
416 inkscape:vp_x="0 : 0.5 : 1"
417 inkscape:vp_y="0 : 1000 : 0"
418 inkscape:vp_z="1 : 0.5 : 1"
419 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
420 id="perspective3872" />
421 <inkscape:perspective
422 sodipodi:type="inkscape:persp3d"
423 inkscape:vp_x="0 : 0.5 : 1"
424 inkscape:vp_y="0 : 1000 : 0"
425 inkscape:vp_z="1 : 0.5 : 1"
426 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
427 id="perspective3872-0" />
428 <inkscape:perspective
429 sodipodi:type="inkscape:persp3d"
430 inkscape:vp_x="0 : 0.5 : 1"
431 inkscape:vp_y="0 : 1000 : 0"
432 inkscape:vp_z="1 : 0.5 : 1"
433 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
434 id="perspective3872-5" />
435 <inkscape:perspective
436 sodipodi:type="inkscape:persp3d"
437 inkscape:vp_x="0 : 0.5 : 1"
438 inkscape:vp_y="0 : 1000 : 0"
439 inkscape:vp_z="1 : 0.5 : 1"
440 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
441 id="perspective3919" />
442 <inkscape:perspective
443 sodipodi:type="inkscape:persp3d"
444 inkscape:vp_x="0 : 0.5 : 1"
445 inkscape:vp_y="0 : 1000 : 0"
446 inkscape:vp_z="1 : 0.5 : 1"
447 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
448 id="perspective3944" />
449 <inkscape:perspective
450 sodipodi:type="inkscape:persp3d"
451 inkscape:vp_x="0 : 0.5 : 1"
452 inkscape:vp_y="0 : 1000 : 0"
453 inkscape:vp_z="1 : 0.5 : 1"
454 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
455 id="perspective3969" />
456 <inkscape:perspective
457 sodipodi:type="inkscape:persp3d"
458 inkscape:vp_x="0 : 0.5 : 1"
459 inkscape:vp_y="0 : 1000 : 0"
460 inkscape:vp_z="1 : 0.5 : 1"
461 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
462 id="perspective3994" />
463 <inkscape:perspective
464 sodipodi:type="inkscape:persp3d"
465 inkscape:vp_x="0 : 0.5 : 1"
466 inkscape:vp_y="0 : 1000 : 0"
467 inkscape:vp_z="1 : 0.5 : 1"
468 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
469 id="perspective4019" />
470 <marker
471 inkscape:stockid="Arrow1Mend1u"
472 orient="auto"
473 refY="0"
474 refX="0"
475 id="Arrow1Mend1u-7"
476 style="overflow:visible">
477 <path
478 id="path5351-0"
479 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
480 style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
481 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
482 </marker>
483 <inkscape:perspective
484 sodipodi:type="inkscape:persp3d"
485 inkscape:vp_x="0 : 0.5 : 1"
486 inkscape:vp_y="0 : 1000 : 0"
487 inkscape:vp_z="1 : 0.5 : 1"
488 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
489 id="perspective4047" />
490 <marker
491 inkscape:stockid="Arrow1Mend1u"
492 orient="auto"
493 refY="0"
494 refX="0"
495 id="Arrow1Mend1u-42"
496 style="overflow:visible">
497 <path
498 id="path5351-2"
499 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
500 style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
501 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
502 </marker>
503 <inkscape:perspective
504 sodipodi:type="inkscape:persp3d"
505 inkscape:vp_x="0 : 0.5 : 1"
506 inkscape:vp_y="0 : 1000 : 0"
507 inkscape:vp_z="1 : 0.5 : 1"
508 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
509 id="perspective4075" />
510 <marker
511 inkscape:stockid="Arrow1Mend1u"
512 orient="auto"
513 refY="0"
514 refX="0"
515 id="Arrow1Mend1u-44"
516 style="overflow:visible">
517 <path
518 id="path5351-06"
519 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
520 style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
521 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
522 </marker>
523 <inkscape:perspective
524 sodipodi:type="inkscape:persp3d"
525 inkscape:vp_x="0 : 0.5 : 1"
526 inkscape:vp_y="0 : 1000 : 0"
527 inkscape:vp_z="1 : 0.5 : 1"
528 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
529 id="perspective4103" />
530 <marker
531 inkscape:stockid="Arrow1Mend"
532 orient="auto"
533 refY="0"
534 refX="0"
535 id="Arrow1Mend-69"
536 style="overflow:visible">
537 <path
538 id="path3429-76"
539 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
540 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
541 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
542 </marker>
543 <inkscape:perspective
544 sodipodi:type="inkscape:persp3d"
545 inkscape:vp_x="0 : 0.5 : 1"
546 inkscape:vp_y="0 : 1000 : 0"
547 inkscape:vp_z="1 : 0.5 : 1"
548 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
549 id="perspective4161" />
550 <inkscape:perspective
551 sodipodi:type="inkscape:persp3d"
552 inkscape:vp_x="0 : 0.5 : 1"
553 inkscape:vp_y="0 : 1000 : 0"
554 inkscape:vp_z="1 : 0.5 : 1"
555 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
556 id="perspective4186" />
557 <marker
558 inkscape:stockid="Arrow1Mend"
559 orient="auto"
560 refY="0"
561 refX="0"
562 id="Arrow1Mend-91"
563 style="overflow:visible">
564 <path
565 id="path3429-24"
566 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
567 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
568 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
569 </marker>
570 <inkscape:perspective
571 sodipodi:type="inkscape:persp3d"
572 inkscape:vp_x="0 : 0.5 : 1"
573 inkscape:vp_y="0 : 1000 : 0"
574 inkscape:vp_z="1 : 0.5 : 1"
575 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
576 id="perspective4186-3" />
577 <marker
578 inkscape:stockid="Arrow1Mend"
579 orient="auto"
580 refY="0"
581 refX="0"
582 id="Arrow1Mend-25"
583 style="overflow:visible">
584 <path
585 id="path3429-13"
586 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
587 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
588 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
589 </marker>
590 <inkscape:perspective
591 sodipodi:type="inkscape:persp3d"
592 inkscape:vp_x="0 : 0.5 : 1"
593 inkscape:vp_y="0 : 1000 : 0"
594 inkscape:vp_z="1 : 0.5 : 1"
595 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
596 id="perspective4237" />
597 <marker
598 inkscape:stockid="Arrow1Mend1u"
599 orient="auto"
600 refY="0"
601 refX="0"
602 id="Arrow1Mend1u-8"
603 style="overflow:visible">
604 <path
605 id="path5351-3"
606 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
607 style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
608 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
609 </marker>
610 <inkscape:perspective
611 sodipodi:type="inkscape:persp3d"
612 inkscape:vp_x="0 : 0.5 : 1"
613 inkscape:vp_y="0 : 1000 : 0"
614 inkscape:vp_z="1 : 0.5 : 1"
615 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
616 id="perspective4265" />
617 <marker
618 inkscape:stockid="Arrow1Mend1u6"
619 orient="auto"
620 refY="0"
621 refX="0"
622 id="Arrow1Mend1u6-2"
623 style="overflow:visible">
624 <path
625 id="path5603-5"
626 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
627 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
628 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
629 </marker>
630 <inkscape:perspective
631 sodipodi:type="inkscape:persp3d"
632 inkscape:vp_x="0 : 0.5 : 1"
633 inkscape:vp_y="0 : 1000 : 0"
634 inkscape:vp_z="1 : 0.5 : 1"
635 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
636 id="perspective4292" />
637 <marker
638 inkscape:stockid="Arrow1Mend1u6"
639 orient="auto"
640 refY="0"
641 refX="0"
642 id="Arrow1Mend1u6-1"
643 style="overflow:visible">
644 <path
645 id="path5603-6"
646 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
647 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
648 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
649 </marker>
650 <inkscape:perspective
651 sodipodi:type="inkscape:persp3d"
652 inkscape:vp_x="0 : 0.5 : 1"
653 inkscape:vp_y="0 : 1000 : 0"
654 inkscape:vp_z="1 : 0.5 : 1"
655 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
656 id="perspective4320" />
657 <marker
658 inkscape:stockid="Arrow1Mend1u6"
659 orient="auto"
660 refY="0"
661 refX="0"
662 id="Arrow1Mend1u6-8"
663 style="overflow:visible">
664 <path
665 id="path5603-9"
666 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
667 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
668 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
669 </marker>
670 <inkscape:perspective
671 sodipodi:type="inkscape:persp3d"
672 inkscape:vp_x="0 : 0.5 : 1"
673 inkscape:vp_y="0 : 1000 : 0"
674 inkscape:vp_z="1 : 0.5 : 1"
675 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
676 id="perspective4348" />
677 <inkscape:perspective
678 sodipodi:type="inkscape:persp3d"
679 inkscape:vp_x="0 : 0.5 : 1"
680 inkscape:vp_y="0 : 1000 : 0"
681 inkscape:vp_z="1 : 0.5 : 1"
682 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
683 id="perspective4400" />
684 <inkscape:perspective
685 sodipodi:type="inkscape:persp3d"
686 inkscape:vp_x="0 : 0.5 : 1"
687 inkscape:vp_y="0 : 1000 : 0"
688 inkscape:vp_z="1 : 0.5 : 1"
689 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
690 id="perspective4425" />
691 <inkscape:perspective
692 sodipodi:type="inkscape:persp3d"
693 inkscape:vp_x="0 : 0.5 : 1"
694 inkscape:vp_y="0 : 1000 : 0"
695 inkscape:vp_z="1 : 0.5 : 1"
696 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
697 id="perspective4450" />
698 <marker
699 inkscape:stockid="Arrow1Mend1u6"
700 orient="auto"
701 refY="0"
702 refX="0"
703 id="Arrow1Mend1u6-6"
704 style="overflow:visible">
705 <path
706 id="path5603-96"
707 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
708 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
709 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
710 </marker>
711 <inkscape:perspective
712 sodipodi:type="inkscape:persp3d"
713 inkscape:vp_x="0 : 0.5 : 1"
714 inkscape:vp_y="0 : 1000 : 0"
715 inkscape:vp_z="1 : 0.5 : 1"
716 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
717 id="perspective4450-1" />
718 <marker
719 inkscape:stockid="Arrow1Mend1u6"
720 orient="auto"
721 refY="0"
722 refX="0"
723 id="Arrow1Mend1u6-7"
724 style="overflow:visible">
725 <path
726 id="path5603-55"
727 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
728 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
729 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
730 </marker>
731 <inkscape:perspective
732 sodipodi:type="inkscape:persp3d"
733 inkscape:vp_x="0 : 0.5 : 1"
734 inkscape:vp_y="0 : 1000 : 0"
735 inkscape:vp_z="1 : 0.5 : 1"
736 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
737 id="perspective4491" />
738 <inkscape:perspective
739 sodipodi:type="inkscape:persp3d"
740 inkscape:vp_x="0 : 0.5 : 1"
741 inkscape:vp_y="0 : 1000 : 0"
742 inkscape:vp_z="1 : 0.5 : 1"
743 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
744 id="perspective4516" />
745 <inkscape:perspective
746 sodipodi:type="inkscape:persp3d"
747 inkscape:vp_x="0 : 0.5 : 1"
748 inkscape:vp_y="0 : 1000 : 0"
749 inkscape:vp_z="1 : 0.5 : 1"
750 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
751 id="perspective4516-9" />
752 <inkscape:perspective
753 sodipodi:type="inkscape:persp3d"
754 inkscape:vp_x="0 : 0.5 : 1"
755 inkscape:vp_y="0 : 1000 : 0"
756 inkscape:vp_z="1 : 0.5 : 1"
757 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
758 id="perspective4552" />
759 <marker
760 inkscape:stockid="Arrow1Mend1u6"
761 orient="auto"
762 refY="0"
763 refX="0"
764 id="Arrow1Mend1u6-81"
765 style="overflow:visible">
766 <path
767 id="path5603-65"
768 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
769 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
770 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
771 </marker>
772 <inkscape:perspective
773 sodipodi:type="inkscape:persp3d"
774 inkscape:vp_x="0 : 0.5 : 1"
775 inkscape:vp_y="0 : 1000 : 0"
776 inkscape:vp_z="1 : 0.5 : 1"
777 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
778 id="perspective4580" />
779 <marker
780 inkscape:stockid="Arrow1Mend1u6"
781 orient="auto"
782 refY="0"
783 refX="0"
784 id="Arrow1Mend1u6-3"
785 style="overflow:visible">
786 <path
787 id="path5603-62"
788 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
789 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
790 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
791 </marker>
792 <inkscape:perspective
793 sodipodi:type="inkscape:persp3d"
794 inkscape:vp_x="0 : 0.5 : 1"
795 inkscape:vp_y="0 : 1000 : 0"
796 inkscape:vp_z="1 : 0.5 : 1"
797 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
798 id="perspective4608" />
799 <marker
800 inkscape:stockid="Arrow1Mend1u"
801 orient="auto"
802 refY="0"
803 refX="0"
804 id="Arrow1Mend1u-9"
805 style="overflow:visible">
806 <path
807 id="path5351-7"
808 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
809 style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
810 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
811 </marker>
812 <inkscape:perspective
813 sodipodi:type="inkscape:persp3d"
814 inkscape:vp_x="0 : 0.5 : 1"
815 inkscape:vp_y="0 : 1000 : 0"
816 inkscape:vp_z="1 : 0.5 : 1"
817 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
818 id="perspective5125" />
819 <inkscape:perspective
820 sodipodi:type="inkscape:persp3d"
821 inkscape:vp_x="0 : 0.5 : 1"
822 inkscape:vp_y="0 : 1000 : 0"
823 inkscape:vp_z="1 : 0.5 : 1"
824 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
825 id="perspective5147" />
826 <inkscape:perspective
827 sodipodi:type="inkscape:persp3d"
828 inkscape:vp_x="0 : 0.5 : 1"
829 inkscape:vp_y="0 : 1000 : 0"
830 inkscape:vp_z="1 : 0.5 : 1"
831 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
832 id="perspective5172" />
833 <inkscape:perspective
834 sodipodi:type="inkscape:persp3d"
835 inkscape:vp_x="0 : 0.5 : 1"
836 inkscape:vp_y="0 : 1000 : 0"
837 inkscape:vp_z="1 : 0.5 : 1"
838 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
839 id="perspective5197" />
840 <marker
841 inkscape:stockid="Arrow1Mend1u6"
842 orient="auto"
843 refY="0"
844 refX="0"
845 id="Arrow1Mend1u6-5"
846 style="overflow:visible">
847 <path
848 id="path5603-7"
849 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
850 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
851 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
852 </marker>
853 <marker
854 inkscape:stockid="Arrow1Mend1u6"
855 orient="auto"
856 refY="0"
857 refX="0"
858 id="marker5203"
859 style="overflow:visible">
860 <path
861 id="path5205"
862 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
863 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
864 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
865 </marker>
866 <inkscape:perspective
867 sodipodi:type="inkscape:persp3d"
868 inkscape:vp_x="0 : 0.5 : 1"
869 inkscape:vp_y="0 : 1000 : 0"
870 inkscape:vp_z="1 : 0.5 : 1"
871 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
872 id="perspective5263" />
873 <marker
874 inkscape:stockid="Arrow1Mend1u"
875 orient="auto"
876 refY="0"
877 refX="0"
878 id="Arrow1Mend1u-0"
879 style="overflow:visible">
880 <path
881 id="path5351-02"
882 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
883 style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
884 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
885 </marker>
886 <inkscape:perspective
887 sodipodi:type="inkscape:persp3d"
888 inkscape:vp_x="0 : 0.5 : 1"
889 inkscape:vp_y="0 : 1000 : 0"
890 inkscape:vp_z="1 : 0.5 : 1"
891 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
892 id="perspective5291" />
893 <marker
894 inkscape:stockid="Arrow1Mend"
895 orient="auto"
896 refY="0"
897 refX="0"
898 id="Arrow1Mend-98"
899 style="overflow:visible">
900 <path
901 id="path3429-9"
902 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
903 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
904 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
905 </marker>
906 <inkscape:perspective
907 sodipodi:type="inkscape:persp3d"
908 inkscape:vp_x="0 : 0.5 : 1"
909 inkscape:vp_y="0 : 1000 : 0"
910 inkscape:vp_z="1 : 0.5 : 1"
911 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
912 id="perspective5318" />
913 <marker
914 inkscape:stockid="Arrow1Mend"
915 orient="auto"
916 refY="0"
917 refX="0"
918 id="Arrow1Mend-47"
919 style="overflow:visible">
920 <path
921 id="path3429-83"
922 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
923 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
924 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
925 </marker>
926 <inkscape:perspective
927 sodipodi:type="inkscape:persp3d"
928 inkscape:vp_x="0 : 0.5 : 1"
929 inkscape:vp_y="0 : 1000 : 0"
930 inkscape:vp_z="1 : 0.5 : 1"
931 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
932 id="perspective5318-6" />
933 <marker
934 inkscape:stockid="Arrow1Mend"
935 orient="auto"
936 refY="0"
937 refX="0"
938 id="Arrow1Mend-474"
939 style="overflow:visible">
940 <path
941 id="path3429-77"
942 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
943 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
944 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
945 </marker>
946 <inkscape:perspective
947 sodipodi:type="inkscape:persp3d"
948 inkscape:vp_x="0 : 0.5 : 1"
949 inkscape:vp_y="0 : 1000 : 0"
950 inkscape:vp_z="1 : 0.5 : 1"
951 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
952 id="perspective5318-0" />
953 <marker
954 inkscape:stockid="Arrow1Mend"
955 orient="auto"
956 refY="0"
957 refX="0"
958 id="Arrow1Mend-0"
959 style="overflow:visible">
960 <path
961 id="path3429-0"
962 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
963 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
964 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
965 </marker>
966 <inkscape:perspective
967 sodipodi:type="inkscape:persp3d"
968 inkscape:vp_x="0 : 0.5 : 1"
969 inkscape:vp_y="0 : 1000 : 0"
970 inkscape:vp_z="1 : 0.5 : 1"
971 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
972 id="perspective5372" />
973 <inkscape:perspective
974 sodipodi:type="inkscape:persp3d"
975 inkscape:vp_x="0 : 0.5 : 1"
976 inkscape:vp_y="0 : 1000 : 0"
977 inkscape:vp_z="1 : 0.5 : 1"
978 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
979 id="perspective5397" />
980 <inkscape:perspective
981 sodipodi:type="inkscape:persp3d"
982 inkscape:vp_x="0 : 0.5 : 1"
983 inkscape:vp_y="0 : 1000 : 0"
984 inkscape:vp_z="1 : 0.5 : 1"
985 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
986 id="perspective5422" />
987 <inkscape:perspective
988 sodipodi:type="inkscape:persp3d"
989 inkscape:vp_x="0 : 0.5 : 1"
990 inkscape:vp_y="0 : 1000 : 0"
991 inkscape:vp_z="1 : 0.5 : 1"
992 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
993 id="perspective5447" />
994 <inkscape:perspective
995 sodipodi:type="inkscape:persp3d"
996 inkscape:vp_x="0 : 0.5 : 1"
997 inkscape:vp_y="0 : 1000 : 0"
998 inkscape:vp_z="1 : 0.5 : 1"
999 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1000 id="perspective5472" />
1001 <inkscape:perspective
1002 sodipodi:type="inkscape:persp3d"
1003 inkscape:vp_x="0 : 0.5 : 1"
1004 inkscape:vp_y="0 : 1000 : 0"
1005 inkscape:vp_z="1 : 0.5 : 1"
1006 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1007 id="perspective5497" />
1008 <inkscape:perspective
1009 sodipodi:type="inkscape:persp3d"
1010 inkscape:vp_x="0 : 0.5 : 1"
1011 inkscape:vp_y="0 : 1000 : 0"
1012 inkscape:vp_z="1 : 0.5 : 1"
1013 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1014 id="perspective5522" />
1015 <inkscape:perspective
1016 sodipodi:type="inkscape:persp3d"
1017 inkscape:vp_x="0 : 0.5 : 1"
1018 inkscape:vp_y="0 : 1000 : 0"
1019 inkscape:vp_z="1 : 0.5 : 1"
1020 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1021 id="perspective5522-3" />
1022 <inkscape:perspective
1023 sodipodi:type="inkscape:persp3d"
1024 inkscape:vp_x="0 : 0.5 : 1"
1025 inkscape:vp_y="0 : 1000 : 0"
1026 inkscape:vp_z="1 : 0.5 : 1"
1027 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1028 id="perspective5601" />
1029 <inkscape:perspective
1030 sodipodi:type="inkscape:persp3d"
1031 inkscape:vp_x="0 : 0.5 : 1"
1032 inkscape:vp_y="0 : 1000 : 0"
1033 inkscape:vp_z="1 : 0.5 : 1"
1034 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1035 id="perspective5644" />
1036 <inkscape:perspective
1037 sodipodi:type="inkscape:persp3d"
1038 inkscape:vp_x="0 : 0.5 : 1"
1039 inkscape:vp_y="0 : 1000 : 0"
1040 inkscape:vp_z="1 : 0.5 : 1"
1041 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1042 id="perspective5669" />
1043 <inkscape:perspective
1044 sodipodi:type="inkscape:persp3d"
1045 inkscape:vp_x="0 : 0.5 : 1"
1046 inkscape:vp_y="0 : 1000 : 0"
1047 inkscape:vp_z="1 : 0.5 : 1"
1048 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1049 id="perspective5694" />
1050 <inkscape:perspective
1051 sodipodi:type="inkscape:persp3d"
1052 inkscape:vp_x="0 : 0.5 : 1"
1053 inkscape:vp_y="0 : 1000 : 0"
1054 inkscape:vp_z="1 : 0.5 : 1"
1055 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1056 id="perspective5719" />
1057 <inkscape:perspective
1058 sodipodi:type="inkscape:persp3d"
1059 inkscape:vp_x="0 : 0.5 : 1"
1060 inkscape:vp_y="0 : 1000 : 0"
1061 inkscape:vp_z="1 : 0.5 : 1"
1062 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1063 id="perspective5744" />
1064 <inkscape:perspective
1065 sodipodi:type="inkscape:persp3d"
1066 inkscape:vp_x="0 : 0.5 : 1"
1067 inkscape:vp_y="0 : 1000 : 0"
1068 inkscape:vp_z="1 : 0.5 : 1"
1069 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1070 id="perspective5744-7" />
1071 <inkscape:perspective
1072 sodipodi:type="inkscape:persp3d"
1073 inkscape:vp_x="0 : 0.5 : 1"
1074 inkscape:vp_y="0 : 1000 : 0"
1075 inkscape:vp_z="1 : 0.5 : 1"
1076 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1077 id="perspective5744-2" />
1078 <inkscape:perspective
1079 sodipodi:type="inkscape:persp3d"
1080 inkscape:vp_x="0 : 0.5 : 1"
1081 inkscape:vp_y="0 : 1000 : 0"
1082 inkscape:vp_z="1 : 0.5 : 1"
1083 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1084 id="perspective5784" />
1085 <marker
1086 inkscape:stockid="Arrow1Mend"
1087 orient="auto"
1088 refY="0"
1089 refX="0"
1090 id="Arrow1Mend-989"
1091 style="overflow:visible">
1092 <path
1093 id="path3429-65"
1094 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1095 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1096 transform="matrix(-0.4,0,0,-0.4,-4,0)" />
1097 </marker>
1098 <inkscape:perspective
1099 sodipodi:type="inkscape:persp3d"
1100 inkscape:vp_x="0 : 0.5 : 1"
1101 inkscape:vp_y="0 : 1000 : 0"
1102 inkscape:vp_z="1 : 0.5 : 1"
1103 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1104 id="perspective5818" />
1105 <inkscape:perspective
1106 sodipodi:type="inkscape:persp3d"
1107 inkscape:vp_x="0 : 0.5 : 1"
1108 inkscape:vp_y="0 : 1000 : 0"
1109 inkscape:vp_z="1 : 0.5 : 1"
1110 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1111 id="perspective5818-0" />
1112 <inkscape:perspective
1113 sodipodi:type="inkscape:persp3d"
1114 inkscape:vp_x="0 : 0.5 : 1"
1115 inkscape:vp_y="0 : 1000 : 0"
1116 inkscape:vp_z="1 : 0.5 : 1"
1117 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1118 id="perspective5849" />
1119 <inkscape:perspective
1120 sodipodi:type="inkscape:persp3d"
1121 inkscape:vp_x="0 : 0.5 : 1"
1122 inkscape:vp_y="0 : 1000 : 0"
1123 inkscape:vp_z="1 : 0.5 : 1"
1124 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1125 id="perspective5849-8" />
1126 <inkscape:perspective
1127 sodipodi:type="inkscape:persp3d"
1128 inkscape:vp_x="0 : 0.5 : 1"
1129 inkscape:vp_y="0 : 1000 : 0"
1130 inkscape:vp_z="1 : 0.5 : 1"
1131 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1132 id="perspective5849-3" />
1133 <inkscape:perspective
1134 sodipodi:type="inkscape:persp3d"
1135 inkscape:vp_x="0 : 0.5 : 1"
1136 inkscape:vp_y="0 : 1000 : 0"
1137 inkscape:vp_z="1 : 0.5 : 1"
1138 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1139 id="perspective5849-4" />
1140 <inkscape:perspective
1141 sodipodi:type="inkscape:persp3d"
1142 inkscape:vp_x="0 : 0.5 : 1"
1143 inkscape:vp_y="0 : 1000 : 0"
1144 inkscape:vp_z="1 : 0.5 : 1"
1145 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1146 id="perspective5898" />
1147 <inkscape:perspective
1148 sodipodi:type="inkscape:persp3d"
1149 inkscape:vp_x="0 : 0.5 : 1"
1150 inkscape:vp_y="0 : 1000 : 0"
1151 inkscape:vp_z="1 : 0.5 : 1"
1152 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1153 id="perspective6442" />
1154 <inkscape:perspective
1155 sodipodi:type="inkscape:persp3d"
1156 inkscape:vp_x="0 : 0.5 : 1"
1157 inkscape:vp_y="0 : 1000 : 0"
1158 inkscape:vp_z="1 : 0.5 : 1"
1159 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1160 id="perspective7524" />
1161 <inkscape:perspective
1162 sodipodi:type="inkscape:persp3d"
1163 inkscape:vp_x="0 : 0.5 : 1"
1164 inkscape:vp_y="0 : 1000 : 0"
1165 inkscape:vp_z="1 : 0.5 : 1"
1166 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1167 id="perspective7524-6" />
1168 <inkscape:perspective
1169 sodipodi:type="inkscape:persp3d"
1170 inkscape:vp_x="0 : 0.5 : 1"
1171 inkscape:vp_y="0 : 1000 : 0"
1172 inkscape:vp_z="1 : 0.5 : 1"
1173 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1174 id="perspective9910" />
1175 <inkscape:perspective
1176 sodipodi:type="inkscape:persp3d"
1177 inkscape:vp_x="0 : 0.5 : 1"
1178 inkscape:vp_y="0 : 1000 : 0"
1179 inkscape:vp_z="1 : 0.5 : 1"
1180 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1181 id="perspective9935" />
1182 <inkscape:perspective
1183 sodipodi:type="inkscape:persp3d"
1184 inkscape:vp_x="0 : 0.5 : 1"
1185 inkscape:vp_y="0 : 1000 : 0"
1186 inkscape:vp_z="1 : 0.5 : 1"
1187 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1188 id="perspective9935-9" />
1189 <inkscape:perspective
1190 id="perspective9935-9-7"
1191 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1192 inkscape:vp_z="1 : 0.5 : 1"
1193 inkscape:vp_y="0 : 1000 : 0"
1194 inkscape:vp_x="0 : 0.5 : 1"
1195 sodipodi:type="inkscape:persp3d" />
1196 <inkscape:perspective
1197 id="perspective9935-0"
1198 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1199 inkscape:vp_z="1 : 0.5 : 1"
1200 inkscape:vp_y="0 : 1000 : 0"
1201 inkscape:vp_x="0 : 0.5 : 1"
1202 sodipodi:type="inkscape:persp3d" />
1203 <inkscape:perspective
1204 id="perspective9910-2"
1205 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1206 inkscape:vp_z="1 : 0.5 : 1"
1207 inkscape:vp_y="0 : 1000 : 0"
1208 inkscape:vp_x="0 : 0.5 : 1"
1209 sodipodi:type="inkscape:persp3d" />
1210 <inkscape:perspective
1211 id="perspective7524-6-1"
1212 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1213 inkscape:vp_z="1 : 0.5 : 1"
1214 inkscape:vp_y="0 : 1000 : 0"
1215 inkscape:vp_x="0 : 0.5 : 1"
1216 sodipodi:type="inkscape:persp3d" />
1217 <inkscape:perspective
1218 id="perspective7524-62"
1219 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1220 inkscape:vp_z="1 : 0.5 : 1"
1221 inkscape:vp_y="0 : 1000 : 0"
1222 inkscape:vp_x="0 : 0.5 : 1"
1223 sodipodi:type="inkscape:persp3d" />
1224 <inkscape:perspective
1225 id="perspective6442-9"
1226 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1227 inkscape:vp_z="1 : 0.5 : 1"
1228 inkscape:vp_y="0 : 1000 : 0"
1229 inkscape:vp_x="0 : 0.5 : 1"
1230 sodipodi:type="inkscape:persp3d" />
1231 <inkscape:perspective
1232 id="perspective5898-1"
1233 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1234 inkscape:vp_z="1 : 0.5 : 1"
1235 inkscape:vp_y="0 : 1000 : 0"
1236 inkscape:vp_x="0 : 0.5 : 1"
1237 sodipodi:type="inkscape:persp3d" />
1238 <inkscape:perspective
1239 id="perspective5849-4-0"
1240 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1241 inkscape:vp_z="1 : 0.5 : 1"
1242 inkscape:vp_y="0 : 1000 : 0"
1243 inkscape:vp_x="0 : 0.5 : 1"
1244 sodipodi:type="inkscape:persp3d" />
1245 <inkscape:perspective
1246 id="perspective5849-3-2"
1247 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1248 inkscape:vp_z="1 : 0.5 : 1"
1249 inkscape:vp_y="0 : 1000 : 0"
1250 inkscape:vp_x="0 : 0.5 : 1"
1251 sodipodi:type="inkscape:persp3d" />
1252 <inkscape:perspective
1253 id="perspective5849-8-0"
1254 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1255 inkscape:vp_z="1 : 0.5 : 1"
1256 inkscape:vp_y="0 : 1000 : 0"
1257 inkscape:vp_x="0 : 0.5 : 1"
1258 sodipodi:type="inkscape:persp3d" />
1259 <inkscape:perspective
1260 id="perspective5849-49"
1261 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1262 inkscape:vp_z="1 : 0.5 : 1"
1263 inkscape:vp_y="0 : 1000 : 0"
1264 inkscape:vp_x="0 : 0.5 : 1"
1265 sodipodi:type="inkscape:persp3d" />
1266 <inkscape:perspective
1267 id="perspective5818-0-3"
1268 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1269 inkscape:vp_z="1 : 0.5 : 1"
1270 inkscape:vp_y="0 : 1000 : 0"
1271 inkscape:vp_x="0 : 0.5 : 1"
1272 sodipodi:type="inkscape:persp3d" />
1273 <inkscape:perspective
1274 id="perspective5818-5"
1275 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1276 inkscape:vp_z="1 : 0.5 : 1"
1277 inkscape:vp_y="0 : 1000 : 0"
1278 inkscape:vp_x="0 : 0.5 : 1"
1279 sodipodi:type="inkscape:persp3d" />
1280 <marker
1281 style="overflow:visible"
1282 id="Arrow1Mend-989-8"
1283 refX="0"
1284 refY="0"
1285 orient="auto"
1286 inkscape:stockid="Arrow1Mend">
1287 <path
1288 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1289 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1290 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1291 id="path3429-65-2" />
1292 </marker>
1293 <inkscape:perspective
1294 id="perspective5784-7"
1295 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1296 inkscape:vp_z="1 : 0.5 : 1"
1297 inkscape:vp_y="0 : 1000 : 0"
1298 inkscape:vp_x="0 : 0.5 : 1"
1299 sodipodi:type="inkscape:persp3d" />
1300 <inkscape:perspective
1301 id="perspective5744-2-9"
1302 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1303 inkscape:vp_z="1 : 0.5 : 1"
1304 inkscape:vp_y="0 : 1000 : 0"
1305 inkscape:vp_x="0 : 0.5 : 1"
1306 sodipodi:type="inkscape:persp3d" />
1307 <inkscape:perspective
1308 id="perspective5744-7-9"
1309 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1310 inkscape:vp_z="1 : 0.5 : 1"
1311 inkscape:vp_y="0 : 1000 : 0"
1312 inkscape:vp_x="0 : 0.5 : 1"
1313 sodipodi:type="inkscape:persp3d" />
1314 <inkscape:perspective
1315 id="perspective5744-1"
1316 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1317 inkscape:vp_z="1 : 0.5 : 1"
1318 inkscape:vp_y="0 : 1000 : 0"
1319 inkscape:vp_x="0 : 0.5 : 1"
1320 sodipodi:type="inkscape:persp3d" />
1321 <inkscape:perspective
1322 id="perspective5719-8"
1323 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1324 inkscape:vp_z="1 : 0.5 : 1"
1325 inkscape:vp_y="0 : 1000 : 0"
1326 inkscape:vp_x="0 : 0.5 : 1"
1327 sodipodi:type="inkscape:persp3d" />
1328 <inkscape:perspective
1329 id="perspective5694-0"
1330 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1331 inkscape:vp_z="1 : 0.5 : 1"
1332 inkscape:vp_y="0 : 1000 : 0"
1333 inkscape:vp_x="0 : 0.5 : 1"
1334 sodipodi:type="inkscape:persp3d" />
1335 <inkscape:perspective
1336 id="perspective5669-7"
1337 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1338 inkscape:vp_z="1 : 0.5 : 1"
1339 inkscape:vp_y="0 : 1000 : 0"
1340 inkscape:vp_x="0 : 0.5 : 1"
1341 sodipodi:type="inkscape:persp3d" />
1342 <inkscape:perspective
1343 id="perspective5644-5"
1344 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1345 inkscape:vp_z="1 : 0.5 : 1"
1346 inkscape:vp_y="0 : 1000 : 0"
1347 inkscape:vp_x="0 : 0.5 : 1"
1348 sodipodi:type="inkscape:persp3d" />
1349 <inkscape:perspective
1350 id="perspective5601-3"
1351 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1352 inkscape:vp_z="1 : 0.5 : 1"
1353 inkscape:vp_y="0 : 1000 : 0"
1354 inkscape:vp_x="0 : 0.5 : 1"
1355 sodipodi:type="inkscape:persp3d" />
1356 <inkscape:perspective
1357 id="perspective5522-3-9"
1358 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1359 inkscape:vp_z="1 : 0.5 : 1"
1360 inkscape:vp_y="0 : 1000 : 0"
1361 inkscape:vp_x="0 : 0.5 : 1"
1362 sodipodi:type="inkscape:persp3d" />
1363 <inkscape:perspective
1364 id="perspective5522-5"
1365 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1366 inkscape:vp_z="1 : 0.5 : 1"
1367 inkscape:vp_y="0 : 1000 : 0"
1368 inkscape:vp_x="0 : 0.5 : 1"
1369 sodipodi:type="inkscape:persp3d" />
1370 <inkscape:perspective
1371 id="perspective5497-4"
1372 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1373 inkscape:vp_z="1 : 0.5 : 1"
1374 inkscape:vp_y="0 : 1000 : 0"
1375 inkscape:vp_x="0 : 0.5 : 1"
1376 sodipodi:type="inkscape:persp3d" />
1377 <inkscape:perspective
1378 id="perspective5472-9"
1379 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1380 inkscape:vp_z="1 : 0.5 : 1"
1381 inkscape:vp_y="0 : 1000 : 0"
1382 inkscape:vp_x="0 : 0.5 : 1"
1383 sodipodi:type="inkscape:persp3d" />
1384 <inkscape:perspective
1385 id="perspective5447-9"
1386 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1387 inkscape:vp_z="1 : 0.5 : 1"
1388 inkscape:vp_y="0 : 1000 : 0"
1389 inkscape:vp_x="0 : 0.5 : 1"
1390 sodipodi:type="inkscape:persp3d" />
1391 <inkscape:perspective
1392 id="perspective5422-4"
1393 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1394 inkscape:vp_z="1 : 0.5 : 1"
1395 inkscape:vp_y="0 : 1000 : 0"
1396 inkscape:vp_x="0 : 0.5 : 1"
1397 sodipodi:type="inkscape:persp3d" />
1398 <inkscape:perspective
1399 id="perspective5397-7"
1400 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1401 inkscape:vp_z="1 : 0.5 : 1"
1402 inkscape:vp_y="0 : 1000 : 0"
1403 inkscape:vp_x="0 : 0.5 : 1"
1404 sodipodi:type="inkscape:persp3d" />
1405 <inkscape:perspective
1406 id="perspective5372-5"
1407 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1408 inkscape:vp_z="1 : 0.5 : 1"
1409 inkscape:vp_y="0 : 1000 : 0"
1410 inkscape:vp_x="0 : 0.5 : 1"
1411 sodipodi:type="inkscape:persp3d" />
1412 <marker
1413 style="overflow:visible"
1414 id="Arrow1Mend-0-9"
1415 refX="0"
1416 refY="0"
1417 orient="auto"
1418 inkscape:stockid="Arrow1Mend">
1419 <path
1420 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1421 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1422 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1423 id="path3429-0-2" />
1424 </marker>
1425 <inkscape:perspective
1426 id="perspective5318-0-4"
1427 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1428 inkscape:vp_z="1 : 0.5 : 1"
1429 inkscape:vp_y="0 : 1000 : 0"
1430 inkscape:vp_x="0 : 0.5 : 1"
1431 sodipodi:type="inkscape:persp3d" />
1432 <marker
1433 style="overflow:visible"
1434 id="Arrow1Mend-474-1"
1435 refX="0"
1436 refY="0"
1437 orient="auto"
1438 inkscape:stockid="Arrow1Mend">
1439 <path
1440 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1441 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1442 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1443 id="path3429-77-5" />
1444 </marker>
1445 <inkscape:perspective
1446 id="perspective5318-6-9"
1447 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1448 inkscape:vp_z="1 : 0.5 : 1"
1449 inkscape:vp_y="0 : 1000 : 0"
1450 inkscape:vp_x="0 : 0.5 : 1"
1451 sodipodi:type="inkscape:persp3d" />
1452 <marker
1453 style="overflow:visible"
1454 id="Arrow1Mend-47-7"
1455 refX="0"
1456 refY="0"
1457 orient="auto"
1458 inkscape:stockid="Arrow1Mend">
1459 <path
1460 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1461 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1462 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1463 id="path3429-83-8" />
1464 </marker>
1465 <inkscape:perspective
1466 id="perspective5318-01"
1467 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1468 inkscape:vp_z="1 : 0.5 : 1"
1469 inkscape:vp_y="0 : 1000 : 0"
1470 inkscape:vp_x="0 : 0.5 : 1"
1471 sodipodi:type="inkscape:persp3d" />
1472 <marker
1473 style="overflow:visible"
1474 id="Arrow1Mend-98-8"
1475 refX="0"
1476 refY="0"
1477 orient="auto"
1478 inkscape:stockid="Arrow1Mend">
1479 <path
1480 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1481 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1482 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1483 id="path3429-9-3" />
1484 </marker>
1485 <inkscape:perspective
1486 id="perspective5291-2"
1487 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1488 inkscape:vp_z="1 : 0.5 : 1"
1489 inkscape:vp_y="0 : 1000 : 0"
1490 inkscape:vp_x="0 : 0.5 : 1"
1491 sodipodi:type="inkscape:persp3d" />
1492 <marker
1493 style="overflow:visible"
1494 id="Arrow1Mend1u-0-3"
1495 refX="0"
1496 refY="0"
1497 orient="auto"
1498 inkscape:stockid="Arrow1Mend1u">
1499 <path
1500 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1501 style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1502 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1503 id="path5351-02-9" />
1504 </marker>
1505 <inkscape:perspective
1506 id="perspective5263-9"
1507 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1508 inkscape:vp_z="1 : 0.5 : 1"
1509 inkscape:vp_y="0 : 1000 : 0"
1510 inkscape:vp_x="0 : 0.5 : 1"
1511 sodipodi:type="inkscape:persp3d" />
1512 <marker
1513 style="overflow:visible"
1514 id="marker5203-4"
1515 refX="0"
1516 refY="0"
1517 orient="auto"
1518 inkscape:stockid="Arrow1Mend1u6">
1519 <path
1520 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1521 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1522 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1523 id="path5205-7" />
1524 </marker>
1525 <marker
1526 style="overflow:visible"
1527 id="Arrow1Mend1u6-5-6"
1528 refX="0"
1529 refY="0"
1530 orient="auto"
1531 inkscape:stockid="Arrow1Mend1u6">
1532 <path
1533 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1534 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1535 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1536 id="path5603-7-2" />
1537 </marker>
1538 <inkscape:perspective
1539 id="perspective5197-8"
1540 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1541 inkscape:vp_z="1 : 0.5 : 1"
1542 inkscape:vp_y="0 : 1000 : 0"
1543 inkscape:vp_x="0 : 0.5 : 1"
1544 sodipodi:type="inkscape:persp3d" />
1545 <inkscape:perspective
1546 id="perspective5172-0"
1547 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1548 inkscape:vp_z="1 : 0.5 : 1"
1549 inkscape:vp_y="0 : 1000 : 0"
1550 inkscape:vp_x="0 : 0.5 : 1"
1551 sodipodi:type="inkscape:persp3d" />
1552 <inkscape:perspective
1553 id="perspective5147-7"
1554 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1555 inkscape:vp_z="1 : 0.5 : 1"
1556 inkscape:vp_y="0 : 1000 : 0"
1557 inkscape:vp_x="0 : 0.5 : 1"
1558 sodipodi:type="inkscape:persp3d" />
1559 <inkscape:perspective
1560 id="perspective5125-8"
1561 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1562 inkscape:vp_z="1 : 0.5 : 1"
1563 inkscape:vp_y="0 : 1000 : 0"
1564 inkscape:vp_x="0 : 0.5 : 1"
1565 sodipodi:type="inkscape:persp3d" />
1566 <marker
1567 style="overflow:visible"
1568 id="Arrow1Mend1u-9-0"
1569 refX="0"
1570 refY="0"
1571 orient="auto"
1572 inkscape:stockid="Arrow1Mend1u">
1573 <path
1574 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1575 style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1576 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1577 id="path5351-7-4" />
1578 </marker>
1579 <inkscape:perspective
1580 id="perspective4608-1"
1581 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1582 inkscape:vp_z="1 : 0.5 : 1"
1583 inkscape:vp_y="0 : 1000 : 0"
1584 inkscape:vp_x="0 : 0.5 : 1"
1585 sodipodi:type="inkscape:persp3d" />
1586 <marker
1587 style="overflow:visible"
1588 id="Arrow1Mend1u6-3-0"
1589 refX="0"
1590 refY="0"
1591 orient="auto"
1592 inkscape:stockid="Arrow1Mend1u6">
1593 <path
1594 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1595 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1596 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1597 id="path5603-62-4" />
1598 </marker>
1599 <inkscape:perspective
1600 id="perspective4580-6"
1601 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1602 inkscape:vp_z="1 : 0.5 : 1"
1603 inkscape:vp_y="0 : 1000 : 0"
1604 inkscape:vp_x="0 : 0.5 : 1"
1605 sodipodi:type="inkscape:persp3d" />
1606 <marker
1607 style="overflow:visible"
1608 id="Arrow1Mend1u6-81-7"
1609 refX="0"
1610 refY="0"
1611 orient="auto"
1612 inkscape:stockid="Arrow1Mend1u6">
1613 <path
1614 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1615 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1616 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1617 id="path5603-65-9" />
1618 </marker>
1619 <inkscape:perspective
1620 id="perspective4552-8"
1621 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1622 inkscape:vp_z="1 : 0.5 : 1"
1623 inkscape:vp_y="0 : 1000 : 0"
1624 inkscape:vp_x="0 : 0.5 : 1"
1625 sodipodi:type="inkscape:persp3d" />
1626 <inkscape:perspective
1627 id="perspective4516-9-5"
1628 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1629 inkscape:vp_z="1 : 0.5 : 1"
1630 inkscape:vp_y="0 : 1000 : 0"
1631 inkscape:vp_x="0 : 0.5 : 1"
1632 sodipodi:type="inkscape:persp3d" />
1633 <inkscape:perspective
1634 id="perspective4516-6"
1635 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1636 inkscape:vp_z="1 : 0.5 : 1"
1637 inkscape:vp_y="0 : 1000 : 0"
1638 inkscape:vp_x="0 : 0.5 : 1"
1639 sodipodi:type="inkscape:persp3d" />
1640 <inkscape:perspective
1641 id="perspective4491-2"
1642 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1643 inkscape:vp_z="1 : 0.5 : 1"
1644 inkscape:vp_y="0 : 1000 : 0"
1645 inkscape:vp_x="0 : 0.5 : 1"
1646 sodipodi:type="inkscape:persp3d" />
1647 <marker
1648 style="overflow:visible"
1649 id="Arrow1Mend1u6-7-6"
1650 refX="0"
1651 refY="0"
1652 orient="auto"
1653 inkscape:stockid="Arrow1Mend1u6">
1654 <path
1655 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1656 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1657 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1658 id="path5603-55-5" />
1659 </marker>
1660 <inkscape:perspective
1661 id="perspective4450-1-2"
1662 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1663 inkscape:vp_z="1 : 0.5 : 1"
1664 inkscape:vp_y="0 : 1000 : 0"
1665 inkscape:vp_x="0 : 0.5 : 1"
1666 sodipodi:type="inkscape:persp3d" />
1667 <marker
1668 style="overflow:visible"
1669 id="Arrow1Mend1u6-6-7"
1670 refX="0"
1671 refY="0"
1672 orient="auto"
1673 inkscape:stockid="Arrow1Mend1u6">
1674 <path
1675 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1676 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1677 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1678 id="path5603-96-3" />
1679 </marker>
1680 <inkscape:perspective
1681 id="perspective4450-3"
1682 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1683 inkscape:vp_z="1 : 0.5 : 1"
1684 inkscape:vp_y="0 : 1000 : 0"
1685 inkscape:vp_x="0 : 0.5 : 1"
1686 sodipodi:type="inkscape:persp3d" />
1687 <inkscape:perspective
1688 id="perspective4425-3"
1689 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1690 inkscape:vp_z="1 : 0.5 : 1"
1691 inkscape:vp_y="0 : 1000 : 0"
1692 inkscape:vp_x="0 : 0.5 : 1"
1693 sodipodi:type="inkscape:persp3d" />
1694 <inkscape:perspective
1695 id="perspective4400-3"
1696 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1697 inkscape:vp_z="1 : 0.5 : 1"
1698 inkscape:vp_y="0 : 1000 : 0"
1699 inkscape:vp_x="0 : 0.5 : 1"
1700 sodipodi:type="inkscape:persp3d" />
1701 <inkscape:perspective
1702 id="perspective4348-0"
1703 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1704 inkscape:vp_z="1 : 0.5 : 1"
1705 inkscape:vp_y="0 : 1000 : 0"
1706 inkscape:vp_x="0 : 0.5 : 1"
1707 sodipodi:type="inkscape:persp3d" />
1708 <marker
1709 style="overflow:visible"
1710 id="Arrow1Mend1u6-8-7"
1711 refX="0"
1712 refY="0"
1713 orient="auto"
1714 inkscape:stockid="Arrow1Mend1u6">
1715 <path
1716 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1717 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1718 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1719 id="path5603-9-9" />
1720 </marker>
1721 <inkscape:perspective
1722 id="perspective4320-8"
1723 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1724 inkscape:vp_z="1 : 0.5 : 1"
1725 inkscape:vp_y="0 : 1000 : 0"
1726 inkscape:vp_x="0 : 0.5 : 1"
1727 sodipodi:type="inkscape:persp3d" />
1728 <marker
1729 style="overflow:visible"
1730 id="Arrow1Mend1u6-1-0"
1731 refX="0"
1732 refY="0"
1733 orient="auto"
1734 inkscape:stockid="Arrow1Mend1u6">
1735 <path
1736 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1737 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1738 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1739 id="path5603-6-6" />
1740 </marker>
1741 <inkscape:perspective
1742 id="perspective4292-9"
1743 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1744 inkscape:vp_z="1 : 0.5 : 1"
1745 inkscape:vp_y="0 : 1000 : 0"
1746 inkscape:vp_x="0 : 0.5 : 1"
1747 sodipodi:type="inkscape:persp3d" />
1748 <marker
1749 style="overflow:visible"
1750 id="Arrow1Mend1u6-2-6"
1751 refX="0"
1752 refY="0"
1753 orient="auto"
1754 inkscape:stockid="Arrow1Mend1u6">
1755 <path
1756 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1757 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1758 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1759 id="path5603-5-8" />
1760 </marker>
1761 <inkscape:perspective
1762 id="perspective4265-7"
1763 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1764 inkscape:vp_z="1 : 0.5 : 1"
1765 inkscape:vp_y="0 : 1000 : 0"
1766 inkscape:vp_x="0 : 0.5 : 1"
1767 sodipodi:type="inkscape:persp3d" />
1768 <marker
1769 style="overflow:visible"
1770 id="Arrow1Mend1u-8-0"
1771 refX="0"
1772 refY="0"
1773 orient="auto"
1774 inkscape:stockid="Arrow1Mend1u">
1775 <path
1776 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1777 style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1778 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1779 id="path5351-3-4" />
1780 </marker>
1781 <inkscape:perspective
1782 id="perspective4237-8"
1783 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1784 inkscape:vp_z="1 : 0.5 : 1"
1785 inkscape:vp_y="0 : 1000 : 0"
1786 inkscape:vp_x="0 : 0.5 : 1"
1787 sodipodi:type="inkscape:persp3d" />
1788 <marker
1789 style="overflow:visible"
1790 id="Arrow1Mend-25-3"
1791 refX="0"
1792 refY="0"
1793 orient="auto"
1794 inkscape:stockid="Arrow1Mend">
1795 <path
1796 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1797 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1798 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1799 id="path3429-13-3" />
1800 </marker>
1801 <inkscape:perspective
1802 id="perspective4186-3-3"
1803 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1804 inkscape:vp_z="1 : 0.5 : 1"
1805 inkscape:vp_y="0 : 1000 : 0"
1806 inkscape:vp_x="0 : 0.5 : 1"
1807 sodipodi:type="inkscape:persp3d" />
1808 <marker
1809 style="overflow:visible"
1810 id="Arrow1Mend-91-3"
1811 refX="0"
1812 refY="0"
1813 orient="auto"
1814 inkscape:stockid="Arrow1Mend">
1815 <path
1816 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1817 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1818 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1819 id="path3429-24-8" />
1820 </marker>
1821 <inkscape:perspective
1822 id="perspective4186-8"
1823 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1824 inkscape:vp_z="1 : 0.5 : 1"
1825 inkscape:vp_y="0 : 1000 : 0"
1826 inkscape:vp_x="0 : 0.5 : 1"
1827 sodipodi:type="inkscape:persp3d" />
1828 <inkscape:perspective
1829 id="perspective4161-6"
1830 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1831 inkscape:vp_z="1 : 0.5 : 1"
1832 inkscape:vp_y="0 : 1000 : 0"
1833 inkscape:vp_x="0 : 0.5 : 1"
1834 sodipodi:type="inkscape:persp3d" />
1835 <marker
1836 style="overflow:visible"
1837 id="Arrow1Mend-69-8"
1838 refX="0"
1839 refY="0"
1840 orient="auto"
1841 inkscape:stockid="Arrow1Mend">
1842 <path
1843 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1844 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1845 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1846 id="path3429-76-8" />
1847 </marker>
1848 <inkscape:perspective
1849 id="perspective4103-8"
1850 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1851 inkscape:vp_z="1 : 0.5 : 1"
1852 inkscape:vp_y="0 : 1000 : 0"
1853 inkscape:vp_x="0 : 0.5 : 1"
1854 sodipodi:type="inkscape:persp3d" />
1855 <marker
1856 style="overflow:visible"
1857 id="Arrow1Mend1u-44-9"
1858 refX="0"
1859 refY="0"
1860 orient="auto"
1861 inkscape:stockid="Arrow1Mend1u">
1862 <path
1863 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1864 style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1865 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1866 id="path5351-06-2" />
1867 </marker>
1868 <inkscape:perspective
1869 id="perspective4075-8"
1870 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1871 inkscape:vp_z="1 : 0.5 : 1"
1872 inkscape:vp_y="0 : 1000 : 0"
1873 inkscape:vp_x="0 : 0.5 : 1"
1874 sodipodi:type="inkscape:persp3d" />
1875 <marker
1876 style="overflow:visible"
1877 id="Arrow1Mend1u-42-2"
1878 refX="0"
1879 refY="0"
1880 orient="auto"
1881 inkscape:stockid="Arrow1Mend1u">
1882 <path
1883 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1884 style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1885 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1886 id="path5351-2-8" />
1887 </marker>
1888 <inkscape:perspective
1889 id="perspective4047-1"
1890 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1891 inkscape:vp_z="1 : 0.5 : 1"
1892 inkscape:vp_y="0 : 1000 : 0"
1893 inkscape:vp_x="0 : 0.5 : 1"
1894 sodipodi:type="inkscape:persp3d" />
1895 <marker
1896 style="overflow:visible"
1897 id="Arrow1Mend1u-7-6"
1898 refX="0"
1899 refY="0"
1900 orient="auto"
1901 inkscape:stockid="Arrow1Mend1u">
1902 <path
1903 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1904 style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1905 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1906 id="path5351-0-4" />
1907 </marker>
1908 <inkscape:perspective
1909 id="perspective4019-2"
1910 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1911 inkscape:vp_z="1 : 0.5 : 1"
1912 inkscape:vp_y="0 : 1000 : 0"
1913 inkscape:vp_x="0 : 0.5 : 1"
1914 sodipodi:type="inkscape:persp3d" />
1915 <inkscape:perspective
1916 id="perspective3994-2"
1917 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1918 inkscape:vp_z="1 : 0.5 : 1"
1919 inkscape:vp_y="0 : 1000 : 0"
1920 inkscape:vp_x="0 : 0.5 : 1"
1921 sodipodi:type="inkscape:persp3d" />
1922 <inkscape:perspective
1923 id="perspective3969-4"
1924 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1925 inkscape:vp_z="1 : 0.5 : 1"
1926 inkscape:vp_y="0 : 1000 : 0"
1927 inkscape:vp_x="0 : 0.5 : 1"
1928 sodipodi:type="inkscape:persp3d" />
1929 <inkscape:perspective
1930 id="perspective3944-9"
1931 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1932 inkscape:vp_z="1 : 0.5 : 1"
1933 inkscape:vp_y="0 : 1000 : 0"
1934 inkscape:vp_x="0 : 0.5 : 1"
1935 sodipodi:type="inkscape:persp3d" />
1936 <inkscape:perspective
1937 id="perspective3919-6"
1938 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1939 inkscape:vp_z="1 : 0.5 : 1"
1940 inkscape:vp_y="0 : 1000 : 0"
1941 inkscape:vp_x="0 : 0.5 : 1"
1942 sodipodi:type="inkscape:persp3d" />
1943 <inkscape:perspective
1944 id="perspective3872-5-4"
1945 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1946 inkscape:vp_z="1 : 0.5 : 1"
1947 inkscape:vp_y="0 : 1000 : 0"
1948 inkscape:vp_x="0 : 0.5 : 1"
1949 sodipodi:type="inkscape:persp3d" />
1950 <inkscape:perspective
1951 id="perspective3872-0-1"
1952 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1953 inkscape:vp_z="1 : 0.5 : 1"
1954 inkscape:vp_y="0 : 1000 : 0"
1955 inkscape:vp_x="0 : 0.5 : 1"
1956 sodipodi:type="inkscape:persp3d" />
1957 <inkscape:perspective
1958 id="perspective3872-3"
1959 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1960 inkscape:vp_z="1 : 0.5 : 1"
1961 inkscape:vp_y="0 : 1000 : 0"
1962 inkscape:vp_x="0 : 0.5 : 1"
1963 sodipodi:type="inkscape:persp3d" />
1964 <marker
1965 style="overflow:visible"
1966 id="marker3835-7"
1967 refX="0"
1968 refY="0"
1969 orient="auto"
1970 inkscape:stockid="Arrow1Mend">
1971 <path
1972 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1973 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1974 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1975 id="path3837-4" />
1976 </marker>
1977 <marker
1978 style="overflow:visible"
1979 id="Arrow1Mend-4-5"
1980 refX="0"
1981 refY="0"
1982 orient="auto"
1983 inkscape:stockid="Arrow1Mend">
1984 <path
1985 transform="matrix(-0.4,0,0,-0.4,-4,0)"
1986 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
1987 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
1988 id="path3429-6-1" />
1989 </marker>
1990 <inkscape:perspective
1991 id="perspective3829-3"
1992 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
1993 inkscape:vp_z="1 : 0.5 : 1"
1994 inkscape:vp_y="0 : 1000 : 0"
1995 inkscape:vp_x="0 : 0.5 : 1"
1996 sodipodi:type="inkscape:persp3d" />
1997 <marker
1998 style="overflow:visible"
1999 id="Arrow1Mend-5-9"
2000 refX="0"
2001 refY="0"
2002 orient="auto"
2003 inkscape:stockid="Arrow1Mend">
2004 <path
2005 transform="matrix(-0.4,0,0,-0.4,-4,0)"
2006 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2007 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2008 id="path3429-8-4" />
2009 </marker>
2010 <inkscape:perspective
2011 id="perspective3801-2"
2012 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2013 inkscape:vp_z="1 : 0.5 : 1"
2014 inkscape:vp_y="0 : 1000 : 0"
2015 inkscape:vp_x="0 : 0.5 : 1"
2016 sodipodi:type="inkscape:persp3d" />
2017 <marker
2018 style="overflow:visible"
2019 id="marker3768-5"
2020 refX="0"
2021 refY="0"
2022 orient="auto"
2023 inkscape:stockid="Arrow1Mend">
2024 <path
2025 transform="matrix(-0.4,0,0,-0.4,-4,0)"
2026 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2027 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2028 id="path3770-0" />
2029 </marker>
2030 <marker
2031 style="overflow:visible"
2032 id="Arrow1Mend-2-6"
2033 refX="0"
2034 refY="0"
2035 orient="auto"
2036 inkscape:stockid="Arrow1Mend">
2037 <path
2038 transform="matrix(-0.4,0,0,-0.4,-4,0)"
2039 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2040 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2041 id="path3429-1-0" />
2042 </marker>
2043 <inkscape:perspective
2044 id="perspective3762-3"
2045 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2046 inkscape:vp_z="1 : 0.5 : 1"
2047 inkscape:vp_y="0 : 1000 : 0"
2048 inkscape:vp_x="0 : 0.5 : 1"
2049 sodipodi:type="inkscape:persp3d" />
2050 <marker
2051 style="overflow:visible"
2052 id="marker3729-9"
2053 refX="0"
2054 refY="0"
2055 orient="auto"
2056 inkscape:stockid="Arrow1Mend">
2057 <path
2058 transform="matrix(-0.4,0,0,-0.4,-4,0)"
2059 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2060 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2061 id="path3731-9" />
2062 </marker>
2063 <marker
2064 style="overflow:visible"
2065 id="Arrow1Mend-7-4"
2066 refX="0"
2067 refY="0"
2068 orient="auto"
2069 inkscape:stockid="Arrow1Mend">
2070 <path
2071 transform="matrix(-0.4,0,0,-0.4,-4,0)"
2072 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2073 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2074 id="path3429-7-4" />
2075 </marker>
2076 <inkscape:perspective
2077 id="perspective3723-5"
2078 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2079 inkscape:vp_z="1 : 0.5 : 1"
2080 inkscape:vp_y="0 : 1000 : 0"
2081 inkscape:vp_x="0 : 0.5 : 1"
2082 sodipodi:type="inkscape:persp3d" />
2083 <marker
2084 style="overflow:visible"
2085 id="Arrow1Mend-6-6"
2086 refX="0"
2087 refY="0"
2088 orient="auto"
2089 inkscape:stockid="Arrow1Mend">
2090 <path
2091 transform="matrix(-0.4,0,0,-0.4,-4,0)"
2092 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2093 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2094 id="path3429-2-2" />
2095 </marker>
2096 <inkscape:perspective
2097 id="perspective3695-9"
2098 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2099 inkscape:vp_z="1 : 0.5 : 1"
2100 inkscape:vp_y="0 : 1000 : 0"
2101 inkscape:vp_x="0 : 0.5 : 1"
2102 sodipodi:type="inkscape:persp3d" />
2103 <inkscape:perspective
2104 id="perspective5990-1-1"
2105 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2106 inkscape:vp_z="1 : 0.5 : 1"
2107 inkscape:vp_y="0 : 1000 : 0"
2108 inkscape:vp_x="0 : 0.5 : 1"
2109 sodipodi:type="inkscape:persp3d" />
2110 <inkscape:perspective
2111 id="perspective5990-9"
2112 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2113 inkscape:vp_z="1 : 0.5 : 1"
2114 inkscape:vp_y="0 : 1000 : 0"
2115 inkscape:vp_x="0 : 0.5 : 1"
2116 sodipodi:type="inkscape:persp3d" />
2117 <inkscape:perspective
2118 id="perspective5936-0"
2119 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2120 inkscape:vp_z="1 : 0.5 : 1"
2121 inkscape:vp_y="0 : 1000 : 0"
2122 inkscape:vp_x="0 : 0.5 : 1"
2123 sodipodi:type="inkscape:persp3d" />
2124 <inkscape:perspective
2125 id="perspective5866-0-4"
2126 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2127 inkscape:vp_z="1 : 0.5 : 1"
2128 inkscape:vp_y="0 : 1000 : 0"
2129 inkscape:vp_x="0 : 0.5 : 1"
2130 sodipodi:type="inkscape:persp3d" />
2131 <inkscape:perspective
2132 id="perspective5866-1-0"
2133 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2134 inkscape:vp_z="1 : 0.5 : 1"
2135 inkscape:vp_y="0 : 1000 : 0"
2136 inkscape:vp_x="0 : 0.5 : 1"
2137 sodipodi:type="inkscape:persp3d" />
2138 <inkscape:perspective
2139 id="perspective5866-8"
2140 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2141 inkscape:vp_z="1 : 0.5 : 1"
2142 inkscape:vp_y="0 : 1000 : 0"
2143 inkscape:vp_x="0 : 0.5 : 1"
2144 sodipodi:type="inkscape:persp3d" />
2145 <marker
2146 style="overflow: visible;"
2147 id="Arrow1Mend1u6-28"
2148 refX="0.0"
2149 refY="0.0"
2150 orient="auto"
2151 inkscape:stockid="Arrow1Mend1u6">
2152 <path
2153 transform="scale(0.4, 0.4) rotate(180) translate(10)"
2154 style="fill-rule: evenodd; marker-start: none;stroke:#00ffec; stroke: rgb(0, 0, 0); stroke-width: 1pt;fill:#00ffec"
2155 d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
2156 id="path5603-3" />
2157 </marker>
2158 <marker
2159 style="overflow:visible"
2160 id="Arrow1Mend1u-4-9"
2161 refX="0"
2162 refY="0"
2163 orient="auto"
2164 inkscape:stockid="Arrow1Mend1u">
2165 <path
2166 transform="matrix(-0.4,0,0,-0.4,-4,0)"
2167 style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2168 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2169 id="path5351-6-0" />
2170 </marker>
2171 <inkscape:perspective
2172 sodipodi:type="inkscape:persp3d"
2173 inkscape:vp_x="0 : 0.5 : 1"
2174 inkscape:vp_y="0 : 1000 : 0"
2175 inkscape:vp_z="1 : 0.5 : 1"
2176 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2177 id="perspective5562-2" />
2178 <marker
2179 style="overflow: visible;"
2180 id="Arrow1Mend1u-05"
2181 refX="0.0"
2182 refY="0.0"
2183 orient="auto"
2184 inkscape:stockid="Arrow1Mend1u">
2185 <path
2186 transform="scale(0.4, 0.4) rotate(180) translate(10)"
2187 style="fill-rule: evenodd; marker-start: none;stroke:#00ff00; stroke: rgb(0, 0, 0); stroke-width: 1pt;fill:#00ff00"
2188 d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
2189 id="path5351-5" />
2190 </marker>
2191 <marker
2192 style="overflow: visible;"
2193 id="Arrow1Mend1-2"
2194 refX="0.0"
2195 refY="0.0"
2196 orient="auto"
2197 inkscape:stockid="Arrow1Mend1">
2198 <path
2199 transform="scale(0.4, 0.4) rotate(180) translate(10)"
2200 style="fill-rule: evenodd; marker-start: none;stroke:#00ff00; stroke: rgb(0, 0, 0); stroke-width: 1pt;fill:#00ff00"
2201 d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
2202 id="path4357-2" />
2203 </marker>
2204 <marker
2205 style="overflow:visible"
2206 id="Arrow1Mend-9-4"
2207 refX="0"
2208 refY="0"
2209 orient="auto"
2210 inkscape:stockid="Arrow1Mend">
2211 <path
2212 transform="matrix(-0.4,0,0,-0.4,-4,0)"
2213 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2214 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2215 id="path3429-5-2" />
2216 </marker>
2217 <inkscape:perspective
2218 sodipodi:type="inkscape:persp3d"
2219 inkscape:vp_x="0 : 0.5 : 1"
2220 inkscape:vp_y="0 : 1000 : 0"
2221 inkscape:vp_z="1 : 0.5 : 1"
2222 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2223 id="perspective4326-0" />
2224 <inkscape:perspective
2225 id="perspective10-1"
2226 inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
2227 inkscape:vp_z="744.09448 : 526.18109 : 1"
2228 inkscape:vp_y="0 : 1000 : 0"
2229 inkscape:vp_x="0 : 526.18109 : 1"
2230 sodipodi:type="inkscape:persp3d" />
2231 <marker
2232 style="overflow: visible;"
2233 id="Arrow1Mend-42"
2234 refX="0.0"
2235 refY="0.0"
2236 orient="auto"
2237 inkscape:stockid="Arrow1Mend">
2238 <path
2239 transform="scale(0.4, 0.4) rotate(180) translate(10)"
2240 style="fill-rule: evenodd; stroke: rgb(0, 0, 0); stroke-width: 1pt; marker-start: none;"
2241 d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
2242 id="path3429-96" />
2243 </marker>
2244 <marker
2245 style="overflow:visible;"
2246 id="Arrow1Send-8"
2247 refX="0.0"
2248 refY="0.0"
2249 orient="auto"
2250 inkscape:stockid="Arrow1Send">
2251 <path
2252 transform="scale(0.2) rotate(180) translate(6,0)"
2253 style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
2254 d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
2255 id="path3700-0" />
2256 </marker>
2257 <marker
2258 inkscape:stockid="Arrow1Sstart"
2259 orient="auto"
2260 refY="0.0"
2261 refX="0.0"
2262 id="Arrow1Sstart-0"
2263 style="overflow:visible">
2264 <path
2265 id="path3697-4"
2266 d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
2267 style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
2268 transform="scale(0.2) translate(6,0)" />
2269 </marker>
2270 <marker
2271 inkscape:stockid="Arrow1Mstart"
2272 orient="auto"
2273 refY="0.0"
2274 refX="0.0"
2275 id="Arrow1Mstart-8"
2276 style="overflow:visible">
2277 <path
2278 id="path7555-7"
2279 d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
2280 style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
2281 transform="scale(0.4) translate(10,0)" />
2282 </marker>
2283 <marker
2284 inkscape:stockid="Arrow1Lstart"
2285 orient="auto"
2286 refY="0.0"
2287 refX="0.0"
2288 id="Arrow1Lstart-7"
2289 style="overflow:visible">
2290 <path
2291 id="path7549-5"
2292 d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
2293 style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
2294 transform="scale(0.8) translate(12.5,0)" />
2295 </marker>
2296 <inkscape:perspective
2297 id="perspective5237"
2298 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2299 inkscape:vp_z="1 : 0.5 : 1"
2300 inkscape:vp_y="0 : 1000 : 0"
2301 inkscape:vp_x="0 : 0.5 : 1"
2302 sodipodi:type="inkscape:persp3d" />
2303 <inkscape:perspective
2304 id="perspective5212"
2305 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2306 inkscape:vp_z="1 : 0.5 : 1"
2307 inkscape:vp_y="0 : 1000 : 0"
2308 inkscape:vp_x="0 : 0.5 : 1"
2309 sodipodi:type="inkscape:persp3d" />
2310 <inkscape:perspective
2311 id="perspective5187"
2312 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2313 inkscape:vp_z="1 : 0.5 : 1"
2314 inkscape:vp_y="0 : 1000 : 0"
2315 inkscape:vp_x="0 : 0.5 : 1"
2316 sodipodi:type="inkscape:persp3d" />
2317 <inkscape:perspective
2318 id="perspective5162"
2319 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2320 inkscape:vp_z="1 : 0.5 : 1"
2321 inkscape:vp_y="0 : 1000 : 0"
2322 inkscape:vp_x="0 : 0.5 : 1"
2323 sodipodi:type="inkscape:persp3d" />
2324 <inkscape:perspective
2325 id="perspective5137"
2326 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2327 inkscape:vp_z="1 : 0.5 : 1"
2328 inkscape:vp_y="0 : 1000 : 0"
2329 inkscape:vp_x="0 : 0.5 : 1"
2330 sodipodi:type="inkscape:persp3d" />
2331 <inkscape:perspective
2332 id="perspective5112"
2333 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2334 inkscape:vp_z="1 : 0.5 : 1"
2335 inkscape:vp_y="0 : 1000 : 0"
2336 inkscape:vp_x="0 : 0.5 : 1"
2337 sodipodi:type="inkscape:persp3d" />
2338 <inkscape:perspective
2339 id="perspective5087"
2340 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2341 inkscape:vp_z="1 : 0.5 : 1"
2342 inkscape:vp_y="0 : 1000 : 0"
2343 inkscape:vp_x="0 : 0.5 : 1"
2344 sodipodi:type="inkscape:persp3d" />
2345 <inkscape:perspective
2346 id="perspective5062"
2347 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2348 inkscape:vp_z="1 : 0.5 : 1"
2349 inkscape:vp_y="0 : 1000 : 0"
2350 inkscape:vp_x="0 : 0.5 : 1"
2351 sodipodi:type="inkscape:persp3d" />
2352 <inkscape:perspective
2353 id="perspective5037"
2354 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2355 inkscape:vp_z="1 : 0.5 : 1"
2356 inkscape:vp_y="0 : 1000 : 0"
2357 inkscape:vp_x="0 : 0.5 : 1"
2358 sodipodi:type="inkscape:persp3d" />
2359 <inkscape:perspective
2360 id="perspective5012"
2361 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2362 inkscape:vp_z="1 : 0.5 : 1"
2363 inkscape:vp_y="0 : 1000 : 0"
2364 inkscape:vp_x="0 : 0.5 : 1"
2365 sodipodi:type="inkscape:persp3d" />
2366 <inkscape:perspective
2367 id="perspective4987"
2368 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2369 inkscape:vp_z="1 : 0.5 : 1"
2370 inkscape:vp_y="0 : 1000 : 0"
2371 inkscape:vp_x="0 : 0.5 : 1"
2372 sodipodi:type="inkscape:persp3d" />
2373 <inkscape:perspective
2374 id="perspective4962"
2375 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2376 inkscape:vp_z="1 : 0.5 : 1"
2377 inkscape:vp_y="0 : 1000 : 0"
2378 inkscape:vp_x="0 : 0.5 : 1"
2379 sodipodi:type="inkscape:persp3d" />
2380 <inkscape:perspective
2381 id="perspective4931"
2382 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2383 inkscape:vp_z="1 : 0.5 : 1"
2384 inkscape:vp_y="0 : 1000 : 0"
2385 inkscape:vp_x="0 : 0.5 : 1"
2386 sodipodi:type="inkscape:persp3d" />
2387 <inkscape:perspective
2388 id="perspective4873-2"
2389 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2390 inkscape:vp_z="1 : 0.5 : 1"
2391 inkscape:vp_y="0 : 1000 : 0"
2392 inkscape:vp_x="0 : 0.5 : 1"
2393 sodipodi:type="inkscape:persp3d" />
2394 <inkscape:perspective
2395 id="perspective4873-8"
2396 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2397 inkscape:vp_z="1 : 0.5 : 1"
2398 inkscape:vp_y="0 : 1000 : 0"
2399 inkscape:vp_x="0 : 0.5 : 1"
2400 sodipodi:type="inkscape:persp3d" />
2401 <inkscape:perspective
2402 id="perspective4873-7"
2403 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2404 inkscape:vp_z="1 : 0.5 : 1"
2405 inkscape:vp_y="0 : 1000 : 0"
2406 inkscape:vp_x="0 : 0.5 : 1"
2407 sodipodi:type="inkscape:persp3d" />
2408 <inkscape:perspective
2409 id="perspective4873"
2410 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2411 inkscape:vp_z="1 : 0.5 : 1"
2412 inkscape:vp_y="0 : 1000 : 0"
2413 inkscape:vp_x="0 : 0.5 : 1"
2414 sodipodi:type="inkscape:persp3d" />
2415 <inkscape:perspective
2416 id="perspective4839"
2417 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2418 inkscape:vp_z="1 : 0.5 : 1"
2419 inkscape:vp_y="0 : 1000 : 0"
2420 inkscape:vp_x="0 : 0.5 : 1"
2421 sodipodi:type="inkscape:persp3d" />
2422 <marker
2423 style="overflow:visible"
2424 id="marker4806"
2425 refX="0"
2426 refY="0"
2427 orient="auto"
2428 inkscape:stockid="Arrow1Mend">
2429 <path
2430 transform="matrix(-0.4,0,0,-0.4,-4,0)"
2431 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2432 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2433 id="path4808" />
2434 </marker>
2435 <marker
2436 style="overflow:visible"
2437 id="Arrow1Mend-254"
2438 refX="0"
2439 refY="0"
2440 orient="auto"
2441 inkscape:stockid="Arrow1Mend">
2442 <path
2443 transform="matrix(-0.4,0,0,-0.4,-4,0)"
2444 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2445 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2446 id="path3429-27" />
2447 </marker>
2448 <inkscape:perspective
2449 id="perspective4800"
2450 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2451 inkscape:vp_z="1 : 0.5 : 1"
2452 inkscape:vp_y="0 : 1000 : 0"
2453 inkscape:vp_x="0 : 0.5 : 1"
2454 sodipodi:type="inkscape:persp3d" />
2455 <marker
2456 style="overflow:visible"
2457 id="Arrow1Mend-84"
2458 refX="0"
2459 refY="0"
2460 orient="auto"
2461 inkscape:stockid="Arrow1Mend">
2462 <path
2463 transform="matrix(-0.4,0,0,-0.4,-4,0)"
2464 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2465 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2466 id="path3429-08" />
2467 </marker>
2468 <inkscape:perspective
2469 id="perspective4772"
2470 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2471 inkscape:vp_z="1 : 0.5 : 1"
2472 inkscape:vp_y="0 : 1000 : 0"
2473 inkscape:vp_x="0 : 0.5 : 1"
2474 sodipodi:type="inkscape:persp3d" />
2475 <inkscape:perspective
2476 id="perspective4720"
2477 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2478 inkscape:vp_z="1 : 0.5 : 1"
2479 inkscape:vp_y="0 : 1000 : 0"
2480 inkscape:vp_x="0 : 0.5 : 1"
2481 sodipodi:type="inkscape:persp3d" />
2482 <inkscape:perspective
2483 id="perspective4686"
2484 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2485 inkscape:vp_z="1 : 0.5 : 1"
2486 inkscape:vp_y="0 : 1000 : 0"
2487 inkscape:vp_x="0 : 0.5 : 1"
2488 sodipodi:type="inkscape:persp3d" />
2489 <inkscape:perspective
2490 id="perspective4601"
2491 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2492 inkscape:vp_z="1 : 0.5 : 1"
2493 inkscape:vp_y="0 : 1000 : 0"
2494 inkscape:vp_x="0 : 0.5 : 1"
2495 sodipodi:type="inkscape:persp3d" />
2496 <inkscape:perspective
2497 id="perspective3266"
2498 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2499 inkscape:vp_z="1 : 0.5 : 1"
2500 inkscape:vp_y="0 : 1000 : 0"
2501 inkscape:vp_x="0 : 0.5 : 1"
2502 sodipodi:type="inkscape:persp3d" />
2503 <marker
2504 style="overflow:visible"
2505 id="Arrow1Mend-03"
2506 refX="0"
2507 refY="0"
2508 orient="auto"
2509 inkscape:stockid="Arrow1Mend">
2510 <path
2511 transform="matrix(-0.4,0,0,-0.4,-4,0)"
2512 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2513 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2514 id="path3429-09" />
2515 </marker>
2516 <inkscape:perspective
2517 id="perspective3202"
2518 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2519 inkscape:vp_z="1 : 0.5 : 1"
2520 inkscape:vp_y="0 : 1000 : 0"
2521 inkscape:vp_x="0 : 0.5 : 1"
2522 sodipodi:type="inkscape:persp3d" />
2523 <marker
2524 style="overflow:visible"
2525 id="Arrow1Mend-60"
2526 refX="0"
2527 refY="0"
2528 orient="auto"
2529 inkscape:stockid="Arrow1Mend">
2530 <path
2531 transform="matrix(-0.4,0,0,-0.4,-4,0)"
2532 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2533 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2534 id="path3429-4" />
2535 </marker>
2536 <inkscape:perspective
2537 id="perspective3174"
2538 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2539 inkscape:vp_z="1 : 0.5 : 1"
2540 inkscape:vp_y="0 : 1000 : 0"
2541 inkscape:vp_x="0 : 0.5 : 1"
2542 sodipodi:type="inkscape:persp3d" />
2543 <marker
2544 style="overflow:visible"
2545 id="Arrow1Mend-3"
2546 refX="0"
2547 refY="0"
2548 orient="auto"
2549 inkscape:stockid="Arrow1Mend">
2550 <path
2551 transform="matrix(-0.4,0,0,-0.4,-4,0)"
2552 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2553 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2554 id="path3429-3" />
2555 </marker>
2556 <inkscape:perspective
2557 id="perspective3135-3"
2558 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2559 inkscape:vp_z="1 : 0.5 : 1"
2560 inkscape:vp_y="0 : 1000 : 0"
2561 inkscape:vp_x="0 : 0.5 : 1"
2562 sodipodi:type="inkscape:persp3d" />
2563 <marker
2564 style="overflow:visible"
2565 id="Arrow1Mend-8"
2566 refX="0"
2567 refY="0"
2568 orient="auto"
2569 inkscape:stockid="Arrow1Mend">
2570 <path
2571 transform="matrix(-0.4,0,0,-0.4,-4,0)"
2572 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2573 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2574 id="path3429-96-1" />
2575 </marker>
2576 <inkscape:perspective
2577 id="perspective3135"
2578 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2579 inkscape:vp_z="1 : 0.5 : 1"
2580 inkscape:vp_y="0 : 1000 : 0"
2581 inkscape:vp_x="0 : 0.5 : 1"
2582 sodipodi:type="inkscape:persp3d" />
2583 <inkscape:perspective
2584 id="perspective9935-9-4"
2585 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2586 inkscape:vp_z="1 : 0.5 : 1"
2587 inkscape:vp_y="0 : 1000 : 0"
2588 inkscape:vp_x="0 : 0.5 : 1"
2589 sodipodi:type="inkscape:persp3d" />
2590 <inkscape:perspective
2591 id="perspective9935-7"
2592 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2593 inkscape:vp_z="1 : 0.5 : 1"
2594 inkscape:vp_y="0 : 1000 : 0"
2595 inkscape:vp_x="0 : 0.5 : 1"
2596 sodipodi:type="inkscape:persp3d" />
2597 <inkscape:perspective
2598 id="perspective9910-5"
2599 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2600 inkscape:vp_z="1 : 0.5 : 1"
2601 inkscape:vp_y="0 : 1000 : 0"
2602 inkscape:vp_x="0 : 0.5 : 1"
2603 sodipodi:type="inkscape:persp3d" />
2604 <inkscape:perspective
2605 id="perspective7524-6-9"
2606 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2607 inkscape:vp_z="1 : 0.5 : 1"
2608 inkscape:vp_y="0 : 1000 : 0"
2609 inkscape:vp_x="0 : 0.5 : 1"
2610 sodipodi:type="inkscape:persp3d" />
2611 <inkscape:perspective
2612 id="perspective7524-1"
2613 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2614 inkscape:vp_z="1 : 0.5 : 1"
2615 inkscape:vp_y="0 : 1000 : 0"
2616 inkscape:vp_x="0 : 0.5 : 1"
2617 sodipodi:type="inkscape:persp3d" />
2618 <inkscape:perspective
2619 id="perspective6442-94"
2620 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2621 inkscape:vp_z="1 : 0.5 : 1"
2622 inkscape:vp_y="0 : 1000 : 0"
2623 inkscape:vp_x="0 : 0.5 : 1"
2624 sodipodi:type="inkscape:persp3d" />
2625 <inkscape:perspective
2626 id="perspective5898-4"
2627 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2628 inkscape:vp_z="1 : 0.5 : 1"
2629 inkscape:vp_y="0 : 1000 : 0"
2630 inkscape:vp_x="0 : 0.5 : 1"
2631 sodipodi:type="inkscape:persp3d" />
2632 <inkscape:perspective
2633 id="perspective5849-4-3"
2634 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2635 inkscape:vp_z="1 : 0.5 : 1"
2636 inkscape:vp_y="0 : 1000 : 0"
2637 inkscape:vp_x="0 : 0.5 : 1"
2638 sodipodi:type="inkscape:persp3d" />
2639 <inkscape:perspective
2640 id="perspective5849-3-1"
2641 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2642 inkscape:vp_z="1 : 0.5 : 1"
2643 inkscape:vp_y="0 : 1000 : 0"
2644 inkscape:vp_x="0 : 0.5 : 1"
2645 sodipodi:type="inkscape:persp3d" />
2646 <inkscape:perspective
2647 id="perspective5849-8-2"
2648 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2649 inkscape:vp_z="1 : 0.5 : 1"
2650 inkscape:vp_y="0 : 1000 : 0"
2651 inkscape:vp_x="0 : 0.5 : 1"
2652 sodipodi:type="inkscape:persp3d" />
2653 <inkscape:perspective
2654 id="perspective5849-7"
2655 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2656 inkscape:vp_z="1 : 0.5 : 1"
2657 inkscape:vp_y="0 : 1000 : 0"
2658 inkscape:vp_x="0 : 0.5 : 1"
2659 sodipodi:type="inkscape:persp3d" />
2660 <inkscape:perspective
2661 id="perspective5818-0-32"
2662 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2663 inkscape:vp_z="1 : 0.5 : 1"
2664 inkscape:vp_y="0 : 1000 : 0"
2665 inkscape:vp_x="0 : 0.5 : 1"
2666 sodipodi:type="inkscape:persp3d" />
2667 <inkscape:perspective
2668 id="perspective5818-7"
2669 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2670 inkscape:vp_z="1 : 0.5 : 1"
2671 inkscape:vp_y="0 : 1000 : 0"
2672 inkscape:vp_x="0 : 0.5 : 1"
2673 sodipodi:type="inkscape:persp3d" />
2674 <marker
2675 style="overflow:visible"
2676 id="Arrow1Mend-989-0"
2677 refX="0"
2678 refY="0"
2679 orient="auto"
2680 inkscape:stockid="Arrow1Mend">
2681 <path
2682 transform="matrix(-0.4,0,0,-0.4,-4,0)"
2683 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2684 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2685 id="path3429-65-5" />
2686 </marker>
2687 <inkscape:perspective
2688 id="perspective5784-5"
2689 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2690 inkscape:vp_z="1 : 0.5 : 1"
2691 inkscape:vp_y="0 : 1000 : 0"
2692 inkscape:vp_x="0 : 0.5 : 1"
2693 sodipodi:type="inkscape:persp3d" />
2694 <inkscape:perspective
2695 id="perspective5744-2-4"
2696 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2697 inkscape:vp_z="1 : 0.5 : 1"
2698 inkscape:vp_y="0 : 1000 : 0"
2699 inkscape:vp_x="0 : 0.5 : 1"
2700 sodipodi:type="inkscape:persp3d" />
2701 <inkscape:perspective
2702 id="perspective5744-7-2"
2703 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2704 inkscape:vp_z="1 : 0.5 : 1"
2705 inkscape:vp_y="0 : 1000 : 0"
2706 inkscape:vp_x="0 : 0.5 : 1"
2707 sodipodi:type="inkscape:persp3d" />
2708 <inkscape:perspective
2709 id="perspective5744-5"
2710 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2711 inkscape:vp_z="1 : 0.5 : 1"
2712 inkscape:vp_y="0 : 1000 : 0"
2713 inkscape:vp_x="0 : 0.5 : 1"
2714 sodipodi:type="inkscape:persp3d" />
2715 <inkscape:perspective
2716 id="perspective5719-7"
2717 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2718 inkscape:vp_z="1 : 0.5 : 1"
2719 inkscape:vp_y="0 : 1000 : 0"
2720 inkscape:vp_x="0 : 0.5 : 1"
2721 sodipodi:type="inkscape:persp3d" />
2722 <inkscape:perspective
2723 id="perspective5694-8"
2724 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2725 inkscape:vp_z="1 : 0.5 : 1"
2726 inkscape:vp_y="0 : 1000 : 0"
2727 inkscape:vp_x="0 : 0.5 : 1"
2728 sodipodi:type="inkscape:persp3d" />
2729 <inkscape:perspective
2730 id="perspective5669-3"
2731 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2732 inkscape:vp_z="1 : 0.5 : 1"
2733 inkscape:vp_y="0 : 1000 : 0"
2734 inkscape:vp_x="0 : 0.5 : 1"
2735 sodipodi:type="inkscape:persp3d" />
2736 <inkscape:perspective
2737 id="perspective5644-8"
2738 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2739 inkscape:vp_z="1 : 0.5 : 1"
2740 inkscape:vp_y="0 : 1000 : 0"
2741 inkscape:vp_x="0 : 0.5 : 1"
2742 sodipodi:type="inkscape:persp3d" />
2743 <inkscape:perspective
2744 id="perspective5601-8"
2745 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2746 inkscape:vp_z="1 : 0.5 : 1"
2747 inkscape:vp_y="0 : 1000 : 0"
2748 inkscape:vp_x="0 : 0.5 : 1"
2749 sodipodi:type="inkscape:persp3d" />
2750 <inkscape:perspective
2751 id="perspective5522-3-4"
2752 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2753 inkscape:vp_z="1 : 0.5 : 1"
2754 inkscape:vp_y="0 : 1000 : 0"
2755 inkscape:vp_x="0 : 0.5 : 1"
2756 sodipodi:type="inkscape:persp3d" />
2757 <inkscape:perspective
2758 id="perspective5522-8"
2759 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2760 inkscape:vp_z="1 : 0.5 : 1"
2761 inkscape:vp_y="0 : 1000 : 0"
2762 inkscape:vp_x="0 : 0.5 : 1"
2763 sodipodi:type="inkscape:persp3d" />
2764 <inkscape:perspective
2765 id="perspective5497-6"
2766 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2767 inkscape:vp_z="1 : 0.5 : 1"
2768 inkscape:vp_y="0 : 1000 : 0"
2769 inkscape:vp_x="0 : 0.5 : 1"
2770 sodipodi:type="inkscape:persp3d" />
2771 <inkscape:perspective
2772 id="perspective5472-5"
2773 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2774 inkscape:vp_z="1 : 0.5 : 1"
2775 inkscape:vp_y="0 : 1000 : 0"
2776 inkscape:vp_x="0 : 0.5 : 1"
2777 sodipodi:type="inkscape:persp3d" />
2778 <inkscape:perspective
2779 id="perspective5447-6"
2780 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2781 inkscape:vp_z="1 : 0.5 : 1"
2782 inkscape:vp_y="0 : 1000 : 0"
2783 inkscape:vp_x="0 : 0.5 : 1"
2784 sodipodi:type="inkscape:persp3d" />
2785 <inkscape:perspective
2786 id="perspective5422-5"
2787 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2788 inkscape:vp_z="1 : 0.5 : 1"
2789 inkscape:vp_y="0 : 1000 : 0"
2790 inkscape:vp_x="0 : 0.5 : 1"
2791 sodipodi:type="inkscape:persp3d" />
2792 <inkscape:perspective
2793 id="perspective5397-4"
2794 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2795 inkscape:vp_z="1 : 0.5 : 1"
2796 inkscape:vp_y="0 : 1000 : 0"
2797 inkscape:vp_x="0 : 0.5 : 1"
2798 sodipodi:type="inkscape:persp3d" />
2799 <inkscape:perspective
2800 id="perspective5372-8"
2801 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2802 inkscape:vp_z="1 : 0.5 : 1"
2803 inkscape:vp_y="0 : 1000 : 0"
2804 inkscape:vp_x="0 : 0.5 : 1"
2805 sodipodi:type="inkscape:persp3d" />
2806 <marker
2807 style="overflow:visible"
2808 id="Arrow1Mend-0-5"
2809 refX="0"
2810 refY="0"
2811 orient="auto"
2812 inkscape:stockid="Arrow1Mend">
2813 <path
2814 transform="matrix(-0.4,0,0,-0.4,-4,0)"
2815 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2816 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2817 id="path3429-0-8" />
2818 </marker>
2819 <inkscape:perspective
2820 id="perspective5318-0-1"
2821 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2822 inkscape:vp_z="1 : 0.5 : 1"
2823 inkscape:vp_y="0 : 1000 : 0"
2824 inkscape:vp_x="0 : 0.5 : 1"
2825 sodipodi:type="inkscape:persp3d" />
2826 <marker
2827 style="overflow:visible"
2828 id="Arrow1Mend-474-2"
2829 refX="0"
2830 refY="0"
2831 orient="auto"
2832 inkscape:stockid="Arrow1Mend">
2833 <path
2834 transform="matrix(-0.4,0,0,-0.4,-4,0)"
2835 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2836 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2837 id="path3429-77-7" />
2838 </marker>
2839 <inkscape:perspective
2840 id="perspective5318-6-6"
2841 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2842 inkscape:vp_z="1 : 0.5 : 1"
2843 inkscape:vp_y="0 : 1000 : 0"
2844 inkscape:vp_x="0 : 0.5 : 1"
2845 sodipodi:type="inkscape:persp3d" />
2846 <marker
2847 style="overflow:visible"
2848 id="Arrow1Mend-47-79"
2849 refX="0"
2850 refY="0"
2851 orient="auto"
2852 inkscape:stockid="Arrow1Mend">
2853 <path
2854 transform="matrix(-0.4,0,0,-0.4,-4,0)"
2855 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2856 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2857 id="path3429-83-7" />
2858 </marker>
2859 <inkscape:perspective
2860 id="perspective5318-7"
2861 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2862 inkscape:vp_z="1 : 0.5 : 1"
2863 inkscape:vp_y="0 : 1000 : 0"
2864 inkscape:vp_x="0 : 0.5 : 1"
2865 sodipodi:type="inkscape:persp3d" />
2866 <marker
2867 style="overflow:visible"
2868 id="Arrow1Mend-98-2"
2869 refX="0"
2870 refY="0"
2871 orient="auto"
2872 inkscape:stockid="Arrow1Mend">
2873 <path
2874 transform="matrix(-0.4,0,0,-0.4,-4,0)"
2875 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2876 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2877 id="path3429-9-1" />
2878 </marker>
2879 <inkscape:perspective
2880 id="perspective5291-9"
2881 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2882 inkscape:vp_z="1 : 0.5 : 1"
2883 inkscape:vp_y="0 : 1000 : 0"
2884 inkscape:vp_x="0 : 0.5 : 1"
2885 sodipodi:type="inkscape:persp3d" />
2886 <marker
2887 style="overflow:visible"
2888 id="Arrow1Mend1u-0-0"
2889 refX="0"
2890 refY="0"
2891 orient="auto"
2892 inkscape:stockid="Arrow1Mend1u">
2893 <path
2894 transform="matrix(-0.4,0,0,-0.4,-4,0)"
2895 style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2896 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2897 id="path5351-02-6" />
2898 </marker>
2899 <inkscape:perspective
2900 id="perspective5263-7"
2901 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2902 inkscape:vp_z="1 : 0.5 : 1"
2903 inkscape:vp_y="0 : 1000 : 0"
2904 inkscape:vp_x="0 : 0.5 : 1"
2905 sodipodi:type="inkscape:persp3d" />
2906 <marker
2907 style="overflow:visible"
2908 id="marker5203-0"
2909 refX="0"
2910 refY="0"
2911 orient="auto"
2912 inkscape:stockid="Arrow1Mend1u6">
2913 <path
2914 transform="matrix(-0.4,0,0,-0.4,-4,0)"
2915 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2916 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2917 id="path5205-3" />
2918 </marker>
2919 <marker
2920 style="overflow:visible"
2921 id="Arrow1Mend1u6-5-8"
2922 refX="0"
2923 refY="0"
2924 orient="auto"
2925 inkscape:stockid="Arrow1Mend1u6">
2926 <path
2927 transform="matrix(-0.4,0,0,-0.4,-4,0)"
2928 style="fill:#00ffec;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2929 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2930 id="path5603-7-8" />
2931 </marker>
2932 <inkscape:perspective
2933 id="perspective5197-9"
2934 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2935 inkscape:vp_z="1 : 0.5 : 1"
2936 inkscape:vp_y="0 : 1000 : 0"
2937 inkscape:vp_x="0 : 0.5 : 1"
2938 sodipodi:type="inkscape:persp3d" />
2939 <inkscape:perspective
2940 id="perspective5172-08"
2941 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2942 inkscape:vp_z="1 : 0.5 : 1"
2943 inkscape:vp_y="0 : 1000 : 0"
2944 inkscape:vp_x="0 : 0.5 : 1"
2945 sodipodi:type="inkscape:persp3d" />
2946 <inkscape:perspective
2947 id="perspective5147-9"
2948 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2949 inkscape:vp_z="1 : 0.5 : 1"
2950 inkscape:vp_y="0 : 1000 : 0"
2951 inkscape:vp_x="0 : 0.5 : 1"
2952 sodipodi:type="inkscape:persp3d" />
2953 <inkscape:perspective
2954 id="perspective5125-1"
2955 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2956 inkscape:vp_z="1 : 0.5 : 1"
2957 inkscape:vp_y="0 : 1000 : 0"
2958 inkscape:vp_x="0 : 0.5 : 1"
2959 sodipodi:type="inkscape:persp3d" />
2960 <marker
2961 style="overflow:visible"
2962 id="Arrow1Mend1u-9-9"
2963 refX="0"
2964 refY="0"
2965 orient="auto"
2966 inkscape:stockid="Arrow1Mend1u">
2967 <path
2968 transform="matrix(-0.4,0,0,-0.4,-4,0)"
2969 style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
2970 d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
2971 id="path5351-7-1" />
2972 </marker>
2973 <inkscape:perspective
2974 id="perspective4608-6"
2975 inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
2976 inkscape:vp_z="1 : 0.5 : 1"
2977 inkscape:vp_y="0 : 1000 : 0"
2978 inkscape:vp_x="0 : 0.5 : 1"
2979 sodipodi:type="inkscape:persp3d" />
2980 <marker
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches