AsposeDiagramCloud 18.10 → 20.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/AsposeDiagramCloud.gemspec +46 -0
- data/Gemfile +7 -0
- data/README.md +74 -0
- data/Rakefile +8 -0
- data/git_push.sh +55 -0
- data/lib/AsposeDiagramCloud.rb +85 -0
- data/lib/AsposeDiagramCloud/api/diagram_api.rb +768 -0
- data/lib/AsposeDiagramCloud/api/o_auth_api.rb +93 -0
- data/lib/AsposeDiagramCloud/api/storage_api.rb +905 -0
- data/lib/AsposeDiagramCloud/api_client.rb +391 -0
- data/lib/AsposeDiagramCloud/api_error.rb +38 -0
- data/lib/AsposeDiagramCloud/configuration.rb +209 -0
- data/lib/AsposeDiagramCloud/models/access_token_response.rb +251 -0
- data/lib/AsposeDiagramCloud/models/api_response_of_list_of_page_data.rb +190 -0
- data/lib/AsposeDiagramCloud/models/create_new_response.rb +188 -0
- data/lib/AsposeDiagramCloud/models/diagram_save_options.rb +244 -0
- data/lib/AsposeDiagramCloud/models/disc_usage.rb +209 -0
- data/lib/AsposeDiagramCloud/models/draw_shape_data.rb +262 -0
- data/lib/AsposeDiagramCloud/models/ellipse_data.rb +262 -0
- data/lib/AsposeDiagramCloud/models/error.rb +219 -0
- data/lib/AsposeDiagramCloud/models/error_details.rb +204 -0
- data/lib/AsposeDiagramCloud/models/file_version.rb +264 -0
- data/lib/AsposeDiagramCloud/models/file_versions.rb +191 -0
- data/lib/AsposeDiagramCloud/models/files_list.rb +191 -0
- data/lib/AsposeDiagramCloud/models/files_upload_result.rb +203 -0
- data/lib/AsposeDiagramCloud/models/html_save_options.rb +330 -0
- data/lib/AsposeDiagramCloud/models/image_save_options.rb +492 -0
- data/lib/AsposeDiagramCloud/models/line_data.rb +273 -0
- data/lib/AsposeDiagramCloud/models/modify_response.rb +202 -0
- data/lib/AsposeDiagramCloud/models/object_exist.rb +209 -0
- data/lib/AsposeDiagramCloud/models/page_data.rb +216 -0
- data/lib/AsposeDiagramCloud/models/page_setting.rb +219 -0
- data/lib/AsposeDiagramCloud/models/page_size.rb +221 -0
- data/lib/AsposeDiagramCloud/models/pdf_digital_signature_details.rb +248 -0
- data/lib/AsposeDiagramCloud/models/pdf_encryption_details.rb +260 -0
- data/lib/AsposeDiagramCloud/models/pdf_save_options.rb +408 -0
- data/lib/AsposeDiagramCloud/models/point_f.rb +221 -0
- data/lib/AsposeDiagramCloud/models/polyline_data.rb +273 -0
- data/lib/AsposeDiagramCloud/models/rectangle_f.rb +333 -0
- data/lib/AsposeDiagramCloud/models/rendering_save_options.rb +276 -0
- data/lib/AsposeDiagramCloud/models/saa_spose_response.rb +179 -0
- data/lib/AsposeDiagramCloud/models/save_as_response.rb +208 -0
- data/lib/AsposeDiagramCloud/models/save_options_model.rb +235 -0
- data/lib/AsposeDiagramCloud/models/save_options_request.rb +206 -0
- data/lib/AsposeDiagramCloud/models/shape_data.rb +221 -0
- data/lib/AsposeDiagramCloud/models/shape_style_data.rb +189 -0
- data/lib/AsposeDiagramCloud/models/storage_exist.rb +194 -0
- data/lib/AsposeDiagramCloud/models/storage_file.rb +239 -0
- data/lib/AsposeDiagramCloud/models/svg_save_options.rb +321 -0
- data/lib/AsposeDiagramCloud/models/swf_save_options.rb +271 -0
- data/lib/AsposeDiagramCloud/models/text_style_data.rb +253 -0
- data/lib/AsposeDiagramCloud/models/upload_response.rb +188 -0
- data/lib/AsposeDiagramCloud/models/xaml_save_options.rb +262 -0
- data/lib/AsposeDiagramCloud/models/xps_save_options.rb +271 -0
- data/lib/AsposeDiagramCloud/version.rb +15 -0
- data/spec/_spec.rb +308 -0
- data/spec/api/test_convert_spec.rb +308 -0
- data/spec/api/test_drawing_spec.rb +136 -0
- data/spec/api/test_page_spec.rb +92 -0
- data/spec/api_client_spec.rb +226 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/spec_helper.rb +120 -0
- data/testData/FileUpload.vdx +437 -0
- metadata +118 -49
@@ -0,0 +1,42 @@
|
|
1
|
+
=begin
|
2
|
+
#Aspose.Diagram Cloud API Reference
|
3
|
+
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
5
|
+
|
6
|
+
OpenAPI spec version: 3.0
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.3.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
|
15
|
+
describe AsposeDiagramCloud::Configuration do
|
16
|
+
let(:config) { AsposeDiagramCloud::Configuration.default }
|
17
|
+
|
18
|
+
before(:each) do
|
19
|
+
# uncomment below to setup host and base_path
|
20
|
+
#require 'URI'
|
21
|
+
#uri = URI.parse("https://api.aspose.cloud/v3.0")
|
22
|
+
#AsposeDiagramCloud.configure do |c|
|
23
|
+
# c.host = uri.host
|
24
|
+
# c.base_path = uri.path
|
25
|
+
#end
|
26
|
+
end
|
27
|
+
|
28
|
+
describe '#base_url' do
|
29
|
+
it 'should have the default value' do
|
30
|
+
# uncomment below to test default value of the base path
|
31
|
+
#expect(config.base_url).to eq("https://api.aspose.cloud/v3.0")
|
32
|
+
end
|
33
|
+
|
34
|
+
it 'should remove trailing slashes' do
|
35
|
+
[nil, '', '/', '//'].each do |base_path|
|
36
|
+
config.base_path = base_path
|
37
|
+
# uncomment below to test trailing slashes
|
38
|
+
#expect(config.base_url).to eq("https://api.aspose.cloud/v3.0")
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,120 @@
|
|
1
|
+
=begin
|
2
|
+
#Aspose.Diagram Cloud API Reference
|
3
|
+
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
5
|
+
|
6
|
+
OpenAPI spec version: 3.0
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.3.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
# load the gem
|
14
|
+
require 'AsposeDiagramCloud'
|
15
|
+
|
16
|
+
$grant_type = 'client_credentials' # replace NULL with a proper value
|
17
|
+
$client_id = 'yourClientId' # replace NULL with a proper value
|
18
|
+
$client_secret = 'yourClientSecret' # replace NULL with a proper value
|
19
|
+
$access_token
|
20
|
+
$storageTestFOLDER = "SDKTests/Ruby"
|
21
|
+
$localtestFile = "testData/FileUpload.vdx"
|
22
|
+
$diagramApi = AsposeDiagramCloud::DiagramApi.new($grant_type,$client_id,$client_secret)
|
23
|
+
$storageApi = AsposeDiagramCloud::StorageApi.new($grant_type,$client_id,$client_secret)
|
24
|
+
|
25
|
+
# The following was generated by the `rspec --init` command. Conventionally, all
|
26
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
27
|
+
# The generated `.rspec` file contains `--require spec_helper` which will cause
|
28
|
+
# this file to always be loaded, without a need to explicitly require it in any
|
29
|
+
# files.
|
30
|
+
#
|
31
|
+
# Given that it is always loaded, you are encouraged to keep this file as
|
32
|
+
# light-weight as possible. Requiring heavyweight dependencies from this file
|
33
|
+
# will add to the boot time of your test suite on EVERY test run, even for an
|
34
|
+
# individual file that may not need all of that loaded. Instead, consider making
|
35
|
+
# a separate helper file that requires the additional dependencies and performs
|
36
|
+
# the additional setup, and require it from the spec files that actually need
|
37
|
+
# it.
|
38
|
+
#
|
39
|
+
# The `.rspec` file also contains a few flags that are not defaults but that
|
40
|
+
# users commonly want.
|
41
|
+
#
|
42
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
43
|
+
RSpec.configure do |config|
|
44
|
+
# rspec-expectations config goes here. You can use an alternate
|
45
|
+
# assertion/expectation library such as wrong or the stdlib/minitest
|
46
|
+
# assertions if you prefer.
|
47
|
+
config.expect_with :rspec do |expectations|
|
48
|
+
# This option will default to `true` in RSpec 4. It makes the `description`
|
49
|
+
# and `failure_message` of custom matchers include text for helper methods
|
50
|
+
# defined using `chain`, e.g.:
|
51
|
+
# be_bigger_than(2).and_smaller_than(4).description
|
52
|
+
# # => "be bigger than 2 and smaller than 4"
|
53
|
+
# ...rather than:
|
54
|
+
# # => "be bigger than 2"
|
55
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
56
|
+
end
|
57
|
+
|
58
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
59
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
60
|
+
config.mock_with :rspec do |mocks|
|
61
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
62
|
+
# a real object. This is generally recommended, and will default to
|
63
|
+
# `true` in RSpec 4.
|
64
|
+
mocks.verify_partial_doubles = true
|
65
|
+
end
|
66
|
+
|
67
|
+
# The settings below are suggested to provide a good initial experience
|
68
|
+
# with RSpec, but feel free to customize to your heart's content.
|
69
|
+
=begin
|
70
|
+
# These two settings work together to allow you to limit a spec run
|
71
|
+
# to individual examples or groups you care about by tagging them with
|
72
|
+
# `:focus` metadata. When nothing is tagged with `:focus`, all examples
|
73
|
+
# get run.
|
74
|
+
config.filter_run :focus
|
75
|
+
config.run_all_when_everything_filtered = true
|
76
|
+
|
77
|
+
# Allows RSpec to persist some state between runs in order to support
|
78
|
+
# the `--only-failures` and `--next-failure` CLI options. We recommend
|
79
|
+
# you configure your source control system to ignore this file.
|
80
|
+
config.example_status_persistence_file_path = "spec/examples.txt"
|
81
|
+
|
82
|
+
# Limits the available syntax to the non-monkey patched syntax that is
|
83
|
+
# recommended. For more details, see:
|
84
|
+
# - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
|
85
|
+
# - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
86
|
+
# - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
|
87
|
+
config.disable_monkey_patching!
|
88
|
+
|
89
|
+
# This setting enables warnings. It's recommended, but in some cases may
|
90
|
+
# be too noisy due to issues in dependencies.
|
91
|
+
config.warnings = true
|
92
|
+
|
93
|
+
# Many RSpec users commonly either run the entire suite or an individual
|
94
|
+
# file, and it's useful to allow more verbose output when running an
|
95
|
+
# individual spec file.
|
96
|
+
if config.files_to_run.one?
|
97
|
+
# Use the documentation formatter for detailed output,
|
98
|
+
# unless a formatter has already been configured
|
99
|
+
# (e.g. via a command-line flag).
|
100
|
+
config.default_formatter = 'doc'
|
101
|
+
end
|
102
|
+
|
103
|
+
# Print the 10 slowest examples and example groups at the
|
104
|
+
# end of the spec run, to help surface which specs are running
|
105
|
+
# particularly slow.
|
106
|
+
config.profile_examples = 10
|
107
|
+
|
108
|
+
# Run specs in random order to surface order dependencies. If you find an
|
109
|
+
# order dependency and want to debug it, you can fix the order by providing
|
110
|
+
# the seed, which is printed after each run.
|
111
|
+
# --seed 1234
|
112
|
+
config.order = :random
|
113
|
+
|
114
|
+
# Seed global randomization in this process using the `--seed` CLI option.
|
115
|
+
# Setting this allows you to use `--seed` to deterministically reproduce
|
116
|
+
# test failures related to randomization by passing the same `--seed` value
|
117
|
+
# as the one that triggered the failure.
|
118
|
+
Kernel.srand config.seed
|
119
|
+
=end
|
120
|
+
end
|
@@ -0,0 +1,437 @@
|
|
1
|
+
<?xml version='1.0' encoding='utf-8' ?>
|
2
|
+
<VisioDocument key='A8441F7DC2D286DED56D1FBB9C49A397A8AEB1A4C9653AB05E1EBF6CCC46CB2D720657784A59AFD5966E8EDDDFCB5554E1666ABE101B918D76D34C97D474FC39' start='190' metric='0' DocLangID='2052' buildnum='6022' version='14.0' xml:space='preserve' xmlns:vx='http://schemas.microsoft.com/visio/2006/extension' xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension' xmlns='http://schemas.microsoft.com/visio/2003/core'><DocumentProperties><Creator>Dev</Creator><Template>C:\Program Files\Microsoft Office\Office14\visio content\2052\BASICD_M.VST</Template><BuildNumberCreated>939530118</BuildNumberCreated><BuildNumberEdited>939530118</BuildNumberEdited><PreviewPicture Size='15832'>
|
3
|
+
AQAAAGwAAACPAAAACQAAAA4CAADdAQAAAAAAAAAAAADQVwAAYHEAACBFTUYAAAEA2D0AAB4CAAAFA
|
4
|
+
AAAAAAAAAAAAAAAAAAAgAcAADgEAAAPAgAAKAEAAAAAAAAAAAAAAAAAAJgKCABAhAQARgAAACwAAA
|
5
|
+
AgAAAARU1GKwFAAQAcAAAAEAAAAAIQwNsBAAAAYAAAAGAAAABGAAAAlAAAAIgAAABFTUYrMEACABA
|
6
|
+
AAAAEAAAAAACAPx9ABAAMAAAAAAAAAB5ABQAMAAAAAAAAAB1AAAAUAAAACAAAAAIAAAAiBAAAHkAG
|
7
|
+
AAwAAAAAAAAACEAAAywAAAAgAAAAAhDA2wQAAAAAQAAAmwCFADIBhQCbABQAmwCFAAABAYEUQACAE
|
8
|
+
AAAAAQAAADNzc1/IQAAAAgAAABiAAAADAAAAAEAAAAnAAAAGAAAAAEAAAAAAAAAzc3NAAAAAAAlAA
|
9
|
+
AADAAAAAEAAABMAAAAZAAAAJsAAAAUAAAAMgEAAIUAAACbAAAAFAAAAJgAAAByAAAASQBaAAAAAAA
|
10
|
+
AAAAAAACAPwAAAAAAAAAAAACAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAwA
|
11
|
+
AAAJAAAAGAAAAAwAAAD///8AJAAAACQAAAAAAIA9AAAAAAAAAAAAAIA9AAAAAAAAAAACAAAAXgAAA
|
12
|
+
HQAAAACAAAAAAAAACQAAAAwAAAAVAAAACAAAAAAAAAAKAAAAAgAAAAIAAAAAQABAAAAAAAgAAAAAA
|
13
|
+
AAAAAAAAAAAAAAAAAAAAAAAAD///8AqgAAAFUAAACqAAAAVQAAAKoAAABVAAAAqgAAAFUAAAAlAAA
|
14
|
+
ADAAAAAIAAAATAAAADAAAAAEAAAAlAAAADAAAAAgAAIBWAAAALAAAAJsAAAAUAAAAMgEAAIUAAAAE
|
15
|
+
AAAAsAlQCCATUAiwCUABsAlQCCUAAAAMAAAABwAAgBMAAAAMAAAAAQAAACUAAAAMAAAAAQAAACQAA
|
16
|
+
AAkAAAAAACAQQAAAAAAAAAAAACAQQAAAAAAAAAAAgAAABgAAAAMAAAAAAAAABQAAAAMAAAADQAAAE
|
17
|
+
wAAABkAAAAmwAAABQAAAAyAQAAhQAAAJsAAAAUAAAAmAAAAHIAAABJAFoAAAAAAAAAAAAAAIA/AAA
|
18
|
+
AAAAAAAAAAIA/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAADAAAAAAAAIAiAAAA
|
19
|
+
DAAAAP////9GAAAAKAAAABwAAABFTUYrHkAFAAwAAAAAAAAABEAAAAwAAAAAAAAARgAAAJgAAACMA
|
20
|
+
AAARU1GKzNAAAQMAAAAAAAAAAhAAQJAAAAANAAAAAIQwNsAAAAAzgAAAAAAAACrqqo+AgAAAAIAAA
|
21
|
+
ACAAAAAgAAAAAAAAACEMDbAAAAAM3NzX8IQAIDLAAAACAAAAACEMDbBAAAAABAAACbAIUAMgGFAJs
|
22
|
+
AFACbAIUAAAEBARVAAgAQAAAABAAAAAEAAAAhAAAACAAAAGIAAAAMAAAAAQAAACEAAAAIAAAAOwAA
|
23
|
+
AAgAAAATAAAADAAAAAEAAABbAAAAeAEAAAAAAAAAAAAA//////////8CAAAAVAAAAAUAAABPAAAAm
|
24
|
+
gATAJoAhgA0AYYANAETAJoAEwCbABUAmwCFADEBhAAwAYMALgGCACwBgAAqAX8AKAF9ACYBfAAkAX
|
25
|
+
oAIgF5ACABdwAeAXYAHAF0ABoBcwAYAXEAFgFwABQBbgASAW0AEAFrAA4BagAMAWgACgFnAAgBZQA
|
26
|
+
GAWQABAFiAAIBYQAAAV8A/gBeAPwAXAD6AFsA+ABZAPYAWAD0AFYA8gBVAPAAUwDuAFIA7ABQAOoA
|
27
|
+
TwDoAE0A5gBMAOQASgDiAEkA4ABHAN4ARgDcAEQA2gBDANgAQQDWAEAA1AA+ANIAPQDQADsAzgA6A
|
28
|
+
MwAOADKADcAyAA1AMYANADEADIAwgAxAMAALwC+AC4AvAAsALoAKwC4ACkAtgAoALQAJgCyACUAsA
|
29
|
+
AjAK4AIgCsACAAqgAfAKgAHQCmABwApAAaAKIAGQCgABcAngAWAJ0AFQCbABUAPAAAAAgAAABDAAA
|
30
|
+
ADAAAAAEAAAATAAAADAAAAAEAAAAoAAAADAAAAAIAAAAlAAAADAAAAAEAAABMAAAAZAAAAJoAAAAT
|
31
|
+
AAAAMwEAAIUAAACaAAAAEwAAAJoAAABzAAAASQBaAAAAAAAAAAAAAACAPwAAAAAAAAAAAACAPwAAA
|
32
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAwAAAAJAAAAGAAAAAwAAAD///8AJAAAAC
|
33
|
+
QAAAAAAIA9AAAAAAAAAAAAAIA9AAAAAAAAAAACAAAAXgAAAHQAAAACAAAAAAAAACQAAAAwAAAAVAA
|
34
|
+
AACAAAAAAAAAAKAAAAAgAAAAIAAAAAQABAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8A
|
35
|
+
VQAAAKoAAABVAAAAqgAAAFUAAACqAAAAVQAAAKoAAAAlAAAADAAAAAIAAAATAAAADAAAAAIAAAA7A
|
36
|
+
AAACAAAABsAAAAQAAAAsAkAAEgIAABZAAAAMAAAAAAAAAAAAAAA//////////8FAAAAIBNICBwTVw
|
37
|
+
isCUcBuAlAAbgJUAhYAAAANAAAAAAAAAAAAAAA//////////8GAAAAuAlVCLUJWAiwCVgIrAlYCKg
|
38
|
+
JVQioCVAINgAAABAAAACoCQAAQAEAAFgAAAA0AAAAAAAAAAAAAAD//////////wYAAACoCT0Bqgk7
|
39
|
+
Aa0JOQGwCTgBswk4AbUJOgE2AAAAEAAAACUTAABKCAAAWAAAADQAAAAAAAAAAAAAAP//////////B
|
40
|
+
gAAACgTTAgpE1AIKBNTCCcTVggkE1gIIBNYCDYAAAAQAAAAsAkAAFgIAABYAAAANAAAAAAAAAAAAA
|
41
|
+
AA//////////8GAAAArAlYCKgJVQioCVAIqAlMCKwJSAiwCUgIPQAAAAgAAAA8AAAACAAAAD4AAAA
|
42
|
+
YAAAAmgAAABMAAAAzAQAAhQAAABMAAAAMAAAAAQAAACUAAAAMAAAAAQAAACQAAAAkAAAAAACAQQAA
|
43
|
+
AAAAAAAAAACAQQAAAAAAAAAAAgAAABgAAAAMAAAAAAAAABQAAAAMAAAADQAAAEwAAABkAAAAmgAAA
|
44
|
+
BMAAAAzAQAAhQAAAJoAAAATAAAAmgAAAHMAAABJAFoAAAAAAAAAAAAAAIA/AAAAAAAAAAAAAIA/AA
|
45
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAADAAAAAAAAIAiAAAADAAAAP////8iAAA
|
46
|
+
ADAAAAP////9GAAAAQAAAADQAAABFTUYrCEADBBgAAAAMAAAAAhDA2wAAAAADAAAQNEADAAwAAAAA
|
47
|
+
AAAABEAAAAwAAAAAAAAARgAAAOQAAADYAAAARU1GKwhAAAMsAAAAIAAAAAIQwNsEAAAAAEAAAJkAh
|
48
|
+
AAwAYQAmQASAJkAhAAAAQGBM0AAAQwAAAAAAAAAKkAAACQAAAAYAAAAAADAQgAAAAAAAAAAAADAwl
|
49
|
+
2uGEMIhANDCEAEAVQAAABIAAAAAhDA2wQAAAACAAAAAAAAAKuqKryrqiq80T3MPwfZmT/w8PD////
|
50
|
+
///Dw8P//////kHsFtOrVQD9c7am/kHsFsVUjyT84cCi7CkAAACQAAAAYAAAABAAAAAEAAACrqiq8
|
51
|
+
q6oqvNE9zD8H2Zk/IQAAAAgAAABiAAAADAAAAAEAAAAhAAAACAAAADsAAAAIAAAAEwAAAAwAAAABA
|
52
|
+
AAAVgAAACwAAAAAAAAAAAAAAP//////////BAAAAJkAhAAwAYQAmQASAJkAhAA8AAAACAAAAEMAAA
|
53
|
+
AMAAAAAQAAABMAAAAMAAAAAQAAACUAAAAMAAAACAAAgCcAAAAYAAAAAwAAAAAAAADw8PAAAAAAACU
|
54
|
+
AAAAMAAAAAwAAACUAAAAMAAAACAAAgFYAAAAwAAAAAAAAAAAAAAD//////////wUAAACXABEAlwAS
|
55
|
+
ADEBEgAxAREAlwARACUAAAAMAAAACAAAgCUAAAAMAAAAAAAAgCgAAAAMAAAAAwAAACcAAAAYAAAAA
|
56
|
+
wAAAAAAAAD///8A
|
57
|
+
AAAAACUAAAAMAAAAAwAAACUAAAAMAAAACAAAgFYAAAAwAAAAmQAAABMAAAAuAQAAFQAAAAUAAACXA
|
58
|
+
BIAlwAVADEBFQAxARIAlwASACUAAAAMAAAACAAAgCUAAAAMAAAAAAAAgCgAAAAMAAAAAwAAACcAAA
|
59
|
+
AYAAAAAwAAAAAAAAD+/v4AAAAAACUAAAAMAAAAAwAAACUAAAAMAAAACAAAgFYAAAAwAAAAmQAAABU
|
60
|
+
AAAAuAQAAHAAAAAUAAACXABUAlwAcADEBHAAxARUAlwAVACUAAAAMAAAACAAAgCUAAAAMAAAAAAAA
|
61
|
+
gCgAAAAMAAAAAwAAACcAAAAYAAAAAwAAAAAAAAD9/f0AAAAAACUAAAAMAAAAAwAAACUAAAAMAAAAC
|
62
|
+
AAAgFYAAAAwAAAAmQAAABwAAAAuAQAAJAAAAAUAAACXABwAlwAkADEBJAAxARwAlwAcACUAAAAMAA
|
63
|
+
AACAAAgCUAAAAMAAAAAAAAgCgAAAAMAAAAAwAAACcAAAAYAAAAAwAAAAAAAAD8/PwAAAAAACUAAAA
|
64
|
+
MAAAAAwAAACUAAAAMAAAACAAAgFYAAAAwAAAAmQAAACQAAAAuAQAAKwAAAAUAAACXACQAlwArADEB
|
65
|
+
KwAxASQAlwAkACUAAAAMAAAACAAAgCUAAAAMAAAAAAAAgCgAAAAMAAAAAwAAACcAAAAYAAAAAwAAA
|
66
|
+
AAAAAD7+/sAAAAAACUAAAAMAAAAAwAAACUAAAAMAAAACAAAgFYAAAAwAAAAmQAAACsAAAAuAQAAMg
|
67
|
+
AAAAUAAACXACsAlwAyADEBMgAxASsAlwArACUAAAAMAAAACAAAgCUAAAAMAAAAAAAAgCgAAAAMAAA
|
68
|
+
AAwAAACcAAAAYAAAAAwAAAAAAAAD6+voAAAAAACUAAAAMAAAAAwAAACUAAAAMAAAACAAAgFYAAAAw
|
69
|
+
AAAAmQAAADIAAAAuAQAAOQAAAAUAAACXADIAlwA5ADEBOQAxATIAlwAyACUAAAAMAAAACAAAgCUAA
|
70
|
+
AAMAAAAAAAAgCgAAAAMAAAAAwAAACcAAAAYAAAAAwAAAAAAAAD5+fkAAAAAACUAAAAMAAAAAwAAAC
|
71
|
+
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
|
110
|
+
BJgEiUAAAAMAAAA
|
111
|
+
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
|
164
|
+
AAAAAEAAABbAAAA
|
165
|
+
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
|
218
|
+
EADAAwAAAAAAAAA
|
219
|
+
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
|
272
|
+
gAAACQAAAAkAAAA
|
273
|
+
AACAPQAAAAAAAAAAAACAPQAAAAAAAAAAAgAAACcAAAAYAAAAAgAAAAAAAABAQEAAAAAAACUAAAAMA
|
274
|
+
AAAAgAAABMAAAAMAAAAAQAAADsAAAAIAAAAGwAAABAAAACAEgAAcBkAAFkAAAAkAAAAAAAAAAAAAA
|
275
|
+
D//////////wIAAAAgEzAZHBMsGVgAAAAoAAAAAAAAAAAAAAD//////////wMAAAAEE1sZBBOTGRw
|
276
|
+
TwhlZAAAAJAAAAAAAAAAAAAAA//////////8CAAAAIBPAGYAScBk9AAAACAAAADwAAAAIAAAAPgAA
|
277
|
+
ABgAAAAoAQAAkgEAADIBAACdAQAAEwAAAAwAAAABAAAAJQAAAAwAAAAAAACAJAAAACQAAAAAAIBBA
|
278
|
+
AAAAAAAAAAAAIBBAAAAAAAAAAACAAAATAAAAGQAAACQAAAACgAAAA4CAADcAQAAkAAAAAoAAAB/AQ
|
279
|
+
AA0wEAACkAqgAAAAAAAAAAAAAAgD8AAAAAAAAAAAAAgD8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
280
|
+
AAAAAAAAAACIAAAAMAAAA/////0YAAAAcAAAAEAAAAEVNRisCQAAADAAAAAAAAAAOAAAAFAAAAAAA
|
281
|
+
AAAQAAAAFAAAAA==</PreviewPicture><CustomProps><CustomProp Name='_VPID_EXTENDED_VDX' PropType='Number'>1</CustomProp></CustomProps><TimeCreated>2019-09-18T17:04:06</TimeCreated><TimeSaved>2019-09-18T17:04:28</TimeSaved><TimeEdited>2019-09-18T17:04:27</TimeEdited><TimePrinted>2019-09-18T17:04:06</TimePrinted></DocumentProperties><DocumentSettings TopPage='5' DefaultTextStyle='6' DefaultLineStyle='6' DefaultFillStyle='6' DefaultGuideStyle='4'><GlueSettings>9</GlueSettings><SnapSettings>295</SnapSettings><SnapExtensions>34</SnapExtensions><DynamicGridEnabled>1</DynamicGridEnabled><ProtectStyles>0</ProtectStyles><ProtectShapes>0</ProtectShapes><ProtectMasters>0</ProtectMasters><ProtectBkgnds>0</ProtectBkgnds></DocumentSettings><Colors><ColorEntry IX='0' RGB='#000000'/><ColorEntry IX='1' RGB='#FFFFFF'/><ColorEntry IX='2' RGB='#FF0000'/><ColorEntry IX='3' RGB='#00FF00'/><ColorEntry IX='4' RGB='#0000FF'/><ColorEntry IX='5' RGB='#FFFF00'/><ColorEntry IX='6' RGB='#FF00FF'/><ColorEntry IX='7' RGB='#00FFFF'/><ColorEntry IX='8' RGB='#800000'/><ColorEntry IX='9' RGB='#008000'/><ColorEntry IX='10' RGB='#000080'/><ColorEntry IX='11' RGB='#808000'/><ColorEntry IX='12' RGB='#800080'/><ColorEntry IX='13' RGB='#008080'/><ColorEntry IX='14' RGB='#C0C0C0'/><ColorEntry IX='15' RGB='#E6E6E6'/><ColorEntry IX='16' RGB='#CDCDCD'/><ColorEntry IX='17' RGB='#B3B3B3'/><ColorEntry IX='18' RGB='#9A9A9A'/><ColorEntry IX='19' RGB='#808080'/><ColorEntry IX='20' RGB='#666666'/><ColorEntry IX='21' RGB='#4D4D4D'/><ColorEntry IX='22' RGB='#333333'/><ColorEntry IX='23' RGB='#1A1A1A'/><ColorEntry IX='24' RGB='#E8EEF7'/><ColorEntry IX='25' RGB='#B7C9E3'/><ColorEntry IX='26' RGB='#4979C0'/><ColorEntry IX='27' RGB='#FFFFFF'/><ColorEntry IX='28' RGB='#000000'/><ColorEntry IX='29' RGB='#B0C5E3'/><ColorEntry IX='30' RGB='#EDF1F8'/><ColorEntry IX='31' RGB='#F0F0F0'/><ColorEntry IX='32' RGB='#CDCDCD'/><ColorEntry IX='33' RGB='#404040'/><ColorEntry IX='34' RGB='#EAEAEA'/><ColorEntry IX='35' RGB='#DBDBDB'/><ColorEntry IX='36' RGB='#0000FF'/><ColorEntry IX='37' RGB='#1F477D'/><ColorEntry IX='38' RGB='#BFCEE1'/><ColorEntry IX='39' RGB='#96AFCF'/><ColorEntry IX='40' RGB='#464646'/><ColorEntry IX='41' RGB='#799AC1'/><ColorEntry IX='42' RGB='#A3B9D3'/></Colors><FaceNames><FaceName ID='1' Name='Arial Unicode MS' UnicodeRanges='-1 -369098753 63 0' CharSets='1614742015 -65536' Panos='2 11 6 4 2 2 2 2 2 4' Flags='357'/><FaceName ID='2' Name='Symbol' UnicodeRanges='0 0 0 0' CharSets='-2147483648 0' Panos='5 5 1 2 1 7 6 2 5 7' Flags='261'/><FaceName ID='3' Name='Wingdings' UnicodeRanges='0 0 0 0' CharSets='-2147483648 0' Panos='5 0 0 0 0 0 0 0 0 0' Flags='261'/><FaceName ID='4' Name='Calibri' UnicodeRanges='-536859905 -1073732485 9 0' CharSets='536871423 0' Panos='2 15 5 2 2 2 4 3 2 4' Flags='325'/><FaceName ID='5' Name='宋体' UnicodeRanges='3 680460288 6 0' CharSets='262145 0' Panos='2 1 6 0 3 1 1 1 1 1' Flags='421'/><FaceName ID='6' Name='PMingLiU' UnicodeRanges='-452972801 -1073717157 41 0' CharSets='536936959 539492352' Panos='2 11 6 4 2 2 2 2 2 4' Flags='327'/><FaceName ID='7' Name='MS PGothic' UnicodeRanges='-536870145 1791491579 134217746 0' CharSets='1073873055 -539557888' Panos='2 11 6 0 7 2 5 8 2 4' Flags='421'/><FaceName ID='8' Name='Dotum' UnicodeRanges='-452972801 -1073717157 41 0' CharSets='536936959 539492352' Panos='2 11 6 4 2 2 2 2 2 4' Flags='327'/><FaceName ID='9' Name='Sylfaen' UnicodeRanges='67110535 0 0 0' CharSets='536871071 0' Panos='1 10 5 2 5 3 6 3 3 3' Flags='325'/><FaceName ID='10' Name='Estrangelo Edessa' UnicodeRanges='-452972801 -1073717157 41 0' CharSets='536936959 539492352' Panos='2 11 6 4 2 2 2 2 2 4' Flags='327'/><FaceName ID='11' Name='Vrinda' UnicodeRanges='-452972801 -1073717157 41 0' CharSets='536936959 539492352' Panos='2 11 6 4 2 2 2 2 2 4' Flags='327'/><FaceName ID='12' Name='Shruti' UnicodeRanges='-452972801 -1073717157 41 0' CharSets='536936959 539492352' Panos='2 11 6 4 2 2 2 2 2 4' Flags='327'/><FaceName ID='13' Name='Mangal' UnicodeRanges='-452972801 -1073717157 41 0' CharSets='536936959 539492352' Panos='2 11 6 4 2 2 2 2 2 4' Flags='327'/><FaceName ID='14' Name='Tunga' UnicodeRanges='-452972801 -1073717157 41 0' CharSets='536936959 539492352' Panos='2 11 6 4 2 2 2 2 2 4' Flags='327'/><FaceName ID='15' Name='Sendnya' UnicodeRanges='-452972801 -1073717157 41 0' CharSets='536936959 539492352' Panos='2 11 6 4 2 2 2 2 2 4' Flags='327'/><FaceName ID='16' Name='Raavi' UnicodeRanges='-452972801 -1073717157 41 0' CharSets='536936959 539492352' Panos='2 11 6 4 2 2 2 2 2 4' Flags='327'/><FaceName ID='17' Name='Dhenu' UnicodeRanges='-452972801 -1073717157 41 0' CharSets='536936959 539492352' Panos='2 11 6 4 2 2 2 2 2 4' Flags='327'/><FaceName ID='18' Name='Latha' UnicodeRanges='-452972801 -1073717157 41 0' CharSets='536936959 539492352' Panos='2 11 6 4 2 2 2 2 2 4' Flags='327'/><FaceName ID='19' Name='Gautami' UnicodeRanges='-452972801 -1073717157 41 0' CharSets='536936959 539492352' Panos='2 11 6 4 2 2 2 2 2 4' Flags='327'/><FaceName ID='20' Name='Cordia New' UnicodeRanges='-452972801 -1073717157 41 0' CharSets='536936959 539492352' Panos='2 11 6 4 2 2 2 2 2 4' Flags='327'/><FaceName ID='21' Name='Arial' UnicodeRanges='-536858881 -1073711013 9 0' CharSets='1073742335 -65536' Panos='2 11 6 4 2 2 2 2 2 4' Flags='325'/><FaceName ID='22' Name='Malgun Gothic' UnicodeRanges='-1879048145 701988091 18 0' CharSets='524289 0' Panos='2 11 5 3 2 0 0 2 0 4' Flags='421'/><FaceName ID='23' Name='Times New Roman' UnicodeRanges='-536858881 -1073711013 9 0' CharSets='1073742335 -65536' Panos='2 2 6 3 5 4 5 2 3 4' Flags='325'/><FaceName ID='24' Name='' UnicodeRanges='-452972801 -1073717157 41 0' CharSets='536936959 539492352' Panos='2 11 6 4 2 2 2 2 2 4' Flags='324'/></FaceNames><StyleSheets><StyleSheet ID='0' NameU='No Style' Name='无样式'><StyleProp><EnableLineProps>1</EnableLineProps><EnableFillProps>1</EnableFillProps><EnableTextProps>1</EnableTextProps><HideForApply>0</HideForApply></StyleProp><Line><LineWeight>0.01041666666666667</LineWeight><LineColor>0</LineColor><LinePattern>1</LinePattern><Rounding>0</Rounding><EndArrowSize>2</EndArrowSize><BeginArrow>0</BeginArrow><EndArrow>0</EndArrow><LineCap>0</LineCap><BeginArrowSize>2</BeginArrowSize><LineColorTrans>0</LineColorTrans></Line><Fill><FillForegnd>1</FillForegnd><FillBkgnd>0</FillBkgnd><FillPattern>1</FillPattern><ShdwForegnd>0</ShdwForegnd><ShdwBkgnd>1</ShdwBkgnd><ShdwPattern>0</ShdwPattern><FillForegndTrans>0</FillForegndTrans><FillBkgndTrans>0</FillBkgndTrans><ShdwForegndTrans>0</ShdwForegndTrans><ShdwBkgndTrans>0</ShdwBkgndTrans><ShapeShdwType>0</ShapeShdwType><ShapeShdwOffsetX>0</ShapeShdwOffsetX><ShapeShdwOffsetY>0</ShapeShdwOffsetY><ShapeShdwObliqueAngle>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor>1</ShapeShdwScaleFactor></Fill><TextBlock><LeftMargin>0</LeftMargin><RightMargin>0</RightMargin><TopMargin>0</TopMargin><BottomMargin>0</BottomMargin><VerticalAlign>1</VerticalAlign><TextBkgnd>0</TextBkgnd><DefaultTabStop>0.5</DefaultTabStop><TextDirection>0</TextDirection><TextBkgndTrans>0</TextBkgndTrans></TextBlock><Protection><LockWidth>0</LockWidth><LockHeight>0</LockHeight><LockMoveX>0</LockMoveX><LockMoveY>0</LockMoveY><LockAspect>0</LockAspect><LockDelete>0</LockDelete><LockBegin>0</LockBegin><LockEnd>0</LockEnd><LockRotate>0</LockRotate><LockCrop>0</LockCrop><LockVtxEdit>0</LockVtxEdit><LockTextEdit>0</LockTextEdit><LockFormat>0</LockFormat><LockGroup>0</LockGroup><LockCalcWH>0</LockCalcWH><LockSelect>0</LockSelect><LockCustProp>0</LockCustProp></Protection><vx:Protection xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LockFromGroupFormat>0</vx:LockFromGroupFormat><vx:LockThemeColors>0</vx:LockThemeColors><vx:LockThemeEffects>0</vx:LockThemeEffects></vx:Protection><Misc><NoObjHandles>0</NoObjHandles><NonPrinting>0</NonPrinting><NoCtlHandles>0</NoCtlHandles><NoAlignBox>0</NoAlignBox><UpdateAlignBox>0</UpdateAlignBox><HideText>0</HideText><DynFeedback>0</DynFeedback><GlueType>0</GlueType><WalkPreference>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType>0</ObjType><Comment V='null'/><IsDropSource>0</IsDropSource><NoLiveDynamics>0</NoLiveDynamics><LocalizeMerge>0</LocalizeMerge><Calendar>0</Calendar><LangID>2052</LangID><ShapeKeywords V='null'/><DropOnPageScale>1</DropOnPageScale></Misc><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='No Formula'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><Help><HelpTopic V='null'/><Copyright V='null'/></Help><LayerMem><LayerMember V='null'/></LayerMem><RulerGrid><XRulerDensity>32</XRulerDensity><YRulerDensity>32</YRulerDensity><XRulerOrigin>0</XRulerOrigin><YRulerOrigin>0</YRulerOrigin><XGridDensity>8</XGridDensity><YGridDensity>8</YGridDensity><XGridSpacing>0</XGridSpacing><YGridSpacing>0</YGridSpacing><XGridOrigin>0</XGridOrigin><YGridOrigin>0</YGridOrigin></RulerGrid><Image><Gamma>1</Gamma><Contrast>0.5</Contrast><Brightness>0.5</Brightness><Sharpen>0</Sharpen><Blur>0</Blur><Denoise>0</Denoise><Transparency>0</Transparency></Image><Group><SelectMode>1</SelectMode><DisplayMode>2</DisplayMode><IsDropTarget>0</IsDropTarget><IsSnapTarget>1</IsSnapTarget><IsTextEditTarget>1</IsTextEditTarget><DontMoveChildren>0</DontMoveChildren></Group><Layout><ShapePermeableX>0</ShapePermeableX><ShapePermeableY>0</ShapePermeableY><ShapePermeablePlace>0</ShapePermeablePlace><ShapeFixedCode>0</ShapeFixedCode><ShapePlowCode>0</ShapePlowCode><ShapeRouteStyle>0</ShapeRouteStyle><ConFixedCode>0</ConFixedCode><ConLineJumpCode>0</ConLineJumpCode><ConLineJumpStyle>0</ConLineJumpStyle><ConLineJumpDirX>0</ConLineJumpDirX><ConLineJumpDirY>0</ConLineJumpDirY><ShapePlaceFlip>0</ShapePlaceFlip><ConLineRouteExt>0</ConLineRouteExt><ShapeSplit>0</ShapeSplit><ShapeSplittable>0</ShapeSplittable></Layout><vx:Layout xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:ShapePlaceStyle>0</vx:ShapePlaceStyle></vx:Layout><v14:Layout xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:Relationships>0</v14:Relationships><v14:DisplayLevel>0</v14:DisplayLevel></v14:Layout><PageLayout><ResizePage>0</ResizePage><EnableGrid>0</EnableGrid><DynamicsOff>0</DynamicsOff><CtrlAsInput>0</CtrlAsInput><PlaceStyle>0</PlaceStyle><RouteStyle>0</RouteStyle><PlaceDepth>0</PlaceDepth><PlowCode>0</PlowCode><LineJumpCode>1</LineJumpCode><LineJumpStyle>0</LineJumpStyle><PageLineJumpDirX>0</PageLineJumpDirX><PageLineJumpDirY>0</PageLineJumpDirY><LineToNodeX>0.125</LineToNodeX><LineToNodeY>0.125</LineToNodeY><BlockSizeX>0.25</BlockSizeX><BlockSizeY>0.25</BlockSizeY><AvenueSizeX>0.375</AvenueSizeX><AvenueSizeY>0.375</AvenueSizeY><LineToLineX>0.125</LineToLineX><LineToLineY>0.125</LineToLineY><LineJumpFactorX>0.66666666666667</LineJumpFactorX><LineJumpFactorY>0.66666666666667</LineJumpFactorY><LineAdjustFrom>0</LineAdjustFrom><LineAdjustTo>0</LineAdjustTo><PlaceFlip>0</PlaceFlip><LineRouteExt>0</LineRouteExt><PageShapeSplit>0</PageShapeSplit></PageLayout><v14:PageLayout xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:AvoidPageBreaks>0</v14:AvoidPageBreaks></v14:PageLayout><PrintProps><PageLeftMargin>0.25</PageLeftMargin><PageRightMargin>0.25</PageRightMargin><PageTopMargin>0.25</PageTopMargin><PageBottomMargin>0.25</PageBottomMargin><ScaleX>1</ScaleX><ScaleY>1</ScaleY><PagesX>1</PagesX><PagesY>1</PagesY><CenterX>0</CenterX><CenterY>0</CenterY><OnPage>0</OnPage><PrintGrid>0</PrintGrid><PrintPageOrientation>1</PrintPageOrientation><PaperKind>1</PaperKind><PaperSource>7</PaperSource></PrintProps><PageProps><PageWidth Unit='NUM' F='No Formula'>0</PageWidth><PageHeight Unit='NUM' F='No Formula'>0</PageHeight><ShdwOffsetX Unit='NUM' F='No Formula'>0</ShdwOffsetX><ShdwOffsetY Unit='NUM' F='No Formula'>0</ShdwOffsetY><PageScale F='No Formula'>0</PageScale><DrawingScale F='No Formula'>0</DrawingScale><DrawingSizeType F='No Formula'>0</DrawingSizeType><DrawingScaleType F='No Formula'>0</DrawingScaleType><InhibitSnap F='No Formula'>0</InhibitSnap><UIVisibility F='No Formula'>0</UIVisibility><ShdwType F='No Formula'>0</ShdwType><ShdwObliqueAngle Unit='NUM' F='No Formula'>0</ShdwObliqueAngle><ShdwScaleFactor F='No Formula'>0</ShdwScaleFactor></PageProps><v14:PageProps xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:DrawingResizeType F='No Formula'>0</v14:DrawingResizeType></v14:PageProps><Char IX='0'><Font>5</Font><Color>0</Color><Style>0</Style><Case>0</Case><Pos>0</Pos><FontScale>1</FontScale><Size>0.1666666666666667</Size><DblUnderline>0</DblUnderline><Overline>0</Overline><Strikethru>0</Strikethru><Highlight>0</Highlight><DoubleStrikethrough>0</DoubleStrikethrough><RTLText>0</RTLText><UseVertical>0</UseVertical><Letterspace>0</Letterspace><ColorTrans>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont>24</ComplexScriptFont><LocalizeFont>0</LocalizeFont><ComplexScriptSize>-1</ComplexScriptSize><LangID>2052</LangID></Char><Para IX='0'><IndFirst>0</IndFirst><IndLeft>0</IndLeft><IndRight>0</IndRight><SpLine>-1.2</SpLine><SpBefore>0</SpBefore><SpAfter>0</SpAfter><HorzAlign>1</HorzAlign><Bullet>0</Bullet><BulletStr V='null'/><BulletFont>0</BulletFont><LocalizeBulletFont>0</LocalizeBulletFont><BulletFontSize>-1</BulletFontSize><TextPosAfterBullet>0</TextPosAfterBullet><Flags>0</Flags></Para><Tabs IX='0'/></StyleSheet><StyleSheet ID='1' NameU='Text Only' Name='纯文本' LineStyle='3' FillStyle='3' TextStyle='3'><StyleProp><EnableLineProps>1</EnableLineProps><EnableFillProps>1</EnableFillProps><EnableTextProps>1</EnableTextProps><HideForApply>0</HideForApply></StyleProp><Line><LineWeight F='Inh'>0.01041666666666667</LineWeight><LineColor F='Inh'>0</LineColor><LinePattern>0</LinePattern><Rounding F='Inh'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans F='Inh'>0</LineColorTrans></Line><Fill><FillForegnd F='Inh'>1</FillForegnd><FillBkgnd F='Inh'>0</FillBkgnd><FillPattern>0</FillPattern><ShdwForegnd F='Inh'>0</ShdwForegnd><ShdwBkgnd F='Inh'>1</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans F='Inh'>0</FillForegndTrans><FillBkgndTrans F='Inh'>0</FillBkgndTrans><ShdwForegndTrans F='Inh'>0</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType F='Inh'>0</ShapeShdwType><ShapeShdwOffsetX F='Inh'>0</ShapeShdwOffsetX><ShapeShdwOffsetY F='Inh'>0</ShapeShdwOffsetY><ShapeShdwObliqueAngle F='Inh'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor F='Inh'>1</ShapeShdwScaleFactor></Fill><TextBlock><LeftMargin>0</LeftMargin><RightMargin>0</RightMargin><TopMargin>0</TopMargin><BottomMargin>0</BottomMargin><VerticalAlign>0</VerticalAlign><TextBkgnd>0</TextBkgnd><DefaultTabStop F='Inh'>0.5</DefaultTabStop><TextDirection F='Inh'>0</TextDirection><TextBkgndTrans F='Inh'>0</TextBkgndTrans></TextBlock><Para IX='0'><IndFirst F='Inh'>0</IndFirst><IndLeft F='Inh'>0</IndLeft><IndRight F='Inh'>0</IndRight><SpLine F='Inh'>-1.2</SpLine><SpBefore F='Inh'>0</SpBefore><SpAfter F='Inh'>0</SpAfter><HorzAlign>0</HorzAlign><Bullet F='Inh'>0</Bullet><BulletStr F='Inh'/><BulletFont F='Inh'>0</BulletFont><LocalizeBulletFont F='Inh'>0</LocalizeBulletFont><BulletFontSize F='Inh'>-1</BulletFontSize><TextPosAfterBullet F='Inh'>0</TextPosAfterBullet><Flags F='Inh'>0</Flags></Para></StyleSheet><StyleSheet ID='2' NameU='None' Name='无' LineStyle='3' FillStyle='3' TextStyle='3'><StyleProp><EnableLineProps>1</EnableLineProps><EnableFillProps>1</EnableFillProps><EnableTextProps>1</EnableTextProps><HideForApply>0</HideForApply></StyleProp><Line><LineWeight F='Inh'>0.01041666666666667</LineWeight><LineColor F='Inh'>0</LineColor><LinePattern>0</LinePattern><Rounding F='Inh'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans F='Inh'>0</LineColorTrans></Line><Fill><FillForegnd F='Inh'>1</FillForegnd><FillBkgnd F='Inh'>0</FillBkgnd><FillPattern>0</FillPattern><ShdwForegnd F='Inh'>0</ShdwForegnd><ShdwBkgnd F='Inh'>1</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans F='Inh'>0</FillForegndTrans><FillBkgndTrans F='Inh'>0</FillBkgndTrans><ShdwForegndTrans F='Inh'>0</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType F='Inh'>0</ShapeShdwType><ShapeShdwOffsetX F='Inh'>0</ShapeShdwOffsetX><ShapeShdwOffsetY F='Inh'>0</ShapeShdwOffsetY><ShapeShdwObliqueAngle F='Inh'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor F='Inh'>1</ShapeShdwScaleFactor></Fill></StyleSheet><StyleSheet ID='3' NameU='Normal' Name='正常' LineStyle='0' FillStyle='0' TextStyle='0'><StyleProp><EnableLineProps>1</EnableLineProps><EnableFillProps>1</EnableFillProps><EnableTextProps>1</EnableTextProps><HideForApply>0</HideForApply></StyleProp><TextBlock><LeftMargin Unit='PT'>0.05555555555555555</LeftMargin><RightMargin Unit='PT'>0.05555555555555555</RightMargin><TopMargin Unit='PT'>0.05555555555555555</TopMargin><BottomMargin Unit='PT'>0.05555555555555555</BottomMargin><VerticalAlign F='Inh'>1</VerticalAlign><TextBkgnd F='Inh'>0</TextBkgnd><DefaultTabStop F='Inh'>0.5</DefaultTabStop><TextDirection F='Inh'>0</TextDirection><TextBkgndTrans F='Inh'>0</TextBkgndTrans></TextBlock></StyleSheet><StyleSheet ID='4' NameU='Guide' Name='参考线' LineStyle='3' FillStyle='3' TextStyle='3'><Line><LineWeight Unit='PT'>0</LineWeight><LineColor>4</LineColor><LinePattern>23</LinePattern><Rounding F='Inh'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans F='Inh'>0</LineColorTrans></Line><Fill><FillForegnd F='Inh'>1</FillForegnd><FillBkgnd F='Inh'>0</FillBkgnd><FillPattern>0</FillPattern><ShdwForegnd F='Inh'>0</ShdwForegnd><ShdwBkgnd F='Inh'>1</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans F='Inh'>0</FillForegndTrans><FillBkgndTrans F='Inh'>0</FillBkgndTrans><ShdwForegndTrans F='Inh'>0</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType F='Inh'>0</ShapeShdwType><ShapeShdwOffsetX F='Inh'>0</ShapeShdwOffsetX><ShapeShdwOffsetY F='Inh'>0</ShapeShdwOffsetY><ShapeShdwObliqueAngle F='Inh'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor F='Inh'>1</ShapeShdwScaleFactor></Fill><StyleProp><EnableLineProps>1</EnableLineProps><EnableFillProps>1</EnableFillProps><EnableTextProps>1</EnableTextProps><HideForApply>0</HideForApply></StyleProp><TextBlock><LeftMargin Unit='PT' F='Inh'>0.05555555555555555</LeftMargin><RightMargin Unit='PT' F='Inh'>0.05555555555555555</RightMargin><TopMargin>0</TopMargin><BottomMargin>0</BottomMargin><VerticalAlign>2</VerticalAlign><TextBkgnd F='Inh'>0</TextBkgnd><DefaultTabStop F='Inh'>0.5</DefaultTabStop><TextDirection F='Inh'>0</TextDirection><TextBkgndTrans F='Inh'>0</TextBkgndTrans></TextBlock><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting>1</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID F='Inh'>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Layout><ShapePermeableX>1</ShapePermeableX><ShapePermeableY>1</ShapePermeableY><ShapePermeablePlace>1</ShapePermeablePlace><ShapeFixedCode F='Inh'>0</ShapeFixedCode><ShapePlowCode F='Inh'>0</ShapePlowCode><ShapeRouteStyle F='Inh'>0</ShapeRouteStyle><ConFixedCode F='Inh'>0</ConFixedCode><ConLineJumpCode F='Inh'>0</ConLineJumpCode><ConLineJumpStyle F='Inh'>0</ConLineJumpStyle><ConLineJumpDirX F='Inh'>0</ConLineJumpDirX><ConLineJumpDirY F='Inh'>0</ConLineJumpDirY><ShapePlaceFlip F='Inh'>0</ShapePlaceFlip><ConLineRouteExt F='Inh'>0</ConLineRouteExt><ShapeSplit F='Inh'>0</ShapeSplit><ShapeSplittable F='Inh'>0</ShapeSplittable></Layout><vx:Layout xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:ShapePlaceStyle F='Inh'>0</vx:ShapePlaceStyle></vx:Layout><v14:Layout xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:Relationships F='Inh'>0</v14:Relationships><v14:DisplayLevel F='Inh'>0</v14:DisplayLevel></v14:Layout><Char IX='0'><Font>5</Font><Color>4</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size>0.125</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont F='Inh'>24</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char></StyleSheet><StyleSheet ID='6' NameU='Basic' Name='基本' LineStyle='0' FillStyle='0' TextStyle='0'><Line><LineWeight Unit='PT'>0.003333333333333333</LineWeight><LineColor>#000000</LineColor><LinePattern F='Inh'>1</LinePattern><Rounding F='Inh'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans F='Inh'>0</LineColorTrans></Line><Fill><FillForegnd>#e8eef7</FillForegnd><FillBkgnd>#b7c9e3</FillBkgnd><FillPattern F='Inh'>1</FillPattern><ShdwForegnd>#4979c0</ShdwForegnd><ShdwBkgnd>#ffffff</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans F='Inh'>0</FillForegndTrans><FillBkgndTrans F='Inh'>0</FillBkgndTrans><ShdwForegndTrans F='Inh'>0</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType F='Inh'>0</ShapeShdwType><ShapeShdwOffsetX F='Inh'>0</ShapeShdwOffsetX><ShapeShdwOffsetY F='Inh'>0</ShapeShdwOffsetY><ShapeShdwObliqueAngle F='Inh'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor F='Inh'>1</ShapeShdwScaleFactor></Fill><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='DEFAULTEVENT()'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><StyleProp><EnableLineProps>1</EnableLineProps><EnableFillProps>1</EnableFillProps><EnableTextProps>1</EnableTextProps><HideForApply>0</HideForApply></StyleProp><TextBlock><LeftMargin Unit='PT'>0.05555555555555555</LeftMargin><RightMargin Unit='PT'>0.05555555555555555</RightMargin><TopMargin Unit='PT'>0.05555555555555555</TopMargin><BottomMargin Unit='PT'>0.05555555555555555</BottomMargin><VerticalAlign F='Inh'>1</VerticalAlign><TextBkgnd F='Inh'>0</TextBkgnd><DefaultTabStop F='Inh'>0.5</DefaultTabStop><TextDirection F='Inh'>0</TextDirection><TextBkgndTrans F='Inh'>0</TextBkgndTrans></TextBlock><Protection><LockWidth F='Inh'>0</LockWidth><LockHeight F='Inh'>0</LockHeight><LockMoveX F='Inh'>0</LockMoveX><LockMoveY F='Inh'>0</LockMoveY><LockAspect F='Inh'>0</LockAspect><LockDelete F='Inh'>0</LockDelete><LockBegin F='Inh'>0</LockBegin><LockEnd F='Inh'>0</LockEnd><LockRotate F='Inh'>0</LockRotate><LockCrop F='Inh'>0</LockCrop><LockVtxEdit F='Inh'>0</LockVtxEdit><LockTextEdit F='Inh'>0</LockTextEdit><LockFormat F='Inh'>0</LockFormat><LockGroup F='Inh'>0</LockGroup><LockCalcWH F='Inh'>0</LockCalcWH><LockSelect F='Inh'>0</LockSelect><LockCustProp F='Inh'>0</LockCustProp></Protection><vx:Protection xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LockFromGroupFormat F='Inh'>0</vx:LockFromGroupFormat><vx:LockThemeColors F='Inh'>0</vx:LockThemeColors><vx:LockThemeEffects F='Inh'>0</vx:LockThemeEffects></vx:Protection><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID F='Inh'>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Image><Gamma F='Inh'>1</Gamma><Contrast F='Inh'>0.5</Contrast><Brightness F='Inh'>0.5</Brightness><Sharpen F='Inh'>0</Sharpen><Blur F='Inh'>0</Blur><Denoise F='Inh'>0</Denoise><Transparency F='Inh'>0</Transparency></Image><Group><SelectMode F='Inh'>1</SelectMode><DisplayMode F='Inh'>2</DisplayMode><IsDropTarget F='Inh'>0</IsDropTarget><IsSnapTarget F='Inh'>1</IsSnapTarget><IsTextEditTarget F='Inh'>1</IsTextEditTarget><DontMoveChildren F='Inh'>0</DontMoveChildren></Group><Layout><ShapePermeableX F='Inh'>0</ShapePermeableX><ShapePermeableY F='Inh'>0</ShapePermeableY><ShapePermeablePlace F='Inh'>0</ShapePermeablePlace><ShapeFixedCode F='Inh'>0</ShapeFixedCode><ShapePlowCode F='Inh'>0</ShapePlowCode><ShapeRouteStyle F='Inh'>0</ShapeRouteStyle><ConFixedCode F='Inh'>0</ConFixedCode><ConLineJumpCode F='Inh'>0</ConLineJumpCode><ConLineJumpStyle F='Inh'>0</ConLineJumpStyle><ConLineJumpDirX F='Inh'>0</ConLineJumpDirX><ConLineJumpDirY F='Inh'>0</ConLineJumpDirY><ShapePlaceFlip F='Inh'>0</ShapePlaceFlip><ConLineRouteExt F='Inh'>0</ConLineRouteExt><ShapeSplit F='Inh'>0</ShapeSplit><ShapeSplittable F='Inh'>0</ShapeSplittable></Layout><vx:Layout xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:ShapePlaceStyle F='Inh'>0</vx:ShapePlaceStyle></vx:Layout><v14:Layout xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:Relationships F='Inh'>0</v14:Relationships><v14:DisplayLevel F='Inh'>0</v14:DisplayLevel></v14:Layout><Char IX='0'><Font>5</Font><Color>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont F='Inh'>24</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID>2052</LangID></Char><Para IX='0'><IndFirst F='Inh'>0</IndFirst><IndLeft F='Inh'>0</IndLeft><IndRight F='Inh'>0</IndRight><SpLine F='Inh'>-1.2</SpLine><SpBefore F='Inh'>0</SpBefore><SpAfter F='Inh'>0</SpAfter><HorzAlign F='Inh'>1</HorzAlign><Bullet F='Inh'>0</Bullet><BulletStr F='Inh'/><BulletFont F='Inh'>0</BulletFont><LocalizeBulletFont F='Inh'>0</LocalizeBulletFont><BulletFontSize F='Inh'>-1</BulletFontSize><TextPosAfterBullet F='Inh'>0</TextPosAfterBullet><Flags F='Inh'>0</Flags></Para><Tabs IX='0'/></StyleSheet><StyleSheet ID='7' NameU='Basic Shadow' Name='基本阴影' LineStyle='0' FillStyle='0' TextStyle='0'><Line><LineWeight Unit='PT'>0.003333333333333333</LineWeight><LineColor>#000000</LineColor><LinePattern F='Inh'>1</LinePattern><Rounding F='Inh'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans F='Inh'>0</LineColorTrans></Line><Fill><FillForegnd>#b0c5e3</FillForegnd><FillBkgnd>#edf1f8</FillBkgnd><FillPattern F='Inh'>1</FillPattern><ShdwForegnd>#4979c0</ShdwForegnd><ShdwBkgnd>#ffffff</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans F='Inh'>0</FillForegndTrans><FillBkgndTrans F='Inh'>0</FillBkgndTrans><ShdwForegndTrans F='Inh'>0</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType F='Inh'>0</ShapeShdwType><ShapeShdwOffsetX F='Inh'>0</ShapeShdwOffsetX><ShapeShdwOffsetY F='Inh'>0</ShapeShdwOffsetY><ShapeShdwObliqueAngle F='Inh'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor F='Inh'>1</ShapeShdwScaleFactor></Fill><vx:Fill xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:FillForegnd F='THEMEGUARD(IF(CELLISTHEMED(FALSE),SETATREFEXPR(SHADE(THEME("FillColor"),20)),SETATREFEXPR(RGB(176,197,227))))'>#b0c5e3</vx:FillForegnd><vx:FillBkgnd F='THEMEGUARD(IF(CELLISTHEMED(FALSE),SETATREFEXPR(SHADE(THEME("FillColor2"),20)),SETATREFEXPR(RGB(237,241,248))))'>#edf1f8</vx:FillBkgnd></vx:Fill><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID F='Inh'>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='DEFAULTEVENT()'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><StyleProp><EnableLineProps>1</EnableLineProps><EnableFillProps>1</EnableFillProps><EnableTextProps>1</EnableTextProps><HideForApply>0</HideForApply></StyleProp><TextBlock><LeftMargin Unit='PT'>0.05555555555555555</LeftMargin><RightMargin Unit='PT'>0.05555555555555555</RightMargin><TopMargin Unit='PT'>0.05555555555555555</TopMargin><BottomMargin Unit='PT'>0.05555555555555555</BottomMargin><VerticalAlign F='Inh'>1</VerticalAlign><TextBkgnd F='Inh'>0</TextBkgnd><DefaultTabStop F='Inh'>0.5</DefaultTabStop><TextDirection F='Inh'>0</TextDirection><TextBkgndTrans F='Inh'>0</TextBkgndTrans></TextBlock><Protection><LockWidth F='Inh'>0</LockWidth><LockHeight F='Inh'>0</LockHeight><LockMoveX F='Inh'>0</LockMoveX><LockMoveY F='Inh'>0</LockMoveY><LockAspect F='Inh'>0</LockAspect><LockDelete F='Inh'>0</LockDelete><LockBegin F='Inh'>0</LockBegin><LockEnd F='Inh'>0</LockEnd><LockRotate F='Inh'>0</LockRotate><LockCrop F='Inh'>0</LockCrop><LockVtxEdit F='Inh'>0</LockVtxEdit><LockTextEdit F='Inh'>0</LockTextEdit><LockFormat F='Inh'>0</LockFormat><LockGroup F='Inh'>0</LockGroup><LockCalcWH F='Inh'>0</LockCalcWH><LockSelect F='Inh'>0</LockSelect><LockCustProp F='Inh'>0</LockCustProp></Protection><vx:Protection xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LockFromGroupFormat F='Inh'>0</vx:LockFromGroupFormat><vx:LockThemeColors F='Inh'>0</vx:LockThemeColors><vx:LockThemeEffects F='Inh'>0</vx:LockThemeEffects></vx:Protection><Image><Gamma F='Inh'>1</Gamma><Contrast F='Inh'>0.5</Contrast><Brightness F='Inh'>0.5</Brightness><Sharpen F='Inh'>0</Sharpen><Blur F='Inh'>0</Blur><Denoise F='Inh'>0</Denoise><Transparency F='Inh'>0</Transparency></Image><Group><SelectMode F='Inh'>1</SelectMode><DisplayMode F='Inh'>2</DisplayMode><IsDropTarget F='Inh'>0</IsDropTarget><IsSnapTarget F='Inh'>1</IsSnapTarget><IsTextEditTarget F='Inh'>1</IsTextEditTarget><DontMoveChildren F='Inh'>0</DontMoveChildren></Group><Layout><ShapePermeableX F='Inh'>0</ShapePermeableX><ShapePermeableY F='Inh'>0</ShapePermeableY><ShapePermeablePlace F='Inh'>0</ShapePermeablePlace><ShapeFixedCode F='Inh'>0</ShapeFixedCode><ShapePlowCode F='Inh'>0</ShapePlowCode><ShapeRouteStyle F='Inh'>0</ShapeRouteStyle><ConFixedCode F='Inh'>0</ConFixedCode><ConLineJumpCode F='Inh'>0</ConLineJumpCode><ConLineJumpStyle F='Inh'>0</ConLineJumpStyle><ConLineJumpDirX F='Inh'>0</ConLineJumpDirX><ConLineJumpDirY F='Inh'>0</ConLineJumpDirY><ShapePlaceFlip F='Inh'>0</ShapePlaceFlip><ConLineRouteExt F='Inh'>0</ConLineRouteExt><ShapeSplit F='Inh'>0</ShapeSplit><ShapeSplittable F='Inh'>0</ShapeSplittable></Layout><vx:Layout xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:ShapePlaceStyle F='Inh'>0</vx:ShapePlaceStyle></vx:Layout><v14:Layout xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:Relationships F='Inh'>0</v14:Relationships><v14:DisplayLevel F='Inh'>0</v14:DisplayLevel></v14:Layout><Char IX='0'><Font>5</Font><Color>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont F='Inh'>24</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID>2052</LangID></Char><Para IX='0'><IndFirst F='Inh'>0</IndFirst><IndLeft F='Inh'>0</IndLeft><IndRight F='Inh'>0</IndRight><SpLine F='Inh'>-1.2</SpLine><SpBefore F='Inh'>0</SpBefore><SpAfter F='Inh'>0</SpAfter><HorzAlign F='Inh'>1</HorzAlign><Bullet F='Inh'>0</Bullet><BulletStr F='Inh'/><BulletFont F='Inh'>0</BulletFont><LocalizeBulletFont F='Inh'>0</LocalizeBulletFont><BulletFontSize F='Inh'>-1</BulletFontSize><TextPosAfterBullet F='Inh'>0</TextPosAfterBullet><Flags F='Inh'>0</Flags></Para><Tabs IX='0'/></StyleSheet><StyleSheet ID='8' NameU='Connector' Name='连接线' LineStyle='0' FillStyle='0' TextStyle='0'><Line><LineWeight>0.003333</LineWeight><LineColor>0</LineColor><LinePattern>1</LinePattern><Rounding>0</Rounding><EndArrowSize>2</EndArrowSize><BeginArrow>0</BeginArrow><EndArrow>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize>2</BeginArrowSize><LineColorTrans>0</LineColorTrans></Line><vx:Line xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LineWeight F='THEMEGUARD(IF(CELLISTHEMED(FALSE),THEME("ConnectorWeight"),SETATREFEXPR(0.003333)))'>0.003333</vx:LineWeight><vx:LineColor F='THEMEGUARD(IF(CELLISTHEMED(FALSE),SETATREFEXPR(THEME("ConnectorColor")),SETATREFEXPR(0)))'>0</vx:LineColor><vx:LinePattern F='THEMEGUARD(IF(CELLISTHEMED(FALSE),THEME("ConnectorPattern"),SETATREFEXPR(1)))'>1</vx:LinePattern><vx:Rounding F='THEMEGUARD(IF(CELLISTHEMED(FALSE),THEME("ConnectorRounding"),SETATREFEXPR(0)))'>0</vx:Rounding><vx:EndArrowSize F='THEME("ConnectorEndSize")'>2</vx:EndArrowSize><vx:BeginArrow F='THEME("ConnectorBegin")'>0</vx:BeginArrow><vx:EndArrow F='THEME("ConnectorEnd")'>0</vx:EndArrow><vx:BeginArrowSize F='THEME("ConnectorBeginSize")'>2</vx:BeginArrowSize><vx:LineColorTrans F='THEMEGUARD(IF(CELLISTHEMED(FALSE),THEME("ConnectorTransparency"),SETATREFEXPR(0)))'>0</vx:LineColorTrans></vx:Line><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID F='Inh'>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Fill><FillForegnd>#ffffff</FillForegnd><FillBkgnd>#ffffff</FillBkgnd><FillPattern F='Inh'>1</FillPattern><ShdwForegnd>#4979c0</ShdwForegnd><ShdwBkgnd>#ffffff</ShdwBkgnd><ShdwPattern>0</ShdwPattern><FillForegndTrans F='Inh'>0</FillForegndTrans><FillBkgndTrans F='Inh'>0</FillBkgndTrans><ShdwForegndTrans F='Inh'>0</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType F='Inh'>0</ShapeShdwType><ShapeShdwOffsetX F='Inh'>0</ShapeShdwOffsetX><ShapeShdwOffsetY F='Inh'>0</ShapeShdwOffsetY><ShapeShdwObliqueAngle F='Inh'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor F='Inh'>1</ShapeShdwScaleFactor></Fill><vx:Fill xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:ShdwPattern F='THEMEGUARD(0)'>0</vx:ShdwPattern></vx:Fill><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='DEFAULTEVENT()'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><StyleProp><EnableLineProps>1</EnableLineProps><EnableFillProps>1</EnableFillProps><EnableTextProps>1</EnableTextProps><HideForApply>0</HideForApply></StyleProp><TextBlock><LeftMargin Unit='PT'>0.05555555555555555</LeftMargin><RightMargin Unit='PT'>0.05555555555555555</RightMargin><TopMargin Unit='PT'>0.05555555555555555</TopMargin><BottomMargin Unit='PT'>0.05555555555555555</BottomMargin><VerticalAlign F='Inh'>1</VerticalAlign><TextBkgnd>#ffffff</TextBkgnd><DefaultTabStop F='Inh'>0.5</DefaultTabStop><TextDirection F='Inh'>0</TextDirection><TextBkgndTrans F='Inh'>0</TextBkgndTrans></TextBlock><vx:TextBlock xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:TextBkgnd F='THEMEGUARD(THEME("BackgroundColor")+1)'>#ffffff</vx:TextBkgnd></vx:TextBlock><Protection><LockWidth F='Inh'>0</LockWidth><LockHeight F='Inh'>0</LockHeight><LockMoveX F='Inh'>0</LockMoveX><LockMoveY F='Inh'>0</LockMoveY><LockAspect F='Inh'>0</LockAspect><LockDelete F='Inh'>0</LockDelete><LockBegin F='Inh'>0</LockBegin><LockEnd F='Inh'>0</LockEnd><LockRotate F='Inh'>0</LockRotate><LockCrop F='Inh'>0</LockCrop><LockVtxEdit F='Inh'>0</LockVtxEdit><LockTextEdit F='Inh'>0</LockTextEdit><LockFormat F='Inh'>0</LockFormat><LockGroup F='Inh'>0</LockGroup><LockCalcWH F='Inh'>0</LockCalcWH><LockSelect F='Inh'>0</LockSelect><LockCustProp F='Inh'>0</LockCustProp></Protection><vx:Protection xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LockFromGroupFormat F='Inh'>0</vx:LockFromGroupFormat><vx:LockThemeColors F='Inh'>0</vx:LockThemeColors><vx:LockThemeEffects F='Inh'>0</vx:LockThemeEffects></vx:Protection><Image><Gamma F='Inh'>1</Gamma><Contrast F='Inh'>0.5</Contrast><Brightness F='Inh'>0.5</Brightness><Sharpen F='Inh'>0</Sharpen><Blur F='Inh'>0</Blur><Denoise F='Inh'>0</Denoise><Transparency F='Inh'>0</Transparency></Image><Group><SelectMode F='Inh'>1</SelectMode><DisplayMode F='Inh'>2</DisplayMode><IsDropTarget F='Inh'>0</IsDropTarget><IsSnapTarget F='Inh'>1</IsSnapTarget><IsTextEditTarget F='Inh'>1</IsTextEditTarget><DontMoveChildren F='Inh'>0</DontMoveChildren></Group><Layout><ShapePermeableX F='Inh'>0</ShapePermeableX><ShapePermeableY F='Inh'>0</ShapePermeableY><ShapePermeablePlace F='Inh'>0</ShapePermeablePlace><ShapeFixedCode F='Inh'>0</ShapeFixedCode><ShapePlowCode F='Inh'>0</ShapePlowCode><ShapeRouteStyle F='Inh'>0</ShapeRouteStyle><ConFixedCode F='Inh'>0</ConFixedCode><ConLineJumpCode F='Inh'>0</ConLineJumpCode><ConLineJumpStyle F='Inh'>0</ConLineJumpStyle><ConLineJumpDirX F='Inh'>0</ConLineJumpDirX><ConLineJumpDirY F='Inh'>0</ConLineJumpDirY><ShapePlaceFlip F='Inh'>0</ShapePlaceFlip><ConLineRouteExt F='Inh'>0</ConLineRouteExt><ShapeSplit F='Inh'>0</ShapeSplit><ShapeSplittable F='Inh'>0</ShapeSplittable></Layout><vx:Layout xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:ShapePlaceStyle F='Inh'>0</vx:ShapePlaceStyle></vx:Layout><v14:Layout xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:Relationships F='Inh'>0</v14:Relationships><v14:DisplayLevel F='Inh'>0</v14:DisplayLevel></v14:Layout><Char IX='0'><Font>5</Font><Color>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont F='Inh'>24</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID>2052</LangID></Char></StyleSheet></StyleSheets><DocumentSheet NameU='TheDoc' Name='TheDoc' LineStyle='0' FillStyle='0' TextStyle='0'><DocProps><OutputFormat>0</OutputFormat><LockPreview>0</LockPreview><AddMarkup>0</AddMarkup><ViewMarkup>0</ViewMarkup><PreviewQuality>0</PreviewQuality><PreviewScope>0</PreviewScope><DocLangID>2052</DocLangID></DocProps><User NameU='msvSubprocessMaster' ID='1'><Value Unit='STR'>Rectangle</Value><Prompt V='null'/></User><User NameU='msvNoAutoConnect' ID='2'><Value>1</Value><Prompt V='null'/></User></DocumentSheet><Masters><Master ID='2' NameU='Octagon' Name='八边形' Prompt='将此形状拖到绘图页上。' IconSize='1' AlignName='2' MatchByName='0' IconUpdate='1' UniqueID='{72EE9558-000E-0000-8E40-00608CF305B2}' BaseID='{B8C646FB-F79E-429B-8C43-FAFEA49579B7}' PatternFlags='0' Hidden='0'><PageSheet LineStyle='0' FillStyle='0' TextStyle='0'><PageProps><PageWidth Unit='MM'>3.93700787401575</PageWidth><PageHeight Unit='MM'>3.93700787401575</PageHeight><ShdwOffsetX Unit='MM'>0.118110236220472</ShdwOffsetX><ShdwOffsetY Unit='MM'>-0.118110236220472</ShdwOffsetY><PageScale Unit='MM'>0.0393700787401575</PageScale><DrawingScale Unit='MM'>0.0393700787401575</DrawingScale><DrawingSizeType>4</DrawingSizeType><DrawingScaleType>0</DrawingScaleType><InhibitSnap>0</InhibitSnap><UIVisibility>0</UIVisibility><ShdwType>0</ShdwType><ShdwObliqueAngle>0</ShdwObliqueAngle><ShdwScaleFactor>1</ShdwScaleFactor></PageProps><v14:PageProps xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:DrawingResizeType>0</v14:DrawingResizeType></v14:PageProps><PrintProps><PageLeftMargin>0.25</PageLeftMargin><PageRightMargin>0.25</PageRightMargin><PageTopMargin>0.25</PageTopMargin><PageBottomMargin>0.25</PageBottomMargin><ScaleX>1</ScaleX><ScaleY>1</ScaleY><PagesX>1</PagesX><PagesY>1</PagesY><CenterX>0</CenterX><CenterY>0</CenterY><OnPage>0</OnPage><PrintGrid>0</PrintGrid><PrintPageOrientation>0</PrintPageOrientation><PaperKind>0</PaperKind><PaperSource>7</PaperSource></PrintProps></PageSheet><Shapes><Shape ID='5' Type='Shape' LineStyle='6' FillStyle='6' TextStyle='6' UniqueID='{745092BC-2737-4934-ACC4-A0EB33DE0AFE}'><XForm><PinX Unit='MM'>1.96850393700787</PinX><PinY Unit='MM'>1.96850393700787</PinY><Width Unit='MM'>1.5748031496063</Width><Height Unit='MM'>1.5748031496063</Height><LocPinX Unit='MM' F='Width*0.5'>0.78740157480315</LocPinX><LocPinY Unit='MM' F='Height*0.5'>0.78740157480315</LocPinY><Angle Unit='AD'>0</Angle><FlipX>0</FlipX><FlipY>0</FlipY><ResizeMode>0</ResizeMode></XForm><Line><LineWeight Unit='PT' F='Inh'>0.003333333333333333</LineWeight><LineColor F='Inh'>#000000</LineColor><LinePattern F='Inh'>1</LinePattern><Rounding F='Inh'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans F='Inh'>0</LineColorTrans></Line><Fill><FillForegnd F='Inh'>#e8eef7</FillForegnd><FillBkgnd F='Inh'>#b7c9e3</FillBkgnd><FillPattern F='Inh'>1</FillPattern><ShdwForegnd F='Inh'>#4979c0</ShdwForegnd><ShdwBkgnd F='Inh'>#ffffff</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans F='Inh'>0</FillForegndTrans><FillBkgndTrans F='Inh'>0</FillBkgndTrans><ShdwForegndTrans F='Inh'>0</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType F='Inh'>0</ShapeShdwType><ShapeShdwOffsetX F='Inh'>0</ShapeShdwOffsetX><ShapeShdwOffsetY F='Inh'>0</ShapeShdwOffsetY><ShapeShdwObliqueAngle F='Inh'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor F='Inh'>1</ShapeShdwScaleFactor></Fill><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='OPENTEXTWIN()'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><Help><HelpTopic>Vis_Sba.chm!#45743</HelpTopic><Copyright F='Inh'/></Help><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Layout><ShapePermeableX F='Inh'>0</ShapePermeableX><ShapePermeableY F='Inh'>0</ShapePermeableY><ShapePermeablePlace F='Inh'>0</ShapePermeablePlace><ShapeFixedCode F='Inh'>0</ShapeFixedCode><ShapePlowCode F='Inh'>0</ShapePlowCode><ShapeRouteStyle F='Inh'>0</ShapeRouteStyle><ConFixedCode F='Inh'>0</ConFixedCode><ConLineJumpCode F='Inh'>0</ConLineJumpCode><ConLineJumpStyle F='Inh'>0</ConLineJumpStyle><ConLineJumpDirX F='Inh'>0</ConLineJumpDirX><ConLineJumpDirY F='Inh'>0</ConLineJumpDirY><ShapePlaceFlip F='Inh'>0</ShapePlaceFlip><ConLineRouteExt F='Inh'>0</ConLineRouteExt><ShapeSplit>1</ShapeSplit><ShapeSplittable F='Inh'>0</ShapeSplittable></Layout><vx:Layout xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:ShapePlaceStyle F='Inh'>0</vx:ShapePlaceStyle></vx:Layout><v14:Layout xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:Relationships F='Inh'>0</v14:Relationships><v14:DisplayLevel F='Inh'>0</v14:DisplayLevel></v14:Layout><Char IX='0'><Font>5</Font><Color F='Inh'>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont F='Inh'>24</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><Connection IX='0'><X Unit='MM' F='Width*0'>0</X><Y Unit='MM' F='Height*0.7071068'>1.113554015748032</Y><DirX>0.92050485343198</DirX><DirY>-0.390731128537475</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='1'><X Unit='MM' F='Width*0'>0</X><Y Unit='MM' F='Height*0.2928932'>0.461249133858268</Y><DirX>0.92050485343198</DirX><DirY>0.390731128537475</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='2'><X Unit='MM' F='Width*0.2928932'>0.461249133858268</X><Y Unit='MM' F='Height*0'>0</Y><DirX>0.390731128348861</DirX><DirY>0.920504853512042</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='3'><X Unit='MM' F='Width*0.7071068'>1.113554015748032</X><Y Unit='MM' F='Height*0'>0</Y><DirX>-0.39073112872609</DirX><DirY>0.920504853351918</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='4'><X Unit='MM' F='Width*1'>1.5748031496063</X><Y Unit='MM' F='Height*0.2928932'>0.461249133858268</Y><DirX>-0.920504853592104</DirX><DirY>0.390731128160246</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='5'><X Unit='MM' F='Width*1'>1.5748031496063</X><Y Unit='MM' F='Height*0.7071068'>1.113554015748032</Y><DirX>-0.927183854701541</DirX><DirY>-0.374606593082386</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='6'><X Unit='MM' F='Width*0.7071068'>1.113554015748032</X><Y Unit='MM' F='Height*1'>1.5748031496063</Y><DirX>-0.390731128726089</DirX><DirY>-0.920504853351918</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='7'><X Unit='MM' F='Width*0.2928932'>0.461249133858268</X><Y Unit='MM' F='Height*1'>1.5748031496063</Y><DirX>0.390731128348861</DirX><DirY>-0.920504853512042</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='8'><X Unit='MM' F='Width*0.5'>0.78740157480315</X><Y Unit='MM' F='Height*0.5'>0.78740157480315</Y><DirX>0</DirX><DirY>1</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><User NameU='visVersion' ID='2'><Value>14</Value><Prompt V='null'/></User><Geom IX='0'><NoFill>0</NoFill><NoLine F='No Formula'>0</NoLine><NoShow F='No Formula'>0</NoShow><NoSnap F='No Formula'>0</NoSnap><MoveTo IX='1'><X Unit='MM' F='Width*0.7071068'>1.113554015748032</X><Y Unit='MM' F='Height*1'>1.5748031496063</Y></MoveTo><LineTo IX='2'><X Unit='MM' F='Width*0.2928932'>0.461249133858268</X><Y Unit='MM' F='Height*1'>1.5748031496063</Y></LineTo><LineTo IX='3'><X Unit='MM' F='Width*0'>0</X><Y Unit='MM' F='Height*0.7071068'>1.113554015748032</Y></LineTo><LineTo IX='4'><X Unit='MM' F='Width*0'>0</X><Y Unit='MM' F='Height*0.2928932'>0.461249133858268</Y></LineTo><LineTo IX='5'><X Unit='MM' F='Width*0.2928932'>0.461249133858268</X><Y Unit='MM' F='Height*0'>0</Y></LineTo><LineTo IX='6'><X Unit='MM' F='Width*0.7071068'>1.113554015748032</X><Y Unit='MM' F='Height*0'>0</Y></LineTo><LineTo IX='7'><X Unit='MM' F='Width*1'>1.5748031496063</X><Y Unit='MM' F='Height*0.2928932'>0.461249133858268</Y></LineTo><LineTo IX='8'><X Unit='MM' F='Width*1'>1.5748031496063</X><Y Unit='MM' F='Height*0.7071068'>1.113554015748032</Y></LineTo><LineTo IX='9'><X Unit='MM' F='Geometry1.X1'>1.113554015748032</X><Y Unit='MM' F='Geometry1.Y1'>1.5748031496063</Y></LineTo></Geom><v14:Geom IX='0' xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:NoQuickDrag>0</v14:NoQuickDrag></v14:Geom><Text><cp IX='0'/></Text></Shape></Shapes><Icon>
|
282
|
+
AAABAAEAICAQTAAAAADoAgAAFgAAACgAAAAgAAAAQAAAAAEABAAAAAAAgAIAAAAAAAAAAAAAAAAAA
|
283
|
+
AAAAAAAAAAAAACAAACAAAAAgIAAgAAAAIAAgACAgAAAgICAAMDAwAAAAP8AAP8AAAD//wD/AAAA/w
|
284
|
+
D/AP//AAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
285
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACIiIiIgAAAAAAAAAAAAAAAAAAA
|
286
|
+
AIgAAAAAAAAAAAAAD/////8IgAAAAAAAAAAAAP//////8IgAAAAAAAAAAA////////8IgAAAAAAAA
|
287
|
+
AD/////////8IgAAAAAAAAP//////////8IgAAAAAAA////////////8IAAAAAAAP////////////
|
288
|
+
CAAAAAAAD/////d3/////wgAAAAAAA////9//3////8IAAAAAAAP////f/9/////CAAAAAAAD////
|
289
|
+
/d3/////wgAAAAAAA////9//3////8IAAAAAAAP////f/9/////CAAAAAAAD/////d3/////wAAAA
|
290
|
+
AAAAD///////////AAAAAAAAAAD/////////8AAAAAAAAAAAD////////wAAAAAAAAAAAAD//////
|
291
|
+
/AAAAAAAAAAAAAAD/////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
292
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
293
|
+
AAAD////////////////////////////wB///4AP//8AB//+AAP//AAB//gAAP/wAAB/4AAAf+AAA
|
294
|
+
H/gAAB/4AAAf+AAAH/gAAB/4AAAf+AAAH/gAAD/8AAB//gAA//8AAf//gAP//8AH///gD////////
|
295
|
+
////////////////////w==</Icon></Master><Master ID='4' NameU='Center drag circle' Name='中心拖动圆形' Prompt='拖到绘图页上,然后通过拖动半径的任一端点,可以调整大小。' IconSize='1' AlignName='2' MatchByName='0' IconUpdate='1' UniqueID='{72EE97F6-0012-0000-8E40-00608CF305B2}' BaseID='{4B9573D8-3662-4FF8-8555-4BF63F216732}' PatternFlags='0' Hidden='0'><PageSheet LineStyle='0' FillStyle='0' TextStyle='0'><PageProps><PageWidth Unit='MM'>3.93700787401575</PageWidth><PageHeight Unit='MM'>3.93700787401575</PageHeight><ShdwOffsetX Unit='MM'>0.118110236220472</ShdwOffsetX><ShdwOffsetY Unit='MM'>-0.118110236220472</ShdwOffsetY><PageScale Unit='MM'>0.0393700787401575</PageScale><DrawingScale Unit='MM'>0.0393700787401575</DrawingScale><DrawingSizeType>4</DrawingSizeType><DrawingScaleType>0</DrawingScaleType><InhibitSnap>0</InhibitSnap><UIVisibility>0</UIVisibility><ShdwType>0</ShdwType><ShdwObliqueAngle>0</ShdwObliqueAngle><ShdwScaleFactor>1</ShdwScaleFactor></PageProps><v14:PageProps xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:DrawingResizeType>0</v14:DrawingResizeType></v14:PageProps><PrintProps><PageLeftMargin>0.25</PageLeftMargin><PageRightMargin>0.25</PageRightMargin><PageTopMargin>0.25</PageTopMargin><PageBottomMargin>0.25</PageBottomMargin><ScaleX>1</ScaleX><ScaleY>1</ScaleY><PagesX>1</PagesX><PagesY>1</PagesY><CenterX>0</CenterX><CenterY>0</CenterY><OnPage>0</OnPage><PrintGrid>0</PrintGrid><PrintPageOrientation>0</PrintPageOrientation><PaperKind>0</PaperKind><PaperSource>7</PaperSource></PrintProps></PageSheet><Shapes><Shape ID='4' Type='Shape' LineStyle='6' FillStyle='6' TextStyle='6' UniqueID='{1602E620-25B2-47FF-A3CB-7232B92CE05D}'><XForm><PinX Unit='MM' F='(BeginX+EndX)/2'>2.312992125984255</PinX><PinY Unit='MM' F='(BeginY+EndY)/2'>1.96850393700787</PinY><Width Unit='MM' F='SQRT((EndX-BeginX)^2+(EndY-BeginY)^2)'>0.78740157480315</Width><Height Unit='MM'>0</Height><LocPinX Unit='MM' F='Width*0.5'>0.393700787401575</LocPinX><LocPinY Unit='MM' F='Height*0.5'>0</LocPinY><Angle F='ATAN2(EndY-BeginY,EndX-BeginX)'>0</Angle><FlipX>0</FlipX><FlipY>0</FlipY><ResizeMode>0</ResizeMode></XForm><Line><LineWeight Unit='PT' F='Inh'>0.003333333333333333</LineWeight><LineColor F='Inh'>#000000</LineColor><LinePattern F='Inh'>1</LinePattern><Rounding F='Inh'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans F='Inh'>0</LineColorTrans></Line><Fill><FillForegnd F='Inh'>#e8eef7</FillForegnd><FillBkgnd F='Inh'>#b7c9e3</FillBkgnd><FillPattern F='Inh'>1</FillPattern><ShdwForegnd F='Inh'>#4979c0</ShdwForegnd><ShdwBkgnd F='Inh'>#ffffff</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans F='Inh'>0</FillForegndTrans><FillBkgndTrans F='Inh'>0</FillBkgndTrans><ShdwForegndTrans F='Inh'>0</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType F='Inh'>0</ShapeShdwType><ShapeShdwOffsetX F='Inh'>0</ShapeShdwOffsetX><ShapeShdwOffsetY F='Inh'>0</ShapeShdwOffsetY><ShapeShdwObliqueAngle F='Inh'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor F='Inh'>1</ShapeShdwScaleFactor></Fill><XForm1D><BeginX Unit='MM'>1.91929133858268</BeginX><BeginY Unit='MM'>1.96850393700787</BeginY><EndX Unit='MM'>2.70669291338583</EndX><EndY Unit='MM'>1.96850393700787</EndY></XForm1D><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='OPENTEXTWIN()'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><TextXForm><TxtPinX Unit='MM' F='Width*0'>0</TxtPinX><TxtPinY>0</TxtPinY><TxtWidth Unit='MM' F='Width*1.75'>1.377952755905513</TxtWidth><TxtHeight>0.75</TxtHeight><TxtLocPinX Unit='MM' F='TxtWidth*0.5'>0.6889763779527562</TxtLocPinX><TxtLocPinY F='TxtHeight*0.5'>0.375</TxtLocPinY><TxtAngle F='-Angle'>0</TxtAngle></TextXForm><Protection><LockWidth F='Inh'>0</LockWidth><LockHeight>1</LockHeight><LockMoveX F='Inh'>0</LockMoveX><LockMoveY F='Inh'>0</LockMoveY><LockAspect F='Inh'>0</LockAspect><LockDelete F='Inh'>0</LockDelete><LockBegin F='Inh'>0</LockBegin><LockEnd F='Inh'>0</LockEnd><LockRotate F='Inh'>0</LockRotate><LockCrop F='Inh'>0</LockCrop><LockVtxEdit>1</LockVtxEdit><LockTextEdit F='Inh'>0</LockTextEdit><LockFormat F='Inh'>0</LockFormat><LockGroup F='Inh'>0</LockGroup><LockCalcWH F='Inh'>0</LockCalcWH><LockSelect F='Inh'>0</LockSelect><LockCustProp F='Inh'>0</LockCustProp></Protection><vx:Protection xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LockFromGroupFormat F='Inh'>0</vx:LockFromGroupFormat><vx:LockThemeColors F='Inh'>0</vx:LockThemeColors><vx:LockThemeEffects F='Inh'>0</vx:LockThemeEffects></vx:Protection><Help><HelpTopic>Vis_Sba.chm!#45747</HelpTopic><Copyright F='Inh'/></Help><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Layout><ShapePermeableX F='Inh'>0</ShapePermeableX><ShapePermeableY F='Inh'>0</ShapePermeableY><ShapePermeablePlace F='Inh'>0</ShapePermeablePlace><ShapeFixedCode F='Inh'>0</ShapeFixedCode><ShapePlowCode F='Inh'>0</ShapePlowCode><ShapeRouteStyle F='Inh'>0</ShapeRouteStyle><ConFixedCode F='Inh'>0</ConFixedCode><ConLineJumpCode F='Inh'>0</ConLineJumpCode><ConLineJumpStyle F='Inh'>0</ConLineJumpStyle><ConLineJumpDirX F='Inh'>0</ConLineJumpDirX><ConLineJumpDirY F='Inh'>0</ConLineJumpDirY><ShapePlaceFlip F='Inh'>0</ShapePlaceFlip><ConLineRouteExt F='Inh'>0</ConLineRouteExt><ShapeSplit F='Inh'>0</ShapeSplit><ShapeSplittable>0</ShapeSplittable></Layout><vx:Layout xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:ShapePlaceStyle F='Inh'>0</vx:ShapePlaceStyle></vx:Layout><v14:Layout xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:Relationships F='Inh'>0</v14:Relationships><v14:DisplayLevel F='Inh'>0</v14:DisplayLevel></v14:Layout><Char IX='0'><Font>5</Font><Color F='Inh'>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont F='Inh'>24</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><Connection IX='0'><X Unit='MM' F='Width*0'>0</X><Y Unit='MM'>0</Y><DirX>0</DirX><DirY>-1</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><User NameU='visVersion' ID='2'><Value>14</Value><Prompt V='null'/></User><Geom IX='0'><NoFill>0</NoFill><NoLine>0</NoLine><NoShow>0</NoShow><NoSnap F='No Formula'>0</NoSnap><MoveTo IX='1'><X Unit='MM' F='-Width'>-0.78740157480315</X><Y Unit='MM' F='Height*0.5'>0</Y></MoveTo><ArcTo IX='2'><X Unit='MM' F='Width'>0.78740157480315</X><Y Unit='MM' F='Height*0.5'>0</Y><A Unit='MM' F='-Width'>-0.78740157480315</A></ArcTo><ArcTo IX='3'><X Unit='MM' F='Geometry1.X1'>-0.78740157480315</X><Y Unit='MM' F='Geometry1.Y1'>0</Y><A Unit='MM' F='-Width'>-0.78740157480315</A></ArcTo></Geom><v14:Geom IX='0' xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:NoQuickDrag>0</v14:NoQuickDrag></v14:Geom></Shape></Shapes><Icon>
|
296
|
+
AAABAAEAICAQTAAAAADoAgAAFgAAACgAAAAgAAAAQAAAAAEABAAAAAAAgAIAAAAAAAAAAAAAAAAAA
|
297
|
+
AAAAAAAAAAAAACAAACAAAAAgIAAgAAAAIAAgACAgAAAgICAAMDAwAAAAP8AAP8AAAD//wD/AAAA/w
|
298
|
+
D/AP//AAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
299
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiIiAAAAAAAAAAAAAAAAAAAAA
|
300
|
+
CIAAAAAAAAAAAAAAAH///3AIAAAAAAAAAAAAAP//////8IgAAAAAAAAAAAf///////cIgAAAAAAAA
|
301
|
+
AD/////////8IAAAAAAAAAH//////////cIAAAAAAAAD///////////CAAAAAAAAH///////////3
|
302
|
+
CAAAAAAAD////////////wgAAAAAAA//////////+P8IAAAAAAAP/////wiIiIiPiAAAAAAAD////
|
303
|
+
//////4/wgAAAAAAA////////////8IAAAAAAAH///////////3AAAAAAAAAP//////////8AAAAA
|
304
|
+
AAAAB///////////AAAAAAAAAAD/////////8AAAAAAAAAAAB////////wAAAAAAAAAAAAD//////
|
305
|
+
3AAAAAAAAAAAAAAAH///3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
306
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
307
|
+
AAAD////////////////////////////4H///8Af//8AD//+AAP//AAB//gAAf/wAAD/8AAA/+AAA
|
308
|
+
H/gAAB/4AAAf+AAAH/gAAB/4AAAf+AAAP/wAAH/8AAB//gAA//8AAf//gAP//8AH///wH////////
|
309
|
+
////////////////////w==</Icon></Master><Master ID='5' NameU='Right triangle' Name='直角三角形' Prompt='将此形状拖到绘图页上。' IconSize='1' AlignName='2' MatchByName='0' IconUpdate='1' UniqueID='{72EE9883-0013-0000-8E40-00608CF305B2}' BaseID='{D67AC213-93B8-4137-AD87-16A3AB2F5060}' PatternFlags='0' Hidden='0'><PageSheet LineStyle='0' FillStyle='0' TextStyle='0'><PageProps><PageWidth Unit='MM'>3.93700787401575</PageWidth><PageHeight Unit='MM'>3.93700787401575</PageHeight><ShdwOffsetX Unit='MM'>0.118110236220472</ShdwOffsetX><ShdwOffsetY Unit='MM'>-0.118110236220472</ShdwOffsetY><PageScale Unit='MM'>0.0393700787401575</PageScale><DrawingScale Unit='MM'>0.0393700787401575</DrawingScale><DrawingSizeType>4</DrawingSizeType><DrawingScaleType>0</DrawingScaleType><InhibitSnap>0</InhibitSnap><UIVisibility>0</UIVisibility><ShdwType>0</ShdwType><ShdwObliqueAngle>0</ShdwObliqueAngle><ShdwScaleFactor>1</ShdwScaleFactor></PageProps><v14:PageProps xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:DrawingResizeType>0</v14:DrawingResizeType></v14:PageProps><PrintProps><PageLeftMargin>0.25</PageLeftMargin><PageRightMargin>0.25</PageRightMargin><PageTopMargin>0.25</PageTopMargin><PageBottomMargin>0.25</PageBottomMargin><ScaleX>1</ScaleX><ScaleY>1</ScaleY><PagesX>1</PagesX><PagesY>1</PagesY><CenterX>0</CenterX><CenterY>0</CenterY><OnPage>0</OnPage><PrintGrid>0</PrintGrid><PrintPageOrientation>0</PrintPageOrientation><PaperKind>0</PaperKind><PaperSource>7</PaperSource></PrintProps></PageSheet><Shapes><Shape ID='4' Type='Shape' LineStyle='6' FillStyle='6' TextStyle='6' UniqueID='{3BE3EB81-8BED-412F-A619-B29276862FAF}'><XForm><PinX Unit='MM'>1.96850393700787</PinX><PinY Unit='MM'>1.96850393700787</PinY><Width Unit='MM'>1.5748031496063</Width><Height Unit='MM'>1.18110236220473</Height><LocPinX Unit='MM' F='Width*0.5'>0.78740157480315</LocPinX><LocPinY Unit='MM' F='Height*0.5'>0.590551181102365</LocPinY><Angle>0</Angle><FlipX>0</FlipX><FlipY>0</FlipY><ResizeMode>0</ResizeMode></XForm><Line><LineWeight Unit='PT' F='Inh'>0.003333333333333333</LineWeight><LineColor F='Inh'>#000000</LineColor><LinePattern F='Inh'>1</LinePattern><Rounding F='Inh'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans F='Inh'>0</LineColorTrans></Line><Fill><FillForegnd F='Inh'>#e8eef7</FillForegnd><FillBkgnd F='Inh'>#b7c9e3</FillBkgnd><FillPattern F='Inh'>1</FillPattern><ShdwForegnd F='Inh'>#4979c0</ShdwForegnd><ShdwBkgnd F='Inh'>#ffffff</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans F='Inh'>0</FillForegndTrans><FillBkgndTrans F='Inh'>0</FillBkgndTrans><ShdwForegndTrans F='Inh'>0</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType F='Inh'>0</ShapeShdwType><ShapeShdwOffsetX F='Inh'>0</ShapeShdwOffsetX><ShapeShdwOffsetY F='Inh'>0</ShapeShdwOffsetY><ShapeShdwObliqueAngle F='Inh'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor F='Inh'>1</ShapeShdwScaleFactor></Fill><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='OPENTEXTWIN()'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><TextXForm><TxtPinX Unit='MM' F='Width*0.25'>0.393700787401575</TxtPinX><TxtPinY Unit='MM' F='Height*0.25'>0.2952755905511825</TxtPinY><TxtWidth Unit='MM' F='Width*0.5'>0.78740157480315</TxtWidth><TxtHeight Unit='MM' F='Height*0.5'>0.590551181102365</TxtHeight><TxtLocPinX Unit='MM' F='TxtWidth*0.5'>0.393700787401575</TxtLocPinX><TxtLocPinY Unit='MM' F='TxtHeight*0.5'>0.2952755905511825</TxtLocPinY><TxtAngle>0</TxtAngle></TextXForm><Help><HelpTopic>Vis_Sba.chm!#45750</HelpTopic><Copyright F='Inh'/></Help><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Layout><ShapePermeableX F='Inh'>0</ShapePermeableX><ShapePermeableY F='Inh'>0</ShapePermeableY><ShapePermeablePlace F='Inh'>0</ShapePermeablePlace><ShapeFixedCode F='Inh'>0</ShapeFixedCode><ShapePlowCode F='Inh'>0</ShapePlowCode><ShapeRouteStyle F='Inh'>0</ShapeRouteStyle><ConFixedCode F='Inh'>0</ConFixedCode><ConLineJumpCode F='Inh'>0</ConLineJumpCode><ConLineJumpStyle F='Inh'>0</ConLineJumpStyle><ConLineJumpDirX F='Inh'>0</ConLineJumpDirX><ConLineJumpDirY F='Inh'>0</ConLineJumpDirY><ShapePlaceFlip F='Inh'>0</ShapePlaceFlip><ConLineRouteExt F='Inh'>0</ConLineRouteExt><ShapeSplit>1</ShapeSplit><ShapeSplittable F='Inh'>0</ShapeSplittable></Layout><vx:Layout xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:ShapePlaceStyle F='Inh'>0</vx:ShapePlaceStyle></vx:Layout><v14:Layout xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:Relationships F='Inh'>0</v14:Relationships><v14:DisplayLevel F='Inh'>0</v14:DisplayLevel></v14:Layout><Char IX='0'><Font>5</Font><Color F='Inh'>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont F='Inh'>24</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><Connection IX='0'><X Unit='MM' F='Width*0.5'>0.78740157480315</X><Y Unit='MM' F='Height*0.5'>0.590551181102365</Y><DirX>-0.80281747538577</DirX><DirY>-0.596224874703512</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='1'><X>0</X><Y Unit='MM' F='Height'>1.18110236220473</Y><DirX>0.551936985204792</DirX><DirY>-0.833885822138166</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='2'><X>0</X><Y>0</Y><DirX>0.8038568605677881</DirX><DirY>0.5948227868181411</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='3'><X Unit='MM' F='Width'>1.5748031496063</X><Y>0</Y><DirX>-0.93667218937557</DirX><DirY>0.35020738091933</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><User NameU='visVersion' ID='2'><Value>14</Value><Prompt V='null'/></User><Geom IX='0'><NoFill>0</NoFill><NoLine F='No Formula'>0</NoLine><NoShow F='No Formula'>0</NoShow><NoSnap F='No Formula'>0</NoSnap><MoveTo IX='1'><X Unit='MM' F='Width*0'>0</X><Y Unit='MM' F='Height*0'>0</Y></MoveTo><LineTo IX='2'><X Unit='MM' F='Width*1'>1.5748031496063</X><Y Unit='MM' F='Height*0'>0</Y></LineTo><LineTo IX='3'><X Unit='MM' F='Width*0'>0</X><Y Unit='MM' F='Height*1'>1.18110236220473</Y></LineTo><LineTo IX='4'><X Unit='MM' F='Geometry1.X1'>0</X><Y Unit='MM' F='Geometry1.Y1'>0</Y></LineTo></Geom><v14:Geom IX='0' xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:NoQuickDrag>0</v14:NoQuickDrag></v14:Geom></Shape></Shapes><Icon>
|
310
|
+
AAABAAEAICAQTAAAAADoAgAAFgAAACgAAAAgAAAAQAAAAAEABAAAAAAAgAIAAAAAAAAAAAAAAAAAA
|
311
|
+
AAAAAAAAAAAAACAAACAAAAAgIAAgAAAAIAAgACAgAAAgICAAMDAwAAAAP8AAP8AAAD//wD/AAAA/w
|
312
|
+
D/AP//AAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
313
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
314
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACIiIiIiIiIiIiIiAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
315
|
+
P/3/////////3AAAAAAAAD/9/////////AAAAAAAAAA//f///////8IAAAAAAAAAHd3//////9wAA
|
316
|
+
AAAAAAAAD////////wAAAAAAAAAAAA////////CAAAAAAAAAAAAP//////cAAAAAAAAAAAAAD////
|
317
|
+
/8AAAAAAAAAAAAAAA/////wgAAAAAAAAAAAAAAP///3AAAAAAAAAAAAAAAAD///AAAAAAAAAAAAAA
|
318
|
+
AAAA//8IAAAAAAAAAAAAAAAAAP9wAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAAAAAeAAAAAAAA
|
319
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
320
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
321
|
+
AAAD///////////////////////////////////////////wAAA/4AAAf+AAAP/gAAH/4AAD/+AAD
|
322
|
+
//gAB//4AA//+AA///gAf//4AP//+AP///gH///4D///+D////h////4////+f////v//////////
|
323
|
+
////////////////////w==</Icon></Master><Master ID='6' NameU='3-D box' Name='三维框' Prompt='拖到绘图页上,然后拖动黄色的菱形,可以调整深度和方向。' IconSize='1' AlignName='2' MatchByName='0' IconUpdate='1' UniqueID='{72EE9B50-0016-0000-8E40-00608CF305B2}' BaseID='{A8190AA0-B81A-4059-8935-8686A6EE9641}' PatternFlags='0' Hidden='0'><PageSheet LineStyle='0' FillStyle='0' TextStyle='0'><PageProps><PageWidth Unit='MM'>3.93700787401575</PageWidth><PageHeight Unit='MM'>3.93700787401575</PageHeight><ShdwOffsetX Unit='MM'>0.118110236220472</ShdwOffsetX><ShdwOffsetY Unit='MM'>-0.118110236220472</ShdwOffsetY><PageScale Unit='MM'>0.0393700787401575</PageScale><DrawingScale Unit='MM'>0.0393700787401575</DrawingScale><DrawingSizeType>4</DrawingSizeType><DrawingScaleType>0</DrawingScaleType><InhibitSnap>0</InhibitSnap><UIVisibility>0</UIVisibility><ShdwType>0</ShdwType><ShdwObliqueAngle>0</ShdwObliqueAngle><ShdwScaleFactor>1</ShdwScaleFactor></PageProps><v14:PageProps xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:DrawingResizeType>0</v14:DrawingResizeType></v14:PageProps><PrintProps><PageLeftMargin>0.25</PageLeftMargin><PageRightMargin>0.25</PageRightMargin><PageTopMargin>0.25</PageTopMargin><PageBottomMargin>0.25</PageBottomMargin><ScaleX>1</ScaleX><ScaleY>1</ScaleY><PagesX>1</PagesX><PagesY>1</PagesY><CenterX>0</CenterX><CenterY>0</CenterY><OnPage>0</OnPage><PrintGrid>0</PrintGrid><PrintPageOrientation>0</PrintPageOrientation><PaperKind>0</PaperKind><PaperSource>7</PaperSource></PrintProps></PageSheet><Shapes><Shape ID='4' Type='Group' LineStyle='6' FillStyle='6' TextStyle='6' UniqueID='{BC6D217C-276C-4DB1-ADC7-15BB3716A9F2}'><XForm><PinX Unit='MM'>2.16535433070866</PinX><PinY Unit='MM'>1.96850393700787</PinY><Width Unit='MM'>1.5748031496063</Width><Height Unit='MM'>1.18110236220473</Height><LocPinX Unit='MM' F='Width*0.5'>0.78740157480315</LocPinX><LocPinY Unit='MM' F='Height*0.5'>0.590551181102365</LocPinY><Angle Unit='AD'>0</Angle><FlipX>1</FlipX><FlipY>0</FlipY><ResizeMode>0</ResizeMode></XForm><Line><LineWeight Unit='PT' F='Inh'>0.003333333333333333</LineWeight><LineColor F='Inh'>#000000</LineColor><LinePattern F='Inh'>1</LinePattern><Rounding F='GUARD(0)'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans F='Inh'>0</LineColorTrans></Line><Fill><FillForegnd F='Inh'>#e8eef7</FillForegnd><FillBkgnd F='Inh'>#b7c9e3</FillBkgnd><FillPattern F='GUARD(1)'>1</FillPattern><ShdwForegnd F='Inh'>#4979c0</ShdwForegnd><ShdwBkgnd F='Inh'>#ffffff</ShdwBkgnd><ShdwPattern F='GUARD(0)'>0</ShdwPattern><FillForegndTrans F='Inh'>0</FillForegndTrans><FillBkgndTrans F='Inh'>0</FillBkgndTrans><ShdwForegndTrans F='Inh'>0</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType F='Inh'>0</ShapeShdwType><ShapeShdwOffsetX F='Inh'>0</ShapeShdwOffsetX><ShapeShdwOffsetY F='Inh'>0</ShapeShdwOffsetY><ShapeShdwObliqueAngle F='Inh'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor F='Inh'>1</ShapeShdwScaleFactor></Fill><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='OPENTEXTWIN()'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><Protection><LockWidth F='Inh'>0</LockWidth><LockHeight F='Inh'>0</LockHeight><LockMoveX F='Inh'>0</LockMoveX><LockMoveY F='Inh'>0</LockMoveY><LockAspect F='Inh'>0</LockAspect><LockDelete F='Inh'>0</LockDelete><LockBegin F='Inh'>0</LockBegin><LockEnd F='Inh'>0</LockEnd><LockRotate F='Inh'>0</LockRotate><LockCrop F='Inh'>0</LockCrop><LockVtxEdit F='Inh'>0</LockVtxEdit><LockTextEdit F='Inh'>0</LockTextEdit><LockFormat F='Inh'>0</LockFormat><LockGroup>1</LockGroup><LockCalcWH F='Inh'>0</LockCalcWH><LockSelect F='Inh'>0</LockSelect><LockCustProp F='Inh'>0</LockCustProp></Protection><vx:Protection xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LockFromGroupFormat F='Inh'>0</vx:LockFromGroupFormat><vx:LockThemeColors F='Inh'>0</vx:LockThemeColors><vx:LockThemeEffects F='Inh'>0</vx:LockThemeEffects></vx:Protection><Help><HelpTopic>Vis_Sba.chm!#45754</HelpTopic><Copyright F='Inh'/></Help><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType>8</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Group><SelectMode>0</SelectMode><DisplayMode F='Inh'>2</DisplayMode><IsDropTarget F='Inh'>0</IsDropTarget><IsSnapTarget>0</IsSnapTarget><IsTextEditTarget F='Inh'>1</IsTextEditTarget><DontMoveChildren>1</DontMoveChildren></Group><Layout><ShapePermeableX F='Inh'>0</ShapePermeableX><ShapePermeableY F='Inh'>0</ShapePermeableY><ShapePermeablePlace F='Inh'>0</ShapePermeablePlace><ShapeFixedCode F='Inh'>0</ShapeFixedCode><ShapePlowCode F='Inh'>0</ShapePlowCode><ShapeRouteStyle F='Inh'>0</ShapeRouteStyle><ConFixedCode F='Inh'>0</ConFixedCode><ConLineJumpCode F='Inh'>0</ConLineJumpCode><ConLineJumpStyle F='Inh'>0</ConLineJumpStyle><ConLineJumpDirX F='Inh'>0</ConLineJumpDirX><ConLineJumpDirY F='Inh'>0</ConLineJumpDirY><ShapePlaceFlip F='Inh'>0</ShapePlaceFlip><ConLineRouteExt F='Inh'>0</ConLineRouteExt><ShapeSplit>1</ShapeSplit><ShapeSplittable F='Inh'>0</ShapeSplittable></Layout><vx:Layout xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:ShapePlaceStyle F='Inh'>0</vx:ShapePlaceStyle></vx:Layout><v14:Layout xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:Relationships F='Inh'>0</v14:Relationships><v14:DisplayLevel F='Inh'>0</v14:DisplayLevel></v14:Layout><Char IX='0'><Font>5</Font><Color F='Inh'>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont F='Inh'>24</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><Scratch IX='0'><X Unit='MM' F='Controls.Row_1'>-0.118110236220472</X><Y Unit='MM' F='Controls.Row_1.Y'>-0.118110236220472</Y><A F='No Formula'>0</A><B F='No Formula'>0</B><C F='No Formula'>0</C><D F='No Formula'>0</D></Scratch><Connection IX='0'><X Unit='MM' F='Width*0.5'>0.78740157480315</X><Y Unit='MM' F='Height*0.5'>0.590551181102365</Y><DirX>0</DirX><DirY>1</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='1'><X Unit='MM' F='Width*1'>1.5748031496063</X><Y Unit='MM' F='Height*0.5'>0.590551181102365</Y><DirX>-1</DirX><DirY>0</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='2'><X Unit='MM' F='Width*0.5'>0.78740157480315</X><Y Unit='MM' F='Height*0'>0</Y><DirX>0</DirX><DirY>1</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='3'><X Unit='MM' F='Width*0'>0</X><Y Unit='MM' F='Height*0.5'>0.590551181102365</Y><DirX>1</DirX><DirY>0</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='4'><X Unit='MM' F='Width*0.5'>0.78740157480315</X><Y Unit='MM' F='Height*1'>1.18110236220473</Y><DirX>0</DirX><DirY>-1</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Control NameU='Row_1' ID='1'><X Unit='MM' F='-ThePage!ShdwOffsetX*User.ScaleFactor'>-0.118110236220472</X><Y Unit='MM' F='ThePage!ShdwOffsetY*User.ScaleFactor'>-0.118110236220472</Y><XDyn Unit='MM'>0</XDyn><YDyn Unit='MM'>0</YDyn><XCon>2</XCon><YCon>2</YCon><CanGlue>0</CanGlue><Prompt>调节深度和透视效果</Prompt></Control><User NameU='ScaleFactor' ID='1'><Value F='ThePage!DrawingScale/ThePage!PageScale'>1</Value><Prompt V='null'/></User><User NameU='visVersion' ID='3'><Value>14</Value><Prompt V='null'/></User><Shapes><Shape ID='6' Type='Shape' LineStyle='7' FillStyle='7' TextStyle='7'><XForm><PinX Unit='MM' F='Sheet.4!Width*0.5'>0.78740157480315</PinX><PinY Unit='MM' F='GUARD((Scratch.Y1>0)*Sheet.4!Height+SIGN(Scratch.Y1)*LocPinY)'>-0.059055118110236</PinY><Width Unit='MM' F='Sheet.4!Width*1'>1.5748031496063</Width><Height Unit='MM' F='GUARD(ABS(Scratch.Y1))'>0.118110236220472</Height><LocPinX Unit='MM' F='Width*0.5'>0.78740157480315</LocPinX><LocPinY Unit='MM' F='Height*0.5'>0.059055118110236</LocPinY><Angle Unit='AD'>0</Angle><FlipX F='GUARD(0)'>0</FlipX><FlipY F='Scratch.Y1>0'>0</FlipY><ResizeMode>0</ResizeMode></XForm><Line><LineWeight Unit='PT' F='Inh'>0.003333333333333333</LineWeight><LineColor F='Inh'>#000000</LineColor><LinePattern F='Inh'>1</LinePattern><Rounding F='GUARD(0)'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans F='Inh'>0</LineColorTrans></Line><Fill><FillForegnd F='Inh'>#b0c5e3</FillForegnd><FillBkgnd F='Inh'>#edf1f8</FillBkgnd><FillPattern F='GUARD(1)'>1</FillPattern><ShdwForegnd F='Inh'>#4979c0</ShdwForegnd><ShdwBkgnd F='Inh'>#ffffff</ShdwBkgnd><ShdwPattern F='GUARD(0)'>0</ShdwPattern><FillForegndTrans F='Inh'>0</FillForegndTrans><FillBkgndTrans F='Inh'>0</FillBkgndTrans><ShdwForegndTrans F='Inh'>0</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType F='Inh'>0</ShapeShdwType><ShapeShdwOffsetX F='Inh'>0</ShapeShdwOffsetX><ShapeShdwOffsetY F='Inh'>0</ShapeShdwOffsetY><ShapeShdwObliqueAngle F='Inh'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor F='Inh'>1</ShapeShdwScaleFactor></Fill><Protection><LockWidth>1</LockWidth><LockHeight>1</LockHeight><LockMoveX>1</LockMoveX><LockMoveY>1</LockMoveY><LockAspect F='Inh'>0</LockAspect><LockDelete F='NOT(ISERROR(Sheet.4!Width))'>1</LockDelete><LockBegin F='Inh'>0</LockBegin><LockEnd F='Inh'>0</LockEnd><LockRotate>1</LockRotate><LockCrop F='Inh'>0</LockCrop><LockVtxEdit F='Inh'>0</LockVtxEdit><LockTextEdit>1</LockTextEdit><LockFormat F='Inh'>0</LockFormat><LockGroup F='Inh'>0</LockGroup><LockCalcWH F='Inh'>0</LockCalcWH><LockSelect F='Inh'>0</LockSelect><LockCustProp F='Inh'>0</LockCustProp></Protection><vx:Protection xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LockFromGroupFormat F='Inh'>0</vx:LockFromGroupFormat><vx:LockThemeColors F='Inh'>0</vx:LockThemeColors><vx:LockThemeEffects F='Inh'>0</vx:LockThemeEffects></vx:Protection><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Group><SelectMode F='Inh'>1</SelectMode><DisplayMode F='Inh'>2</DisplayMode><IsDropTarget F='Inh'>0</IsDropTarget><IsSnapTarget F='Inh'>1</IsSnapTarget><IsTextEditTarget F='Inh'>1</IsTextEditTarget><DontMoveChildren>1</DontMoveChildren></Group><Char IX='0'><Font>5</Font><Color F='Inh'>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont F='Inh'>24</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><Scratch IX='0'><X Unit='MM' F='Sheet.4!Scratch.X1'>-0.118110236220472</X><Y Unit='MM' F='Sheet.4!Scratch.Y1'>-0.118110236220472</Y><A F='No Formula'>0</A><B F='No Formula'>0</B><C F='No Formula'>0</C><D F='No Formula'>0</D></Scratch><Geom IX='0'><NoFill>0</NoFill><NoLine>0</NoLine><NoShow>0</NoShow><NoSnap F='No Formula'>0</NoSnap><MoveTo IX='1'><X Unit='MM'>0</X><Y Unit='MM' F='Height'>0.118110236220472</Y></MoveTo><LineTo IX='2'><X Unit='MM' F='Width'>1.5748031496063</X><Y Unit='MM' F='Geometry1.Y1'>0.118110236220472</Y></LineTo><LineTo IX='3'><X Unit='MM' F='Width+Scratch.X1'>1.456692913385828</X><Y Unit='MM'>0</Y></LineTo><LineTo IX='4'><X Unit='MM' F='Scratch.X1'>-0.118110236220472</X><Y Unit='MM' F='Geometry1.Y3'>0</Y></LineTo><LineTo IX='5'><X Unit='MM' F='Geometry1.X1'>0</X><Y Unit='MM' F='Geometry1.Y1'>0.118110236220472</Y></LineTo></Geom><v14:Geom IX='0' xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:NoQuickDrag>0</v14:NoQuickDrag></v14:Geom></Shape><Shape ID='7' Type='Shape' LineStyle='7' FillStyle='7' TextStyle='7'><XForm><PinX Unit='MM' F='GUARD((Scratch.X1>0)*Sheet.4!Width+SIGN(Scratch.X1)*LocPinX)'>-0.059055118110236</PinX><PinY Unit='MM' F='Sheet.4!Height*0.5'>0.590551181102365</PinY><Width Unit='MM' F='GUARD(ABS(Scratch.X1))'>0.118110236220472</Width><Height Unit='MM' F='Sheet.4!Height*1'>1.18110236220473</Height><LocPinX Unit='MM' F='Width*0.5'>0.059055118110236</LocPinX><LocPinY Unit='MM' F='Height*0.5'>0.590551181102365</LocPinY><Angle Unit='AD'>0</Angle><FlipX F='Scratch.X1>0'>0</FlipX><FlipY F='GUARD(0)'>0</FlipY><ResizeMode>0</ResizeMode></XForm><Line><LineWeight Unit='PT' F='Inh'>0.003333333333333333</LineWeight><LineColor F='Inh'>#000000</LineColor><LinePattern F='Inh'>1</LinePattern><Rounding F='GUARD(0)'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans F='Inh'>0</LineColorTrans></Line><Fill><FillForegnd F='Inh'>#b0c5e3</FillForegnd><FillBkgnd F='Inh'>#edf1f8</FillBkgnd><FillPattern F='GUARD(1)'>1</FillPattern><ShdwForegnd F='Inh'>#4979c0</ShdwForegnd><ShdwBkgnd F='Inh'>#ffffff</ShdwBkgnd><ShdwPattern F='GUARD(0)'>0</ShdwPattern><FillForegndTrans F='Inh'>0</FillForegndTrans><FillBkgndTrans F='Inh'>0</FillBkgndTrans><ShdwForegndTrans F='Inh'>0</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType F='Inh'>0</ShapeShdwType><ShapeShdwOffsetX F='Inh'>0</ShapeShdwOffsetX><ShapeShdwOffsetY F='Inh'>0</ShapeShdwOffsetY><ShapeShdwObliqueAngle F='Inh'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor F='Inh'>1</ShapeShdwScaleFactor></Fill><Protection><LockWidth>1</LockWidth><LockHeight>1</LockHeight><LockMoveX>1</LockMoveX><LockMoveY>1</LockMoveY><LockAspect F='Inh'>0</LockAspect><LockDelete F='NOT(ISERROR(Sheet.4!Width))'>1</LockDelete><LockBegin F='Inh'>0</LockBegin><LockEnd F='Inh'>0</LockEnd><LockRotate>1</LockRotate><LockCrop F='Inh'>0</LockCrop><LockVtxEdit F='Inh'>0</LockVtxEdit><LockTextEdit>1</LockTextEdit><LockFormat F='Inh'>0</LockFormat><LockGroup F='Inh'>0</LockGroup><LockCalcWH F='Inh'>0</LockCalcWH><LockSelect F='Inh'>0</LockSelect><LockCustProp F='Inh'>0</LockCustProp></Protection><vx:Protection xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LockFromGroupFormat F='Inh'>0</vx:LockFromGroupFormat><vx:LockThemeColors F='Inh'>0</vx:LockThemeColors><vx:LockThemeEffects F='Inh'>0</vx:LockThemeEffects></vx:Protection><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Group><SelectMode F='Inh'>1</SelectMode><DisplayMode F='Inh'>2</DisplayMode><IsDropTarget F='Inh'>0</IsDropTarget><IsSnapTarget F='Inh'>1</IsSnapTarget><IsTextEditTarget F='Inh'>1</IsTextEditTarget><DontMoveChildren>1</DontMoveChildren></Group><Char IX='0'><Font>5</Font><Color F='Inh'>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont F='Inh'>24</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><Scratch IX='0'><X Unit='MM' F='Sheet.4!Scratch.X1'>-0.118110236220472</X><Y Unit='MM' F='Sheet.4!Scratch.Y1'>-0.118110236220472</Y><A F='No Formula'>0</A><B F='No Formula'>0</B><C F='No Formula'>0</C><D F='No Formula'>0</D></Scratch><Geom IX='0'><NoFill>0</NoFill><NoLine>0</NoLine><NoShow>0</NoShow><NoSnap F='No Formula'>0</NoSnap><MoveTo IX='1'><X Unit='MM'>0</X><Y Unit='MM' F='Scratch.Y1'>-0.118110236220472</Y></MoveTo><LineTo IX='2'><X Unit='MM' F='Width'>0.118110236220472</X><Y Unit='MM'>0</Y></LineTo><LineTo IX='3'><X Unit='MM' F='Geometry1.X2'>0.118110236220472</X><Y Unit='MM' F='Height'>1.18110236220473</Y></LineTo><LineTo IX='4'><X Unit='MM' F='Geometry1.X1'>0</X><Y Unit='MM' F='Height+Scratch.Y1'>1.062992125984258</Y></LineTo><LineTo IX='5'><X Unit='MM' F='Geometry1.X1'>0</X><Y Unit='MM' F='Geometry1.Y1'>-0.118110236220472</Y></LineTo></Geom><v14:Geom IX='0' xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:NoQuickDrag>0</v14:NoQuickDrag></v14:Geom></Shape><Shape ID='5' Type='Shape' LineStyle='6' FillStyle='6' TextStyle='6'><XForm><PinX Unit='MM' F='Sheet.4!Width*0.5'>0.78740157480315</PinX><PinY Unit='MM' F='Sheet.4!Height*0.5'>0.590551181102365</PinY><Width Unit='MM' F='Sheet.4!Width*1'>1.5748031496063</Width><Height Unit='MM' F='Sheet.4!Height*1'>1.18110236220473</Height><LocPinX Unit='MM' F='Width*0.5'>0.78740157480315</LocPinX><LocPinY Unit='MM' F='Height*0.5'>0.590551181102365</LocPinY><Angle Unit='AD'>0</Angle><FlipX F='GUARD(0)'>0</FlipX><FlipY F='GUARD(0)'>0</FlipY><ResizeMode>0</ResizeMode></XForm><Line><LineWeight Unit='PT' F='Inh'>0.003333333333333333</LineWeight><LineColor F='Inh'>#000000</LineColor><LinePattern F='Inh'>1</LinePattern><Rounding F='GUARD(0)'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans F='Inh'>0</LineColorTrans></Line><Fill><FillForegnd F='Inh'>#e8eef7</FillForegnd><FillBkgnd F='Inh'>#b7c9e3</FillBkgnd><FillPattern F='GUARD(1)'>1</FillPattern><ShdwForegnd F='Inh'>#4979c0</ShdwForegnd><ShdwBkgnd F='Inh'>#ffffff</ShdwBkgnd><ShdwPattern F='GUARD(0)'>0</ShdwPattern><FillForegndTrans F='Inh'>0</FillForegndTrans><FillBkgndTrans F='Inh'>0</FillBkgndTrans><ShdwForegndTrans F='Inh'>0</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType F='Inh'>0</ShapeShdwType><ShapeShdwOffsetX F='Inh'>0</ShapeShdwOffsetX><ShapeShdwOffsetY F='Inh'>0</ShapeShdwOffsetY><ShapeShdwObliqueAngle F='Inh'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor F='Inh'>1</ShapeShdwScaleFactor></Fill><Protection><LockWidth>1</LockWidth><LockHeight>1</LockHeight><LockMoveX>1</LockMoveX><LockMoveY>1</LockMoveY><LockAspect F='Inh'>0</LockAspect><LockDelete F='NOT(ISERROR(Sheet.4!Width))'>1</LockDelete><LockBegin F='Inh'>0</LockBegin><LockEnd F='Inh'>0</LockEnd><LockRotate>1</LockRotate><LockCrop F='Inh'>0</LockCrop><LockVtxEdit F='Inh'>0</LockVtxEdit><LockTextEdit F='Inh'>0</LockTextEdit><LockFormat F='Inh'>0</LockFormat><LockGroup F='Inh'>0</LockGroup><LockCalcWH F='Inh'>0</LockCalcWH><LockSelect F='Inh'>0</LockSelect><LockCustProp F='Inh'>0</LockCustProp></Protection><vx:Protection xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LockFromGroupFormat F='Inh'>0</vx:LockFromGroupFormat><vx:LockThemeColors F='Inh'>0</vx:LockThemeColors><vx:LockThemeEffects F='Inh'>0</vx:LockThemeEffects></vx:Protection><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Group><SelectMode F='Inh'>1</SelectMode><DisplayMode F='Inh'>2</DisplayMode><IsDropTarget F='Inh'>0</IsDropTarget><IsSnapTarget F='Inh'>1</IsSnapTarget><IsTextEditTarget F='Inh'>1</IsTextEditTarget><DontMoveChildren>1</DontMoveChildren></Group><Char IX='0'><Font>5</Font><Color F='Inh'>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont F='Inh'>24</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><Geom IX='0'><NoFill>0</NoFill><NoLine>0</NoLine><NoShow>0</NoShow><NoSnap F='No Formula'>0</NoSnap><MoveTo IX='1'><X Unit='MM' F='Width*0'>0</X><Y Unit='MM' F='Height*0'>0</Y></MoveTo><LineTo IX='2'><X Unit='MM' F='Width*1'>1.5748031496063</X><Y Unit='MM' F='Height*0'>0</Y></LineTo><LineTo IX='3'><X Unit='MM' F='Width*1'>1.5748031496063</X><Y Unit='MM' F='Height*1'>1.18110236220473</Y></LineTo><LineTo IX='4'><X Unit='MM' F='Width*0'>0</X><Y Unit='MM' F='Height*1'>1.18110236220473</Y></LineTo><LineTo IX='5'><X Unit='MM' F='Geometry1.X1'>0</X><Y Unit='MM' F='Geometry1.Y1'>0</Y></LineTo></Geom><v14:Geom IX='0' xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:NoQuickDrag>0</v14:NoQuickDrag></v14:Geom></Shape></Shapes></Shape></Shapes><Icon>
|
324
|
+
AAABAAEAICAQTAAAAADoAgAAFgAAACgAAAAgAAAAQAAAAAEABAAAAAAAgAIAAAAAAAAAAAAAAAAAA
|
325
|
+
AAAAAAAAAAAAACAAACAAAAAgIAAgAAAAIAAgACAgAAAgICAAMDAwAAAAP8AAP8AAAD//wD/AAAA/w
|
326
|
+
D/AP//AAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
327
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
328
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACIiIiIiIiIiIiIiAAAAAAIiIiIiIiIiIiIiIgAAAAAA
|
329
|
+
AAAAAAAAAAAAACIAAAAAA/////////////wiAAAAAAP////////////8IgAAAAAD/////////////
|
330
|
+
CIAAAAAA/////////////wiAAAAAAP////////////8IgAAAAAD/////////////CIAAAAAA/////
|
331
|
+
////////wiAAAAAAP////////////8IgAAAAAD/////////////CIAAAAAA/////////////wiAAA
|
332
|
+
AAAP////////////8IgAAAAAD/////////////CIAAAAAA/////////////wiAAAAAAP/////////
|
333
|
+
///8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
334
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
335
|
+
AAAD///////////////////////////////////////////wAAA/4AAAP8AAAD/AAAA/wAAAP8AAA
|
336
|
+
D/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAf8AAAP////////////
|
337
|
+
////////////////////w==</Icon></Master><Master ID='7' NameU='Dynamic connector' Name='动态连接线' Prompt='T' IconSize='1' AlignName='2' MatchByName='1' IconUpdate='0' UniqueID='{002A9503-0000-0000-8E40-00608CF305B2}' BaseID='{F7290A45-E3AD-11D2-AE4F-006008C9F5A9}' PatternFlags='0' Hidden='0'><PageSheet LineStyle='0' FillStyle='0' TextStyle='0'><PageProps><PageWidth>3.93700787401575</PageWidth><PageHeight>3.93700787401575</PageHeight><ShdwOffsetX>0.118110236220472</ShdwOffsetX><ShdwOffsetY>-0.118110236220472</ShdwOffsetY><PageScale Unit='MM'>0.0393700787401575</PageScale><DrawingScale Unit='MM'>0.0393700787401575</DrawingScale><DrawingSizeType>4</DrawingSizeType><DrawingScaleType>0</DrawingScaleType><InhibitSnap>0</InhibitSnap><UIVisibility>0</UIVisibility><ShdwType>0</ShdwType><ShdwObliqueAngle>0</ShdwObliqueAngle><ShdwScaleFactor>1</ShdwScaleFactor></PageProps><v14:PageProps xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:DrawingResizeType>0</v14:DrawingResizeType></v14:PageProps><Layer IX='0'><Name>连接线</Name><Color>255</Color><Status>0</Status><Visible>1</Visible><Print>1</Print><Active>0</Active><Lock>0</Lock><Snap>1</Snap><Glue>1</Glue><NameUniv>Connector</NameUniv><ColorTrans>0</ColorTrans></Layer></PageSheet><Shapes><Shape ID='5' Type='Shape' LineStyle='8' FillStyle='8' TextStyle='8'><XForm><PinX F='GUARD((BeginX+EndX)/2)'>1.771653543307085</PinX><PinY F='GUARD((BeginY+EndY)/2)'>1.771653543307085</PinY><Width F='GUARD(EndX-BeginX)'>1.18110236220473</Width><Height F='GUARD(EndY-BeginY)'>-1.18110236220473</Height><LocPinX F='GUARD(Width*0.5)'>0.5905511811023649</LocPinX><LocPinY F='GUARD(Height*0.5)'>-0.5905511811023649</LocPinY><Angle F='GUARD(0DA)'>0</Angle><FlipX F='GUARD(FALSE)'>0</FlipX><FlipY F='GUARD(FALSE)'>0</FlipY><ResizeMode>0</ResizeMode></XForm><XForm1D><BeginX>1.18110236220472</BeginX><BeginY>2.36220472440945</BeginY><EndX>2.36220472440945</EndX><EndY>1.18110236220472</EndY></XForm1D><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='Inh'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><LayerMem><LayerMember>0</LayerMember></LayerMem><TextXForm><TxtPinX F='SETATREF(Controls.TextPosition)'>0</TxtPinX><TxtPinY F='SETATREF(Controls.TextPosition.Y)'>-1.18110236220472</TxtPinY><TxtWidth Unit='PT' F='MAX(TEXTWIDTH(TheText),5*Char.Size)'>0.5555555555555556</TxtWidth><TxtHeight F='TEXTHEIGHT(TheText,TxtWidth)'>0.2444444444444444</TxtHeight><TxtLocPinX Unit='PT' F='TxtWidth*0.5'>0.2777777777777778</TxtLocPinX><TxtLocPinY F='TxtHeight*0.5'>0.1222222222222222</TxtLocPinY><TxtAngle>0</TxtAngle></TextXForm><Protection><LockWidth>0</LockWidth><LockHeight>1</LockHeight><LockMoveX>0</LockMoveX><LockMoveY>0</LockMoveY><LockAspect F='Inh'>0</LockAspect><LockDelete>0</LockDelete><LockBegin F='Inh'>0</LockBegin><LockEnd F='Inh'>0</LockEnd><LockRotate>0</LockRotate><LockCrop F='Inh'>0</LockCrop><LockVtxEdit>0</LockVtxEdit><LockTextEdit>0</LockTextEdit><LockFormat F='Inh'>0</LockFormat><LockGroup F='Inh'>0</LockGroup><LockCalcWH>1</LockCalcWH><LockSelect F='Inh'>0</LockSelect><LockCustProp F='Inh'>0</LockCustProp></Protection><vx:Protection xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LockFromGroupFormat F='Inh'>0</vx:LockFromGroupFormat><vx:LockThemeColors F='Inh'>0</vx:LockThemeColors><vx:LockThemeEffects F='Inh'>0</vx:LockThemeEffects></vx:Protection><Help><HelpTopic>Vis_SE.chm!#20000</HelpTopic><Copyright>版权所有 2001 Microsoft Corporation。保留所有权利。</Copyright></Help><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox>1</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback>2</DynFeedback><GlueType>2</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType>2</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics>1</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID F='Inh'>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Layout><ShapePermeableX F='Inh'>0</ShapePermeableX><ShapePermeableY F='Inh'>0</ShapePermeableY><ShapePermeablePlace F='Inh'>0</ShapePermeablePlace><ShapeFixedCode F='Inh'>0</ShapeFixedCode><ShapePlowCode F='Inh'>0</ShapePlowCode><ShapeRouteStyle F='Inh'>0</ShapeRouteStyle><ConFixedCode F='Inh'>0</ConFixedCode><ConLineJumpCode F='Inh'>0</ConLineJumpCode><ConLineJumpStyle F='Inh'>0</ConLineJumpStyle><ConLineJumpDirX F='Inh'>0</ConLineJumpDirX><ConLineJumpDirY F='Inh'>0</ConLineJumpDirY><ShapePlaceFlip F='Inh'>0</ShapePlaceFlip><ConLineRouteExt F='Inh'>0</ConLineRouteExt><ShapeSplit F='Inh'>0</ShapeSplit><ShapeSplittable>1</ShapeSplittable></Layout><vx:Layout xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:ShapePlaceStyle F='Inh'>0</vx:ShapePlaceStyle></vx:Layout><v14:Layout xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:Relationships F='Inh'>0</v14:Relationships><v14:DisplayLevel F='Inh'>0</v14:DisplayLevel></v14:Layout><Char IX='0'><Font F='Inh'>5</Font><Color F='Inh'>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont F='Inh'>5</AsianFont><ComplexScriptFont F='Inh'>24</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><Control NameU='TextPosition' ID='1'><X>0</X><Y>-1.18110236220472</Y><XDyn F='Controls.TextPosition'>0</XDyn><YDyn F='Controls.TextPosition.Y'>-1.18110236220472</YDyn><XCon F='IF(OR(STRSAME(SHAPETEXT(TheText),""),HideText),5,0)'>5</XCon><YCon>0</YCon><CanGlue>0</CanGlue><Prompt>Reposition Text</Prompt></Control><Geom IX='0'><NoFill>1</NoFill><NoLine>0</NoLine><NoShow>0</NoShow><NoSnap>0</NoSnap><MoveTo IX='1'><X>0</X><Y>0</Y></MoveTo><LineTo IX='2'><X>0</X><Y>-1.18110236220472</Y></LineTo><LineTo IX='3'><X>1.18110236220472</X><Y>-1.18110236220472</Y></LineTo></Geom><v14:Geom IX='0' xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:NoQuickDrag>0</v14:NoQuickDrag></v14:Geom></Shape></Shapes><Icon>
|
338
|
+
AAABAAEAICAQTAAAAADoAgAAFgAAACgAAAAgAAAAQAAAAAEABAAAAAAAgAIAAAAAAAAAAAAAAAAAA
|
339
|
+
AAAAAAAAAAAAACAAACAAAAAgIAAgAAAAIAAgACAgAAAgICAAMDAwAAAAP8AAP8AAAD//wD/AAAA/w
|
340
|
+
D/AP//AAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
341
|
+
AAAAAAAh4eHhwAAAAAAAAAAAAAAAHAAAAgAAAAAAAAAAAAAADODMzAHAAAAAAAAAAAAAAAAAAAwCA
|
342
|
+
AAAAAAAAAAAAAw///wMAcAAAAAAAAAAAAIcP//8Hh4eHh4eHh4AAAABwD/n/AwBwAAAAAABwAAAAg
|
343
|
+
ACZkAAAgAAAAAAAgAAAAHAACTAAAHAAAAAAAHAAAACAAAAAAACAAAAAAACAAAAAcAAAMAAAcAAAAA
|
344
|
+
AAcAAAAIAAADMzM4MzMzMAAIAAAABwAAAAAAAAAAADAABwAAAAgAAAAAAAgAAAAwAAgAAAAHAAAAA
|
345
|
+
AAHAAAAMAAHAAAACAAAAAAACAAAADAACAAAAAcAAAAAAAcAAAAwAAcAAAAIAAAAAAAIAAM5MzMIAA
|
346
|
+
AABwAAAAAABwAAmZADBwAAAAgAAAAAAAgAD/n/AwgAAAAHh4eHh4eHhw///weHAAAAAAAAAAAACAA
|
347
|
+
P//8DAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAIAAAIAAAAAAAAAAAAAAAABwAABwAAAAAAAAAA
|
348
|
+
AAAAAAh4eHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
349
|
+
AAAD/////////////////gH///79///4Df//8A3//+AN///AAAAf0A3/39Ad/9/eff/f3H3/3959/
|
350
|
+
9/eAAPf3gAD39/989/f/fPf3/3z39/989/f/cBf3/2AX9/9gF/AAAAf//2Af//9gP///ff///33//
|
351
|
+
/8B/////////////////w==</Icon></Master><Master ID='10' NameU='Rectangle' Name='矩形' Prompt='将此形状拖到绘图页上。' IconSize='1' AlignName='2' MatchByName='0' IconUpdate='1' UniqueID='{72EE8E94-0002-0000-8E40-00608CF305B2}' BaseID='{3EC42FEA-9675-45E7-B09B-197E4CC09B29}' PatternFlags='0' Hidden='0'><PageSheet LineStyle='0' FillStyle='0' TextStyle='0'><PageProps><PageWidth Unit='MM'>3.937007874015748</PageWidth><PageHeight Unit='MM'>3.937007874015748</PageHeight><ShdwOffsetX Unit='MM'>0.1181102362204724</ShdwOffsetX><ShdwOffsetY Unit='MM'>-0.1181102362204724</ShdwOffsetY><PageScale Unit='MM'>0.03937007874015748</PageScale><DrawingScale Unit='MM'>0.03937007874015748</DrawingScale><DrawingSizeType>4</DrawingSizeType><DrawingScaleType>0</DrawingScaleType><InhibitSnap F='No Formula'>0</InhibitSnap><UIVisibility F='No Formula'>0</UIVisibility><ShdwType F='No Formula'>0</ShdwType><ShdwObliqueAngle F='No Formula'>0</ShdwObliqueAngle><ShdwScaleFactor>1</ShdwScaleFactor></PageProps><v14:PageProps xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:DrawingResizeType F='No Formula'>0</v14:DrawingResizeType></v14:PageProps><PrintProps><PageLeftMargin>0.25</PageLeftMargin><PageRightMargin>0.25</PageRightMargin><PageTopMargin>0.25</PageTopMargin><PageBottomMargin>0.25</PageBottomMargin><ScaleX>1</ScaleX><ScaleY>1</ScaleY><PagesX>1</PagesX><PagesY>1</PagesY><CenterX>0</CenterX><CenterY>0</CenterY><OnPage>0</OnPage><PrintGrid>0</PrintGrid><PrintPageOrientation>0</PrintPageOrientation><PaperKind>0</PaperKind><PaperSource>7</PaperSource></PrintProps><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID>2052</LangID><ShapeKeywords>框,矩形,基本</ShapeKeywords><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Char IX='0'><Font>5</Font><Color F='Inh'>0</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size F='Inh'>0.1666666666666667</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont F='Inh'>24</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID>2052</LangID></Char></PageSheet><Shapes><Shape ID='5' Type='Shape' LineStyle='6' FillStyle='6' TextStyle='6' UniqueID='{FE1FCFE9-69A4-43C0-AC8D-3B138316FF27}'><XForm><PinX Unit='MM'>1.968503937007874</PinX><PinY Unit='MM'>1.968503937007874</PinY><Width Unit='MM'>1.574803149606299</Width><Height Unit='MM'>1.181102362204725</Height><LocPinX Unit='MM' F='Width*0.5'>0.7874015748031495</LocPinX><LocPinY Unit='MM' F='Height*0.5'>0.5905511811023625</LocPinY><Angle Unit='DEG'>0</Angle><FlipX>0</FlipX><FlipY>0</FlipY><ResizeMode>0</ResizeMode></XForm><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='OPENTEXTWIN()'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><Help><HelpTopic>Vis_Sba.chm!#45752</HelpTopic><Copyright V='null'/></Help><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Layout><ShapePermeableX F='Inh'>0</ShapePermeableX><ShapePermeableY F='Inh'>0</ShapePermeableY><ShapePermeablePlace F='Inh'>0</ShapePermeablePlace><ShapeFixedCode F='Inh'>0</ShapeFixedCode><ShapePlowCode F='Inh'>0</ShapePlowCode><ShapeRouteStyle F='Inh'>0</ShapeRouteStyle><ConFixedCode F='Inh'>0</ConFixedCode><ConLineJumpCode F='Inh'>0</ConLineJumpCode><ConLineJumpStyle F='Inh'>0</ConLineJumpStyle><ConLineJumpDirX F='Inh'>0</ConLineJumpDirX><ConLineJumpDirY F='Inh'>0</ConLineJumpDirY><ShapePlaceFlip F='Inh'>0</ShapePlaceFlip><ConLineRouteExt F='Inh'>0</ConLineRouteExt><ShapeSplit>1</ShapeSplit><ShapeSplittable F='Inh'>0</ShapeSplittable></Layout><vx:Layout xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:ShapePlaceStyle F='Inh'>0</vx:ShapePlaceStyle></vx:Layout><v14:Layout xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:Relationships F='Inh'>0</v14:Relationships><v14:DisplayLevel F='Inh'>0</v14:DisplayLevel></v14:Layout><Fill><FillForegnd F='Inh'>#e8eef7</FillForegnd><FillBkgnd F='Inh'>#b7c9e3</FillBkgnd><FillPattern F='Inh'>1</FillPattern><ShdwForegnd F='Inh'>#4979c0</ShdwForegnd><ShdwBkgnd F='Inh'>#ffffff</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans F='Inh'>0</FillForegndTrans><FillBkgndTrans F='Inh'>0</FillBkgndTrans><ShdwForegndTrans F='Inh'>0</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType F='Inh'>0</ShapeShdwType><ShapeShdwOffsetX F='Inh'>0</ShapeShdwOffsetX><ShapeShdwOffsetY F='Inh'>0</ShapeShdwOffsetY><ShapeShdwObliqueAngle F='Inh'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor F='Inh'>1</ShapeShdwScaleFactor></Fill><Line><LineWeight Unit='PT' F='Inh'>0.003333333333333333</LineWeight><LineColor F='Inh'>#000000</LineColor><LinePattern F='Inh'>1</LinePattern><Rounding F='Inh'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans F='Inh'>0</LineColorTrans></Line><Connection IX='0'><X Unit='MM' F='Width*0.5'>0.7874015748031495</X><Y Unit='MM' F='Height*0'>0</Y><DirX>0</DirX><DirY>1</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='1'><X Unit='MM' F='Width*1'>1.574803149606299</X><Y Unit='MM' F='Height*0.5'>0.5905511811023625</Y><DirX>-1</DirX><DirY>0</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='2'><X Unit='MM' F='Width*0.5'>0.7874015748031495</X><Y Unit='MM' F='Height*1'>1.181102362204725</Y><DirX>0</DirX><DirY>-1</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='3'><X Unit='MM' F='Width*0'>0</X><Y Unit='MM' F='Height*0.5'>0.5905511811023625</Y><DirX>1</DirX><DirY>0</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='4'><X Unit='MM' F='Width*0.5'>0.7874015748031495</X><Y Unit='MM' F='Height*0.5'>0.5905511811023625</Y><DirX>0</DirX><DirY>1</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><User NameU='visVersion' ID='2'><Value>14</Value><Prompt F='No Formula'/></User><Char IX='0'><Font>5</Font><Color F='Inh'>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont F='Inh'>24</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><Geom IX='0'><NoFill>0</NoFill><NoLine>0</NoLine><NoShow>0</NoShow><NoSnap F='No Formula'>0</NoSnap><MoveTo IX='1'><X Unit='MM' F='Width*0'>0</X><Y Unit='MM' F='Height*0'>0</Y></MoveTo><LineTo IX='2'><X Unit='MM' F='Width*1'>1.574803149606299</X><Y Unit='MM' F='Height*0'>0</Y></LineTo><LineTo IX='3'><X Unit='MM' F='Width*1'>1.574803149606299</X><Y Unit='MM' F='Height*1'>1.181102362204725</Y></LineTo><LineTo IX='4'><X Unit='MM' F='Width*0'>0</X><Y Unit='MM' F='Height*1'>1.181102362204725</Y></LineTo><LineTo IX='5'><X Unit='MM' F='Geometry1.X1'>0</X><Y Unit='MM' F='Geometry1.Y1'>0</Y></LineTo></Geom><v14:Geom IX='0' xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:NoQuickDrag F='No Formula'>0</v14:NoQuickDrag></v14:Geom></Shape></Shapes><Icon>
|
352
|
+
AAABAAEAICAQTAAAAADoAgAAFgAAACgAAAAgAAAAQAAAAAEABAAAAAAAgAIAAAAAAAAAAAAAAAAAA
|
353
|
+
AAAAAAAAAAAAACAAACAAAAAgIAAgAAAAIAAgACAgAAAgICAAMDAwAAAAP8AAP8AAAD//wD/AAAA/w
|
354
|
+
D/AP//AAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
355
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB3d3d3d3d3
|
356
|
+
d3d3d3dwAAAAAAAAAAAAAAAAAAAAcAAAAP//////////////8HAAAAD///////////////BwAAAA/
|
357
|
+
//////////////wcAAAAP//////////////8HAAAAD///////////////BwAAAA//////////////
|
358
|
+
/wcAAAAP//////////////8HAAAAD///////////////BwAAAA///////////////wcAAAAP/////
|
359
|
+
/////////8HAAAAD///////////////BwAAAA///////////////wcAAAAP//////////////8HAA
|
360
|
+
AAD///////////////BwAAAA///////////////wcAAAAP//////////////8HAAAAD//////////
|
361
|
+
/////BwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
362
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
363
|
+
AAAD////////////////////////////////wAAAH4AAAB+AAAAfgAAAH4AAAB+AAAAfgAAAH4AAA
|
364
|
+
B+AAAAfgAAAH4AAAB+AAAAfgAAAH4AAAB+AAAAfgAAAH4AAAB+AAAAfgAAAH4AAAD////////////
|
365
|
+
////////////////////w==</Icon></Master><Master ID='11' NameU='Star 5' Name='五角星形' Prompt='将此形状拖到绘图页上。' IconSize='1' AlignName='2' MatchByName='0' IconUpdate='1' UniqueID='{72EE9613-000F-0000-8E40-00608CF305B2}' BaseID='{61618E3E-BCF7-48D2-8E8C-B490CFB01A22}' PatternFlags='0' Hidden='0'><PageSheet LineStyle='0' FillStyle='0' TextStyle='0'><PageProps><PageWidth Unit='MM'>3.937007874015748</PageWidth><PageHeight Unit='MM'>3.937007874015748</PageHeight><ShdwOffsetX Unit='MM'>0.1181102362204724</ShdwOffsetX><ShdwOffsetY Unit='MM'>-0.1181102362204724</ShdwOffsetY><PageScale Unit='MM'>0.03937007874015748</PageScale><DrawingScale Unit='MM'>0.03937007874015748</DrawingScale><DrawingSizeType>4</DrawingSizeType><DrawingScaleType>0</DrawingScaleType><InhibitSnap F='No Formula'>0</InhibitSnap><UIVisibility F='No Formula'>0</UIVisibility><ShdwType F='No Formula'>0</ShdwType><ShdwObliqueAngle F='No Formula'>0</ShdwObliqueAngle><ShdwScaleFactor>1</ShdwScaleFactor></PageProps><v14:PageProps xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:DrawingResizeType F='No Formula'>0</v14:DrawingResizeType></v14:PageProps><PrintProps><PageLeftMargin>0.25</PageLeftMargin><PageRightMargin>0.25</PageRightMargin><PageTopMargin>0.25</PageTopMargin><PageBottomMargin>0.25</PageBottomMargin><ScaleX>1</ScaleX><ScaleY>1</ScaleY><PagesX>1</PagesX><PagesY>1</PagesY><CenterX>0</CenterX><CenterY>0</CenterY><OnPage>0</OnPage><PrintGrid>0</PrintGrid><PrintPageOrientation>0</PrintPageOrientation><PaperKind>0</PaperKind><PaperSource>7</PaperSource></PrintProps><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID>2052</LangID><ShapeKeywords>星,五,5,角,基本</ShapeKeywords><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Char IX='0'><Font>5</Font><Color F='Inh'>0</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size F='Inh'>0.1666666666666667</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont F='Inh'>24</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID>2052</LangID></Char></PageSheet><Shapes><Shape ID='5' Type='Shape' LineStyle='6' FillStyle='6' TextStyle='6' UniqueID='{D5DECBAF-953F-4E8F-8443-4FF6606BC180}'><XForm><PinX Unit='MM'>1.96850394468315</PinX><PinY Unit='MM'>1.88537579974752</PinY><Width Unit='MM'>1.574803149606299</Width><Height Unit='MM'>1.574803149606299</Height><LocPinX Unit='MM' F='Width*0.5000000048738'>0.7874015824784252</LocPinX><LocPinY Unit='MM' F='Height*0.44721363283968'>0.7042734375428031</LocPinY><Angle Unit='DEG'>0</Angle><FlipX>0</FlipX><FlipY>0</FlipY><ResizeMode>0</ResizeMode></XForm><Protection><LockWidth F='Inh'>0</LockWidth><LockHeight F='Inh'>0</LockHeight><LockMoveX F='Inh'>0</LockMoveX><LockMoveY F='Inh'>0</LockMoveY><LockAspect F='Inh'>0</LockAspect><LockDelete F='Inh'>0</LockDelete><LockBegin F='Inh'>0</LockBegin><LockEnd F='Inh'>0</LockEnd><LockRotate F='Inh'>0</LockRotate><LockCrop F='Inh'>0</LockCrop><LockVtxEdit F='Inh'>0</LockVtxEdit><LockTextEdit F='Inh'>0</LockTextEdit><LockFormat F='Inh'>0</LockFormat><LockGroup F='Inh'>0</LockGroup><LockCalcWH>1</LockCalcWH><LockSelect F='Inh'>0</LockSelect><LockCustProp F='Inh'>0</LockCustProp></Protection><vx:Protection xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LockFromGroupFormat F='Inh'>0</vx:LockFromGroupFormat><vx:LockThemeColors F='Inh'>0</vx:LockThemeColors><vx:LockThemeEffects F='Inh'>0</vx:LockThemeEffects></vx:Protection><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='OPENTEXTWIN()'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><TextXForm><TxtPinX Unit='MM' F='Width*0.5'>0.7874015748031495</TxtPinX><TxtPinY Unit='MM' F='Height*0.41666666666667'>0.6561679790026299</TxtPinY><TxtWidth Unit='MM' F='Width*0.5'>0.7874015748031495</TxtWidth><TxtHeight Unit='MM' F='Height*0.41666666666667'>0.6561679790026299</TxtHeight><TxtLocPinX Unit='MM' F='TxtWidth*0.5'>0.3937007874015748</TxtLocPinX><TxtLocPinY Unit='MM' F='TxtHeight*0.5'>0.328083989501315</TxtLocPinY><TxtAngle>0</TxtAngle></TextXForm><Help><HelpTopic>Vis_Sba.chm!#45744</HelpTopic><Copyright V='null'/></Help><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Layout><ShapePermeableX F='Inh'>0</ShapePermeableX><ShapePermeableY F='Inh'>0</ShapePermeableY><ShapePermeablePlace F='Inh'>0</ShapePermeablePlace><ShapeFixedCode F='Inh'>0</ShapeFixedCode><ShapePlowCode F='Inh'>0</ShapePlowCode><ShapeRouteStyle F='Inh'>0</ShapeRouteStyle><ConFixedCode F='Inh'>0</ConFixedCode><ConLineJumpCode F='Inh'>0</ConLineJumpCode><ConLineJumpStyle F='Inh'>0</ConLineJumpStyle><ConLineJumpDirX F='Inh'>0</ConLineJumpDirX><ConLineJumpDirY F='Inh'>0</ConLineJumpDirY><ShapePlaceFlip F='Inh'>0</ShapePlaceFlip><ConLineRouteExt F='Inh'>0</ConLineRouteExt><ShapeSplit>1</ShapeSplit><ShapeSplittable F='Inh'>0</ShapeSplittable></Layout><vx:Layout xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:ShapePlaceStyle F='Inh'>0</vx:ShapePlaceStyle></vx:Layout><v14:Layout xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:Relationships F='Inh'>0</v14:Relationships><v14:DisplayLevel F='Inh'>0</v14:DisplayLevel></v14:Layout><Fill><FillForegnd F='Inh'>#e8eef7</FillForegnd><FillBkgnd F='Inh'>#b7c9e3</FillBkgnd><FillPattern F='Inh'>1</FillPattern><ShdwForegnd F='Inh'>#4979c0</ShdwForegnd><ShdwBkgnd F='Inh'>#ffffff</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans F='Inh'>0</FillForegndTrans><FillBkgndTrans F='Inh'>0</FillBkgndTrans><ShdwForegndTrans F='Inh'>0</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType F='Inh'>0</ShapeShdwType><ShapeShdwOffsetX F='Inh'>0</ShapeShdwOffsetX><ShapeShdwOffsetY F='Inh'>0</ShapeShdwOffsetY><ShapeShdwObliqueAngle F='Inh'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor F='Inh'>1</ShapeShdwScaleFactor></Fill><Line><LineWeight Unit='PT' F='Inh'>0.003333333333333333</LineWeight><LineColor F='Inh'>#000000</LineColor><LinePattern F='Inh'>1</LinePattern><Rounding F='Inh'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans F='Inh'>0</LineColorTrans></Line><Connection IX='0'><X Unit='MM' F='LocPinX'>0.7874015824784252</X><Y Unit='MM' F='LocPinY'>0.7042734375428031</Y><DirX F='No Formula'>0</DirX><DirY F='No Formula'>0</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='1'><X Unit='MM' F='Geometry1.X10'>1.615324547524567</X><Y Unit='MM' F='Geometry1.Y10'>0.9732819001521259</Y><DirX>-0.951056516409127</DirX><DirY>-0.3090169940241733</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='2'><X Unit='MM' F='Geometry1.X2'>0.7874015748031495</X><Y Unit='MM' F='Geometry1.Y2'>1.574803149606299</Y><DirX>0</DirX><DirY>-1</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='3'><X Unit='MM' F='Geometry1.X4'>-0.04052139791828346</X><Y Unit='MM' F='Geometry1.Y4'>0.9732819001521259</Y><DirX>0.9510565162824899</DirX><DirY>-0.3090169944139223</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='4'><X Unit='MM' F='Geometry1.X6'>0.2757169548531653</X><Y Unit='MM' F='Geometry1.Y6'>0</Y><DirX>0.5877852521930111</DirX><DirY>0.8090169944472109</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='5'><X Unit='MM' F='Geometry1.X8'>1.299086126424992</X><Y Unit='MM' F='Geometry1.Y8'>0</Y><DirX>-0.5877852525245515</DirX><DirY>0.8090169942063326</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><User NameU='visVersion' ID='2'><Value>14</Value><Prompt F='No Formula'/></User><Char IX='0'><Font>5</Font><Color F='Inh'>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont F='Inh'>24</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><Geom IX='0'><NoFill>0</NoFill><NoLine F='No Formula'>0</NoLine><NoShow F='No Formula'>0</NoShow><NoSnap F='No Formula'>0</NoSnap><MoveTo IX='1'><X Unit='MM' F='Width*0.61803400615869'>0.9732818994625038</X><Y Unit='MM' F='Height*0.6180340065966'>0.9732819001521259</Y></MoveTo><LineTo IX='2'><X Unit='MM' F='Width*0.5'>0.7874015748031495</X><Y Unit='MM' F='Height*1'>1.574803149606299</Y></LineTo><LineTo IX='3'><X Unit='MM' F='Width*0.37589170711838'>0.5919554442809133</X><Y Unit='MM' F='Height*0.6180340065966'>0.9732819001521259</Y></LineTo><LineTo IX='4'><X Unit='MM' F='Width*-0.02573108767811'>-0.04052139791828346</X><Y Unit='MM' F='Height*0.6180340065966'>0.9732819001521259</Y></LineTo><LineTo IX='5'><X Unit='MM' F='Width*0.29918860260176'>0.471163153703559</X><Y Unit='MM' F='Height*0.38196603679178'>0.6015213177823306</Y></LineTo><LineTo IX='6'><X Unit='MM' F='Width*0.17508026633176'>0.2757169548531653</X><Y Unit='MM' F='Height*0'>0</Y></LineTo><LineTo IX='7'><X Unit='MM' F='Width*0.5'>0.7874015748031495</X><Y Unit='MM' F='Height*0.23606801319319'>0.371760650697937</Y></LineTo><LineTo IX='8'><X Unit='MM' F='Width*0.82491969027987'>1.299086126424992</X><Y Unit='MM' F='Height*0'>0</Y></LineTo><LineTo IX='9'><X Unit='MM' F='Width*0.70081144078662'>1.103640064230898</X><Y Unit='MM' F='Height*0.38196603679178'>0.6015213177823306</Y></LineTo><LineTo IX='10'><X Unit='MM' F='Width*1.0257310876781'>1.615324547524567</X><Y Unit='MM' F='Height*0.6180340065966'>0.9732819001521259</Y></LineTo><LineTo IX='11'><X Unit='MM' F='Geometry1.X1'>0.9732818994625038</X><Y Unit='MM' F='Geometry1.Y1'>0.9732819001521259</Y></LineTo></Geom><v14:Geom IX='0' xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:NoQuickDrag F='No Formula'>0</v14:NoQuickDrag></v14:Geom></Shape></Shapes><Icon>
|
366
|
+
AAABAAEAICAQTAAAAADoAgAAFgAAACgAAAAgAAAAQAAAAAEABAAAAAAAgAIAAAAAAAAAAAAAAAAAA
|
367
|
+
AAAAAAAAAAAAACAAACAAAAAgIAAgAAAAIAAgACAgAAAgICAAMDAwAAAAP8AAP8AAAD//wD/AAAA/w
|
368
|
+
D/AP//AAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
369
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAB3AAAA
|
370
|
+
AHAAAAAAAAAAAAAPAHAAAAAPAAAAAAAAAAAAD/8HAAcP/wAAAAAAAAAAAAD/8AcA//AAAAAAAAAAA
|
371
|
+
AAA///w///wAAAAAAAAAAAAAA//////AAAAAAAAAAAAAAAP/4iP/wAAAAAAAAAAAAAAAPj/+PAAAA
|
372
|
+
AAAAAAAAAAAAD///jwdwAAAAAAAAAAAAAP///4/wB3AAAAAAAAAAAP//iIj///AHcAAAAAAAAP///
|
373
|
+
4//////8AcAAAAAAP////+IiI/////wdwAAAAAAAAAA///wAAAAAAAAAAAAAAAAAA//AAAAAAAAAA
|
374
|
+
AAAAAAAAAP/wAAAAAAAAAAAAAAAAAACPgAAAAAAAAAAAAAAAAAAAj4AAAAAAAAAAAAAAAAAAAA8AA
|
375
|
+
AAAAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
376
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
377
|
+
AAAD///////////////////////////8//f//D/H//wfh//8Dgf//gAP//4AD///AB///wAf//+AP
|
378
|
+
///gA///gAD//gAAP/gAAB/wAAAH4AAAD//4P///+D////g////4P////H////x////8f////v///
|
379
|
+
/7//////////////////w==</Icon></Master><Master ID='12' NameU='60 degree tail' Name='60 度,带箭尾' Prompt='拖到绘图页上,然后将端点拖到各形状上的蓝色 x 处(红色表示已连好)。' IconSize='1' AlignName='2' MatchByName='0' IconUpdate='1' UniqueID='{72EE9D15-001C-0000-8E40-00608CF305B2}' BaseID='{337E2E4A-C29A-412E-8033-753EAD957593}' PatternFlags='0' Hidden='0'><PageSheet LineStyle='0' FillStyle='0' TextStyle='0'><PageProps><PageWidth Unit='MM'>3.937007874015748</PageWidth><PageHeight Unit='MM'>3.937007874015748</PageHeight><ShdwOffsetX Unit='MM'>0.1181102362204724</ShdwOffsetX><ShdwOffsetY Unit='MM'>-0.1181102362204724</ShdwOffsetY><PageScale Unit='MM'>0.03937007874015748</PageScale><DrawingScale Unit='MM'>0.03937007874015748</DrawingScale><DrawingSizeType>4</DrawingSizeType><DrawingScaleType>0</DrawingScaleType><InhibitSnap F='No Formula'>0</InhibitSnap><UIVisibility F='No Formula'>0</UIVisibility><ShdwType F='No Formula'>0</ShdwType><ShdwObliqueAngle F='No Formula'>0</ShdwObliqueAngle><ShdwScaleFactor>1</ShdwScaleFactor></PageProps><v14:PageProps xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:DrawingResizeType F='No Formula'>0</v14:DrawingResizeType></v14:PageProps><PrintProps><PageLeftMargin>0.25</PageLeftMargin><PageRightMargin>0.25</PageRightMargin><PageTopMargin>0.25</PageTopMargin><PageBottomMargin>0.25</PageBottomMargin><ScaleX>1</ScaleX><ScaleY>1</ScaleY><PagesX>1</PagesX><PagesY>1</PagesY><CenterX>0</CenterX><CenterY>0</CenterY><OnPage>0</OnPage><PrintGrid>0</PrintGrid><PrintPageOrientation>0</PrintPageOrientation><PaperKind>0</PaperKind><PaperSource>7</PaperSource></PrintProps><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID>2052</LangID><ShapeKeywords>尾,箭头,箭头,60,度,基本</ShapeKeywords><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Char IX='0'><Font>5</Font><Color F='Inh'>0</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size F='Inh'>0.1666666666666667</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont F='Inh'>24</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID>2052</LangID></Char></PageSheet><Shapes><Shape ID='6' Type='Shape' LineStyle='6' FillStyle='6' TextStyle='6' UniqueID='{1E33B7EB-93A5-45B3-94C9-AC721132D8B1}'><XForm><PinX Unit='MM' F='(BeginX+EndX)/2'>1.968503937007875</PinX><PinY Unit='MM' F='(BeginY+EndY)/2'>1.968503937007874</PinY><Width Unit='MM' F='SQRT((EndX-BeginX)^2+(EndY-BeginY)^2)'>1.181102362204725</Width><Height Unit='MM'>0.5511811023622047</Height><LocPinX Unit='MM' F='Width*0.5'>0.5905511811023625</LocPinX><LocPinY Unit='MM' F='Height*0.5'>0.2755905511811024</LocPinY><Angle F='ATAN2(EndY-BeginY,EndX-BeginX)'>3.141592653589793</Angle><FlipX>1</FlipX><FlipY>0</FlipY><ResizeMode>0</ResizeMode></XForm><XForm1D><BeginX Unit='MM'>2.559055118110237</BeginX><BeginY Unit='MM'>1.968503937007874</BeginY><EndX Unit='MM'>1.377952755905512</EndX><EndY Unit='MM'>1.968503937007874</EndY></XForm1D><TextBlock><LeftMargin Unit='PT' F='Inh'>0.05555555555555555</LeftMargin><RightMargin Unit='PT' F='Inh'>0.05555555555555555</RightMargin><TopMargin Unit='PT' F='Inh'>0.05555555555555555</TopMargin><BottomMargin Unit='PT' F='Inh'>0.05555555555555555</BottomMargin><VerticalAlign F='Inh'>1</VerticalAlign><TextBkgnd F='Inh'>0</TextBkgnd><DefaultTabStop F='Inh'>0.5</DefaultTabStop><TextDirection F='Inh'>0</TextDirection><TextBkgndTrans F='Inh'>0</TextBkgndTrans></TextBlock><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='OPENTEXTWIN()'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><Protection><LockWidth F='Inh'>0</LockWidth><LockHeight F='Inh'>0</LockHeight><LockMoveX F='Inh'>0</LockMoveX><LockMoveY F='Inh'>0</LockMoveY><LockAspect F='Inh'>0</LockAspect><LockDelete F='Inh'>0</LockDelete><LockBegin F='Inh'>0</LockBegin><LockEnd F='Inh'>0</LockEnd><LockRotate F='Inh'>0</LockRotate><LockCrop F='Inh'>0</LockCrop><LockVtxEdit>1</LockVtxEdit><LockTextEdit F='Inh'>0</LockTextEdit><LockFormat F='Inh'>0</LockFormat><LockGroup F='Inh'>0</LockGroup><LockCalcWH F='Inh'>0</LockCalcWH><LockSelect F='Inh'>0</LockSelect><LockCustProp F='Inh'>0</LockCustProp></Protection><vx:Protection xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LockFromGroupFormat F='Inh'>0</vx:LockFromGroupFormat><vx:LockThemeColors F='Inh'>0</vx:LockThemeColors><vx:LockThemeEffects F='Inh'>0</vx:LockThemeEffects></vx:Protection><TextXForm><TxtPinX Unit='MM' F='Width*0.5'>0.5905511811023625</TxtPinX><TxtPinY Unit='MM' F='Height*0.5'>0.2755905511811024</TxtPinY><TxtWidth Unit='MM' F='Width*1'>1.181102362204725</TxtWidth><TxtHeight Unit='MM' F='Height*1'>0.5511811023622047</TxtHeight><TxtLocPinX Unit='MM' F='TxtWidth*0.5'>0.5905511811023625</TxtLocPinX><TxtLocPinY Unit='MM' F='TxtHeight*0.5'>0.2755905511811024</TxtLocPinY><TxtAngle Unit='DEG' F='IF(AND(Angle>-60DEG,Angle<120DEG),0DEG,180DEG)'>3.1415926535898</TxtAngle></TextXForm><Help><HelpTopic>Vis_Sba.chm!#45763</HelpTopic><Copyright V='null'/></Help><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType>3</GlueType><WalkPreference>2</WalkPreference><BegTrigger F='_XFTRIGGER(EventXFMod)'>1</BegTrigger><EndTrigger F='_XFTRIGGER(EventXFMod)'>1</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Layout><ShapePermeableX F='Inh'>0</ShapePermeableX><ShapePermeableY F='Inh'>0</ShapePermeableY><ShapePermeablePlace F='Inh'>0</ShapePermeablePlace><ShapeFixedCode F='Inh'>0</ShapeFixedCode><ShapePlowCode F='Inh'>0</ShapePlowCode><ShapeRouteStyle F='Inh'>0</ShapeRouteStyle><ConFixedCode F='Inh'>0</ConFixedCode><ConLineJumpCode F='Inh'>0</ConLineJumpCode><ConLineJumpStyle F='Inh'>0</ConLineJumpStyle><ConLineJumpDirX F='Inh'>0</ConLineJumpDirX><ConLineJumpDirY F='Inh'>0</ConLineJumpDirY><ShapePlaceFlip F='Inh'>0</ShapePlaceFlip><ConLineRouteExt F='Inh'>0</ConLineRouteExt><ShapeSplit F='Inh'>0</ShapeSplit><ShapeSplittable>1</ShapeSplittable></Layout><vx:Layout xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:ShapePlaceStyle F='Inh'>0</vx:ShapePlaceStyle></vx:Layout><v14:Layout xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:Relationships F='Inh'>0</v14:Relationships><v14:DisplayLevel F='Inh'>0</v14:DisplayLevel></v14:Layout><Fill><FillForegnd F='Inh'>#e8eef7</FillForegnd><FillBkgnd F='Inh'>#b7c9e3</FillBkgnd><FillPattern F='Inh'>1</FillPattern><ShdwForegnd F='Inh'>#4979c0</ShdwForegnd><ShdwBkgnd F='Inh'>#ffffff</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans F='Inh'>0</FillForegndTrans><FillBkgndTrans F='Inh'>0</FillBkgndTrans><ShdwForegndTrans F='Inh'>0</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType F='Inh'>0</ShapeShdwType><ShapeShdwOffsetX F='Inh'>0</ShapeShdwOffsetX><ShapeShdwOffsetY F='Inh'>0</ShapeShdwOffsetY><ShapeShdwObliqueAngle F='Inh'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor F='Inh'>1</ShapeShdwScaleFactor></Fill><Line><LineWeight Unit='PT' F='Inh'>0.003333333333333333</LineWeight><LineColor F='Inh'>#000000</LineColor><LinePattern F='Inh'>1</LinePattern><Rounding F='Inh'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans F='Inh'>0</LineColorTrans></Line><Scratch IX='0'><X Unit='MM' F='IF(Width>=1.5*Height,(0.5*Height)*TAN(RAD(90-Scratch.A1)),0.25*Width)'>0.1591122789105272</X><Y Unit='MM' F='Height/3'>0.1837270341207349</Y><A>60</A><B F='No Formula'>0</B><C F='No Formula'>0</C><D F='No Formula'>0</D></Scratch><Scratch IX='1'><X Unit='MM' F='IF(Width>=2*Height,(0.5*Height)*TAN(RAD(30)),0.15*Width)'>0.1591122789105272</X><Y F='No Formula'>0</Y><A F='No Formula'>0</A><B F='No Formula'>0</B><C F='No Formula'>0</C><D F='No Formula'>0</D></Scratch><Scratch IX='2'><X Unit='MM' F='IF(Width>=2*Height,Height/4,0.15*Width)'>0.1377952755905512</X><Y F='No Formula'>0</Y><A F='No Formula'>0</A><B F='No Formula'>0</B><C F='No Formula'>0</C><D F='No Formula'>0</D></Scratch><User NameU='visVersion' ID='2'><Value>14</Value><Prompt F='No Formula'/></User><Char IX='0'><Font>5</Font><Color F='Inh'>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont F='Inh'>24</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><Geom IX='0'><NoFill>0</NoFill><NoLine F='No Formula'>0</NoLine><NoShow F='No Formula'>0</NoShow><NoSnap F='No Formula'>0</NoSnap><MoveTo IX='1'><X Unit='MM' F='Width*0'>0</X><Y Unit='MM' F='Height*0.5'>0.2755905511811024</Y></MoveTo><LineTo IX='2'><X Unit='MM' F='Scratch.X1'>0.1591122789105272</X><Y Unit='MM' F='Height*1'>0.5511811023622047</Y></LineTo><LineTo IX='3'><X Unit='MM' F='Geometry1.X2'>0.1591122789105272</X><Y Unit='MM' F='Height-Scratch.Y1'>0.3674540682414699</Y></LineTo><LineTo IX='4'><X Unit='MM' F='Geometry1.X5-Scratch.X2'>0.8841948077036466</X><Y Unit='MM' F='Height-Scratch.Y1'>0.3674540682414699</Y></LineTo><LineTo IX='5'><X Unit='MM' F='Width-Scratch.X3'>1.043307086614174</X><Y Unit='MM' F='Height*1'>0.5511811023622047</Y></LineTo><LineTo IX='6'><X Unit='MM' F='Width+Scratch.X2'>1.340214641115252</X><Y Unit='MM' F='Height*1'>0.5511811023622047</Y></LineTo><LineTo IX='7'><X Unit='MM' F='Width'>1.181102362204725</X><Y Unit='MM' F='0.5*Height'>0.2755905511811024</Y></LineTo><LineTo IX='8'><X Unit='MM' F='Geometry1.X6'>1.340214641115252</X><Y>0</Y></LineTo><LineTo IX='9'><X Unit='MM' F='Geometry1.X5'>1.043307086614174</X><Y>0</Y></LineTo><LineTo IX='10'><X Unit='MM' F='Geometry1.X4'>0.8841948077036466</X><Y Unit='MM' F='Scratch.Y1'>0.1837270341207349</Y></LineTo><LineTo IX='11'><X Unit='MM' F='Scratch.X1'>0.1591122789105272</X><Y Unit='MM' F='Scratch.Y1'>0.1837270341207349</Y></LineTo><LineTo IX='12'><X Unit='MM' F='Scratch.X1'>0.1591122789105272</X><Y Unit='MM' F='Height*0'>0</Y></LineTo><LineTo IX='13'><X Unit='MM' F='Geometry1.X1'>0</X><Y Unit='MM' F='Geometry1.Y1'>0.2755905511811024</Y></LineTo></Geom><v14:Geom IX='0' xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:NoQuickDrag F='No Formula'>0</v14:NoQuickDrag></v14:Geom></Shape></Shapes><Icon>
|
380
|
+
AAABAAEAICAQTAAAAADoAgAAFgAAACgAAAAgAAAAQAAAAAEABAAAAAAAgAIAAAAAAAAAAAAAAAAAA
|
381
|
+
AAAAAAAAAAAAACAAACAAAAAgIAAgAAAAIAAgACAgAAAgICAAMDAwAAAAP8AAP8AAAD//wD/AAAA/w
|
382
|
+
D/AP//AAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
383
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
384
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADMzMzAAAAAAADAAAAAAAAAAAAAAAAAAA
|
385
|
+
AAwAAAAAAAP//8DAAAAAAAAMAAAAAAAD///AAAAAAAA8DMzMzMzMP//8DAAAAAAAPAAAAAAAAD///
|
386
|
+
AAAAAAAA////////////8DAAAAAAAP////////////AAAAAAAA////////////8DAAAAAAAA/////
|
387
|
+
///////8DAAAAAAAP////////////AzAAAAAAAPAAAAAAAAD///AwAAAAAADwMAAAAAAA///wMwAA
|
388
|
+
AAAAADAAAAAAAA///wMAAAAAAAAwAAAAAAAP//8DMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
389
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
390
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
391
|
+
AAAD///////////////////////////////////////////9//Af+f/gP/H/wD/x/8B/4AAAf+AAA
|
392
|
+
P/AAAD/wAAB/4AAAf/AAAD/wAAAf+AAAH/h/4A/8f/AP/H/wB/7/+A///////////////////////
|
393
|
+
////////////////////w==</Icon></Master><Master ID='13' NameU='Double flexi-arrow' Name='可变双向箭头' Prompt='拖到绘图页上,然后将端点拖到各形状上的蓝色 x 处(红色表示已连好)。' IconSize='1' AlignName='2' MatchByName='0' IconUpdate='1' UniqueID='{72EE9F18-0020-0000-8E40-00608CF305B2}' BaseID='{A929F8EF-1F92-41D7-A298-ABEC917B580D}' PatternFlags='0' Hidden='0'><PageSheet LineStyle='0' FillStyle='0' TextStyle='0'><PageProps><PageWidth Unit='MM'>3.937007874015748</PageWidth><PageHeight Unit='MM'>3.937007874015748</PageHeight><ShdwOffsetX Unit='MM'>0.1181102362204724</ShdwOffsetX><ShdwOffsetY Unit='MM'>-0.1181102362204724</ShdwOffsetY><PageScale Unit='MM'>0.03937007874015748</PageScale><DrawingScale Unit='MM'>0.03937007874015748</DrawingScale><DrawingSizeType>4</DrawingSizeType><DrawingScaleType>0</DrawingScaleType><InhibitSnap F='No Formula'>0</InhibitSnap><UIVisibility F='No Formula'>0</UIVisibility><ShdwType F='No Formula'>0</ShdwType><ShdwObliqueAngle F='No Formula'>0</ShdwObliqueAngle><ShdwScaleFactor>1</ShdwScaleFactor></PageProps><v14:PageProps xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:DrawingResizeType F='No Formula'>0</v14:DrawingResizeType></v14:PageProps><PrintProps><PageLeftMargin>0.25</PageLeftMargin><PageRightMargin>0.25</PageRightMargin><PageTopMargin>0.25</PageTopMargin><PageBottomMargin>0.25</PageBottomMargin><ScaleX>1</ScaleX><ScaleY>1</ScaleY><PagesX>1</PagesX><PagesY>1</PagesY><CenterX>0</CenterX><CenterY>0</CenterY><OnPage>0</OnPage><PrintGrid>0</PrintGrid><PrintPageOrientation>0</PrintPageOrientation><PaperKind>0</PaperKind><PaperSource>7</PaperSource></PrintProps><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID>2052</LangID><ShapeKeywords>箭头,箭头,可变,箭头,双,基本</ShapeKeywords><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Char IX='0'><Font>5</Font><Color F='Inh'>0</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size F='Inh'>0.1666666666666667</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont F='Inh'>24</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID>2052</LangID></Char></PageSheet><Shapes><Shape ID='5' Type='Shape' LineStyle='6' FillStyle='6' TextStyle='6' UniqueID='{FF236487-6623-4BB2-9AEE-4C8FA0C52811}'><XForm><PinX Unit='MM' F='(BeginX+EndX)/2'>1.968503937007875</PinX><PinY Unit='MM' F='(BeginY+EndY)/2'>1.968503937007874</PinY><Width Unit='MM' F='SQRT((EndX-BeginX)^2+(EndY-BeginY)^2)'>1.181102362204725</Width><Height Unit='MM'>0</Height><LocPinX Unit='MM' F='Width*0.5'>0.5905511811023625</LocPinX><LocPinY Unit='MM' F='Height*0.5'>0</LocPinY><Angle F='ATAN2(EndY-BeginY,EndX-BeginX)'>0</Angle><FlipX>0</FlipX><FlipY>0</FlipY><ResizeMode>0</ResizeMode></XForm><XForm1D><BeginX Unit='MM'>1.377952755905512</BeginX><BeginY Unit='MM'>1.968503937007874</BeginY><EndX Unit='MM'>2.559055118110237</EndX><EndY Unit='MM'>1.968503937007874</EndY></XForm1D><TextBlock><LeftMargin Unit='PT' F='Inh'>0.05555555555555555</LeftMargin><RightMargin Unit='PT' F='Inh'>0.05555555555555555</RightMargin><TopMargin Unit='PT' F='Inh'>0.05555555555555555</TopMargin><BottomMargin Unit='PT' F='Inh'>0.05555555555555555</BottomMargin><VerticalAlign F='Inh'>1</VerticalAlign><TextBkgnd F='Inh'>0</TextBkgnd><DefaultTabStop F='Inh'>0.5</DefaultTabStop><TextDirection F='Inh'>0</TextDirection><TextBkgndTrans F='Inh'>0</TextBkgndTrans></TextBlock><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='OPENTEXTWIN()'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox>1</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType>3</GlueType><WalkPreference>2</WalkPreference><BegTrigger F='_XFTRIGGER(EventXFMod)'>1</BegTrigger><EndTrigger F='_XFTRIGGER(EventXFMod)'>1</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Protection><LockWidth F='Inh'>0</LockWidth><LockHeight>1</LockHeight><LockMoveX F='Inh'>0</LockMoveX><LockMoveY F='Inh'>0</LockMoveY><LockAspect F='Inh'>0</LockAspect><LockDelete F='Inh'>0</LockDelete><LockBegin F='Inh'>0</LockBegin><LockEnd F='Inh'>0</LockEnd><LockRotate F='Inh'>0</LockRotate><LockCrop F='Inh'>0</LockCrop><LockVtxEdit>1</LockVtxEdit><LockTextEdit F='Inh'>0</LockTextEdit><LockFormat F='Inh'>0</LockFormat><LockGroup F='Inh'>0</LockGroup><LockCalcWH F='Inh'>0</LockCalcWH><LockSelect F='Inh'>0</LockSelect><LockCustProp F='Inh'>0</LockCustProp></Protection><vx:Protection xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LockFromGroupFormat F='Inh'>0</vx:LockFromGroupFormat><vx:LockThemeColors F='Inh'>0</vx:LockThemeColors><vx:LockThemeEffects F='Inh'>0</vx:LockThemeEffects></vx:Protection><TextXForm><TxtPinX Unit='MM' F='Width*0.5'>0.5905511811023625</TxtPinX><TxtPinY Unit='MM' F='Height*0.5'>0</TxtPinY><TxtWidth Unit='MM' F='Width*1'>1.181102362204725</TxtWidth><TxtHeight Unit='MM' F='Height*1'>0</TxtHeight><TxtLocPinX Unit='MM' F='TxtWidth*0.5'>0.5905511811023625</TxtLocPinX><TxtLocPinY Unit='MM' F='TxtHeight*0.5'>0</TxtLocPinY><TxtAngle Unit='DEG' F='IF(AND(Angle>-60DEG,Angle<120DEG),0DEG,180DEG)'>0</TxtAngle></TextXForm><Help><HelpTopic>Vis_Sba.chm!#45767</HelpTopic><Copyright V='null'/></Help><Layout><ShapePermeableX F='Inh'>0</ShapePermeableX><ShapePermeableY F='Inh'>0</ShapePermeableY><ShapePermeablePlace F='Inh'>0</ShapePermeablePlace><ShapeFixedCode F='Inh'>0</ShapeFixedCode><ShapePlowCode F='Inh'>0</ShapePlowCode><ShapeRouteStyle F='Inh'>0</ShapeRouteStyle><ConFixedCode F='Inh'>0</ConFixedCode><ConLineJumpCode F='Inh'>0</ConLineJumpCode><ConLineJumpStyle F='Inh'>0</ConLineJumpStyle><ConLineJumpDirX F='Inh'>0</ConLineJumpDirX><ConLineJumpDirY F='Inh'>0</ConLineJumpDirY><ShapePlaceFlip F='Inh'>0</ShapePlaceFlip><ConLineRouteExt F='Inh'>0</ConLineRouteExt><ShapeSplit F='Inh'>0</ShapeSplit><ShapeSplittable>1</ShapeSplittable></Layout><vx:Layout xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:ShapePlaceStyle F='Inh'>0</vx:ShapePlaceStyle></vx:Layout><v14:Layout xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:Relationships F='Inh'>0</v14:Relationships><v14:DisplayLevel F='Inh'>0</v14:DisplayLevel></v14:Layout><Fill><FillForegnd F='Inh'>#e8eef7</FillForegnd><FillBkgnd F='Inh'>#b7c9e3</FillBkgnd><FillPattern F='Inh'>1</FillPattern><ShdwForegnd F='Inh'>#4979c0</ShdwForegnd><ShdwBkgnd F='Inh'>#ffffff</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans F='Inh'>0</FillForegndTrans><FillBkgndTrans F='Inh'>0</FillBkgndTrans><ShdwForegndTrans F='Inh'>0</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType F='Inh'>0</ShapeShdwType><ShapeShdwOffsetX F='Inh'>0</ShapeShdwOffsetX><ShapeShdwOffsetY F='Inh'>0</ShapeShdwOffsetY><ShapeShdwObliqueAngle F='Inh'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor F='Inh'>1</ShapeShdwScaleFactor></Fill><Line><LineWeight Unit='PT' F='Inh'>0.003333333333333333</LineWeight><LineColor F='Inh'>#000000</LineColor><LinePattern F='Inh'>1</LinePattern><Rounding F='Inh'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans F='Inh'>0</LineColorTrans></Line><Control NameU='Row_1' ID='1'><X Unit='MM' F='9MM*ThePage!DrawingScale/ThePage!PageScale'>0.3543307086614173</X><Y Unit='MM' F='Height/2+6MM*ThePage!DrawingScale/ThePage!PageScale'>0.2362204724409449</Y><XDyn Unit='MM'>0</XDyn><YDyn Unit='MM' F='Height/2'>0</YDyn><XCon>2</XCon><YCon>3</YCon><CanGlue>0</CanGlue><Prompt>修改箭头的形状</Prompt></Control><Control NameU='Row_2' ID='2'><X Unit='MM' F='8MM*ThePage!DrawingScale/ThePage!PageScale'>0.3149606299212598</X><Y Unit='MM' F='Height/2+3MM*ThePage!DrawingScale/ThePage!PageScale'>0.1181102362204725</Y><XDyn Unit='MM' F='Controls.Row_1.XDyn'>0</XDyn><YDyn Unit='MM' F='Controls.Row_1.YDyn'>0</YDyn><XCon>2</XCon><YCon>3</YCon><CanGlue>0</CanGlue><Prompt>修改箭头的形状</Prompt></Control><User NameU='visVersion' ID='2'><Value>14</Value><Prompt F='No Formula'/></User><Char IX='0'><Font>5</Font><Color F='Inh'>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont F='Inh'>24</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><Geom IX='0'><NoFill>0</NoFill><NoLine>0</NoLine><NoShow>0</NoShow><NoSnap F='No Formula'>0</NoSnap><MoveTo IX='1'><X Unit='MM'>0</X><Y Unit='MM' F='Height/2'>0</Y></MoveTo><LineTo IX='2'><X Unit='MM' F='MIN(Controls.Row_1,Width/2)'>0.3543307086614173</X><Y Unit='MM' F='ABS(Controls.Row_1.Y)'>0.2362204724409449</Y></LineTo><LineTo IX='3'><X Unit='MM' F='MIN(Controls.Row_2,Width/2)'>0.3149606299212598</X><Y Unit='MM' F='ABS(Controls.Row_2.Y)'>0.1181102362204725</Y></LineTo><LineTo IX='4'><X Unit='MM' F='Width-Geometry1.X3'>0.8661417322834651</X><Y Unit='MM' F='Geometry1.Y3'>0.1181102362204725</Y></LineTo><LineTo IX='5'><X Unit='MM' F='Width-Geometry1.X2'>0.8267716535433076</X><Y Unit='MM' F='Geometry1.Y2'>0.2362204724409449</Y></LineTo><LineTo IX='6'><X Unit='MM' F='Width'>1.181102362204725</X><Y Unit='MM' F='Height/2'>0</Y></LineTo><LineTo IX='7'><X Unit='MM' F='Geometry1.X5'>0.8267716535433076</X><Y Unit='MM' F='Height-Geometry1.Y5'>-0.2362204724409449</Y></LineTo><LineTo IX='8'><X Unit='MM' F='Geometry1.X4'>0.8661417322834651</X><Y Unit='MM' F='Height-Geometry1.Y4'>-0.1181102362204725</Y></LineTo><LineTo IX='9'><X Unit='MM' F='Geometry1.X3'>0.3149606299212598</X><Y Unit='MM' F='Geometry1.Y8'>-0.1181102362204725</Y></LineTo><LineTo IX='10'><X Unit='MM' F='Geometry1.X2'>0.3543307086614173</X><Y Unit='MM' F='Geometry1.Y7'>-0.2362204724409449</Y></LineTo><LineTo IX='11'><X Unit='MM' F='Geometry1.X1'>0</X><Y Unit='MM' F='Geometry1.Y1'>0</Y></LineTo></Geom><v14:Geom IX='0' xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:NoQuickDrag F='No Formula'>0</v14:NoQuickDrag></v14:Geom></Shape></Shapes><Icon>
|
394
|
+
AAABAAEAICAQTAAAAADoAgAAFgAAACgAAAAgAAAAQAAAAAEABAAAAAAAgAIAAAAAAAAAAAAAAAAAA
|
395
|
+
AAAAAAAAAAAAACAAACAAAAAgIAAgAAAAIAAgACAgAAAgICAAMDAwAAAAP8AAP8AAAD//wD/AAAA/w
|
396
|
+
D/AP//AAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
397
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
398
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAA
|
399
|
+
AAADwAAAA8HAAAAAAAAAAAAAPgAAAAP8HAAAAAAAAAAAA/wcAAAAP8HAAAAAAAAAAD/8Hd3d3D/8H
|
400
|
+
AAAAAAAAAP//AAAAAA//8HAAAAAAAA////////////8HAAAAAAD/////////////8HAAAAAP/////
|
401
|
+
/////////8AAAAAAP/////////////wAAAAAAAP////////////AAAAAAAAAP//AAAAAA//8AAAAA
|
402
|
+
AAAAAP/wAAAAAP/wAAAAAAAAAAAP8AAAAAD/AAAAAAAAAAAAAP8AAAAP8AAAAAAAAAAAAAAPAAAAD
|
403
|
+
wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
404
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
405
|
+
AAAD////////////////////////////////////////////3z///58f//8fD//+Hwf//B+D//gAA
|
406
|
+
f/wAAD/4AAAf8AAAD+AAAA/wAAAf+AAAP/wAAH/+D+D//w/h//+Hw///x8f//+fP///33////////
|
407
|
+
////////////////////w==</Icon></Master><Master ID='14' NameU='Line-curve connector' Name='直线-曲线连接线' Prompt='拖到绘图页上,然后将端点拖到各形状上的蓝色 x 处(红色表示已连好)。' IconSize='1' AlignName='2' MatchByName='0' IconUpdate='0' UniqueID='{72EEA021-0022-0000-8E40-00608CF305B2}' BaseID='{EF439A0B-BDC5-464F-B3BF-98D14BD58D14}' PatternFlags='0' Hidden='0'><PageSheet LineStyle='0' FillStyle='0' TextStyle='0'><PageProps><PageWidth Unit='MM'>3.937007874015748</PageWidth><PageHeight Unit='MM'>3.937007874015748</PageHeight><ShdwOffsetX Unit='MM'>0.1181102362204725</ShdwOffsetX><ShdwOffsetY Unit='MM'>-0.1181102362204725</ShdwOffsetY><PageScale Unit='MM'>0.03937007874015748</PageScale><DrawingScale Unit='MM'>0.03937007874015748</DrawingScale><DrawingSizeType>4</DrawingSizeType><DrawingScaleType>0</DrawingScaleType><InhibitSnap F='No Formula'>0</InhibitSnap><UIVisibility F='No Formula'>0</UIVisibility><ShdwType F='No Formula'>0</ShdwType><ShdwObliqueAngle F='No Formula'>0</ShdwObliqueAngle><ShdwScaleFactor>1</ShdwScaleFactor></PageProps><v14:PageProps xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:DrawingResizeType F='No Formula'>0</v14:DrawingResizeType></v14:PageProps><PrintProps><PageLeftMargin>0.25</PageLeftMargin><PageRightMargin>0.25</PageRightMargin><PageTopMargin>0.25</PageTopMargin><PageBottomMargin>0.25</PageBottomMargin><ScaleX>1</ScaleX><ScaleY>1</ScaleY><PagesX>1</PagesX><PagesY>1</PagesY><CenterX>0</CenterX><CenterY>0</CenterY><OnPage>0</OnPage><PrintGrid>0</PrintGrid><PrintPageOrientation>0</PrintPageOrientation><PaperKind>0</PaperKind><PaperSource>7</PaperSource></PrintProps><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID>2052</LangID><ShapeKeywords>曲线,线,连接,连接线,路线,基本</ShapeKeywords><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Layer IX='0'><Name>连接线</Name><Color>255</Color><Status>0</Status><Visible>1</Visible><Print>1</Print><Active>0</Active><Lock>0</Lock><Snap>1</Snap><Glue>1</Glue><NameUniv>Connector</NameUniv><ColorTrans>0</ColorTrans></Layer><Char IX='0'><Font>5</Font><Color F='Inh'>0</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size F='Inh'>0.1666666666666667</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont F='Inh'>24</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID>2052</LangID></Char></PageSheet><Shapes><Shape ID='5' Type='Shape' LineStyle='8' FillStyle='8' TextStyle='8' UniqueID='{38A873CF-9CE2-469A-8372-DE8CD14C5CF8}'><XForm><PinX Unit='MM' F='(BeginX+EndX)/2'>1.968503937007874</PinX><PinY Unit='MM' F='(BeginY+EndY)/2'>1.968503937007874</PinY><Width Unit='MM' F='SQRT((EndX-BeginX)^2+(EndY-BeginY)^2)'>1.113553986120548</Width><Height Unit='MM'>0</Height><LocPinX Unit='MM' F='Width*0.5'>0.556776993060274</LocPinX><LocPinY Unit='MM' F='Height*0'>0</LocPinY><Angle F='ATAN2(EndY-BeginY,EndX-BeginX)'>-2.356194490192345</Angle><FlipX>0</FlipX><FlipY F='GUARD(BeginX<EndX=BeginY<EndY)'>1</FlipY><ResizeMode>0</ResizeMode></XForm><XForm1D><BeginX Unit='MM'>2.362204724409449</BeginX><BeginY Unit='MM'>2.362204724409449</BeginY><EndX Unit='MM'>1.574803149606299</EndX><EndY Unit='MM'>1.574803149606299</EndY></XForm1D><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox>1</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType>3</GlueType><WalkPreference>2</WalkPreference><BegTrigger F='_XFTRIGGER(EventXFMod)'>1</BegTrigger><EndTrigger F='_XFTRIGGER(EventXFMod)'>1</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><TextBlock><LeftMargin Unit='PT' F='Inh'>0.05555555555555555</LeftMargin><RightMargin Unit='PT' F='Inh'>0.05555555555555555</RightMargin><TopMargin Unit='PT' F='Inh'>0.05555555555555555</TopMargin><BottomMargin Unit='PT' F='Inh'>0.05555555555555555</BottomMargin><VerticalAlign F='Inh'>1</VerticalAlign><TextBkgnd F='Inh'>#ffffff</TextBkgnd><DefaultTabStop F='Inh'>0.5</DefaultTabStop><TextDirection F='Inh'>0</TextDirection><TextBkgndTrans F='Inh'>0</TextBkgndTrans></TextBlock><Protection><LockWidth F='Inh'>0</LockWidth><LockHeight>1</LockHeight><LockMoveX F='Inh'>0</LockMoveX><LockMoveY F='Inh'>0</LockMoveY><LockAspect F='Inh'>0</LockAspect><LockDelete F='Inh'>0</LockDelete><LockBegin F='Inh'>0</LockBegin><LockEnd F='Inh'>0</LockEnd><LockRotate F='Inh'>0</LockRotate><LockCrop F='Inh'>0</LockCrop><LockVtxEdit>1</LockVtxEdit><LockTextEdit F='Inh'>0</LockTextEdit><LockFormat F='Inh'>0</LockFormat><LockGroup F='Inh'>0</LockGroup><LockCalcWH F='Inh'>0</LockCalcWH><LockSelect F='Inh'>0</LockSelect><LockCustProp F='Inh'>0</LockCustProp></Protection><vx:Protection xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LockFromGroupFormat F='Inh'>0</vx:LockFromGroupFormat><vx:LockThemeColors F='Inh'>0</vx:LockThemeColors><vx:LockThemeEffects F='Inh'>0</vx:LockThemeEffects></vx:Protection><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='OPENTEXTWIN()'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><TextXForm><TxtPinX Unit='MM' F='Controls.Row_1'>0.556776993060274</TxtPinX><TxtPinY Unit='MM' F='Controls.Row_1.Y'>0.1968503937007874</TxtPinY><TxtWidth Unit='PT' F='MAX(TEXTWIDTH(TheText),5*Char.Size)'>0.5555555555555556</TxtWidth><TxtHeight F='TEXTHEIGHT(TheText,TxtWidth)'>0.2444444444444444</TxtHeight><TxtLocPinX Unit='PT' F='TxtWidth*0.5'>0.2777777777777778</TxtLocPinX><TxtLocPinY F='TxtHeight*0.5'>0.1222222222222222</TxtLocPinY><TxtAngle F='IF(BITXOR(FlipX,FlipY),1,-1)*Angle'>-2.356194490192345</TxtAngle></TextXForm><Help><HelpTopic>Vis_Sba.chm!#45769</HelpTopic><Copyright V='null'/></Help><LayerMem><LayerMember>0</LayerMember></LayerMem><Layout><ShapePermeableX F='Inh'>0</ShapePermeableX><ShapePermeableY F='Inh'>0</ShapePermeableY><ShapePermeablePlace F='Inh'>0</ShapePermeablePlace><ShapeFixedCode F='Inh'>0</ShapeFixedCode><ShapePlowCode F='Inh'>0</ShapePlowCode><ShapeRouteStyle F='Inh'>0</ShapeRouteStyle><ConFixedCode F='Inh'>0</ConFixedCode><ConLineJumpCode F='Inh'>0</ConLineJumpCode><ConLineJumpStyle F='Inh'>0</ConLineJumpStyle><ConLineJumpDirX F='Inh'>0</ConLineJumpDirX><ConLineJumpDirY F='Inh'>0</ConLineJumpDirY><ShapePlaceFlip F='Inh'>0</ShapePlaceFlip><ConLineRouteExt F='Inh'>0</ConLineRouteExt><ShapeSplit F='Inh'>0</ShapeSplit><ShapeSplittable>1</ShapeSplittable></Layout><vx:Layout xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:ShapePlaceStyle F='Inh'>0</vx:ShapePlaceStyle></vx:Layout><v14:Layout xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:Relationships F='Inh'>0</v14:Relationships><v14:DisplayLevel F='Inh'>0</v14:DisplayLevel></v14:Layout><Line><LineWeight F='Inh'>0.003333</LineWeight><LineColor F='Inh'>0</LineColor><LinePattern F='Inh'>1</LinePattern><Rounding F='Inh'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans F='Inh'>0</LineColorTrans></Line><Fill><FillForegnd F='Inh'>#ffffff</FillForegnd><FillBkgnd F='Inh'>#ffffff</FillBkgnd><FillPattern F='Inh'>1</FillPattern><ShdwForegnd F='Inh'>#4979c0</ShdwForegnd><ShdwBkgnd F='Inh'>#ffffff</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans F='Inh'>0</FillForegndTrans><FillBkgndTrans F='Inh'>0</FillBkgndTrans><ShdwForegndTrans F='Inh'>0</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType F='Inh'>0</ShapeShdwType><ShapeShdwOffsetX F='Inh'>0</ShapeShdwOffsetX><ShapeShdwOffsetY F='Inh'>0</ShapeShdwOffsetY><ShapeShdwObliqueAngle F='Inh'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor F='Inh'>1</ShapeShdwScaleFactor></Fill><Act NameU='Row_1' ID='1'><Menu>更改箭头(&A)...</Menu><Action F='DOCMD(1065)'>0</Action><Checked F='No Formula'>0</Checked><Disabled F='No Formula'>0</Disabled><ReadOnly F='No Formula'>0</ReadOnly><Invisible F='No Formula'>0</Invisible><BeginGroup F='No Formula'>0</BeginGroup><TagName F='No Formula'/><ButtonFace F='No Formula'/><SortKey F='No Formula'/></Act><v14:Act NameU='Row_1' ID='1' xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:FlyoutChild F='No Formula'>0</v14:FlyoutChild></v14:Act><Act NameU='Row_2' ID='2'><Menu F='IF(AND(Controls.Row_1=Width/2,Controls.Row_1.Y=0),"","_设置成直线(&L)")'>_设置成直线(&L)</Menu><Action F='SETF("Controls.X1","Width/2")+SETF("Controls.Y1","0")'>0</Action><Checked F='No Formula'>0</Checked><Disabled F='No Formula'>0</Disabled><ReadOnly F='No Formula'>0</ReadOnly><Invisible F='No Formula'>0</Invisible><BeginGroup F='No Formula'>0</BeginGroup><TagName F='No Formula'/><ButtonFace F='No Formula'/><SortKey F='No Formula'/></Act><v14:Act NameU='Row_2' ID='2' xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:FlyoutChild F='No Formula'>0</v14:FlyoutChild></v14:Act><Control NameU='Row_1' ID='1'><X Unit='MM' F='Width*0.5'>0.556776993060274</X><Y Unit='MM' F='5MM*User.AntiScale'>0.1968503937007874</Y><XDyn Unit='MM' F='Controls.Row_1'>0.556776993060274</XDyn><YDyn Unit='MM' F='Controls.Row_1.Y'>0.1968503937007874</YDyn><XCon>0</XCon><YCon>0</YCon><CanGlue>0</CanGlue><Prompt>修改曲度</Prompt></Control><Char IX='0'><Font>5</Font><Color F='Inh'>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont F='Inh'>24</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><Connection IX='0'><X Unit='MM' F='Width/2'>0.556776993060274</X><Y Unit='MM'>0</Y><DirX F='No Formula'>0</DirX><DirY F='No Formula'>0</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><User NameU='AntiScale' ID='1'><Value F='IF(AND(User.Scale>0.125,User.Scale<8),1,User.Scale)'>1</Value><Prompt F='No Formula'/></User><User NameU='Scale' ID='2'><Value F='ThePage!DrawingScale/ThePage!PageScale'>1</Value><Prompt F='No Formula'/></User><User NameU='visVersion' ID='4'><Value>14</Value><Prompt F='No Formula'/></User><Geom IX='0'><NoFill>1</NoFill><NoLine>0</NoLine><NoShow>0</NoShow><NoSnap F='No Formula'>0</NoSnap><MoveTo IX='1'><X Unit='MM'>0</X><Y Unit='MM'>0</Y></MoveTo><SplineStart IX='2'><X Unit='MM' F='2*Controls.Row_1-Width/2'>0.556776993060274</X><Y Unit='MM' F='2*Controls.Row_1.Y'>0.3937007874015748</Y><A>0</A><B>0</B><C>1</C><D>2</D></SplineStart><SplineKnot IX='3'><X Unit='MM' F='Width'>1.113553986120548</X><Y Unit='MM'>0</Y><A>0</A></SplineKnot></Geom><v14:Geom IX='0' xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:NoQuickDrag F='No Formula'>0</v14:NoQuickDrag></v14:Geom><Text><cp IX='0'/></Text></Shape></Shapes><Icon>
|
408
|
+
AAABAAEAICAQTAAAAADoAgAAFgAAACgAAAAgAAAAQAAAAAEABAAAAAAAgAIAAAAAAAAAAAAAAAAAA
|
409
|
+
AAAAAAAAAAAAACAAACAAAAAgIAAgAAAAIAAgACAgAAAgICAAMDAwAAAAP8AAP8AAAD//wD/AAAA/w
|
410
|
+
D/AP//AAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
411
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/wAAAAAAAAAAAAAAAAAA///wAAAA
|
412
|
+
AAAAAAAAAAAAAP//8AAAAAAAAAAAAAAAAAD///AAAAAAAAAAAAAAAAAAD/8HdwAAAAAAAAAAAAAAB
|
413
|
+
3AAAAcAAAAAAAAAAAAAAHdwAAAHAAAAAAAAAAAAAAAHdwAAAHAAAAAAAAAAAAAAAHcAAAAHAAAAAA
|
414
|
+
AAAAAAAAcAAAAAAHAAAAAAAAAAAAAHAAAAAAAHAAAAAAAAAAAABwAAAAAAAHAAAAAAAAAAAAcAAAA
|
415
|
+
AAAAHAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAAAAHAAAAAAAAAHAAAAAAAAAAAHAHAAAAAAAHAAAAAA
|
416
|
+
AAAAAKoAAAAAAAAP/wAAAAAAAAcAdwAAAAAA///wAAAAAAAAAAB3dwAAAP//8AAAAAAAAAAAAAB3d
|
417
|
+
3D///AAAAAAAAAAAAAAAAAAD/8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
418
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
419
|
+
AAAD//////////////////////j////wf///4D///+A////gP///8A///+CP///Hj///4+f///Pz/
|
420
|
+
//v+f//7/z//+/+f//v/z//9/+f//f/z//4f+D/+H/wf/g/4D//w+A///wAP///8H////j///////
|
421
|
+
////////////////////w==</Icon></Master><Master ID='15' NameU='Rounded square' Name='圆角正方形' Prompt='将此形状拖到绘图页上。' IconSize='1' AlignName='2' MatchByName='0' IconUpdate='1' UniqueID='{72EE9C0C-0017-0000-8E40-00608CF305B2}' BaseID='{275B7A30-E7D5-49FA-A92D-0C45097A60C3}' PatternFlags='0' Hidden='0'><PageSheet LineStyle='0' FillStyle='0' TextStyle='0'><PageProps><PageWidth Unit='MM'>3.937007874015748</PageWidth><PageHeight Unit='MM'>3.937007874015748</PageHeight><ShdwOffsetX Unit='MM'>0.1181102362204724</ShdwOffsetX><ShdwOffsetY Unit='MM'>-0.1181102362204724</ShdwOffsetY><PageScale Unit='MM'>0.03937007874015748</PageScale><DrawingScale Unit='MM'>0.03937007874015748</DrawingScale><DrawingSizeType>4</DrawingSizeType><DrawingScaleType>0</DrawingScaleType><InhibitSnap F='No Formula'>0</InhibitSnap><UIVisibility F='No Formula'>0</UIVisibility><ShdwType F='No Formula'>0</ShdwType><ShdwObliqueAngle F='No Formula'>0</ShdwObliqueAngle><ShdwScaleFactor>1</ShdwScaleFactor></PageProps><v14:PageProps xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:DrawingResizeType F='No Formula'>0</v14:DrawingResizeType></v14:PageProps><PrintProps><PageLeftMargin>0.25</PageLeftMargin><PageRightMargin>0.25</PageRightMargin><PageTopMargin>0.25</PageTopMargin><PageBottomMargin>0.25</PageBottomMargin><ScaleX>1</ScaleX><ScaleY>1</ScaleY><PagesX>1</PagesX><PagesY>1</PagesY><CenterX>0</CenterX><CenterY>0</CenterY><OnPage>0</OnPage><PrintGrid>0</PrintGrid><PrintPageOrientation>0</PrintPageOrientation><PaperKind>0</PaperKind><PaperSource>7</PaperSource></PrintProps><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID>2052</LangID><ShapeKeywords>圆角,正方形,框,基本</ShapeKeywords><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Char IX='0'><Font>5</Font><Color F='Inh'>0</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size F='Inh'>0.1666666666666667</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont F='Inh'>24</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID>2052</LangID></Char></PageSheet><Shapes><Shape ID='4' Type='Shape' LineStyle='6' FillStyle='6' TextStyle='6' UniqueID='{58C58A83-FCFF-45DE-B96A-93E6860B5B68}'><XForm><PinX Unit='MM'>1.968503937007874</PinX><PinY Unit='MM'>1.968503937007874</PinY><Width Unit='MM'>1.181102362204725</Width><Height Unit='MM'>1.181102362204725</Height><LocPinX Unit='MM' F='Width*0.5'>0.5905511811023625</LocPinX><LocPinY Unit='MM' F='Height*0.5'>0.5905511811023625</LocPinY><Angle Unit='DEG'>0</Angle><FlipX>0</FlipX><FlipY>0</FlipY><ResizeMode>0</ResizeMode></XForm><Protection><LockWidth F='Inh'>0</LockWidth><LockHeight F='Inh'>0</LockHeight><LockMoveX F='Inh'>0</LockMoveX><LockMoveY F='Inh'>0</LockMoveY><LockAspect>1</LockAspect><LockDelete F='Inh'>0</LockDelete><LockBegin F='Inh'>0</LockBegin><LockEnd F='Inh'>0</LockEnd><LockRotate F='Inh'>0</LockRotate><LockCrop F='Inh'>0</LockCrop><LockVtxEdit>1</LockVtxEdit><LockTextEdit F='Inh'>0</LockTextEdit><LockFormat F='Inh'>0</LockFormat><LockGroup F='Inh'>0</LockGroup><LockCalcWH F='Inh'>0</LockCalcWH><LockSelect F='Inh'>0</LockSelect><LockCustProp F='Inh'>0</LockCustProp></Protection><vx:Protection xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LockFromGroupFormat F='Inh'>0</vx:LockFromGroupFormat><vx:LockThemeColors F='Inh'>0</vx:LockThemeColors><vx:LockThemeEffects F='Inh'>0</vx:LockThemeEffects></vx:Protection><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='OPENTEXTWIN()'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><Help><HelpTopic>Vis_Sba.chm!#45756</HelpTopic><Copyright V='null'/></Help><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Layout><ShapePermeableX F='Inh'>0</ShapePermeableX><ShapePermeableY F='Inh'>0</ShapePermeableY><ShapePermeablePlace F='Inh'>0</ShapePermeablePlace><ShapeFixedCode F='Inh'>0</ShapeFixedCode><ShapePlowCode F='Inh'>0</ShapePlowCode><ShapeRouteStyle F='Inh'>0</ShapeRouteStyle><ConFixedCode F='Inh'>0</ConFixedCode><ConLineJumpCode F='Inh'>0</ConLineJumpCode><ConLineJumpStyle F='Inh'>0</ConLineJumpStyle><ConLineJumpDirX F='Inh'>0</ConLineJumpDirX><ConLineJumpDirY F='Inh'>0</ConLineJumpDirY><ShapePlaceFlip F='Inh'>0</ShapePlaceFlip><ConLineRouteExt F='Inh'>0</ConLineRouteExt><ShapeSplit>1</ShapeSplit><ShapeSplittable F='Inh'>0</ShapeSplittable></Layout><vx:Layout xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:ShapePlaceStyle F='Inh'>0</vx:ShapePlaceStyle></vx:Layout><v14:Layout xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:Relationships F='Inh'>0</v14:Relationships><v14:DisplayLevel F='Inh'>0</v14:DisplayLevel></v14:Layout><Fill><FillForegnd F='Inh'>#e8eef7</FillForegnd><FillBkgnd F='Inh'>#b7c9e3</FillBkgnd><FillPattern F='Inh'>1</FillPattern><ShdwForegnd F='Inh'>#4979c0</ShdwForegnd><ShdwBkgnd F='Inh'>#ffffff</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans F='Inh'>0</FillForegndTrans><FillBkgndTrans F='Inh'>0</FillBkgndTrans><ShdwForegndTrans F='Inh'>0</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType F='Inh'>0</ShapeShdwType><ShapeShdwOffsetX F='Inh'>0</ShapeShdwOffsetX><ShapeShdwOffsetY F='Inh'>0</ShapeShdwOffsetY><ShapeShdwObliqueAngle F='Inh'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor F='Inh'>1</ShapeShdwScaleFactor></Fill><Line><LineWeight Unit='PT' F='Inh'>0.003333333333333333</LineWeight><LineColor F='Inh'>#000000</LineColor><LinePattern F='Inh'>1</LinePattern><Rounding F='Inh'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans F='Inh'>0</LineColorTrans></Line><Connection IX='0'><X Unit='MM' F='Width*0.5'>0.5905511811023625</X><Y Unit='MM' F='Height*1'>1.181102362204725</Y><DirX>0</DirX><DirY>-1</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='1'><X Unit='MM' F='Width*0.5'>0.5905511811023625</X><Y Unit='MM' F='Height*0'>0</Y><DirX>0</DirX><DirY>1</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='2'><X Unit='MM' F='Width*0'>0</X><Y Unit='MM' F='Height*0.5'>0.5905511811023625</Y><DirX>1</DirX><DirY>0</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='3'><X Unit='MM' F='Width*1'>1.181102362204725</X><Y Unit='MM' F='Height*0.5'>0.5905511811023625</Y><DirX>-1</DirX><DirY>0</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='4'><X Unit='MM' F='Width*0.5'>0.5905511811023625</X><Y Unit='MM' F='Height*0.5'>0.5905511811023625</Y><DirX>0</DirX><DirY>1</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Scratch IX='0'><X Unit='MM' F='MIN(Width/2,MAX(Controls.Row_1,0))'>0.1968503937007874</X><Y F='No Formula'>0</Y><A F='No Formula'>0</A><B F='No Formula'>0</B><C F='No Formula'>0</C><D F='No Formula'>0</D></Scratch><Control NameU='Row_1' ID='1'><X Unit='MM' F='5MM*ThePage!DrawingScale/ThePage!PageScale'>0.1968503937007874</X><Y Unit='MM' F='Height*0'>0</Y><XDyn Unit='MM'>0</XDyn><YDyn Unit='MM'>0</YDyn><XCon>2</XCon><YCon>1</YCon><CanGlue>0</CanGlue><Prompt>调节圆角</Prompt></Control><User NameU='visVersion' ID='2'><Value>14</Value><Prompt F='No Formula'/></User><Char IX='0'><Font>5</Font><Color F='Inh'>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont F='Inh'>24</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><Geom IX='0'><NoFill>0</NoFill><NoLine F='No Formula'>0</NoLine><NoShow F='No Formula'>0</NoShow><NoSnap F='No Formula'>0</NoSnap><MoveTo IX='1'><X Unit='MM' F='Geometry1.X2-Scratch.X1'>0.9842519685039376</X><Y F='MIN(0,Height/2-Scratch.X1)'>0</Y></MoveTo><ArcTo IX='2'><X Unit='MM' F='MAX(Width,Width/2+Scratch.X1)'>1.181102362204725</X><Y Unit='MM' F='Geometry1.Y1+Scratch.X1'>0.1968503937007874</Y><A Unit='MM' F='Scratch.X1*0.29289'>0.05765551181102362</A></ArcTo><LineTo IX='3'><X Unit='MM' F='Geometry1.X2'>1.181102362204725</X><Y Unit='MM' F='Geometry1.Y4-Scratch.X1'>0.9842519685039376</Y></LineTo><ArcTo IX='4'><X Unit='MM' F='Geometry1.X1'>0.9842519685039376</X><Y Unit='MM' F='Height-Geometry1.Y1'>1.181102362204725</Y><A Unit='MM' F='Geometry1.A2'>0.05765551181102362</A></ArcTo><LineTo IX='5'><X Unit='MM' F='Geometry1.X6+Scratch.X1'>0.1968503937007874</X><Y Unit='MM' F='Geometry1.Y4'>1.181102362204725</Y></LineTo><ArcTo IX='6'><X Unit='MM' F='Width-Geometry1.X2'>0</X><Y Unit='MM' F='Height-Geometry1.Y2'>0.9842519685039376</Y><A Unit='MM' F='Geometry1.A2'>0.05765551181102362</A></ArcTo><LineTo IX='7'><X Unit='MM' F='Geometry1.X6'>0</X><Y Unit='MM' F='Geometry1.Y2'>0.1968503937007874</Y></LineTo><ArcTo IX='8'><X Unit='MM' F='Geometry1.X5'>0.1968503937007874</X><Y F='Geometry1.Y1'>0</Y><A Unit='MM' F='Geometry1.A2'>0.05765551181102362</A></ArcTo><LineTo IX='9'><X Unit='MM' F='Geometry1.X1'>0.9842519685039376</X><Y F='Geometry1.Y1'>0</Y></LineTo></Geom><v14:Geom IX='0' xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:NoQuickDrag F='No Formula'>0</v14:NoQuickDrag></v14:Geom></Shape></Shapes><Icon>
|
422
|
+
AAABAAEAICAQTAAAAADoAgAAFgAAACgAAAAgAAAAQAAAAAEABAAAAAAAgAIAAAAAAAAAAAAAAAAAA
|
423
|
+
AAAAAAAAAAAAACAAACAAAAAgIAAgAAAAIAAgACAgAAAgICAAMDAwAAAAP8AAP8AAAD//wD/AAAA/w
|
424
|
+
D/AP//AAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
425
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd3d3d3
|
426
|
+
d3cAAAAAAAAAAABwAAAAAAAHdwAAAAAAAAAACP//////gAdwAAAAAAAACP////////+AcAAAAAAAA
|
427
|
+
A//////////8HcAAAAAAACP//////////8HAAAAAAAA////////////BwAAAAAAAP///////////w
|
428
|
+
cAAAAAAAD///////////8HAAAAAAAA////////////BwAAAAAAAP///////////wcAAAAAAAD////
|
429
|
+
///////8HAAAAAAAA////////////BwAAAAAAAP///////////wcAAAAAAAD///////////8HAAAA
|
430
|
+
AAAA////////////BwAAAAAAAI//////////+AAAAAAAAAAP//////////AAAAAAAAAACP///////
|
431
|
+
/+AAAAAAAAAAAAI//////+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
432
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
433
|
+
AAAD/////////////////////////////////gAP//wAA//4AAH/8AAB//AAAP/gAAD/4AAA/+AAA
|
434
|
+
P/gAAD/4AAA/+AAAP/gAAD/4AAA/+AAAP/gAAD/4AAA/+AAAf/wAAP/8AAD//gAB//+AB////////
|
435
|
+
////////////////////w==</Icon></Master></Masters><Pages><Page ID='0' NameU='Page-1' ViewScale='1.0583333333333' ViewCenterX='2.3277559055118' ViewCenterY='7.1653543307087'><PageSheet LineStyle='0' FillStyle='0' TextStyle='0'><PageProps><PageWidth Unit='MM'>8.5</PageWidth><PageHeight Unit='MM'>11</PageHeight><ShdwOffsetX Unit='MM'>0.118110236220472</ShdwOffsetX><ShdwOffsetY Unit='MM'>-0.118110236220472</ShdwOffsetY><PageScale Unit='MM'>0.0393700787401575</PageScale><DrawingScale Unit='MM'>0.0393700787401575</DrawingScale><DrawingSizeType>0</DrawingSizeType><DrawingScaleType>0</DrawingScaleType><InhibitSnap>0</InhibitSnap><UIVisibility>0</UIVisibility><ShdwType>0</ShdwType><ShdwObliqueAngle>0</ShdwObliqueAngle><ShdwScaleFactor>1</ShdwScaleFactor></PageProps><v14:PageProps xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:DrawingResizeType>0</v14:DrawingResizeType></v14:PageProps><XForm><PinX>0</PinX><PinY>0</PinY><Width>1</Width><Height>1</Height><LocPinX F='Width*0'>0</LocPinX><LocPinY F='Height*0'>0</LocPinY><Angle>0</Angle><FlipX>0</FlipX><FlipY>0</FlipY><ResizeMode>0</ResizeMode></XForm><PageLayout><ResizePage F='Inh'>0</ResizePage><EnableGrid F='Inh'>0</EnableGrid><DynamicsOff F='Inh'>0</DynamicsOff><CtrlAsInput F='Inh'>0</CtrlAsInput><PlaceStyle F='Inh'>0</PlaceStyle><RouteStyle F='Inh'>0</RouteStyle><PlaceDepth F='Inh'>0</PlaceDepth><PlowCode F='Inh'>0</PlowCode><LineJumpCode F='Inh'>1</LineJumpCode><LineJumpStyle F='Inh'>0</LineJumpStyle><PageLineJumpDirX F='Inh'>0</PageLineJumpDirX><PageLineJumpDirY F='Inh'>0</PageLineJumpDirY><LineToNodeX F='Inh'>0.125</LineToNodeX><LineToNodeY F='Inh'>0.125</LineToNodeY><BlockSizeX F='Inh'>0.25</BlockSizeX><BlockSizeY F='Inh'>0.25</BlockSizeY><AvenueSizeX F='Inh'>0.375</AvenueSizeX><AvenueSizeY F='Inh'>0.375</AvenueSizeY><LineToLineX F='Inh'>0.125</LineToLineX><LineToLineY F='Inh'>0.125</LineToLineY><LineJumpFactorX F='Inh'>0.66666666666667</LineJumpFactorX><LineJumpFactorY F='Inh'>0.66666666666667</LineJumpFactorY><LineAdjustFrom F='Inh'>0</LineAdjustFrom><LineAdjustTo F='Inh'>0</LineAdjustTo><PlaceFlip F='Inh'>0</PlaceFlip><LineRouteExt F='Inh'>0</LineRouteExt><PageShapeSplit>1</PageShapeSplit></PageLayout><v14:PageLayout xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:AvoidPageBreaks F='Inh'>0</v14:AvoidPageBreaks></v14:PageLayout><Layer IX='0'><Name>连接线</Name><Color>255</Color><Status>0</Status><Visible>1</Visible><Print>1</Print><Active>0</Active><Lock>0</Lock><Snap>1</Snap><Glue>1</Glue><NameUniv>Connector</NameUniv><ColorTrans>0</ColorTrans></Layer><User NameU='msvThemeColors' ID='1'><Value>36</Value><Prompt V='null'/></User><User NameU='msvThemeEffects' ID='2'><Value>16</Value><Prompt V='null'/></User><User NameU='msvThemeOrder' ID='3'><Value>0</Value><Prompt V='null'/></User></PageSheet><Shapes><Shape ID='3' NameU='Right triangle' Name='直角三角形' Type='Shape' Master='5'><XForm><PinX>2.36220472440945</PinX><PinY>10.2362204724409</PinY><Width Unit='MM' F='Inh'>1.5748031496063</Width><Height Unit='MM' F='Inh'>1.18110236220473</Height><LocPinX Unit='MM' F='Inh'>0.78740157480315</LocPinX><LocPinY Unit='MM' F='Inh'>0.590551181102365</LocPinY><Angle F='Inh'>0</Angle><FlipX F='Inh'>0</FlipX><FlipY F='Inh'>0</FlipY><ResizeMode F='Inh'>0</ResizeMode></XForm><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='Inh'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><Line><LineWeight Unit='PT'>0.003472222222222222</LineWeight><LineColor>#404040</LineColor><LinePattern>1</LinePattern><Rounding Unit='IN'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans>0</LineColorTrans></Line><vx:Line xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LineWeight Unit='PT' F='THEME("LineWeight")'>0.003472222222222222</vx:LineWeight><vx:LineColor F='THEME("LineColor")'>#404040</vx:LineColor><vx:LinePattern F='THEME("LinePattern")'>1</vx:LinePattern><vx:Rounding Unit='IN' F='THEME("LineRounding")'>0</vx:Rounding><vx:LineColorTrans F='THEME("LineTransparency")'>0</vx:LineColorTrans></vx:Line><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType>1</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID F='Inh'>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Fill><FillForegnd>#f0f0f0</FillForegnd><FillBkgnd>#ffffff</FillBkgnd><FillPattern>30</FillPattern><ShdwForegnd>#cdcdcd</ShdwForegnd><ShdwBkgnd>#cdcdcd</ShdwBkgnd><ShdwPattern>1</ShdwPattern><FillForegndTrans>0</FillForegndTrans><FillBkgndTrans>0</FillBkgndTrans><ShdwForegndTrans>0.5</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType>1</ShapeShdwType><ShapeShdwOffsetX Unit='IN'>0.02</ShapeShdwOffsetX><ShapeShdwOffsetY Unit='IN'>-0.02</ShapeShdwOffsetY><ShapeShdwObliqueAngle Unit='DEG'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor>1</ShapeShdwScaleFactor></Fill><vx:Fill xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:FillForegnd F='THEME("FillColor2")'>#f0f0f0</vx:FillForegnd><vx:FillBkgnd F='THEME("FillColor")'>#ffffff</vx:FillBkgnd><vx:ShdwForegnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwForegnd><vx:ShdwBkgnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwBkgnd><vx:ShdwPattern F='THEME("ShadowPattern")'>1</vx:ShdwPattern><vx:FillForegndTrans F='THEME("FillTransparency")'>0</vx:FillForegndTrans><vx:FillBkgndTrans F='THEME("FillTransparency")'>0</vx:FillBkgndTrans><vx:ShdwForegndTrans F='THEME("ShadowTransparency")'>0.5</vx:ShdwForegndTrans><vx:ShapeShdwType F='THEME("ShadowStyle")'>1</vx:ShapeShdwType><vx:ShapeShdwOffsetX Unit='IN' F='THEME("ShadowXOffset")'>0.02</vx:ShapeShdwOffsetX><vx:ShapeShdwOffsetY Unit='IN' F='THEME("ShadowYOffset")'>-0.02</vx:ShapeShdwOffsetY><vx:ShapeShdwObliqueAngle Unit='DEG' F='THEME("ShadowDirection")'>0</vx:ShapeShdwObliqueAngle><vx:ShapeShdwScaleFactor F='THEME("ShadowMagnification")'>1</vx:ShapeShdwScaleFactor></vx:Fill><User NameU='visVersion' ID='2'><Value>14</Value><Prompt V='null'/></User><User NameU='msvThemeColors' ID='3'><Value>36</Value><Prompt V='null'/></User><User NameU='msvThemeEffects' ID='4'><Value>16</Value><Prompt V='null'/></User><Char IX='0'><Font>4</Font><Color>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont>0</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><vx:Char IX='0' xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:Font F='THEME("LatinFont")'>4</vx:Font><vx:Color F='THEME("TextColor")'>#000000</vx:Color><vx:AsianFont F='THEME("AsianFont")'>5</vx:AsianFont><vx:ComplexScriptFont F='THEME("ComplexFont")'>0</vx:ComplexScriptFont></vx:Char><Connection IX='0'><X Unit='MM' F='Inh'>0.78740157480315</X><Y Unit='MM' F='Inh'>0.590551181102365</Y><DirX F='Inh'>-0.80281747538577</DirX><DirY F='Inh'>-0.596224874703512</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='1'><X F='Inh'>0</X><Y Unit='MM' F='Inh'>1.18110236220473</Y><DirX F='Inh'>0.551936985204792</DirX><DirY F='Inh'>-0.833885822138166</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='2'><X F='Inh'>0</X><Y F='Inh'>0</Y><DirX F='Inh'>0.8038568605677881</DirX><DirY F='Inh'>0.5948227868181411</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='3'><X Unit='MM' F='Inh'>1.5748031496063</X><Y F='Inh'>0</Y><DirX F='Inh'>-0.93667218937557</DirX><DirY F='Inh'>0.35020738091933</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection></Shape><Shape ID='4' NameU='3-D box' Name='三维框' Type='Group' Master='6'><XForm><PinX>2.28346456692913</PinX><PinY>8.543307086614171</PinY><Width Unit='MM' F='Inh'>1.5748031496063</Width><Height Unit='MM' F='Inh'>1.18110236220473</Height><LocPinX Unit='MM' F='Inh'>0.78740157480315</LocPinX><LocPinY Unit='MM' F='Inh'>0.590551181102365</LocPinY><Angle Unit='AD' F='Inh'>0</Angle><FlipX F='Inh'>1</FlipX><FlipY F='Inh'>0</FlipY><ResizeMode F='Inh'>0</ResizeMode></XForm><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='Inh'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><Line><LineWeight Unit='PT'>0.003472222222222222</LineWeight><LineColor>#404040</LineColor><LinePattern>1</LinePattern><Rounding F='Inh'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans>0</LineColorTrans></Line><vx:Line xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LineWeight Unit='PT' F='THEME("LineWeight")'>0.003472222222222222</vx:LineWeight><vx:LineColor F='THEME("LineColor")'>#404040</vx:LineColor><vx:LinePattern F='THEME("LinePattern")'>1</vx:LinePattern><vx:LineColorTrans F='THEME("LineTransparency")'>0</vx:LineColorTrans></vx:Line><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>8</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID F='Inh'>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Fill><FillForegnd>#ffffff</FillForegnd><FillBkgnd>#f0f0f0</FillBkgnd><FillPattern F='Inh'>1</FillPattern><ShdwForegnd>#cdcdcd</ShdwForegnd><ShdwBkgnd>#cdcdcd</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans>0</FillForegndTrans><FillBkgndTrans>0</FillBkgndTrans><ShdwForegndTrans>0.5</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType>1</ShapeShdwType><ShapeShdwOffsetX Unit='IN'>0.02</ShapeShdwOffsetX><ShapeShdwOffsetY Unit='IN'>-0.02</ShapeShdwOffsetY><ShapeShdwObliqueAngle Unit='DEG'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor>1</ShapeShdwScaleFactor></Fill><vx:Fill xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:FillForegnd F='THEME("FillColor")'>#ffffff</vx:FillForegnd><vx:FillBkgnd F='THEME("FillColor2")'>#f0f0f0</vx:FillBkgnd><vx:ShdwForegnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwForegnd><vx:ShdwBkgnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwBkgnd><vx:FillForegndTrans F='THEME("FillTransparency")'>0</vx:FillForegndTrans><vx:FillBkgndTrans F='THEME("FillTransparency")'>0</vx:FillBkgndTrans><vx:ShdwForegndTrans F='THEME("ShadowTransparency")'>0.5</vx:ShdwForegndTrans><vx:ShapeShdwType F='THEME("ShadowStyle")'>1</vx:ShapeShdwType><vx:ShapeShdwOffsetX Unit='IN' F='THEME("ShadowXOffset")'>0.02</vx:ShapeShdwOffsetX><vx:ShapeShdwOffsetY Unit='IN' F='THEME("ShadowYOffset")'>-0.02</vx:ShapeShdwOffsetY><vx:ShapeShdwObliqueAngle Unit='DEG' F='THEME("ShadowDirection")'>0</vx:ShapeShdwObliqueAngle><vx:ShapeShdwScaleFactor F='THEME("ShadowMagnification")'>1</vx:ShapeShdwScaleFactor></vx:Fill><User NameU='ScaleFactor' ID='1'><Value F='ThePage!DrawingScale/ThePage!PageScale'>1</Value><Prompt V='null'/></User><User NameU='visVersion' ID='3'><Value>14</Value><Prompt V='null'/></User><User NameU='msvThemeColors' ID='4'><Value>36</Value><Prompt V='null'/></User><User NameU='msvThemeEffects' ID='5'><Value>16</Value><Prompt V='null'/></User><Char IX='0'><Font>4</Font><Color>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont>0</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><vx:Char IX='0' xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:Font F='THEME("LatinFont")'>4</vx:Font><vx:Color F='THEME("TextColor")'>#000000</vx:Color><vx:AsianFont F='THEME("AsianFont")'>5</vx:AsianFont><vx:ComplexScriptFont F='THEME("ComplexFont")'>0</vx:ComplexScriptFont></vx:Char><Text><cp IX='0'/>123
|
436
|
+
</Text><Shapes><Shape ID='5' Type='Shape' MasterShape='6'><XForm><PinX Unit='MM' F='Inh'>0.78740157480315</PinX><PinY Unit='MM' F='Inh'>-0.059055118110236</PinY><Width Unit='MM' F='Inh'>1.5748031496063</Width><Height Unit='MM' F='Inh'>0.118110236220472</Height><LocPinX Unit='MM' F='Inh'>0.78740157480315</LocPinX><LocPinY Unit='MM' F='Inh'>0.059055118110236</LocPinY><Angle Unit='AD' F='Inh'>0</Angle><FlipX F='Inh'>0</FlipX><FlipY F='Inh'>0</FlipY><ResizeMode F='Inh'>0</ResizeMode></XForm><Line><LineWeight Unit='PT'>0.003472222222222222</LineWeight><LineColor>#404040</LineColor><LinePattern>1</LinePattern><Rounding F='Inh'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans>0</LineColorTrans></Line><vx:Line xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LineWeight Unit='PT' F='THEME("LineWeight")'>0.003472222222222222</vx:LineWeight><vx:LineColor F='THEME("LineColor")'>#404040</vx:LineColor><vx:LinePattern F='THEME("LinePattern")'>1</vx:LinePattern><vx:LineColorTrans F='THEME("LineTransparency")'>0</vx:LineColorTrans></vx:Line><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID F='Inh'>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Fill><FillForegnd>#eaeaea</FillForegnd><FillBkgnd>#dbdbdb</FillBkgnd><FillPattern F='Inh'>1</FillPattern><ShdwForegnd>#cdcdcd</ShdwForegnd><ShdwBkgnd>#cdcdcd</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans>0</FillForegndTrans><FillBkgndTrans>0</FillBkgndTrans><ShdwForegndTrans>0.5</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType>1</ShapeShdwType><ShapeShdwOffsetX Unit='IN'>0.02</ShapeShdwOffsetX><ShapeShdwOffsetY Unit='IN'>-0.02</ShapeShdwOffsetY><ShapeShdwObliqueAngle Unit='DEG'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor>1</ShapeShdwScaleFactor></Fill><vx:Fill xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:FillForegnd F='THEMEGUARD(IF(CELLISTHEMED(TRUE),SETATREFEXPR(SHADE(THEME("FillColor"),20)),SETATREFEXPR(RGB(176,197,227))))'>#eaeaea</vx:FillForegnd><vx:FillBkgnd F='THEMEGUARD(IF(CELLISTHEMED(TRUE),SETATREFEXPR(SHADE(THEME("FillColor2"),20)),SETATREFEXPR(RGB(237,241,248))))'>#dbdbdb</vx:FillBkgnd><vx:ShdwForegnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwForegnd><vx:ShdwBkgnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwBkgnd><vx:FillForegndTrans F='THEME("FillTransparency")'>0</vx:FillForegndTrans><vx:FillBkgndTrans F='THEME("FillTransparency")'>0</vx:FillBkgndTrans><vx:ShdwForegndTrans F='THEME("ShadowTransparency")'>0.5</vx:ShdwForegndTrans><vx:ShapeShdwType F='THEME("ShadowStyle")'>1</vx:ShapeShdwType><vx:ShapeShdwOffsetX Unit='IN' F='THEME("ShadowXOffset")'>0.02</vx:ShapeShdwOffsetX><vx:ShapeShdwOffsetY Unit='IN' F='THEME("ShadowYOffset")'>-0.02</vx:ShapeShdwOffsetY><vx:ShapeShdwObliqueAngle Unit='DEG' F='THEME("ShadowDirection")'>0</vx:ShapeShdwObliqueAngle><vx:ShapeShdwScaleFactor F='THEME("ShadowMagnification")'>1</vx:ShapeShdwScaleFactor></vx:Fill><Char IX='0'><Font>4</Font><Color>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont>0</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><vx:Char IX='0' xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:Font F='THEME("LatinFont")'>4</vx:Font><vx:Color F='THEME("TextColor")'>#000000</vx:Color><vx:AsianFont F='THEME("AsianFont")'>5</vx:AsianFont><vx:ComplexScriptFont F='THEME("ComplexFont")'>0</vx:ComplexScriptFont></vx:Char><User NameU='msvThemeColors' ID='1'><Value>36</Value><Prompt V='null'/></User><User NameU='msvThemeEffects' ID='2'><Value>16</Value><Prompt V='null'/></User></Shape><Shape ID='6' Type='Shape' MasterShape='7'><XForm><PinX Unit='MM' F='Inh'>-0.059055118110236</PinX><PinY Unit='MM' F='Inh'>0.590551181102365</PinY><Width Unit='MM' F='Inh'>0.118110236220472</Width><Height Unit='MM' F='Inh'>1.18110236220473</Height><LocPinX Unit='MM' F='Inh'>0.059055118110236</LocPinX><LocPinY Unit='MM' F='Inh'>0.590551181102365</LocPinY><Angle Unit='AD' F='Inh'>0</Angle><FlipX F='Inh'>0</FlipX><FlipY F='Inh'>0</FlipY><ResizeMode F='Inh'>0</ResizeMode></XForm><Line><LineWeight Unit='PT'>0.003472222222222222</LineWeight><LineColor>#404040</LineColor><LinePattern>1</LinePattern><Rounding F='Inh'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans>0</LineColorTrans></Line><vx:Line xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LineWeight Unit='PT' F='THEME("LineWeight")'>0.003472222222222222</vx:LineWeight><vx:LineColor F='THEME("LineColor")'>#404040</vx:LineColor><vx:LinePattern F='THEME("LinePattern")'>1</vx:LinePattern><vx:LineColorTrans F='THEME("LineTransparency")'>0</vx:LineColorTrans></vx:Line><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID F='Inh'>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Fill><FillForegnd>#eaeaea</FillForegnd><FillBkgnd>#dbdbdb</FillBkgnd><FillPattern F='Inh'>1</FillPattern><ShdwForegnd>#cdcdcd</ShdwForegnd><ShdwBkgnd>#cdcdcd</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans>0</FillForegndTrans><FillBkgndTrans>0</FillBkgndTrans><ShdwForegndTrans>0.5</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType>1</ShapeShdwType><ShapeShdwOffsetX Unit='IN'>0.02</ShapeShdwOffsetX><ShapeShdwOffsetY Unit='IN'>-0.02</ShapeShdwOffsetY><ShapeShdwObliqueAngle Unit='DEG'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor>1</ShapeShdwScaleFactor></Fill><vx:Fill xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:FillForegnd F='THEMEGUARD(IF(CELLISTHEMED(TRUE),SETATREFEXPR(SHADE(THEME("FillColor"),20)),SETATREFEXPR(RGB(176,197,227))))'>#eaeaea</vx:FillForegnd><vx:FillBkgnd F='THEMEGUARD(IF(CELLISTHEMED(TRUE),SETATREFEXPR(SHADE(THEME("FillColor2"),20)),SETATREFEXPR(RGB(237,241,248))))'>#dbdbdb</vx:FillBkgnd><vx:ShdwForegnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwForegnd><vx:ShdwBkgnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwBkgnd><vx:FillForegndTrans F='THEME("FillTransparency")'>0</vx:FillForegndTrans><vx:FillBkgndTrans F='THEME("FillTransparency")'>0</vx:FillBkgndTrans><vx:ShdwForegndTrans F='THEME("ShadowTransparency")'>0.5</vx:ShdwForegndTrans><vx:ShapeShdwType F='THEME("ShadowStyle")'>1</vx:ShapeShdwType><vx:ShapeShdwOffsetX Unit='IN' F='THEME("ShadowXOffset")'>0.02</vx:ShapeShdwOffsetX><vx:ShapeShdwOffsetY Unit='IN' F='THEME("ShadowYOffset")'>-0.02</vx:ShapeShdwOffsetY><vx:ShapeShdwObliqueAngle Unit='DEG' F='THEME("ShadowDirection")'>0</vx:ShapeShdwObliqueAngle><vx:ShapeShdwScaleFactor F='THEME("ShadowMagnification")'>1</vx:ShapeShdwScaleFactor></vx:Fill><Char IX='0'><Font>4</Font><Color>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont>0</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><vx:Char IX='0' xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:Font F='THEME("LatinFont")'>4</vx:Font><vx:Color F='THEME("TextColor")'>#000000</vx:Color><vx:AsianFont F='THEME("AsianFont")'>5</vx:AsianFont><vx:ComplexScriptFont F='THEME("ComplexFont")'>0</vx:ComplexScriptFont></vx:Char><User NameU='msvThemeColors' ID='1'><Value>36</Value><Prompt V='null'/></User><User NameU='msvThemeEffects' ID='2'><Value>16</Value><Prompt V='null'/></User></Shape><Shape ID='7' Type='Shape' MasterShape='5'><XForm><PinX Unit='MM' F='Inh'>0.78740157480315</PinX><PinY Unit='MM' F='Inh'>0.590551181102365</PinY><Width Unit='MM' F='Inh'>1.5748031496063</Width><Height Unit='MM' F='Inh'>1.18110236220473</Height><LocPinX Unit='MM' F='Inh'>0.78740157480315</LocPinX><LocPinY Unit='MM' F='Inh'>0.590551181102365</LocPinY><Angle Unit='AD' F='Inh'>0</Angle><FlipX F='Inh'>0</FlipX><FlipY F='Inh'>0</FlipY><ResizeMode F='Inh'>0</ResizeMode></XForm><Line><LineWeight Unit='PT'>0.003472222222222222</LineWeight><LineColor>#404040</LineColor><LinePattern>1</LinePattern><Rounding F='Inh'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans>0</LineColorTrans></Line><vx:Line xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LineWeight Unit='PT' F='THEME("LineWeight")'>0.003472222222222222</vx:LineWeight><vx:LineColor F='THEME("LineColor")'>#404040</vx:LineColor><vx:LinePattern F='THEME("LinePattern")'>1</vx:LinePattern><vx:LineColorTrans F='THEME("LineTransparency")'>0</vx:LineColorTrans></vx:Line><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID F='Inh'>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Fill><FillForegnd>#ffffff</FillForegnd><FillBkgnd>#f0f0f0</FillBkgnd><FillPattern F='Inh'>1</FillPattern><ShdwForegnd>#cdcdcd</ShdwForegnd><ShdwBkgnd>#cdcdcd</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans>0</FillForegndTrans><FillBkgndTrans>0</FillBkgndTrans><ShdwForegndTrans>0.5</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType>1</ShapeShdwType><ShapeShdwOffsetX Unit='IN'>0.02</ShapeShdwOffsetX><ShapeShdwOffsetY Unit='IN'>-0.02</ShapeShdwOffsetY><ShapeShdwObliqueAngle Unit='DEG'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor>1</ShapeShdwScaleFactor></Fill><vx:Fill xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:FillForegnd F='THEME("FillColor")'>#ffffff</vx:FillForegnd><vx:FillBkgnd F='THEME("FillColor2")'>#f0f0f0</vx:FillBkgnd><vx:ShdwForegnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwForegnd><vx:ShdwBkgnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwBkgnd><vx:FillForegndTrans F='THEME("FillTransparency")'>0</vx:FillForegndTrans><vx:FillBkgndTrans F='THEME("FillTransparency")'>0</vx:FillBkgndTrans><vx:ShdwForegndTrans F='THEME("ShadowTransparency")'>0.5</vx:ShdwForegndTrans><vx:ShapeShdwType F='THEME("ShadowStyle")'>1</vx:ShapeShdwType><vx:ShapeShdwOffsetX Unit='IN' F='THEME("ShadowXOffset")'>0.02</vx:ShapeShdwOffsetX><vx:ShapeShdwOffsetY Unit='IN' F='THEME("ShadowYOffset")'>-0.02</vx:ShapeShdwOffsetY><vx:ShapeShdwObliqueAngle Unit='DEG' F='THEME("ShadowDirection")'>0</vx:ShapeShdwObliqueAngle><vx:ShapeShdwScaleFactor F='THEME("ShadowMagnification")'>1</vx:ShapeShdwScaleFactor></vx:Fill><Char IX='0'><Font>4</Font><Color>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont>0</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><vx:Char IX='0' xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:Font F='THEME("LatinFont")'>4</vx:Font><vx:Color F='THEME("TextColor")'>#000000</vx:Color><vx:AsianFont F='THEME("AsianFont")'>5</vx:AsianFont><vx:ComplexScriptFont F='THEME("ComplexFont")'>0</vx:ComplexScriptFont></vx:Char><User NameU='msvThemeColors' ID='1'><Value>36</Value><Prompt V='null'/></User><User NameU='msvThemeEffects' ID='2'><Value>16</Value><Prompt V='null'/></User></Shape></Shapes></Shape><Shape ID='1' NameU='Octagon' Name='八边形' Type='Shape' Master='2'><XForm><PinX>4.64566929133858</PinX><PinY>10.1181102362205</PinY><Width Unit='MM' F='Inh'>1.5748031496063</Width><Height Unit='MM' F='Inh'>1.5748031496063</Height><LocPinX Unit='MM' F='Inh'>0.78740157480315</LocPinX><LocPinY Unit='MM' F='Inh'>0.78740157480315</LocPinY><Angle Unit='AD' F='Inh'>0</Angle><FlipX F='Inh'>0</FlipX><FlipY F='Inh'>0</FlipY><ResizeMode F='Inh'>0</ResizeMode></XForm><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='Inh'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><Line><LineWeight Unit='PT'>0.003472222222222222</LineWeight><LineColor>#404040</LineColor><LinePattern>1</LinePattern><Rounding Unit='IN'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans>0</LineColorTrans></Line><vx:Line xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LineWeight Unit='PT' F='THEME("LineWeight")'>0.003472222222222222</vx:LineWeight><vx:LineColor F='THEME("LineColor")'>#404040</vx:LineColor><vx:LinePattern F='THEME("LinePattern")'>1</vx:LinePattern><vx:Rounding Unit='IN' F='THEME("LineRounding")'>0</vx:Rounding><vx:LineColorTrans F='THEME("LineTransparency")'>0</vx:LineColorTrans></vx:Line><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID F='Inh'>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Fill><FillForegnd>#f0f0f0</FillForegnd><FillBkgnd>#ffffff</FillBkgnd><FillPattern>30</FillPattern><ShdwForegnd>#cdcdcd</ShdwForegnd><ShdwBkgnd>#cdcdcd</ShdwBkgnd><ShdwPattern>1</ShdwPattern><FillForegndTrans>0</FillForegndTrans><FillBkgndTrans>0</FillBkgndTrans><ShdwForegndTrans>0.5</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType>1</ShapeShdwType><ShapeShdwOffsetX Unit='IN'>0.02</ShapeShdwOffsetX><ShapeShdwOffsetY Unit='IN'>-0.02</ShapeShdwOffsetY><ShapeShdwObliqueAngle Unit='DEG'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor>1</ShapeShdwScaleFactor></Fill><vx:Fill xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:FillForegnd F='THEME("FillColor2")'>#f0f0f0</vx:FillForegnd><vx:FillBkgnd F='THEME("FillColor")'>#ffffff</vx:FillBkgnd><vx:ShdwForegnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwForegnd><vx:ShdwBkgnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwBkgnd><vx:ShdwPattern F='THEME("ShadowPattern")'>1</vx:ShdwPattern><vx:FillForegndTrans F='THEME("FillTransparency")'>0</vx:FillForegndTrans><vx:FillBkgndTrans F='THEME("FillTransparency")'>0</vx:FillBkgndTrans><vx:ShdwForegndTrans F='THEME("ShadowTransparency")'>0.5</vx:ShdwForegndTrans><vx:ShapeShdwType F='THEME("ShadowStyle")'>1</vx:ShapeShdwType><vx:ShapeShdwOffsetX Unit='IN' F='THEME("ShadowXOffset")'>0.02</vx:ShapeShdwOffsetX><vx:ShapeShdwOffsetY Unit='IN' F='THEME("ShadowYOffset")'>-0.02</vx:ShapeShdwOffsetY><vx:ShapeShdwObliqueAngle Unit='DEG' F='THEME("ShadowDirection")'>0</vx:ShapeShdwObliqueAngle><vx:ShapeShdwScaleFactor F='THEME("ShadowMagnification")'>1</vx:ShapeShdwScaleFactor></vx:Fill><User NameU='visVersion' ID='2'><Value>14</Value><Prompt V='null'/></User><User NameU='msvThemeColors' ID='3'><Value>36</Value><Prompt V='null'/></User><User NameU='msvThemeEffects' ID='4'><Value>16</Value><Prompt V='null'/></User><Char IX='0'><Font>4</Font><Color>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont>0</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><vx:Char IX='0' xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:Font F='THEME("LatinFont")'>4</vx:Font><vx:Color F='THEME("TextColor")'>#000000</vx:Color><vx:AsianFont F='THEME("AsianFont")'>5</vx:AsianFont><vx:ComplexScriptFont F='THEME("ComplexFont")'>0</vx:ComplexScriptFont></vx:Char></Shape><Shape ID='2' Type='Group' Master='6'><XForm><PinX>2.28346456692913</PinX><PinY>6.77165354330709</PinY><Width Unit='MM' F='Inh'>1.5748031496063</Width><Height Unit='MM' F='Inh'>1.18110236220473</Height><LocPinX Unit='MM' F='Inh'>0.78740157480315</LocPinX><LocPinY Unit='MM' F='Inh'>0.590551181102365</LocPinY><Angle Unit='AD' F='Inh'>0</Angle><FlipX F='Inh'>1</FlipX><FlipY F='Inh'>0</FlipY><ResizeMode F='Inh'>0</ResizeMode></XForm><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='Inh'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><Line><LineWeight Unit='PT'>0.003472222222222222</LineWeight><LineColor>#404040</LineColor><LinePattern>1</LinePattern><Rounding F='Inh'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans>0</LineColorTrans></Line><vx:Line xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LineWeight Unit='PT' F='THEME("LineWeight")'>0.003472222222222222</vx:LineWeight><vx:LineColor F='THEME("LineColor")'>#404040</vx:LineColor><vx:LinePattern F='THEME("LinePattern")'>1</vx:LinePattern><vx:LineColorTrans F='THEME("LineTransparency")'>0</vx:LineColorTrans></vx:Line><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType>9</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID F='Inh'>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Fill><FillForegnd>#ffffff</FillForegnd><FillBkgnd>#f0f0f0</FillBkgnd><FillPattern F='Inh'>1</FillPattern><ShdwForegnd>#cdcdcd</ShdwForegnd><ShdwBkgnd>#cdcdcd</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans>0</FillForegndTrans><FillBkgndTrans>0</FillBkgndTrans><ShdwForegndTrans>0.5</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType>1</ShapeShdwType><ShapeShdwOffsetX Unit='IN'>0.02</ShapeShdwOffsetX><ShapeShdwOffsetY Unit='IN'>-0.02</ShapeShdwOffsetY><ShapeShdwObliqueAngle Unit='DEG'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor>1</ShapeShdwScaleFactor></Fill><vx:Fill xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:FillForegnd F='THEME("FillColor")'>#ffffff</vx:FillForegnd><vx:FillBkgnd F='THEME("FillColor2")'>#f0f0f0</vx:FillBkgnd><vx:ShdwForegnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwForegnd><vx:ShdwBkgnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwBkgnd><vx:FillForegndTrans F='THEME("FillTransparency")'>0</vx:FillForegndTrans><vx:FillBkgndTrans F='THEME("FillTransparency")'>0</vx:FillBkgndTrans><vx:ShdwForegndTrans F='THEME("ShadowTransparency")'>0.5</vx:ShdwForegndTrans><vx:ShapeShdwType F='THEME("ShadowStyle")'>1</vx:ShapeShdwType><vx:ShapeShdwOffsetX Unit='IN' F='THEME("ShadowXOffset")'>0.02</vx:ShapeShdwOffsetX><vx:ShapeShdwOffsetY Unit='IN' F='THEME("ShadowYOffset")'>-0.02</vx:ShapeShdwOffsetY><vx:ShapeShdwObliqueAngle Unit='DEG' F='THEME("ShadowDirection")'>0</vx:ShapeShdwObliqueAngle><vx:ShapeShdwScaleFactor F='THEME("ShadowMagnification")'>1</vx:ShapeShdwScaleFactor></vx:Fill><User NameU='ScaleFactor' ID='1'><Value F='ThePage!DrawingScale/ThePage!PageScale'>1</Value><Prompt V='null'/></User><User NameU='visVersion' ID='3'><Value>14</Value><Prompt V='null'/></User><User NameU='msvThemeColors' ID='4'><Value>36</Value><Prompt V='null'/></User><User NameU='msvThemeEffects' ID='5'><Value>16</Value><Prompt V='null'/></User><Char IX='0'><Font>4</Font><Color>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont>0</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><vx:Char IX='0' xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:Font F='THEME("LatinFont")'>4</vx:Font><vx:Color F='THEME("TextColor")'>#000000</vx:Color><vx:AsianFont F='THEME("AsianFont")'>5</vx:AsianFont><vx:ComplexScriptFont F='THEME("ComplexFont")'>0</vx:ComplexScriptFont></vx:Char><Connection IX='0'><X Unit='MM' F='Inh'>0.78740157480315</X><Y Unit='MM' F='Inh'>0.590551181102365</Y><DirX F='Inh'>0</DirX><DirY F='Inh'>1</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='1'><X Unit='MM' F='Inh'>1.5748031496063</X><Y Unit='MM' F='Inh'>0.590551181102365</Y><DirX F='Inh'>-1</DirX><DirY F='Inh'>0</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='2'><X Unit='MM' F='Inh'>0.78740157480315</X><Y Unit='MM' F='Inh'>0</Y><DirX F='Inh'>0</DirX><DirY F='Inh'>1</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='3'><X Unit='MM' F='Inh'>0</X><Y Unit='MM' F='Inh'>0.590551181102365</Y><DirX F='Inh'>1</DirX><DirY F='Inh'>0</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Connection IX='4'><X Unit='MM' F='Inh'>0.78740157480315</X><Y Unit='MM' F='Inh'>1.18110236220473</Y><DirX F='Inh'>0</DirX><DirY F='Inh'>-1</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><Text><cp IX='0'/>Hello
|
437
|
+
</Text><Shapes><Shape ID='8' Type='Shape' MasterShape='6'><XForm><PinX Unit='MM' F='Inh'>0.78740157480315</PinX><PinY Unit='MM' F='Inh'>-0.059055118110236</PinY><Width Unit='MM' F='Inh'>1.5748031496063</Width><Height Unit='MM' F='Inh'>0.118110236220472</Height><LocPinX Unit='MM' F='Inh'>0.78740157480315</LocPinX><LocPinY Unit='MM' F='Inh'>0.059055118110236</LocPinY><Angle Unit='AD' F='Inh'>0</Angle><FlipX F='Inh'>0</FlipX><FlipY F='Inh'>0</FlipY><ResizeMode F='Inh'>0</ResizeMode></XForm><Line><LineWeight Unit='PT'>0.003472222222222222</LineWeight><LineColor>#404040</LineColor><LinePattern>1</LinePattern><Rounding F='Inh'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans>0</LineColorTrans></Line><vx:Line xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LineWeight Unit='PT' F='THEME("LineWeight")'>0.003472222222222222</vx:LineWeight><vx:LineColor F='THEME("LineColor")'>#404040</vx:LineColor><vx:LinePattern F='THEME("LinePattern")'>1</vx:LinePattern><vx:LineColorTrans F='THEME("LineTransparency")'>0</vx:LineColorTrans></vx:Line><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID F='Inh'>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Fill><FillForegnd>#eaeaea</FillForegnd><FillBkgnd>#dbdbdb</FillBkgnd><FillPattern F='Inh'>1</FillPattern><ShdwForegnd>#cdcdcd</ShdwForegnd><ShdwBkgnd>#cdcdcd</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans>0</FillForegndTrans><FillBkgndTrans>0</FillBkgndTrans><ShdwForegndTrans>0.5</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType>1</ShapeShdwType><ShapeShdwOffsetX Unit='IN'>0.02</ShapeShdwOffsetX><ShapeShdwOffsetY Unit='IN'>-0.02</ShapeShdwOffsetY><ShapeShdwObliqueAngle Unit='DEG'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor>1</ShapeShdwScaleFactor></Fill><vx:Fill xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:FillForegnd F='THEMEGUARD(IF(CELLISTHEMED(TRUE),SETATREFEXPR(SHADE(THEME("FillColor"),20)),SETATREFEXPR(RGB(176,197,227))))'>#eaeaea</vx:FillForegnd><vx:FillBkgnd F='THEMEGUARD(IF(CELLISTHEMED(TRUE),SETATREFEXPR(SHADE(THEME("FillColor2"),20)),SETATREFEXPR(RGB(237,241,248))))'>#dbdbdb</vx:FillBkgnd><vx:ShdwForegnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwForegnd><vx:ShdwBkgnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwBkgnd><vx:FillForegndTrans F='THEME("FillTransparency")'>0</vx:FillForegndTrans><vx:FillBkgndTrans F='THEME("FillTransparency")'>0</vx:FillBkgndTrans><vx:ShdwForegndTrans F='THEME("ShadowTransparency")'>0.5</vx:ShdwForegndTrans><vx:ShapeShdwType F='THEME("ShadowStyle")'>1</vx:ShapeShdwType><vx:ShapeShdwOffsetX Unit='IN' F='THEME("ShadowXOffset")'>0.02</vx:ShapeShdwOffsetX><vx:ShapeShdwOffsetY Unit='IN' F='THEME("ShadowYOffset")'>-0.02</vx:ShapeShdwOffsetY><vx:ShapeShdwObliqueAngle Unit='DEG' F='THEME("ShadowDirection")'>0</vx:ShapeShdwObliqueAngle><vx:ShapeShdwScaleFactor F='THEME("ShadowMagnification")'>1</vx:ShapeShdwScaleFactor></vx:Fill><Char IX='0'><Font>4</Font><Color>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont>0</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><vx:Char IX='0' xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:Font F='THEME("LatinFont")'>4</vx:Font><vx:Color F='THEME("TextColor")'>#000000</vx:Color><vx:AsianFont F='THEME("AsianFont")'>5</vx:AsianFont><vx:ComplexScriptFont F='THEME("ComplexFont")'>0</vx:ComplexScriptFont></vx:Char><User NameU='msvThemeColors' ID='1'><Value>36</Value><Prompt V='null'/></User><User NameU='msvThemeEffects' ID='2'><Value>16</Value><Prompt V='null'/></User></Shape><Shape ID='9' Type='Shape' MasterShape='7'><XForm><PinX Unit='MM' F='Inh'>-0.059055118110236</PinX><PinY Unit='MM' F='Inh'>0.590551181102365</PinY><Width Unit='MM' F='Inh'>0.118110236220472</Width><Height Unit='MM' F='Inh'>1.18110236220473</Height><LocPinX Unit='MM' F='Inh'>0.059055118110236</LocPinX><LocPinY Unit='MM' F='Inh'>0.590551181102365</LocPinY><Angle Unit='AD' F='Inh'>0</Angle><FlipX F='Inh'>0</FlipX><FlipY F='Inh'>0</FlipY><ResizeMode F='Inh'>0</ResizeMode></XForm><Line><LineWeight Unit='PT'>0.003472222222222222</LineWeight><LineColor>#404040</LineColor><LinePattern>1</LinePattern><Rounding F='Inh'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans>0</LineColorTrans></Line><vx:Line xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LineWeight Unit='PT' F='THEME("LineWeight")'>0.003472222222222222</vx:LineWeight><vx:LineColor F='THEME("LineColor")'>#404040</vx:LineColor><vx:LinePattern F='THEME("LinePattern")'>1</vx:LinePattern><vx:LineColorTrans F='THEME("LineTransparency")'>0</vx:LineColorTrans></vx:Line><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID F='Inh'>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Fill><FillForegnd>#eaeaea</FillForegnd><FillBkgnd>#dbdbdb</FillBkgnd><FillPattern F='Inh'>1</FillPattern><ShdwForegnd>#cdcdcd</ShdwForegnd><ShdwBkgnd>#cdcdcd</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans>0</FillForegndTrans><FillBkgndTrans>0</FillBkgndTrans><ShdwForegndTrans>0.5</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType>1</ShapeShdwType><ShapeShdwOffsetX Unit='IN'>0.02</ShapeShdwOffsetX><ShapeShdwOffsetY Unit='IN'>-0.02</ShapeShdwOffsetY><ShapeShdwObliqueAngle Unit='DEG'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor>1</ShapeShdwScaleFactor></Fill><vx:Fill xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:FillForegnd F='THEMEGUARD(IF(CELLISTHEMED(TRUE),SETATREFEXPR(SHADE(THEME("FillColor"),20)),SETATREFEXPR(RGB(176,197,227))))'>#eaeaea</vx:FillForegnd><vx:FillBkgnd F='THEMEGUARD(IF(CELLISTHEMED(TRUE),SETATREFEXPR(SHADE(THEME("FillColor2"),20)),SETATREFEXPR(RGB(237,241,248))))'>#dbdbdb</vx:FillBkgnd><vx:ShdwForegnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwForegnd><vx:ShdwBkgnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwBkgnd><vx:FillForegndTrans F='THEME("FillTransparency")'>0</vx:FillForegndTrans><vx:FillBkgndTrans F='THEME("FillTransparency")'>0</vx:FillBkgndTrans><vx:ShdwForegndTrans F='THEME("ShadowTransparency")'>0.5</vx:ShdwForegndTrans><vx:ShapeShdwType F='THEME("ShadowStyle")'>1</vx:ShapeShdwType><vx:ShapeShdwOffsetX Unit='IN' F='THEME("ShadowXOffset")'>0.02</vx:ShapeShdwOffsetX><vx:ShapeShdwOffsetY Unit='IN' F='THEME("ShadowYOffset")'>-0.02</vx:ShapeShdwOffsetY><vx:ShapeShdwObliqueAngle Unit='DEG' F='THEME("ShadowDirection")'>0</vx:ShapeShdwObliqueAngle><vx:ShapeShdwScaleFactor F='THEME("ShadowMagnification")'>1</vx:ShapeShdwScaleFactor></vx:Fill><Char IX='0'><Font>4</Font><Color>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont>0</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><vx:Char IX='0' xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:Font F='THEME("LatinFont")'>4</vx:Font><vx:Color F='THEME("TextColor")'>#000000</vx:Color><vx:AsianFont F='THEME("AsianFont")'>5</vx:AsianFont><vx:ComplexScriptFont F='THEME("ComplexFont")'>0</vx:ComplexScriptFont></vx:Char><User NameU='msvThemeColors' ID='1'><Value>36</Value><Prompt V='null'/></User><User NameU='msvThemeEffects' ID='2'><Value>16</Value><Prompt V='null'/></User></Shape><Shape ID='10' Type='Shape' MasterShape='5'><XForm><PinX Unit='MM' F='Inh'>0.78740157480315</PinX><PinY Unit='MM' F='Inh'>0.590551181102365</PinY><Width Unit='MM' F='Inh'>1.5748031496063</Width><Height Unit='MM' F='Inh'>1.18110236220473</Height><LocPinX Unit='MM' F='Inh'>0.78740157480315</LocPinX><LocPinY Unit='MM' F='Inh'>0.590551181102365</LocPinY><Angle Unit='AD' F='Inh'>0</Angle><FlipX F='Inh'>0</FlipX><FlipY F='Inh'>0</FlipY><ResizeMode F='Inh'>0</ResizeMode></XForm><Line><LineWeight Unit='PT'>0.003472222222222222</LineWeight><LineColor>#404040</LineColor><LinePattern>1</LinePattern><Rounding F='Inh'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans>0</LineColorTrans></Line><vx:Line xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LineWeight Unit='PT' F='THEME("LineWeight")'>0.003472222222222222</vx:LineWeight><vx:LineColor F='THEME("LineColor")'>#404040</vx:LineColor><vx:LinePattern F='THEME("LinePattern")'>1</vx:LinePattern><vx:LineColorTrans F='THEME("LineTransparency")'>0</vx:LineColorTrans></vx:Line><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID F='Inh'>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Fill><FillForegnd>#ffffff</FillForegnd><FillBkgnd>#f0f0f0</FillBkgnd><FillPattern F='Inh'>1</FillPattern><ShdwForegnd>#cdcdcd</ShdwForegnd><ShdwBkgnd>#cdcdcd</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans>0</FillForegndTrans><FillBkgndTrans>0</FillBkgndTrans><ShdwForegndTrans>0.5</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType>1</ShapeShdwType><ShapeShdwOffsetX Unit='IN'>0.02</ShapeShdwOffsetX><ShapeShdwOffsetY Unit='IN'>-0.02</ShapeShdwOffsetY><ShapeShdwObliqueAngle Unit='DEG'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor>1</ShapeShdwScaleFactor></Fill><vx:Fill xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:FillForegnd F='THEME("FillColor")'>#ffffff</vx:FillForegnd><vx:FillBkgnd F='THEME("FillColor2")'>#f0f0f0</vx:FillBkgnd><vx:ShdwForegnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwForegnd><vx:ShdwBkgnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwBkgnd><vx:FillForegndTrans F='THEME("FillTransparency")'>0</vx:FillForegndTrans><vx:FillBkgndTrans F='THEME("FillTransparency")'>0</vx:FillBkgndTrans><vx:ShdwForegndTrans F='THEME("ShadowTransparency")'>0.5</vx:ShdwForegndTrans><vx:ShapeShdwType F='THEME("ShadowStyle")'>1</vx:ShapeShdwType><vx:ShapeShdwOffsetX Unit='IN' F='THEME("ShadowXOffset")'>0.02</vx:ShapeShdwOffsetX><vx:ShapeShdwOffsetY Unit='IN' F='THEME("ShadowYOffset")'>-0.02</vx:ShapeShdwOffsetY><vx:ShapeShdwObliqueAngle Unit='DEG' F='THEME("ShadowDirection")'>0</vx:ShapeShdwObliqueAngle><vx:ShapeShdwScaleFactor F='THEME("ShadowMagnification")'>1</vx:ShapeShdwScaleFactor></vx:Fill><Char IX='0'><Font>4</Font><Color>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont>0</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><vx:Char IX='0' xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:Font F='THEME("LatinFont")'>4</vx:Font><vx:Color F='THEME("TextColor")'>#000000</vx:Color><vx:AsianFont F='THEME("AsianFont")'>5</vx:AsianFont><vx:ComplexScriptFont F='THEME("ComplexFont")'>0</vx:ComplexScriptFont></vx:Char><User NameU='msvThemeColors' ID='1'><Value>36</Value><Prompt V='null'/></User><User NameU='msvThemeEffects' ID='2'><Value>16</Value><Prompt V='null'/></User></Shape></Shapes></Shape><Shape ID='11' NameU='Dynamic connector' Name='动态连接线' Type='Shape' Master='7'><XForm><PinX Unit='MM' F='Inh'>3.11023622047244</PinX><PinY Unit='MM' F='Inh'>8.208661417322812</PinY><Width F='GUARD(-0.19685039370079DL)'>-0.1968503937007874</Width><Height Unit='MM' F='GUARD(EndY-BeginY)'>-2.874015748031446</Height><LocPinX F='Inh'>-0.0984251968503935</LocPinX><LocPinY Unit='MM' F='Inh'>-1.43700787401575</LocPinY><Angle F='Inh'>0</Angle><FlipX F='Inh'>0</FlipX><FlipY F='Inh'>0</FlipY><ResizeMode F='Inh'>0</ResizeMode></XForm><XForm1D><BeginX Unit='MM' F='PAR(PNT(Right triangle!Connections.X4,Right triangle!Connections.Y4))'>3.1496062992126</BeginX><BeginY F='PAR(PNT(Right triangle!Connections.X4,Right triangle!Connections.Y4))'>9.645669291338535</BeginY><EndX Unit='MM' F='PAR(PNT('3-D box.2'!Connections.X4,'3-D box.2'!Connections.Y4))'>3.07086614173228</EndX><EndY Unit='MM' F='PAR(PNT('3-D box.2'!Connections.X4,'3-D box.2'!Connections.Y4))'>6.77165354330709</EndY></XForm1D><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='Inh'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><Line><LineWeight Unit='PT'>0.01388888888888889</LineWeight><LineColor>#404040</LineColor><LinePattern>1</LinePattern><Rounding Unit='IN'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow>5</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans>0</LineColorTrans></Line><vx:Line xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LineWeight Unit='PT' F='THEMEGUARD(IF(CELLISTHEMED(TRUE),THEME("ConnectorWeight"),SETATREFEXPR(0.003333)))'>0.01388888888888889</vx:LineWeight><vx:LineColor F='THEMEGUARD(IF(CELLISTHEMED(TRUE),SETATREFEXPR(THEME("ConnectorColor")),SETATREFEXPR(0)))'>#404040</vx:LineColor><vx:LinePattern F='THEMEGUARD(IF(CELLISTHEMED(TRUE),THEME("ConnectorPattern"),SETATREFEXPR(1)))'>1</vx:LinePattern><vx:Rounding Unit='IN' F='THEMEGUARD(IF(CELLISTHEMED(TRUE),THEME("ConnectorRounding"),SETATREFEXPR(0)))'>0</vx:Rounding><vx:EndArrow F='Inh'>5</vx:EndArrow><vx:LineColorTrans F='THEMEGUARD(IF(CELLISTHEMED(TRUE),THEME("ConnectorTransparency"),SETATREFEXPR(0)))'>0</vx:LineColorTrans></vx:Line><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>1</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>2</DynFeedback><GlueType F='Inh'>2</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='_XFTRIGGER(Right triangle!EventXFMod)'>2</BegTrigger><EndTrigger F='_XFTRIGGER('3-D box.2'!EventXFMod)'>2</EndTrigger><ObjType F='Inh'>2</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>1</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID F='Inh'>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Fill><FillForegnd>#f0f0f0</FillForegnd><FillBkgnd>#ffffff</FillBkgnd><FillPattern>30</FillPattern><ShdwForegnd>#cdcdcd</ShdwForegnd><ShdwBkgnd>#cdcdcd</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans>0</FillForegndTrans><FillBkgndTrans>0</FillBkgndTrans><ShdwForegndTrans>0.5</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType>1</ShapeShdwType><ShapeShdwOffsetX Unit='IN'>0.02</ShapeShdwOffsetX><ShapeShdwOffsetY Unit='IN'>-0.02</ShapeShdwOffsetY><ShapeShdwObliqueAngle Unit='DEG'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor>1</ShapeShdwScaleFactor></Fill><vx:Fill xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:FillForegnd F='THEME("FillColor2")'>#f0f0f0</vx:FillForegnd><vx:FillBkgnd F='THEME("FillColor")'>#ffffff</vx:FillBkgnd><vx:ShdwForegnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwForegnd><vx:ShdwBkgnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwBkgnd><vx:FillForegndTrans F='THEME("FillTransparency")'>0</vx:FillForegndTrans><vx:FillBkgndTrans F='THEME("FillTransparency")'>0</vx:FillBkgndTrans><vx:ShdwForegndTrans F='THEME("ShadowTransparency")'>0.5</vx:ShdwForegndTrans><vx:ShapeShdwType F='THEME("ShadowStyle")'>1</vx:ShapeShdwType><vx:ShapeShdwOffsetX Unit='IN' F='THEME("ShadowXOffset")'>0.02</vx:ShapeShdwOffsetX><vx:ShapeShdwOffsetY Unit='IN' F='THEME("ShadowYOffset")'>-0.02</vx:ShapeShdwOffsetY><vx:ShapeShdwObliqueAngle Unit='DEG' F='THEME("ShadowDirection")'>0</vx:ShapeShdwObliqueAngle><vx:ShapeShdwScaleFactor F='THEME("ShadowMagnification")'>1</vx:ShapeShdwScaleFactor></vx:Fill><LayerMem><LayerMember>0</LayerMember></LayerMem><TextXForm><TxtPinX F='Inh'>0.1284448818897654</TxtPinX><TxtPinY F='Inh'>-1.47637795275591</TxtPinY><TxtWidth Unit='PT' F='Inh'>0.5555555555555556</TxtWidth><TxtHeight F='Inh'>0.2444444444444444</TxtHeight><TxtLocPinX Unit='PT' F='Inh'>0.2777777777777778</TxtLocPinX><TxtLocPinY F='Inh'>0.1222222222222222</TxtLocPinY><TxtAngle F='Inh'>0</TxtAngle></TextXForm><Control NameU='TextPosition' ID='1'><X>0.1284448818897654</X><Y>-1.476377952755884</Y><XDyn F='Inh'>0.1284448818897654</XDyn><YDyn F='Inh'>-1.47637795275591</YDyn><XCon F='Inh'>5</XCon><YCon F='Inh'>0</YCon><CanGlue F='Inh'>0</CanGlue><Prompt F='Inh'>Reposition Text</Prompt></Control><Char IX='0'><Font>4</Font><Color>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont>0</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><vx:Char IX='0' xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:Font F='THEME("LatinFont")'>4</vx:Font><vx:Color F='THEME("TextColor")'>#000000</vx:Color><vx:AsianFont F='THEME("AsianFont")'>5</vx:AsianFont><vx:ComplexScriptFont F='THEME("ComplexFont")'>0</vx:ComplexScriptFont></vx:Char><User NameU='msvThemeColors' ID='1'><Value>36</Value><Prompt V='null'/></User><User NameU='msvThemeEffects' ID='2'><Value>16</Value><Prompt V='null'/></User><Geom IX='0'><NoFill>1</NoFill><NoLine>0</NoLine><NoShow>0</NoShow><NoSnap>0</NoSnap><MoveTo IX='1'><X>-0.05905511811023478</X><Y>0</Y></MoveTo><LineTo IX='2'><X>0.1284448818897652</X><Y>0</Y></LineTo><LineTo IX='3'><X>0.1284448818897652</X><Y>-2.874015748031445</Y></LineTo><LineTo IX='4'><X>-0.1377952755905523</X><Y>-2.874015748031445</Y></LineTo></Geom><v14:Geom IX='0' xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:NoQuickDrag F='Inh'>0</v14:NoQuickDrag></v14:Geom></Shape></Shapes><Connects><Connect FromSheet='11' FromCell='BeginX' FromPart='9' ToSheet='3' ToCell='Connections.X4' ToPart='103'/><Connect FromSheet='11' FromCell='EndX' FromPart='12' ToSheet='2' ToCell='Connections.X4' ToPart='103'/></Connects></Page><Page ID='4' NameU='Page-2' ViewScale='-1' ViewCenterX='4.244094488189' ViewCenterY='5.496062992126'><PageSheet LineStyle='0' FillStyle='0' TextStyle='0'><PageProps><PageWidth Unit='MM'>8.5</PageWidth><PageHeight Unit='MM'>11</PageHeight><ShdwOffsetX Unit='MM'>0.118110236220472</ShdwOffsetX><ShdwOffsetY Unit='MM'>-0.118110236220472</ShdwOffsetY><PageScale Unit='MM'>0.0393700787401575</PageScale><DrawingScale Unit='MM'>0.0393700787401575</DrawingScale><DrawingSizeType>0</DrawingSizeType><DrawingScaleType>0</DrawingScaleType><InhibitSnap>0</InhibitSnap><UIVisibility>0</UIVisibility><ShdwType>0</ShdwType><ShdwObliqueAngle>0</ShdwObliqueAngle><ShdwScaleFactor>1</ShdwScaleFactor></PageProps><v14:PageProps xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:DrawingResizeType>0</v14:DrawingResizeType></v14:PageProps><PageLayout><ResizePage F='Inh'>0</ResizePage><EnableGrid F='Inh'>0</EnableGrid><DynamicsOff F='Inh'>0</DynamicsOff><CtrlAsInput F='Inh'>0</CtrlAsInput><PlaceStyle F='Inh'>0</PlaceStyle><RouteStyle F='Inh'>0</RouteStyle><PlaceDepth F='Inh'>0</PlaceDepth><PlowCode F='Inh'>0</PlowCode><LineJumpCode F='Inh'>1</LineJumpCode><LineJumpStyle F='Inh'>0</LineJumpStyle><PageLineJumpDirX F='Inh'>0</PageLineJumpDirX><PageLineJumpDirY F='Inh'>0</PageLineJumpDirY><LineToNodeX F='Inh'>0.125</LineToNodeX><LineToNodeY F='Inh'>0.125</LineToNodeY><BlockSizeX F='Inh'>0.25</BlockSizeX><BlockSizeY F='Inh'>0.25</BlockSizeY><AvenueSizeX F='Inh'>0.375</AvenueSizeX><AvenueSizeY F='Inh'>0.375</AvenueSizeY><LineToLineX F='Inh'>0.125</LineToLineX><LineToLineY F='Inh'>0.125</LineToLineY><LineJumpFactorX F='Inh'>0.66666666666667</LineJumpFactorX><LineJumpFactorY F='Inh'>0.66666666666667</LineJumpFactorY><LineAdjustFrom F='Inh'>0</LineAdjustFrom><LineAdjustTo F='Inh'>0</LineAdjustTo><PlaceFlip F='Inh'>0</PlaceFlip><LineRouteExt F='Inh'>0</LineRouteExt><PageShapeSplit>1</PageShapeSplit></PageLayout><v14:PageLayout xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:AvoidPageBreaks F='Inh'>0</v14:AvoidPageBreaks></v14:PageLayout><XForm><PinX>0</PinX><PinY>0</PinY><Width>1</Width><Height>1</Height><LocPinX F='Width*0'>0</LocPinX><LocPinY F='Height*0'>0</LocPinY><Angle>0</Angle><FlipX>0</FlipX><FlipY>0</FlipY><ResizeMode>0</ResizeMode></XForm><User NameU='msvThemeColors' ID='1'><Value>36</Value><Prompt F='No Formula'/></User><User NameU='msvThemeEffects' ID='2'><Value>16</Value><Prompt F='No Formula'/></User><User NameU='msvThemeOrder' ID='3'><Value>0</Value><Prompt F='No Formula'/></User></PageSheet><Shapes><Shape ID='1' NameU='Rectangle' Name='矩形' Type='Shape' Master='10'><Char IX='0'><Font>4</Font><Color>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont>0</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><vx:Char IX='0' xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:Font F='THEME("LatinFont")'>4</vx:Font><vx:Color F='THEME("TextColor")'>#000000</vx:Color><vx:AsianFont F='THEME("AsianFont")'>5</vx:AsianFont><vx:ComplexScriptFont F='THEME("ComplexFont")'>0</vx:ComplexScriptFont></vx:Char><XForm><PinX>1.968503937007875</PinX><PinY>8.858267716535433</PinY><Width Unit='MM' F='Inh'>1.574803149606299</Width><Height Unit='MM' F='Inh'>1.181102362204725</Height><LocPinX Unit='MM' F='Inh'>0.7874015748031495</LocPinX><LocPinY Unit='MM' F='Inh'>0.5905511811023625</LocPinY><Angle Unit='DEG' F='Inh'>0</Angle><FlipX F='Inh'>0</FlipX><FlipY F='Inh'>0</FlipY><ResizeMode F='Inh'>0</ResizeMode></XForm><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='Inh'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><Fill><FillForegnd>#f0f0f0</FillForegnd><FillBkgnd>#ffffff</FillBkgnd><FillPattern>30</FillPattern><ShdwForegnd>#cdcdcd</ShdwForegnd><ShdwBkgnd>#cdcdcd</ShdwBkgnd><ShdwPattern>1</ShdwPattern><FillForegndTrans>0</FillForegndTrans><FillBkgndTrans>0</FillBkgndTrans><ShdwForegndTrans>0.5</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType>1</ShapeShdwType><ShapeShdwOffsetX Unit='IN'>0.02</ShapeShdwOffsetX><ShapeShdwOffsetY Unit='IN'>-0.02</ShapeShdwOffsetY><ShapeShdwObliqueAngle Unit='DEG'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor>1</ShapeShdwScaleFactor></Fill><vx:Fill xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:FillForegnd F='THEME("FillColor2")'>#f0f0f0</vx:FillForegnd><vx:FillBkgnd F='THEME("FillColor")'>#ffffff</vx:FillBkgnd><vx:FillPattern F='THEME("FillPattern")'>30</vx:FillPattern><vx:ShdwForegnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwForegnd><vx:ShdwBkgnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwBkgnd><vx:ShdwPattern F='THEME("ShadowPattern")'>1</vx:ShdwPattern><vx:FillForegndTrans F='THEME("FillTransparency")'>0</vx:FillForegndTrans><vx:FillBkgndTrans F='THEME("FillTransparency")'>0</vx:FillBkgndTrans><vx:ShdwForegndTrans F='THEME("ShadowTransparency")'>0.5</vx:ShdwForegndTrans><vx:ShapeShdwType F='THEME("ShadowStyle")'>1</vx:ShapeShdwType><vx:ShapeShdwOffsetX Unit='IN' F='THEME("ShadowXOffset")'>0.02</vx:ShapeShdwOffsetX><vx:ShapeShdwOffsetY Unit='IN' F='THEME("ShadowYOffset")'>-0.02</vx:ShapeShdwOffsetY><vx:ShapeShdwObliqueAngle Unit='DEG' F='THEME("ShadowDirection")'>0</vx:ShapeShdwObliqueAngle><vx:ShapeShdwScaleFactor F='THEME("ShadowMagnification")'>1</vx:ShapeShdwScaleFactor></vx:Fill><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID F='Inh'>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Line><LineWeight Unit='PT'>0.003472222222222222</LineWeight><LineColor>#404040</LineColor><LinePattern>1</LinePattern><Rounding Unit='IN'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans>0</LineColorTrans></Line><vx:Line xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LineWeight Unit='PT' F='THEME("LineWeight")'>0.003472222222222222</vx:LineWeight><vx:LineColor F='THEME("LineColor")'>#404040</vx:LineColor><vx:LinePattern F='THEME("LinePattern")'>1</vx:LinePattern><vx:Rounding Unit='IN' F='THEME("LineRounding")'>0</vx:Rounding><vx:LineColorTrans F='THEME("LineTransparency")'>0</vx:LineColorTrans></vx:Line><User NameU='visVersion' ID='2'><Value>14</Value><Prompt F='No Formula'/></User><User NameU='msvThemeColors' ID='3'><Value>36</Value><Prompt F='No Formula'/></User><User NameU='msvThemeEffects' ID='4'><Value>16</Value><Prompt F='No Formula'/></User></Shape><Shape ID='2' NameU='Star 5' Name='五角星形' Type='Shape' Master='11'><Char IX='0'><Font>4</Font><Color>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont>0</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><vx:Char IX='0' xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:Font F='THEME("LatinFont")'>4</vx:Font><vx:Color F='THEME("TextColor")'>#000000</vx:Color><vx:AsianFont F='THEME("AsianFont")'>5</vx:AsianFont><vx:ComplexScriptFont F='THEME("ComplexFont")'>0</vx:ComplexScriptFont></vx:Char><XForm><PinX>3.54330709428945</PinX><PinY>6.294824618645166</PinY><Width Unit='MM' F='Inh'>1.574803149606299</Width><Height Unit='MM' F='Inh'>1.574803149606299</Height><LocPinX Unit='MM' F='Inh'>0.7874015824784252</LocPinX><LocPinY Unit='MM' F='Inh'>0.7042734375428031</LocPinY><Angle Unit='DEG' F='Inh'>0</Angle><FlipX F='Inh'>0</FlipX><FlipY F='Inh'>0</FlipY><ResizeMode F='Inh'>0</ResizeMode></XForm><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='Inh'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><Fill><FillForegnd>#f0f0f0</FillForegnd><FillBkgnd>#ffffff</FillBkgnd><FillPattern>30</FillPattern><ShdwForegnd>#cdcdcd</ShdwForegnd><ShdwBkgnd>#cdcdcd</ShdwBkgnd><ShdwPattern>1</ShdwPattern><FillForegndTrans>0</FillForegndTrans><FillBkgndTrans>0</FillBkgndTrans><ShdwForegndTrans>0.5</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType>1</ShapeShdwType><ShapeShdwOffsetX Unit='IN'>0.02</ShapeShdwOffsetX><ShapeShdwOffsetY Unit='IN'>-0.02</ShapeShdwOffsetY><ShapeShdwObliqueAngle Unit='DEG'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor>1</ShapeShdwScaleFactor></Fill><vx:Fill xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:FillForegnd F='THEME("FillColor2")'>#f0f0f0</vx:FillForegnd><vx:FillBkgnd F='THEME("FillColor")'>#ffffff</vx:FillBkgnd><vx:FillPattern F='THEME("FillPattern")'>30</vx:FillPattern><vx:ShdwForegnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwForegnd><vx:ShdwBkgnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwBkgnd><vx:ShdwPattern F='THEME("ShadowPattern")'>1</vx:ShdwPattern><vx:FillForegndTrans F='THEME("FillTransparency")'>0</vx:FillForegndTrans><vx:FillBkgndTrans F='THEME("FillTransparency")'>0</vx:FillBkgndTrans><vx:ShdwForegndTrans F='THEME("ShadowTransparency")'>0.5</vx:ShdwForegndTrans><vx:ShapeShdwType F='THEME("ShadowStyle")'>1</vx:ShapeShdwType><vx:ShapeShdwOffsetX Unit='IN' F='THEME("ShadowXOffset")'>0.02</vx:ShapeShdwOffsetX><vx:ShapeShdwOffsetY Unit='IN' F='THEME("ShadowYOffset")'>-0.02</vx:ShapeShdwOffsetY><vx:ShapeShdwObliqueAngle Unit='DEG' F='THEME("ShadowDirection")'>0</vx:ShapeShdwObliqueAngle><vx:ShapeShdwScaleFactor F='THEME("ShadowMagnification")'>1</vx:ShapeShdwScaleFactor></vx:Fill><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID F='Inh'>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Line><LineWeight Unit='PT'>0.003472222222222222</LineWeight><LineColor>#404040</LineColor><LinePattern>1</LinePattern><Rounding Unit='IN'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans>0</LineColorTrans></Line><vx:Line xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LineWeight Unit='PT' F='THEME("LineWeight")'>0.003472222222222222</vx:LineWeight><vx:LineColor F='THEME("LineColor")'>#404040</vx:LineColor><vx:LinePattern F='THEME("LinePattern")'>1</vx:LinePattern><vx:Rounding Unit='IN' F='THEME("LineRounding")'>0</vx:Rounding><vx:LineColorTrans F='THEME("LineTransparency")'>0</vx:LineColorTrans></vx:Line><User NameU='visVersion' ID='2'><Value>14</Value><Prompt F='No Formula'/></User><User NameU='msvThemeColors' ID='3'><Value>36</Value><Prompt F='No Formula'/></User><User NameU='msvThemeEffects' ID='4'><Value>16</Value><Prompt F='No Formula'/></User></Shape><Shape ID='3' NameU='3-D box' Name='三维框' Type='Group' Master='6'><Char IX='0'><Font>4</Font><Color>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont>0</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><vx:Char IX='0' xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:Font F='THEME("LatinFont")'>4</vx:Font><vx:Color F='THEME("TextColor")'>#000000</vx:Color><vx:AsianFont F='THEME("AsianFont")'>5</vx:AsianFont><vx:ComplexScriptFont F='THEME("ComplexFont")'>0</vx:ComplexScriptFont></vx:Char><XForm><PinX>3.543307086614174</PinX><PinY>3.740157480314962</PinY><Width Unit='MM' F='Inh'>1.5748031496063</Width><Height Unit='MM' F='Inh'>1.18110236220473</Height><LocPinX Unit='MM' F='Inh'>0.78740157480315</LocPinX><LocPinY Unit='MM' F='Inh'>0.590551181102365</LocPinY><Angle Unit='AD' F='Inh'>0</Angle><FlipX F='Inh'>1</FlipX><FlipY F='Inh'>0</FlipY><ResizeMode F='Inh'>0</ResizeMode></XForm><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='Inh'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><Fill><FillForegnd>#ffffff</FillForegnd><FillBkgnd>#f0f0f0</FillBkgnd><FillPattern F='Inh'>1</FillPattern><ShdwForegnd>#cdcdcd</ShdwForegnd><ShdwBkgnd>#cdcdcd</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans>0</FillForegndTrans><FillBkgndTrans>0</FillBkgndTrans><ShdwForegndTrans>0.5</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType>1</ShapeShdwType><ShapeShdwOffsetX Unit='IN'>0.02</ShapeShdwOffsetX><ShapeShdwOffsetY Unit='IN'>-0.02</ShapeShdwOffsetY><ShapeShdwObliqueAngle Unit='DEG'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor>1</ShapeShdwScaleFactor></Fill><vx:Fill xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:FillForegnd F='THEME("FillColor")'>#ffffff</vx:FillForegnd><vx:FillBkgnd F='THEME("FillColor2")'>#f0f0f0</vx:FillBkgnd><vx:ShdwForegnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwForegnd><vx:ShdwBkgnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwBkgnd><vx:FillForegndTrans F='THEME("FillTransparency")'>0</vx:FillForegndTrans><vx:FillBkgndTrans F='THEME("FillTransparency")'>0</vx:FillBkgndTrans><vx:ShdwForegndTrans F='THEME("ShadowTransparency")'>0.5</vx:ShdwForegndTrans><vx:ShapeShdwType F='THEME("ShadowStyle")'>1</vx:ShapeShdwType><vx:ShapeShdwOffsetX Unit='IN' F='THEME("ShadowXOffset")'>0.02</vx:ShapeShdwOffsetX><vx:ShapeShdwOffsetY Unit='IN' F='THEME("ShadowYOffset")'>-0.02</vx:ShapeShdwOffsetY><vx:ShapeShdwObliqueAngle Unit='DEG' F='THEME("ShadowDirection")'>0</vx:ShapeShdwObliqueAngle><vx:ShapeShdwScaleFactor F='THEME("ShadowMagnification")'>1</vx:ShapeShdwScaleFactor></vx:Fill><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>8</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID F='Inh'>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Line><LineWeight Unit='PT'>0.003472222222222222</LineWeight><LineColor>#404040</LineColor><LinePattern>1</LinePattern><Rounding F='Inh'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans>0</LineColorTrans></Line><vx:Line xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LineWeight Unit='PT' F='THEME("LineWeight")'>0.003472222222222222</vx:LineWeight><vx:LineColor F='THEME("LineColor")'>#404040</vx:LineColor><vx:LinePattern F='THEME("LinePattern")'>1</vx:LinePattern><vx:LineColorTrans F='THEME("LineTransparency")'>0</vx:LineColorTrans></vx:Line><User NameU='ScaleFactor' ID='1'><Value F='ThePage!DrawingScale/ThePage!PageScale'>1</Value><Prompt V='null'/></User><User NameU='visVersion' ID='3'><Value>14</Value><Prompt V='null'/></User><User NameU='msvThemeColors' ID='4'><Value>36</Value><Prompt F='No Formula'/></User><User NameU='msvThemeEffects' ID='5'><Value>16</Value><Prompt F='No Formula'/></User><Shapes><Shape ID='4' Type='Shape' MasterShape='6'><XForm><PinX Unit='MM' F='Inh'>0.78740157480315</PinX><PinY Unit='MM' F='Inh'>-0.059055118110236</PinY><Width Unit='MM' F='Inh'>1.5748031496063</Width><Height Unit='MM' F='Inh'>0.118110236220472</Height><LocPinX Unit='MM' F='Inh'>0.78740157480315</LocPinX><LocPinY Unit='MM' F='Inh'>0.059055118110236</LocPinY><Angle Unit='AD' F='Inh'>0</Angle><FlipX F='Inh'>0</FlipX><FlipY F='Inh'>0</FlipY><ResizeMode F='Inh'>0</ResizeMode></XForm><Fill><FillForegnd>#eaeaea</FillForegnd><FillBkgnd>#dbdbdb</FillBkgnd><FillPattern F='Inh'>1</FillPattern><ShdwForegnd>#cdcdcd</ShdwForegnd><ShdwBkgnd>#cdcdcd</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans>0</FillForegndTrans><FillBkgndTrans>0</FillBkgndTrans><ShdwForegndTrans>0.5</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType>1</ShapeShdwType><ShapeShdwOffsetX Unit='IN'>0.02</ShapeShdwOffsetX><ShapeShdwOffsetY Unit='IN'>-0.02</ShapeShdwOffsetY><ShapeShdwObliqueAngle Unit='DEG'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor>1</ShapeShdwScaleFactor></Fill><vx:Fill xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:FillForegnd F='THEMEGUARD(IF(CELLISTHEMED(TRUE),SETATREFEXPR(SHADE(THEME("FillColor"),20)),SETATREFEXPR(RGB(176,197,227))))'>#eaeaea</vx:FillForegnd><vx:FillBkgnd F='THEMEGUARD(IF(CELLISTHEMED(TRUE),SETATREFEXPR(SHADE(THEME("FillColor2"),20)),SETATREFEXPR(RGB(237,241,248))))'>#dbdbdb</vx:FillBkgnd><vx:ShdwForegnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwForegnd><vx:ShdwBkgnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwBkgnd><vx:FillForegndTrans F='THEME("FillTransparency")'>0</vx:FillForegndTrans><vx:FillBkgndTrans F='THEME("FillTransparency")'>0</vx:FillBkgndTrans><vx:ShdwForegndTrans F='THEME("ShadowTransparency")'>0.5</vx:ShdwForegndTrans><vx:ShapeShdwType F='THEME("ShadowStyle")'>1</vx:ShapeShdwType><vx:ShapeShdwOffsetX Unit='IN' F='THEME("ShadowXOffset")'>0.02</vx:ShapeShdwOffsetX><vx:ShapeShdwOffsetY Unit='IN' F='THEME("ShadowYOffset")'>-0.02</vx:ShapeShdwOffsetY><vx:ShapeShdwObliqueAngle Unit='DEG' F='THEME("ShadowDirection")'>0</vx:ShapeShdwObliqueAngle><vx:ShapeShdwScaleFactor F='THEME("ShadowMagnification")'>1</vx:ShapeShdwScaleFactor></vx:Fill><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID F='Inh'>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Line><LineWeight Unit='PT'>0.003472222222222222</LineWeight><LineColor>#404040</LineColor><LinePattern>1</LinePattern><Rounding F='Inh'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans>0</LineColorTrans></Line><vx:Line xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LineWeight Unit='PT' F='THEME("LineWeight")'>0.003472222222222222</vx:LineWeight><vx:LineColor F='THEME("LineColor")'>#404040</vx:LineColor><vx:LinePattern F='THEME("LinePattern")'>1</vx:LinePattern><vx:LineColorTrans F='THEME("LineTransparency")'>0</vx:LineColorTrans></vx:Line><User NameU='msvThemeColors' ID='1'><Value>36</Value><Prompt F='No Formula'/></User><User NameU='msvThemeEffects' ID='2'><Value>16</Value><Prompt F='No Formula'/></User><Char IX='0'><Font>4</Font><Color>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont>0</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><vx:Char IX='0' xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:Font F='THEME("LatinFont")'>4</vx:Font><vx:Color F='THEME("TextColor")'>#000000</vx:Color><vx:AsianFont F='THEME("AsianFont")'>5</vx:AsianFont><vx:ComplexScriptFont F='THEME("ComplexFont")'>0</vx:ComplexScriptFont></vx:Char></Shape><Shape ID='5' Type='Shape' MasterShape='7'><XForm><PinX Unit='MM' F='Inh'>-0.059055118110236</PinX><PinY Unit='MM' F='Inh'>0.590551181102365</PinY><Width Unit='MM' F='Inh'>0.118110236220472</Width><Height Unit='MM' F='Inh'>1.18110236220473</Height><LocPinX Unit='MM' F='Inh'>0.059055118110236</LocPinX><LocPinY Unit='MM' F='Inh'>0.590551181102365</LocPinY><Angle Unit='AD' F='Inh'>0</Angle><FlipX F='Inh'>0</FlipX><FlipY F='Inh'>0</FlipY><ResizeMode F='Inh'>0</ResizeMode></XForm><Fill><FillForegnd>#eaeaea</FillForegnd><FillBkgnd>#dbdbdb</FillBkgnd><FillPattern F='Inh'>1</FillPattern><ShdwForegnd>#cdcdcd</ShdwForegnd><ShdwBkgnd>#cdcdcd</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans>0</FillForegndTrans><FillBkgndTrans>0</FillBkgndTrans><ShdwForegndTrans>0.5</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType>1</ShapeShdwType><ShapeShdwOffsetX Unit='IN'>0.02</ShapeShdwOffsetX><ShapeShdwOffsetY Unit='IN'>-0.02</ShapeShdwOffsetY><ShapeShdwObliqueAngle Unit='DEG'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor>1</ShapeShdwScaleFactor></Fill><vx:Fill xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:FillForegnd F='THEMEGUARD(IF(CELLISTHEMED(TRUE),SETATREFEXPR(SHADE(THEME("FillColor"),20)),SETATREFEXPR(RGB(176,197,227))))'>#eaeaea</vx:FillForegnd><vx:FillBkgnd F='THEMEGUARD(IF(CELLISTHEMED(TRUE),SETATREFEXPR(SHADE(THEME("FillColor2"),20)),SETATREFEXPR(RGB(237,241,248))))'>#dbdbdb</vx:FillBkgnd><vx:ShdwForegnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwForegnd><vx:ShdwBkgnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwBkgnd><vx:FillForegndTrans F='THEME("FillTransparency")'>0</vx:FillForegndTrans><vx:FillBkgndTrans F='THEME("FillTransparency")'>0</vx:FillBkgndTrans><vx:ShdwForegndTrans F='THEME("ShadowTransparency")'>0.5</vx:ShdwForegndTrans><vx:ShapeShdwType F='THEME("ShadowStyle")'>1</vx:ShapeShdwType><vx:ShapeShdwOffsetX Unit='IN' F='THEME("ShadowXOffset")'>0.02</vx:ShapeShdwOffsetX><vx:ShapeShdwOffsetY Unit='IN' F='THEME("ShadowYOffset")'>-0.02</vx:ShapeShdwOffsetY><vx:ShapeShdwObliqueAngle Unit='DEG' F='THEME("ShadowDirection")'>0</vx:ShapeShdwObliqueAngle><vx:ShapeShdwScaleFactor F='THEME("ShadowMagnification")'>1</vx:ShapeShdwScaleFactor></vx:Fill><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID F='Inh'>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Line><LineWeight Unit='PT'>0.003472222222222222</LineWeight><LineColor>#404040</LineColor><LinePattern>1</LinePattern><Rounding F='Inh'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans>0</LineColorTrans></Line><vx:Line xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LineWeight Unit='PT' F='THEME("LineWeight")'>0.003472222222222222</vx:LineWeight><vx:LineColor F='THEME("LineColor")'>#404040</vx:LineColor><vx:LinePattern F='THEME("LinePattern")'>1</vx:LinePattern><vx:LineColorTrans F='THEME("LineTransparency")'>0</vx:LineColorTrans></vx:Line><User NameU='msvThemeColors' ID='1'><Value>36</Value><Prompt F='No Formula'/></User><User NameU='msvThemeEffects' ID='2'><Value>16</Value><Prompt F='No Formula'/></User><Char IX='0'><Font>4</Font><Color>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont>0</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><vx:Char IX='0' xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:Font F='THEME("LatinFont")'>4</vx:Font><vx:Color F='THEME("TextColor")'>#000000</vx:Color><vx:AsianFont F='THEME("AsianFont")'>5</vx:AsianFont><vx:ComplexScriptFont F='THEME("ComplexFont")'>0</vx:ComplexScriptFont></vx:Char></Shape><Shape ID='6' Type='Shape' MasterShape='5'><XForm><PinX Unit='MM' F='Inh'>0.78740157480315</PinX><PinY Unit='MM' F='Inh'>0.590551181102365</PinY><Width Unit='MM' F='Inh'>1.5748031496063</Width><Height Unit='MM' F='Inh'>1.18110236220473</Height><LocPinX Unit='MM' F='Inh'>0.78740157480315</LocPinX><LocPinY Unit='MM' F='Inh'>0.590551181102365</LocPinY><Angle Unit='AD' F='Inh'>0</Angle><FlipX F='Inh'>0</FlipX><FlipY F='Inh'>0</FlipY><ResizeMode F='Inh'>0</ResizeMode></XForm><Fill><FillForegnd>#ffffff</FillForegnd><FillBkgnd>#f0f0f0</FillBkgnd><FillPattern F='Inh'>1</FillPattern><ShdwForegnd>#cdcdcd</ShdwForegnd><ShdwBkgnd>#cdcdcd</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans>0</FillForegndTrans><FillBkgndTrans>0</FillBkgndTrans><ShdwForegndTrans>0.5</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType>1</ShapeShdwType><ShapeShdwOffsetX Unit='IN'>0.02</ShapeShdwOffsetX><ShapeShdwOffsetY Unit='IN'>-0.02</ShapeShdwOffsetY><ShapeShdwObliqueAngle Unit='DEG'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor>1</ShapeShdwScaleFactor></Fill><vx:Fill xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:FillForegnd F='THEME("FillColor")'>#ffffff</vx:FillForegnd><vx:FillBkgnd F='THEME("FillColor2")'>#f0f0f0</vx:FillBkgnd><vx:ShdwForegnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwForegnd><vx:ShdwBkgnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwBkgnd><vx:FillForegndTrans F='THEME("FillTransparency")'>0</vx:FillForegndTrans><vx:FillBkgndTrans F='THEME("FillTransparency")'>0</vx:FillBkgndTrans><vx:ShdwForegndTrans F='THEME("ShadowTransparency")'>0.5</vx:ShdwForegndTrans><vx:ShapeShdwType F='THEME("ShadowStyle")'>1</vx:ShapeShdwType><vx:ShapeShdwOffsetX Unit='IN' F='THEME("ShadowXOffset")'>0.02</vx:ShapeShdwOffsetX><vx:ShapeShdwOffsetY Unit='IN' F='THEME("ShadowYOffset")'>-0.02</vx:ShapeShdwOffsetY><vx:ShapeShdwObliqueAngle Unit='DEG' F='THEME("ShadowDirection")'>0</vx:ShapeShdwObliqueAngle><vx:ShapeShdwScaleFactor F='THEME("ShadowMagnification")'>1</vx:ShapeShdwScaleFactor></vx:Fill><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID F='Inh'>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Line><LineWeight Unit='PT'>0.003472222222222222</LineWeight><LineColor>#404040</LineColor><LinePattern>1</LinePattern><Rounding F='Inh'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans>0</LineColorTrans></Line><vx:Line xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LineWeight Unit='PT' F='THEME("LineWeight")'>0.003472222222222222</vx:LineWeight><vx:LineColor F='THEME("LineColor")'>#404040</vx:LineColor><vx:LinePattern F='THEME("LinePattern")'>1</vx:LinePattern><vx:LineColorTrans F='THEME("LineTransparency")'>0</vx:LineColorTrans></vx:Line><User NameU='msvThemeColors' ID='1'><Value>36</Value><Prompt F='No Formula'/></User><User NameU='msvThemeEffects' ID='2'><Value>16</Value><Prompt F='No Formula'/></User><Char IX='0'><Font>4</Font><Color>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont>0</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><vx:Char IX='0' xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:Font F='THEME("LatinFont")'>4</vx:Font><vx:Color F='THEME("TextColor")'>#000000</vx:Color><vx:AsianFont F='THEME("AsianFont")'>5</vx:AsianFont><vx:ComplexScriptFont F='THEME("ComplexFont")'>0</vx:ComplexScriptFont></vx:Char></Shape></Shapes></Shape><Shape ID='7' NameU='60 degree tail' Name='60 度,带箭尾' Type='Shape' Master='12'><XForm><PinX F='Inh'>6.811023622047244</PinX><PinY F='Inh'>7.283464566929135</PinY><Width F='Inh'>1.181102362204726</Width><Height Unit='MM' F='Inh'>0.5511811023622047</Height><LocPinX F='Inh'>0.5905511811023629</LocPinX><LocPinY Unit='MM' F='Inh'>0.2755905511811024</LocPinY><Angle F='Inh'>3.141592653589793</Angle><FlipX F='Inh'>1</FlipX><FlipY F='Inh'>0</FlipY><ResizeMode F='Inh'>0</ResizeMode></XForm><XForm1D><BeginX>7.401574803149607</BeginX><BeginY>7.283464566929135</BeginY><EndX>6.220472440944882</EndX><EndY>7.283464566929135</EndY></XForm1D><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='Inh'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><TextXForm><TxtPinX F='Inh'>0.5905511811023629</TxtPinX><TxtPinY Unit='MM' F='Inh'>0.2755905511811024</TxtPinY><TxtWidth F='Inh'>1.181102362204726</TxtWidth><TxtHeight Unit='MM' F='Inh'>0.5511811023622047</TxtHeight><TxtLocPinX F='Inh'>0.5905511811023629</TxtLocPinX><TxtLocPinY Unit='MM' F='Inh'>0.2755905511811024</TxtLocPinY><TxtAngle Unit='DEG' F='Inh'>3.1415926535898</TxtAngle></TextXForm><Fill><FillForegnd>#f0f0f0</FillForegnd><FillBkgnd>#ffffff</FillBkgnd><FillPattern>30</FillPattern><ShdwForegnd>#cdcdcd</ShdwForegnd><ShdwBkgnd>#cdcdcd</ShdwBkgnd><ShdwPattern>1</ShdwPattern><FillForegndTrans>0</FillForegndTrans><FillBkgndTrans>0</FillBkgndTrans><ShdwForegndTrans>0.5</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType>1</ShapeShdwType><ShapeShdwOffsetX Unit='IN'>0.02</ShapeShdwOffsetX><ShapeShdwOffsetY Unit='IN'>-0.02</ShapeShdwOffsetY><ShapeShdwObliqueAngle Unit='DEG'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor>1</ShapeShdwScaleFactor></Fill><vx:Fill xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:FillForegnd F='THEME("FillColor2")'>#f0f0f0</vx:FillForegnd><vx:FillBkgnd F='THEME("FillColor")'>#ffffff</vx:FillBkgnd><vx:FillPattern F='THEME("FillPattern")'>30</vx:FillPattern><vx:ShdwForegnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwForegnd><vx:ShdwBkgnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwBkgnd><vx:ShdwPattern F='THEME("ShadowPattern")'>1</vx:ShdwPattern><vx:FillForegndTrans F='THEME("FillTransparency")'>0</vx:FillForegndTrans><vx:FillBkgndTrans F='THEME("FillTransparency")'>0</vx:FillBkgndTrans><vx:ShdwForegndTrans F='THEME("ShadowTransparency")'>0.5</vx:ShdwForegndTrans><vx:ShapeShdwType F='THEME("ShadowStyle")'>1</vx:ShapeShdwType><vx:ShapeShdwOffsetX Unit='IN' F='THEME("ShadowXOffset")'>0.02</vx:ShapeShdwOffsetX><vx:ShapeShdwOffsetY Unit='IN' F='THEME("ShadowYOffset")'>-0.02</vx:ShapeShdwOffsetY><vx:ShapeShdwObliqueAngle Unit='DEG' F='THEME("ShadowDirection")'>0</vx:ShapeShdwObliqueAngle><vx:ShapeShdwScaleFactor F='THEME("ShadowMagnification")'>1</vx:ShapeShdwScaleFactor></vx:Fill><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>3</GlueType><WalkPreference F='Inh'>2</WalkPreference><BegTrigger F='Inh'>1</BegTrigger><EndTrigger F='Inh'>1</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID F='Inh'>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Line><LineWeight Unit='PT'>0.003472222222222222</LineWeight><LineColor>#404040</LineColor><LinePattern>1</LinePattern><Rounding Unit='IN'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans>0</LineColorTrans></Line><vx:Line xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LineWeight Unit='PT' F='THEME("LineWeight")'>0.003472222222222222</vx:LineWeight><vx:LineColor F='THEME("LineColor")'>#404040</vx:LineColor><vx:LinePattern F='THEME("LinePattern")'>1</vx:LinePattern><vx:Rounding Unit='IN' F='THEME("LineRounding")'>0</vx:Rounding><vx:LineColorTrans F='THEME("LineTransparency")'>0</vx:LineColorTrans></vx:Line><Char IX='0'><Font>4</Font><Color>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont>0</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><vx:Char IX='0' xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:Font F='THEME("LatinFont")'>4</vx:Font><vx:Color F='THEME("TextColor")'>#000000</vx:Color><vx:AsianFont F='THEME("AsianFont")'>5</vx:AsianFont><vx:ComplexScriptFont F='THEME("ComplexFont")'>0</vx:ComplexScriptFont></vx:Char><User NameU='visVersion' ID='2'><Value>14</Value><Prompt F='No Formula'/></User><User NameU='msvThemeColors' ID='3'><Value>36</Value><Prompt F='No Formula'/></User><User NameU='msvThemeEffects' ID='4'><Value>16</Value><Prompt F='No Formula'/></User><Geom IX='0'><NoFill F='Inh'>0</NoFill><NoLine F='No Formula'>0</NoLine><NoShow F='No Formula'>0</NoShow><NoSnap F='No Formula'>0</NoSnap><MoveTo IX='1'><X F='Inh'>0</X><Y Unit='MM' F='Inh'>0.2755905511811024</Y></MoveTo><LineTo IX='2'><X Unit='MM' F='Inh'>0.1591122789105272</X><Y Unit='MM' F='Inh'>0.5511811023622047</Y></LineTo><LineTo IX='3'><X Unit='MM' F='Inh'>0.1591122789105272</X><Y Unit='MM' F='Inh'>0.3674540682414699</Y></LineTo><LineTo IX='4'><X Unit='MM' F='Inh'>0.8841948077036466</X><Y Unit='MM' F='Inh'>0.3674540682414699</Y></LineTo><LineTo IX='5'><X Unit='MM' F='Inh'>1.043307086614175</X><Y Unit='MM' F='Inh'>0.5511811023622047</Y></LineTo><LineTo IX='6'><X Unit='MM' F='Inh'>1.340214641115253</X><Y Unit='MM' F='Inh'>0.5511811023622047</Y></LineTo><LineTo IX='7'><X F='Inh'>1.181102362204726</X><Y Unit='MM' F='Inh'>0.2755905511811024</Y></LineTo><LineTo IX='8'><X Unit='MM' F='Inh'>1.340214641115253</X><Y F='Inh'>0</Y></LineTo><LineTo IX='9'><X Unit='MM' F='Inh'>1.043307086614175</X><Y F='Inh'>0</Y></LineTo><LineTo IX='10'><X Unit='MM' F='Inh'>0.8841948077036466</X><Y Unit='MM' F='Inh'>0.1837270341207349</Y></LineTo><LineTo IX='11'><X Unit='MM' F='Inh'>0.1591122789105272</X><Y Unit='MM' F='Inh'>0.1837270341207349</Y></LineTo><LineTo IX='12'><X Unit='MM' F='Inh'>0.1591122789105272</X><Y Unit='MM' F='Inh'>0</Y></LineTo><LineTo IX='13'><X F='Inh'>0</X><Y Unit='MM' F='Inh'>0.2755905511811024</Y></LineTo></Geom><v14:Geom IX='0' xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:NoQuickDrag F='No Formula'>0</v14:NoQuickDrag></v14:Geom></Shape></Shapes></Page><Page ID='5' NameU='Page-3' ViewScale='-1' ViewCenterX='4.244094488189' ViewCenterY='5.496062992126'><PageSheet LineStyle='0' FillStyle='0' TextStyle='0'><PageProps><PageWidth Unit='MM'>8.5</PageWidth><PageHeight Unit='MM'>11</PageHeight><ShdwOffsetX Unit='MM'>0.118110236220472</ShdwOffsetX><ShdwOffsetY Unit='MM'>-0.118110236220472</ShdwOffsetY><PageScale Unit='MM'>0.0393700787401575</PageScale><DrawingScale Unit='MM'>0.0393700787401575</DrawingScale><DrawingSizeType>0</DrawingSizeType><DrawingScaleType>0</DrawingScaleType><InhibitSnap>0</InhibitSnap><UIVisibility>0</UIVisibility><ShdwType>0</ShdwType><ShdwObliqueAngle>0</ShdwObliqueAngle><ShdwScaleFactor>1</ShdwScaleFactor></PageProps><v14:PageProps xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:DrawingResizeType>0</v14:DrawingResizeType></v14:PageProps><PageLayout><ResizePage F='Inh'>0</ResizePage><EnableGrid F='Inh'>0</EnableGrid><DynamicsOff F='Inh'>0</DynamicsOff><CtrlAsInput F='Inh'>0</CtrlAsInput><PlaceStyle F='Inh'>0</PlaceStyle><RouteStyle F='Inh'>0</RouteStyle><PlaceDepth F='Inh'>0</PlaceDepth><PlowCode F='Inh'>0</PlowCode><LineJumpCode F='Inh'>1</LineJumpCode><LineJumpStyle F='Inh'>0</LineJumpStyle><PageLineJumpDirX F='Inh'>0</PageLineJumpDirX><PageLineJumpDirY F='Inh'>0</PageLineJumpDirY><LineToNodeX F='Inh'>0.125</LineToNodeX><LineToNodeY F='Inh'>0.125</LineToNodeY><BlockSizeX F='Inh'>0.25</BlockSizeX><BlockSizeY F='Inh'>0.25</BlockSizeY><AvenueSizeX F='Inh'>0.375</AvenueSizeX><AvenueSizeY F='Inh'>0.375</AvenueSizeY><LineToLineX F='Inh'>0.125</LineToLineX><LineToLineY F='Inh'>0.125</LineToLineY><LineJumpFactorX F='Inh'>0.66666666666667</LineJumpFactorX><LineJumpFactorY F='Inh'>0.66666666666667</LineJumpFactorY><LineAdjustFrom F='Inh'>0</LineAdjustFrom><LineAdjustTo F='Inh'>0</LineAdjustTo><PlaceFlip F='Inh'>0</PlaceFlip><LineRouteExt F='Inh'>0</LineRouteExt><PageShapeSplit>1</PageShapeSplit></PageLayout><v14:PageLayout xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:AvoidPageBreaks F='Inh'>0</v14:AvoidPageBreaks></v14:PageLayout><XForm><PinX>0</PinX><PinY>0</PinY><Width>1</Width><Height>1</Height><LocPinX F='Width*0'>0</LocPinX><LocPinY F='Height*0'>0</LocPinY><Angle>0</Angle><FlipX>0</FlipX><FlipY>0</FlipY><ResizeMode>0</ResizeMode></XForm><User NameU='msvThemeColors' ID='1'><Value>36</Value><Prompt F='No Formula'/></User><User NameU='msvThemeEffects' ID='2'><Value>16</Value><Prompt F='No Formula'/></User><User NameU='msvThemeOrder' ID='3'><Value>0</Value><Prompt F='No Formula'/></User><Layer IX='0'><Name>连接线</Name><Color>255</Color><Status>0</Status><Visible>1</Visible><Print>1</Print><Active>0</Active><Lock>0</Lock><Snap>1</Snap><Glue>1</Glue><NameUniv>Connector</NameUniv><ColorTrans>0</ColorTrans></Layer></PageSheet><Shapes><Shape ID='1' NameU='Double flexi-arrow' Name='可变双向箭头' Type='Shape' Master='13'><XForm><PinX F='Inh'>3.543307086614174</PinX><PinY F='Inh'>6.692913385826774</PinY><Width F='Inh'>1.181102362204725</Width><Height Unit='MM' F='Inh'>0</Height><LocPinX F='Inh'>0.5905511811023627</LocPinX><LocPinY Unit='MM' F='Inh'>0</LocPinY><Angle F='Inh'>0</Angle><FlipX F='Inh'>0</FlipX><FlipY F='Inh'>0</FlipY><ResizeMode F='Inh'>0</ResizeMode></XForm><XForm1D><BeginX>2.952755905511812</BeginX><BeginY>6.692913385826773</BeginY><EndX>4.133858267716537</EndX><EndY>6.692913385826773</EndY></XForm1D><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='Inh'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><TextXForm><TxtPinX F='Inh'>0.5905511811023627</TxtPinX><TxtPinY Unit='MM' F='Inh'>0</TxtPinY><TxtWidth F='Inh'>1.181102362204725</TxtWidth><TxtHeight Unit='MM' F='Inh'>0</TxtHeight><TxtLocPinX F='Inh'>0.5905511811023627</TxtLocPinX><TxtLocPinY Unit='MM' F='Inh'>0</TxtLocPinY><TxtAngle Unit='DEG' F='Inh'>0</TxtAngle></TextXForm><Fill><FillForegnd>#f0f0f0</FillForegnd><FillBkgnd>#ffffff</FillBkgnd><FillPattern>30</FillPattern><ShdwForegnd>#cdcdcd</ShdwForegnd><ShdwBkgnd>#cdcdcd</ShdwBkgnd><ShdwPattern>1</ShdwPattern><FillForegndTrans>0</FillForegndTrans><FillBkgndTrans>0</FillBkgndTrans><ShdwForegndTrans>0.5</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType>1</ShapeShdwType><ShapeShdwOffsetX Unit='IN'>0.02</ShapeShdwOffsetX><ShapeShdwOffsetY Unit='IN'>-0.02</ShapeShdwOffsetY><ShapeShdwObliqueAngle Unit='DEG'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor>1</ShapeShdwScaleFactor></Fill><vx:Fill xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:FillForegnd F='THEME("FillColor2")'>#f0f0f0</vx:FillForegnd><vx:FillBkgnd F='THEME("FillColor")'>#ffffff</vx:FillBkgnd><vx:FillPattern F='THEME("FillPattern")'>30</vx:FillPattern><vx:ShdwForegnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwForegnd><vx:ShdwBkgnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwBkgnd><vx:ShdwPattern F='THEME("ShadowPattern")'>1</vx:ShdwPattern><vx:FillForegndTrans F='THEME("FillTransparency")'>0</vx:FillForegndTrans><vx:FillBkgndTrans F='THEME("FillTransparency")'>0</vx:FillBkgndTrans><vx:ShdwForegndTrans F='THEME("ShadowTransparency")'>0.5</vx:ShdwForegndTrans><vx:ShapeShdwType F='THEME("ShadowStyle")'>1</vx:ShapeShdwType><vx:ShapeShdwOffsetX Unit='IN' F='THEME("ShadowXOffset")'>0.02</vx:ShapeShdwOffsetX><vx:ShapeShdwOffsetY Unit='IN' F='THEME("ShadowYOffset")'>-0.02</vx:ShapeShdwOffsetY><vx:ShapeShdwObliqueAngle Unit='DEG' F='THEME("ShadowDirection")'>0</vx:ShapeShdwObliqueAngle><vx:ShapeShdwScaleFactor F='THEME("ShadowMagnification")'>1</vx:ShapeShdwScaleFactor></vx:Fill><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>1</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>3</GlueType><WalkPreference F='Inh'>2</WalkPreference><BegTrigger F='Inh'>1</BegTrigger><EndTrigger F='Inh'>1</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID F='Inh'>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Line><LineWeight Unit='PT'>0.003472222222222222</LineWeight><LineColor>#404040</LineColor><LinePattern>1</LinePattern><Rounding Unit='IN'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans>0</LineColorTrans></Line><vx:Line xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LineWeight Unit='PT' F='THEME("LineWeight")'>0.003472222222222222</vx:LineWeight><vx:LineColor F='THEME("LineColor")'>#404040</vx:LineColor><vx:LinePattern F='THEME("LinePattern")'>1</vx:LinePattern><vx:Rounding Unit='IN' F='THEME("LineRounding")'>0</vx:Rounding><vx:LineColorTrans F='THEME("LineTransparency")'>0</vx:LineColorTrans></vx:Line><User NameU='visVersion' ID='2'><Value>14</Value><Prompt F='No Formula'/></User><User NameU='msvThemeColors' ID='3'><Value>36</Value><Prompt F='No Formula'/></User><User NameU='msvThemeEffects' ID='4'><Value>16</Value><Prompt F='No Formula'/></User><Char IX='0'><Font>4</Font><Color>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont>0</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><vx:Char IX='0' xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:Font F='THEME("LatinFont")'>4</vx:Font><vx:Color F='THEME("TextColor")'>#000000</vx:Color><vx:AsianFont F='THEME("AsianFont")'>5</vx:AsianFont><vx:ComplexScriptFont F='THEME("ComplexFont")'>0</vx:ComplexScriptFont></vx:Char><Geom IX='0'><NoFill F='Inh'>0</NoFill><NoLine F='Inh'>0</NoLine><NoShow F='Inh'>0</NoShow><NoSnap F='No Formula'>0</NoSnap><MoveTo IX='1'><X Unit='MM' F='Inh'>0</X><Y Unit='MM' F='Inh'>0</Y></MoveTo><LineTo IX='2'><X Unit='MM' F='Inh'>0.3543307086614173</X><Y Unit='MM' F='Inh'>0.2362204724409449</Y></LineTo><LineTo IX='3'><X Unit='MM' F='Inh'>0.3149606299212598</X><Y Unit='MM' F='Inh'>0.1181102362204725</Y></LineTo><LineTo IX='4'><X Unit='MM' F='Inh'>0.8661417322834651</X><Y Unit='MM' F='Inh'>0.1181102362204725</Y></LineTo><LineTo IX='5'><X Unit='MM' F='Inh'>0.8267716535433076</X><Y Unit='MM' F='Inh'>0.2362204724409449</Y></LineTo><LineTo IX='6'><X F='Inh'>1.181102362204725</X><Y Unit='MM' F='Inh'>0</Y></LineTo><LineTo IX='7'><X Unit='MM' F='Inh'>0.8267716535433076</X><Y Unit='MM' F='Inh'>-0.2362204724409449</Y></LineTo><LineTo IX='8'><X Unit='MM' F='Inh'>0.8661417322834651</X><Y Unit='MM' F='Inh'>-0.1181102362204725</Y></LineTo><LineTo IX='9'><X Unit='MM' F='Inh'>0.3149606299212598</X><Y Unit='MM' F='Inh'>-0.1181102362204725</Y></LineTo><LineTo IX='10'><X Unit='MM' F='Inh'>0.3543307086614173</X><Y Unit='MM' F='Inh'>-0.2362204724409449</Y></LineTo><LineTo IX='11'><X Unit='MM' F='Inh'>0</X><Y Unit='MM' F='Inh'>0</Y></LineTo></Geom><v14:Geom IX='0' xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:NoQuickDrag F='No Formula'>0</v14:NoQuickDrag></v14:Geom></Shape><Shape ID='2' NameU='Line-curve connector' Name='直线-曲线连接线' Type='Shape' Master='14'><XForm><PinX F='Inh'>4.527559055118111</PinX><PinY F='Inh'>8.661417322834648</PinY><Width F='Inh'>1.113553986120547</Width><Height Unit='MM' F='Inh'>0</Height><LocPinX F='Inh'>0.5567769930602733</LocPinX><LocPinY Unit='MM' F='Inh'>0</LocPinY><Angle F='Inh'>-2.356194490192346</Angle><FlipX F='Inh'>0</FlipX><FlipY F='Inh'>1</FlipY><ResizeMode F='Inh'>0</ResizeMode></XForm><XForm1D><BeginX>4.921259842519686</BeginX><BeginY>9.055118110236222</BeginY><EndX>4.133858267716536</EndX><EndY>8.267716535433072</EndY></XForm1D><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='Inh'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><LayerMem><LayerMember>0</LayerMember></LayerMem><TextXForm><TxtPinX F='Inh'>0.5567769930602733</TxtPinX><TxtPinY Unit='MM' F='Inh'>0.1968503937007874</TxtPinY><TxtWidth Unit='PT' F='Inh'>0.5555555555555556</TxtWidth><TxtHeight F='Inh'>0.2444444444444444</TxtHeight><TxtLocPinX Unit='PT' F='Inh'>0.2777777777777778</TxtLocPinX><TxtLocPinY F='Inh'>0.1222222222222222</TxtLocPinY><TxtAngle F='Inh'>-2.356194490192345</TxtAngle></TextXForm><Fill><FillForegnd>#f0f0f0</FillForegnd><FillBkgnd>#ffffff</FillBkgnd><FillPattern>30</FillPattern><ShdwForegnd>#cdcdcd</ShdwForegnd><ShdwBkgnd>#cdcdcd</ShdwBkgnd><ShdwPattern F='Inh'>0</ShdwPattern><FillForegndTrans>0</FillForegndTrans><FillBkgndTrans>0</FillBkgndTrans><ShdwForegndTrans>0.5</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType>1</ShapeShdwType><ShapeShdwOffsetX Unit='IN'>0.02</ShapeShdwOffsetX><ShapeShdwOffsetY Unit='IN'>-0.02</ShapeShdwOffsetY><ShapeShdwObliqueAngle Unit='DEG'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor>1</ShapeShdwScaleFactor></Fill><vx:Fill xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:FillForegnd F='THEME("FillColor2")'>#f0f0f0</vx:FillForegnd><vx:FillBkgnd F='THEME("FillColor")'>#ffffff</vx:FillBkgnd><vx:FillPattern F='THEME("FillPattern")'>30</vx:FillPattern><vx:ShdwForegnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwForegnd><vx:ShdwBkgnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwBkgnd><vx:FillForegndTrans F='THEME("FillTransparency")'>0</vx:FillForegndTrans><vx:FillBkgndTrans F='THEME("FillTransparency")'>0</vx:FillBkgndTrans><vx:ShdwForegndTrans F='THEME("ShadowTransparency")'>0.5</vx:ShdwForegndTrans><vx:ShapeShdwType F='THEME("ShadowStyle")'>1</vx:ShapeShdwType><vx:ShapeShdwOffsetX Unit='IN' F='THEME("ShadowXOffset")'>0.02</vx:ShapeShdwOffsetX><vx:ShapeShdwOffsetY Unit='IN' F='THEME("ShadowYOffset")'>-0.02</vx:ShapeShdwOffsetY><vx:ShapeShdwObliqueAngle Unit='DEG' F='THEME("ShadowDirection")'>0</vx:ShapeShdwObliqueAngle><vx:ShapeShdwScaleFactor F='THEME("ShadowMagnification")'>1</vx:ShapeShdwScaleFactor></vx:Fill><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>1</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>3</GlueType><WalkPreference F='Inh'>2</WalkPreference><BegTrigger F='Inh'>1</BegTrigger><EndTrigger F='Inh'>1</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID F='Inh'>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Line><LineWeight Unit='PT'>0.01388888888888889</LineWeight><LineColor>#404040</LineColor><LinePattern>1</LinePattern><Rounding Unit='IN'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow>5</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans>0</LineColorTrans></Line><vx:Line xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LineWeight Unit='PT' F='THEMEGUARD(IF(CELLISTHEMED(TRUE),THEME("ConnectorWeight"),SETATREFEXPR(0.003333)))'>0.01388888888888889</vx:LineWeight><vx:LineColor F='THEMEGUARD(IF(CELLISTHEMED(TRUE),SETATREFEXPR(THEME("ConnectorColor")),SETATREFEXPR(0)))'>#404040</vx:LineColor><vx:LinePattern F='THEMEGUARD(IF(CELLISTHEMED(TRUE),THEME("ConnectorPattern"),SETATREFEXPR(1)))'>1</vx:LinePattern><vx:Rounding Unit='IN' F='THEMEGUARD(IF(CELLISTHEMED(TRUE),THEME("ConnectorRounding"),SETATREFEXPR(0)))'>0</vx:Rounding><vx:EndArrow F='Inh'>5</vx:EndArrow><vx:LineColorTrans F='THEMEGUARD(IF(CELLISTHEMED(TRUE),THEME("ConnectorTransparency"),SETATREFEXPR(0)))'>0</vx:LineColorTrans></vx:Line><Control NameU='Row_1' ID='1'><X F='Inh'>0.5567769930602733</X><Y Unit='MM' F='Inh'>0.1968503937007874</Y><XDyn F='Inh'>0.5567769930602733</XDyn><YDyn Unit='MM' F='Inh'>0.1968503937007874</YDyn><XCon F='Inh'>0</XCon><YCon F='Inh'>0</YCon><CanGlue F='Inh'>0</CanGlue><Prompt F='Inh'>修改曲度</Prompt></Control><Connection IX='0'><X F='Inh'>0.5567769930602733</X><Y Unit='MM' F='Inh'>0</Y><DirX F='No Formula'>0</DirX><DirY F='No Formula'>0</DirY><Type F='No Formula'>0</Type><AutoGen F='No Formula'>0</AutoGen><Prompt F='No Formula'/></Connection><User NameU='AntiScale' ID='1'><Value F='IF(AND(User.Scale>0.125,User.Scale<8),1,User.Scale)'>1</Value><Prompt F='No Formula'/></User><User NameU='Scale' ID='2'><Value F='ThePage!DrawingScale/ThePage!PageScale'>1</Value><Prompt F='No Formula'/></User><User NameU='visVersion' ID='4'><Value>14</Value><Prompt F='No Formula'/></User><User NameU='msvThemeColors' ID='5'><Value>36</Value><Prompt F='No Formula'/></User><User NameU='msvThemeEffects' ID='6'><Value>16</Value><Prompt F='No Formula'/></User><Char IX='0'><Font>4</Font><Color>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont>0</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><vx:Char IX='0' xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:Font F='THEME("LatinFont")'>4</vx:Font><vx:Color F='THEME("TextColor")'>#000000</vx:Color><vx:AsianFont F='THEME("AsianFont")'>5</vx:AsianFont><vx:ComplexScriptFont F='THEME("ComplexFont")'>0</vx:ComplexScriptFont></vx:Char><Geom IX='0'><NoFill F='Inh'>1</NoFill><NoLine F='Inh'>0</NoLine><NoShow F='Inh'>0</NoShow><NoSnap F='No Formula'>0</NoSnap><MoveTo IX='1'><X Unit='MM' F='Inh'>0</X><Y Unit='MM' F='Inh'>0</Y></MoveTo><SplineStart IX='2'><X F='Inh'>0.5567769930602733</X><Y Unit='MM' F='Inh'>0.3937007874015748</Y><A F='Inh'>0</A><B F='Inh'>0</B><C F='Inh'>1</C><D F='Inh'>2</D></SplineStart><SplineKnot IX='3'><X F='Inh'>1.113553986120547</X><Y Unit='MM' F='Inh'>0</Y><A F='Inh'>0</A></SplineKnot></Geom><v14:Geom IX='0' xmlns:v14='http://schemas.microsoft.com/office/visio/2010/extension'><v14:NoQuickDrag F='No Formula'>0</v14:NoQuickDrag></v14:Geom></Shape><Shape ID='3' NameU='Rounded square' Name='圆角正方形' Type='Shape' Master='15'><Char IX='0'><Font>4</Font><Color>#000000</Color><Style F='Inh'>0</Style><Case F='Inh'>0</Case><Pos F='Inh'>0</Pos><FontScale F='Inh'>1</FontScale><Size Unit='PT' F='Inh'>0.1111111111111111</Size><DblUnderline F='Inh'>0</DblUnderline><Overline F='Inh'>0</Overline><Strikethru F='Inh'>0</Strikethru><Highlight F='Inh'>0</Highlight><DoubleStrikethrough F='Inh'>0</DoubleStrikethrough><RTLText F='Inh'>0</RTLText><UseVertical F='Inh'>0</UseVertical><Letterspace F='Inh'>0</Letterspace><ColorTrans F='Inh'>0</ColorTrans><AsianFont>5</AsianFont><ComplexScriptFont>0</ComplexScriptFont><LocalizeFont F='Inh'>0</LocalizeFont><ComplexScriptSize F='Inh'>-1</ComplexScriptSize><LangID F='Inh'>2052</LangID></Char><vx:Char IX='0' xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:Font F='THEME("LatinFont")'>4</vx:Font><vx:Color F='THEME("TextColor")'>#000000</vx:Color><vx:AsianFont F='THEME("AsianFont")'>5</vx:AsianFont><vx:ComplexScriptFont F='THEME("ComplexFont")'>0</vx:ComplexScriptFont></vx:Char><XForm><PinX>6.299212598425198</PinX><PinY>7.36220472440945</PinY><Width Unit='MM' F='Inh'>1.181102362204725</Width><Height Unit='MM' F='Inh'>1.181102362204725</Height><LocPinX Unit='MM' F='Inh'>0.5905511811023625</LocPinX><LocPinY Unit='MM' F='Inh'>0.5905511811023625</LocPinY><Angle Unit='DEG' F='Inh'>0</Angle><FlipX F='Inh'>0</FlipX><FlipY F='Inh'>0</FlipY><ResizeMode F='Inh'>0</ResizeMode></XForm><Event><TheData F='No Formula'>0</TheData><TheText F='No Formula'>0</TheText><EventDblClick F='Inh'>0</EventDblClick><EventXFMod F='No Formula'>0</EventXFMod><EventDrop F='No Formula'>0</EventDrop></Event><vx:Event xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:EventMultiDrop F='No Formula'>0</vx:EventMultiDrop></vx:Event><Fill><FillForegnd>#f0f0f0</FillForegnd><FillBkgnd>#ffffff</FillBkgnd><FillPattern>30</FillPattern><ShdwForegnd>#cdcdcd</ShdwForegnd><ShdwBkgnd>#cdcdcd</ShdwBkgnd><ShdwPattern>1</ShdwPattern><FillForegndTrans>0</FillForegndTrans><FillBkgndTrans>0</FillBkgndTrans><ShdwForegndTrans>0.5</ShdwForegndTrans><ShdwBkgndTrans F='Inh'>0</ShdwBkgndTrans><ShapeShdwType>1</ShapeShdwType><ShapeShdwOffsetX Unit='IN'>0.02</ShapeShdwOffsetX><ShapeShdwOffsetY Unit='IN'>-0.02</ShapeShdwOffsetY><ShapeShdwObliqueAngle Unit='DEG'>0</ShapeShdwObliqueAngle><ShapeShdwScaleFactor>1</ShapeShdwScaleFactor></Fill><vx:Fill xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:FillForegnd F='THEME("FillColor2")'>#f0f0f0</vx:FillForegnd><vx:FillBkgnd F='THEME("FillColor")'>#ffffff</vx:FillBkgnd><vx:FillPattern F='THEME("FillPattern")'>30</vx:FillPattern><vx:ShdwForegnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwForegnd><vx:ShdwBkgnd F='THEME("ShadowColor")'>#cdcdcd</vx:ShdwBkgnd><vx:ShdwPattern F='THEME("ShadowPattern")'>1</vx:ShdwPattern><vx:FillForegndTrans F='THEME("FillTransparency")'>0</vx:FillForegndTrans><vx:FillBkgndTrans F='THEME("FillTransparency")'>0</vx:FillBkgndTrans><vx:ShdwForegndTrans F='THEME("ShadowTransparency")'>0.5</vx:ShdwForegndTrans><vx:ShapeShdwType F='THEME("ShadowStyle")'>1</vx:ShapeShdwType><vx:ShapeShdwOffsetX Unit='IN' F='THEME("ShadowXOffset")'>0.02</vx:ShapeShdwOffsetX><vx:ShapeShdwOffsetY Unit='IN' F='THEME("ShadowYOffset")'>-0.02</vx:ShapeShdwOffsetY><vx:ShapeShdwObliqueAngle Unit='DEG' F='THEME("ShadowDirection")'>0</vx:ShapeShdwObliqueAngle><vx:ShapeShdwScaleFactor F='THEME("ShadowMagnification")'>1</vx:ShapeShdwScaleFactor></vx:Fill><Misc><NoObjHandles F='Inh'>0</NoObjHandles><NonPrinting F='Inh'>0</NonPrinting><NoCtlHandles F='Inh'>0</NoCtlHandles><NoAlignBox F='Inh'>0</NoAlignBox><UpdateAlignBox F='Inh'>0</UpdateAlignBox><HideText F='Inh'>0</HideText><DynFeedback F='Inh'>0</DynFeedback><GlueType F='Inh'>0</GlueType><WalkPreference F='Inh'>0</WalkPreference><BegTrigger F='No Formula'>0</BegTrigger><EndTrigger F='No Formula'>0</EndTrigger><ObjType F='Inh'>0</ObjType><Comment F='Inh'/><IsDropSource F='Inh'>0</IsDropSource><NoLiveDynamics F='Inh'>0</NoLiveDynamics><LocalizeMerge F='Inh'>0</LocalizeMerge><Calendar F='Inh'>0</Calendar><LangID F='Inh'>2052</LangID><ShapeKeywords F='Inh'/><DropOnPageScale F='Inh'>1</DropOnPageScale></Misc><Line><LineWeight Unit='PT'>0.003472222222222222</LineWeight><LineColor>#404040</LineColor><LinePattern>1</LinePattern><Rounding Unit='IN'>0</Rounding><EndArrowSize F='Inh'>2</EndArrowSize><BeginArrow F='Inh'>0</BeginArrow><EndArrow F='Inh'>0</EndArrow><LineCap F='Inh'>0</LineCap><BeginArrowSize F='Inh'>2</BeginArrowSize><LineColorTrans>0</LineColorTrans></Line><vx:Line xmlns:vx='http://schemas.microsoft.com/visio/2006/extension'><vx:LineWeight Unit='PT' F='THEME("LineWeight")'>0.003472222222222222</vx:LineWeight><vx:LineColor F='THEME("LineColor")'>#404040</vx:LineColor><vx:LinePattern F='THEME("LinePattern")'>1</vx:LinePattern><vx:Rounding Unit='IN' F='THEME("LineRounding")'>0</vx:Rounding><vx:LineColorTrans F='THEME("LineTransparency")'>0</vx:LineColorTrans></vx:Line><User NameU='visVersion' ID='2'><Value>14</Value><Prompt F='No Formula'/></User><User NameU='msvThemeColors' ID='3'><Value>36</Value><Prompt F='No Formula'/></User><User NameU='msvThemeEffects' ID='4'><Value>16</Value><Prompt F='No Formula'/></User></Shape></Shapes></Page></Pages><Windows ClientWidth='1920' ClientHeight='860'><Window ID='0' WindowType='Drawing' WindowState='1073741824' WindowLeft='-8' WindowTop='-31' WindowWidth='1936' WindowHeight='899' ContainerType='Page' Page='5' ViewScale='-1' ViewCenterX='4.244094488189' ViewCenterY='5.496062992126'><ShowRulers>1</ShowRulers><ShowGrid>1</ShowGrid><ShowPageBreaks>1</ShowPageBreaks><ShowGuides>1</ShowGuides><ShowConnectionPoints>1</ShowConnectionPoints><GlueSettings>9</GlueSettings><SnapSettings>295</SnapSettings><SnapExtensions>34</SnapExtensions><DynamicGridEnabled>1</DynamicGridEnabled><TabSplitterPos>0.496</TabSplitterPos></Window><Window ID='1' WindowType='Stencil' WindowState='67109889' WindowLeft='0' WindowTop='0' WindowWidth='251' WindowHeight='860' Document='C:\Program Files\Microsoft Office\Office14\visio content\2052\BASIC_M.VSS' ParentWindow='0'><StencilGroup>10</StencilGroup><StencilGroupPos>1</StencilGroupPos></Window></Windows></VisioDocument>
|