dom_glancy 1.0.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +3 -2
  3. data/Gemfile +4 -0
  4. data/README.md +5 -0
  5. data/app/controllers/dom_glancy_controller.rb +9 -12
  6. data/app/views/dom_glancy/about.html.erb +2 -2
  7. data/app/views/dom_glancy/path_config.html.erb +10 -8
  8. data/app/views/dom_glancy/show.html.erb +3 -18
  9. data/app/views/layouts/dom_glancy.html.erb +10 -19
  10. data/app/views/shared/_dom_glancy_nav.html.erb +1 -1
  11. data/app/views/shared/_dom_set.html.erb +17 -2
  12. data/lib/assets/javascripts/dom_glancy/dom_glancy.js +37 -0
  13. data/{app/assets/stylesheets → lib/assets/stylesheets/dom_glancy}/1236_grid.css +0 -0
  14. data/{app/assets/stylesheets → lib/assets/stylesheets/dom_glancy}/720_grid.css +0 -0
  15. data/{app/assets/stylesheets → lib/assets/stylesheets/dom_glancy}/986_grid.css +0 -0
  16. data/{app/assets/stylesheets → lib/assets/stylesheets/dom_glancy}/dom_glancy.css +35 -4
  17. data/{app/assets/stylesheets → lib/assets/stylesheets/dom_glancy}/normalize.css +0 -0
  18. data/lib/dom_glancy.rb +6 -2
  19. data/lib/dom_glancy/analysis_reporter.rb +39 -0
  20. data/lib/dom_glancy/analyzer.rb +139 -0
  21. data/lib/dom_glancy/change_anlyzer.rb +22 -0
  22. data/lib/dom_glancy/dom_glancy.rb +35 -83
  23. data/lib/dom_glancy/element.rb +63 -12
  24. data/lib/dom_glancy/file_name_builder.rb +21 -0
  25. data/lib/dom_glancy/map_file.rb +14 -0
  26. data/lib/dom_glancy/page_mapper.rb +81 -0
  27. data/lib/dom_glancy/svg.rb +41 -2
  28. data/lib/dom_glancy/version.rb +1 -1
  29. data/test/page_objects/dom_glancy/show_page.rb +6 -0
  30. data/test/selenium/mapping_test.rb +28 -5
  31. data/test/selenium/viewer_test.rb +2 -2
  32. data/test/selenium_test_helper.rb +26 -43
  33. data/test/test_app/app/assets/stylesheets/local_app.css +9 -1
  34. data/test/test_app/app/views/local/index.html.erb +11 -1
  35. data/test/test_helper.rb +7 -5
  36. data/test/test_helpers/artifacts_helpers.rb +54 -0
  37. data/test/test_helpers/location_helpers.rb +5 -3
  38. data/test/test_objects/options_file_1.yaml +2145 -0
  39. data/test/test_objects/options_file_2.yaml +2177 -0
  40. data/test/test_objects/test_objects.rb +57 -6
  41. data/test/unit/analysis_reporter_test.rb +28 -0
  42. data/test/unit/analyzer_test.rb +146 -0
  43. data/test/unit/change_analyzer_test.rb +72 -0
  44. data/test/unit/dom_glancy_test.rb +16 -11
  45. data/test/unit/element_test.rb +56 -0
  46. data/test/unit/file_name_builder_test.rb +28 -0
  47. data/test/unit/map_file_test.rb +47 -0
  48. data/test/unit/page_mapper_test.rb +27 -0
  49. data/test/unit/svg_test.rb +17 -0
  50. metadata +35 -13
  51. data/app/assets/javascripts/application.js +0 -7
  52. data/lib/dom_glancy/analysis.rb +0 -146
  53. data/lib/dom_glancy/locations.rb +0 -16
  54. data/test/unit/analysis_test.rb +0 -110
@@ -1,3 +1,3 @@
1
1
  module DomGlancy
2
- VERSION = '1.0.1'.freeze
2
+ VERSION = '1.1.0'.freeze
3
3
  end
@@ -6,6 +6,12 @@ module PageObjects
6
6
  collection :not_current, :locator => "#js--not_current", :item_locator => 'table tbody tr'
7
7
  collection :changed, :locator => "#js--changed", :item_locator => 'table tbody tr'
8
8
 
9
+ def toggle
10
+ node.find('#changed_toggle').click
11
+ node.find('#not_master_toggle').click
12
+ node.find('#not_current_toggle').click
13
+ end
14
+
9
15
  def bless!
10
16
  node.click_button 'Bless these differences'
11
17
  IndexPage.new
@@ -2,6 +2,24 @@ require 'selenium_test_helper'
2
2
 
3
3
  class MappingTest < SeleniumTestCase
4
4
 
5
+ def test_slight_shift_down
6
+ PageObjects::DomGlancy::LocalIndexPage.visit
7
+
8
+ map_current_page_and_save_as_master('dom_glancy_index__shifted')
9
+
10
+ add_to_top('booty')
11
+
12
+ same, msg = @dom_glancy.page_map_same?('dom_glancy_index__shifted')
13
+
14
+ refute same, msg
15
+
16
+ assert_match 'Elements not in master: 1', msg
17
+ assert_match 'Elements not in current: 1', msg
18
+ assert_match 'Changed elements: 32', msg
19
+
20
+ assert_artifacts_on_difference('dom_glancy_index__shifted')
21
+ end
22
+
5
23
  def test_full_mapping__same
6
24
  visit_index
7
25
 
@@ -39,6 +57,8 @@ class MappingTest < SeleniumTestCase
39
57
  index_page.files.first.find('a').click
40
58
  show_page = PageObjects::DomGlancy::ShowPage.new
41
59
 
60
+ show_page.toggle
61
+
42
62
  assert_equal 1, show_page.not_master.count, 'elements listed as not in master'
43
63
  assert_equal 0, show_page.not_current.count, 'elements listed as not in current'
44
64
  assert_equal 0, show_page.changed.count, 'elements listed as changed'
@@ -68,9 +88,11 @@ class MappingTest < SeleniumTestCase
68
88
  index_page.files.first.find('a').click
69
89
  show_page = PageObjects::DomGlancy::ShowPage.new
70
90
 
71
- assert_equal 0, show_page.not_master.count, 'elements listed as not in master'
72
- assert_equal 7, show_page.not_current.count, 'elements listed as not in current'
73
- assert_equal 11, show_page.changed.count, 'elements listed as changed'
91
+ show_page.toggle
92
+
93
+ assert_equal 0, show_page.not_master.count, 'elements listed as not in master'
94
+ assert_equal 7, show_page.not_current.count, 'elements listed as not in current'
95
+ assert_equal 9, show_page.changed.count, 'elements listed as changed'
74
96
 
75
97
  assert_artifacts_on_difference('dom_glancy_index')
76
98
 
@@ -129,8 +151,9 @@ class MappingTest < SeleniumTestCase
129
151
  private
130
152
 
131
153
  def map_current_page_and_save_as_master(test_root)
132
- map_data = @dom_glancy.perform_mapping_operation
133
- File.open(DomGlancy::DomGlancy.master_filename(test_root), 'w') { |file| file.write(map_data.to_yaml) }
154
+ file_mapper = DomGlancy::PageMapper.new
155
+ map_data = file_mapper.send(:map_page)
156
+ File.open(DomGlancy::FileNameBuilder.new(test_root).master, 'w') { |file| file.write(map_data.to_yaml) }
134
157
  end
135
158
 
136
159
  end
@@ -14,14 +14,14 @@ class ViewerTest < SeleniumTestCase
14
14
  assert page.has_content?('do not have a corresponding master file in the expected file location'), 'new masters page content.'
15
15
 
16
16
  about_page = new_page.navigation.about!
17
- assert page.has_content?('Add this line to your'), 'about page line from README.md'
17
+ assert page.has_content?('Info about Dom Glancy can be found'), 'about page content.'
18
18
 
19
19
  index_page = about_page.navigation.home!
20
20
  end
21
21
 
22
22
  def test_make_master
23
23
  names = %w(steven_gerrard jordan_henderson adam_lallana)
24
- names.each { |name| File.open(DomGlancy::DomGlancy.current_filename(name), 'w') { |f| f.write '' } }
24
+ names.each { |name| File.open(DomGlancy::FileNameBuilder.new(name).current, 'w') { |f| f.write '' } }
25
25
 
26
26
  index_page = visit_index
27
27
  new_tests_page = index_page.navigation.new_page!
@@ -33,7 +33,7 @@ require 'selenium-webdriver'
33
33
 
34
34
  require 'page_objects'
35
35
 
36
- test_objects_location = File.expand_path('../test_objects/*', __FILE__)
36
+ test_objects_location = File.expand_path('../test_objects/*.rb', __FILE__)
37
37
  Dir[test_objects_location].each { |f| require f }
38
38
 
39
39
  test_helper_location = File.expand_path('../test_helpers/**/*.rb', __FILE__)
@@ -44,6 +44,7 @@ Capybara.default_driver = :selenium
44
44
  class SeleniumTestCase < Minitest::Test
45
45
  include TestObjects
46
46
  include TestHelpers::Location
47
+ include TestHelpers::Artifacts
47
48
 
48
49
  include Capybara::DSL
49
50
 
@@ -54,7 +55,7 @@ class SeleniumTestCase < Minitest::Test
54
55
  end
55
56
 
56
57
  def teardown
57
- delete_contents_from_dom_glancy_locations
58
+ # delete_contents_from_dom_glancy_locations
58
59
  end
59
60
 
60
61
  def initialize_browser_size_for_test
@@ -90,6 +91,29 @@ class SeleniumTestCase < Minitest::Test
90
91
  page.driver.browser.execute_script(js)
91
92
  end
92
93
 
94
+ def add_to_top(text_content)
95
+ # insertBefore
96
+ js = <<-JS
97
+ var el = document.createElement('div');
98
+ el.style.textAlign = 'center';
99
+ el.style.fontSize = '0.8em';
100
+ el.style.width = '400px';
101
+ el.style.height = '20px';
102
+ el.style.marginLeft = 'auto';
103
+ el.style.marginRight = 'auto';
104
+ el.id = 'hack-element';
105
+ el.textContent = '#{text_content}';
106
+ el.style.backgroundColor = '#ff0000';
107
+
108
+ var bod = document.getElementsByTagName('body')[0];
109
+ var opts = document.getElementsByClassName('lot_o_h2s')[0];
110
+
111
+ bod.insertBefore(el, opts);
112
+ JS
113
+
114
+ page.driver.browser.execute_script(js)
115
+ end
116
+
93
117
  def add_centered_element(text_content)
94
118
  js = <<-JS
95
119
  var centeredElement = document.createElement('div');
@@ -114,45 +138,4 @@ class SeleniumTestCase < Minitest::Test
114
138
  def get_current_browser_dimensions
115
139
  page.driver.browser.manage.window.size
116
140
  end
117
-
118
- def assert_artifacts_on_difference(test_root)
119
- filename = DomGlancy::DomGlancy.diff_filename(test_root)
120
- assert File.exists?(filename), "Diff file should exist: #{filename}"
121
-
122
- filename = File.join(DomGlancy.configuration.diff_file_location, "#{test_root}__changed_master__diff.yaml")
123
- assert File.exists?(filename), "Changed master file should exist: #{filename}"
124
-
125
- filename = File.join(DomGlancy.configuration.diff_file_location, "#{test_root}__current_not_master__diff.yaml")
126
- assert File.exists?(filename), "Current, not master, file should exist: #{filename}"
127
-
128
- filename = File.join(DomGlancy.configuration.diff_file_location, "#{test_root}__master_not_current__diff.yaml")
129
- assert File.exists?(filename), "Master, not current, file should exist: #{filename}"
130
-
131
- filename = DomGlancy::DomGlancy.master_filename(test_root)
132
- assert File.exists?(filename), "Master file should exist: #{filename}"
133
-
134
- filename = DomGlancy::DomGlancy.current_filename(test_root)
135
- assert File.exists?(filename), "Current file should exist: #{filename}"
136
- end
137
-
138
- def assert_artifacts_on_same(test_root)
139
- filename = DomGlancy::DomGlancy.diff_filename(test_root)
140
- refute File.exists?(filename), "No diff file should exist: #{filename}"
141
-
142
- filename = File.join(DomGlancy.configuration.diff_file_location, "#{test_root}__changed_master__diff.yaml")
143
- refute File.exists?(filename), "No changed master file should exist: #{filename}"
144
-
145
- filename = File.join(DomGlancy.configuration.diff_file_location, "#{test_root}__current_not_master__diff.yaml")
146
- refute File.exists?(filename), "No current, not master, file should exist: #{filename}"
147
-
148
- filename = File.join(DomGlancy.configuration.diff_file_location, "#{test_root}__master_not_current__diff.yaml")
149
- refute File.exists?(filename), "No master, not current, file should exist: #{filename}"
150
-
151
- filename = DomGlancy::DomGlancy.master_filename(test_root)
152
- assert File.exists?(filename), "Master file should exist: #{filename}"
153
-
154
- filename = DomGlancy::DomGlancy.current_filename(test_root)
155
- refute File.exists?(filename), "No current file should exist: #{filename}"
156
141
  end
157
-
158
- end
@@ -22,4 +22,12 @@ td {
22
22
  float: right;
23
23
  font-size: 1.5em;
24
24
  font-family: monospace, arial, helvetica, sans-serif;
25
- }
25
+ }
26
+
27
+ .lot_o_h2s {
28
+ margin: 0 auto;
29
+ color: #c3d9ff;
30
+ width: 600px;
31
+ border: 2px solid #000080;
32
+ background-color: #009900;
33
+ }
@@ -1,3 +1,13 @@
1
+ <div class="lot_o_h2s">
2
+ <h2>geordie speake - boom!</h2>
3
+ <h2>geordie speake - boom!</h2>
4
+ <h2>geordie speake - boom!</h2>
5
+ <h2>geordie speake - boom!</h2>
6
+ <h2>geordie speake - boom!</h2>
7
+ <h2>geordie speake - boom!</h2>
8
+ <h2>geordie speake - boom!</h2>
9
+ </div>
10
+
1
11
  <table>
2
12
  <thead>
3
13
  <tr>
@@ -42,4 +52,4 @@
42
52
  <p>Hashtag art party trust fund, twee Terry Richardson direct trade mlkshk cornhole pickled Bushwick cardigan kale chips butcher. Polaroid chillwave direct trade, squid American Apparel literally semiotics 90's High Life twee ethical vinyl Odd Future Bushwick. Chillwave scenester authentic, try-hard Neutra pug wayfarers cornhole. Chambray next level wayfarers, ethical mixtape chillwave Etsy pour-over Cosby sweater. Ennui bespoke Echo Park umami banjo, Pinterest gastropub retro paleo next level. Tonx Schlitz stumptown Intelligentsia small batch, pickled roof party literally synth bitters irony. Wayfarers tousled chambray farm-to-table fanny pack, street art Thundercats cornhole fap pickled.</p>
43
53
  <p>Do you need some dummy text? *sigh* Of course you do.</p>
44
54
  <p>I bet you still use Helvetica too…</p>
45
- </div>
55
+ </div>
@@ -1,3 +1,8 @@
1
+ if ENV['CODECLIMATE_REPO_TOKEN']
2
+ require "codeclimate-test-reporter"
3
+ CodeClimate::TestReporter.start
4
+ end
5
+
1
6
  require 'rubygems'
2
7
  require 'bundler'
3
8
 
@@ -25,7 +30,7 @@ require 'mocha/setup'
25
30
 
26
31
  require File.expand_path('../../lib/dom_glancy', __FILE__)
27
32
 
28
- test_objects_location = File.expand_path('../test_objects/*', __FILE__)
33
+ test_objects_location = File.expand_path('../test_objects/*.rb', __FILE__)
29
34
  Dir[test_objects_location].each { |f| require f }
30
35
 
31
36
  test_helper_location = File.expand_path('../test_helpers/**/*.rb', __FILE__)
@@ -34,10 +39,7 @@ Dir[test_helper_location].each { |f| require f }
34
39
  class DomGlancyTestCase < Minitest::Test
35
40
  include TestObjects
36
41
  include TestHelpers::Location
37
-
38
- def setup
39
- @dom_glancy = DomGlancy::DomGlancy.new
40
- end
42
+ include TestHelpers::Artifacts
41
43
 
42
44
  DomGlancy.configure
43
45
  end
@@ -0,0 +1,54 @@
1
+ module TestHelpers
2
+ module Artifacts
3
+ def assert_artifacts_on_difference(test_root)
4
+ fnb = DomGlancy::FileNameBuilder.new(test_root)
5
+
6
+ filename = fnb.diff
7
+ assert File.exists?(filename), "Diff file should exist: #{filename}"
8
+
9
+ filename = File.join(DomGlancy.configuration.diff_file_location, "#{test_root}__changed_master__diff.yaml")
10
+ assert File.exists?(filename), "Changed master file should exist: #{filename}"
11
+
12
+ filename = File.join(DomGlancy.configuration.diff_file_location, "#{test_root}__current_not_master__diff.yaml")
13
+ assert File.exists?(filename), "Current, not master, file should exist: #{filename}"
14
+
15
+ filename = File.join(DomGlancy.configuration.diff_file_location, "#{test_root}__master_not_current__diff.yaml")
16
+ assert File.exists?(filename), "Master, not current, file should exist: #{filename}"
17
+
18
+ filename = File.join(DomGlancy.configuration.diff_file_location, "#{test_root}__changed_pairs__diff.yaml")
19
+ assert File.exists?(filename), "Changed pairs file should exist: #{filename}"
20
+
21
+ filename = fnb.master
22
+ assert File.exists?(filename), "Master file should exist: #{filename}"
23
+
24
+ filename = fnb.current
25
+ assert File.exists?(filename), "Current file should exist: #{filename}"
26
+ end
27
+
28
+ def assert_artifacts_on_same(test_root)
29
+ fnb = DomGlancy::FileNameBuilder.new(test_root)
30
+
31
+ filename = fnb.diff
32
+ refute File.exists?(filename), "No diff file should exist: #{filename}"
33
+
34
+ filename = File.join(DomGlancy.configuration.diff_file_location, "#{test_root}__changed_master__diff.yaml")
35
+ refute File.exists?(filename), "No changed master file should exist: #{filename}"
36
+
37
+ filename = File.join(DomGlancy.configuration.diff_file_location, "#{test_root}__current_not_master__diff.yaml")
38
+ refute File.exists?(filename), "No current, not master, file should exist: #{filename}"
39
+
40
+ filename = File.join(DomGlancy.configuration.diff_file_location, "#{test_root}__master_not_current__diff.yaml")
41
+ refute File.exists?(filename), "No master, not current, file should exist: #{filename}"
42
+
43
+ filename = File.join(DomGlancy.configuration.diff_file_location, "#{test_root}__changed_pairs__diff.yaml")
44
+ refute File.exists?(filename), "No master changed pairs file should exist: #{filename}"
45
+
46
+ filename = fnb.master
47
+ assert File.exists?(filename), "Master file should exist: #{filename}"
48
+
49
+ filename = fnb.current
50
+ refute File.exists?(filename), "No current file should exist: #{filename}"
51
+ end
52
+
53
+ end
54
+ end
@@ -12,6 +12,8 @@ module TestHelpers
12
12
  FileUtils.mkdir_p(DomGlancy.configuration.master_file_location)
13
13
  FileUtils.mkdir_p(DomGlancy.configuration.diff_file_location)
14
14
  FileUtils.mkdir_p(DomGlancy.configuration.current_file_location)
15
+
16
+ delete_contents_from_dom_glancy_locations
15
17
  end
16
18
 
17
19
  def delete_test_locations
@@ -21,10 +23,10 @@ module TestHelpers
21
23
  end
22
24
 
23
25
  def delete_contents_from_dom_glancy_locations
24
- Dir[File.join(DomGlancy.configuration.master_file_location, '*.yaml')].each { |file| FileUtils.rm_rf file }
26
+ Dir[File.join(DomGlancy.configuration.master_file_location, '*.yaml')].each { |file| FileUtils.rm_rf file }
25
27
  Dir[File.join(DomGlancy.configuration.current_file_location, '*.yaml')].each { |file| FileUtils.rm_rf file }
26
- Dir[File.join(DomGlancy.configuration.diff_file_location, '*.html')].each { |file| FileUtils.rm_rf file }
27
- Dir[File.join(DomGlancy.configuration.diff_file_location, '*.yaml')].each { |file| FileUtils.rm_rf file }
28
+ Dir[File.join(DomGlancy.configuration.diff_file_location, '*.html')].each { |file| FileUtils.rm_rf file }
29
+ Dir[File.join(DomGlancy.configuration.diff_file_location, '*.yaml')].each { |file| FileUtils.rm_rf file }
28
30
  end
29
31
  end
30
32
  end
@@ -0,0 +1,2145 @@
1
+ ---
2
+ - height: 13
3
+ width: 439
4
+ id: ''
5
+ tag: OPTION
6
+ class: ''
7
+ top: 769
8
+ left: 223
9
+ visible: true
10
+ - height: 14
11
+ width: 439
12
+ id: ''
13
+ tag: OPTION
14
+ class: ''
15
+ top: 782
16
+ left: 223
17
+ visible: true
18
+ - height: 14
19
+ width: 439
20
+ id: ''
21
+ tag: OPTION
22
+ class: ''
23
+ top: 796
24
+ left: 223
25
+ visible: true
26
+ - height: 13
27
+ width: 439
28
+ id: ''
29
+ tag: OPTION
30
+ class: ''
31
+ top: 815
32
+ left: 223
33
+ visible: true
34
+ - height: 14
35
+ width: 439
36
+ id: ''
37
+ tag: OPTION
38
+ class: ''
39
+ top: 828
40
+ left: 223
41
+ visible: true
42
+ - height: 14
43
+ width: 439
44
+ id: ''
45
+ tag: OPTION
46
+ class: ''
47
+ top: 842
48
+ left: 223
49
+ visible: true
50
+ - height: 14
51
+ width: 439
52
+ id: ''
53
+ tag: OPTION
54
+ class: ''
55
+ top: 856
56
+ left: 223
57
+ visible: true
58
+ - height: 14
59
+ width: 439
60
+ id: ''
61
+ tag: OPTION
62
+ class: ''
63
+ top: 870
64
+ left: 223
65
+ visible: true
66
+ - height: 14
67
+ width: 439
68
+ id: ''
69
+ tag: OPTION
70
+ class: ''
71
+ top: 884
72
+ left: 223
73
+ visible: true
74
+ - height: 14
75
+ width: 439
76
+ id: ''
77
+ tag: OPTION
78
+ class: ''
79
+ top: 898
80
+ left: 223
81
+ visible: true
82
+ - height: 14
83
+ width: 439
84
+ id: ''
85
+ tag: OPTION
86
+ class: ''
87
+ top: 912
88
+ left: 223
89
+ visible: true
90
+ - height: 14
91
+ width: 439
92
+ id: ''
93
+ tag: OPTION
94
+ class: ''
95
+ top: 926
96
+ left: 223
97
+ visible: true
98
+ - height: 14
99
+ width: 439
100
+ id: ''
101
+ tag: OPTION
102
+ class: ''
103
+ top: 940
104
+ left: 223
105
+ visible: true
106
+ - height: 14
107
+ width: 439
108
+ id: ''
109
+ tag: OPTION
110
+ class: ''
111
+ top: 954
112
+ left: 223
113
+ visible: true
114
+ - height: 14
115
+ width: 439
116
+ id: ''
117
+ tag: OPTION
118
+ class: ''
119
+ top: 968
120
+ left: 223
121
+ visible: true
122
+ - height: 14
123
+ width: 439
124
+ id: ''
125
+ tag: OPTION
126
+ class: ''
127
+ top: 982
128
+ left: 223
129
+ visible: true
130
+ - height: 13
131
+ width: 424
132
+ id: ''
133
+ tag: OPTION
134
+ class: ''
135
+ top: 841
136
+ left: 223
137
+ visible: true
138
+ - height: 14
139
+ width: 424
140
+ id: ''
141
+ tag: OPTION
142
+ class: ''
143
+ top: 854
144
+ left: 223
145
+ visible: true
146
+ - height: 14
147
+ width: 424
148
+ id: ''
149
+ tag: OPTION
150
+ class: ''
151
+ top: 868
152
+ left: 223
153
+ visible: true
154
+ - height: 14
155
+ width: 424
156
+ id: ''
157
+ tag: OPTION
158
+ class: ''
159
+ top: 882
160
+ left: 223
161
+ visible: true
162
+ - height: 14
163
+ width: 424
164
+ id: ''
165
+ tag: OPTION
166
+ class: ''
167
+ top: 896
168
+ left: 223
169
+ visible: true
170
+ - height: 14
171
+ width: 424
172
+ id: ''
173
+ tag: OPTION
174
+ class: ''
175
+ top: 910
176
+ left: 223
177
+ visible: true
178
+ - height: 14
179
+ width: 424
180
+ id: ''
181
+ tag: OPTION
182
+ class: ''
183
+ top: 924
184
+ left: 223
185
+ visible: true
186
+ - height: 14
187
+ width: 424
188
+ id: ''
189
+ tag: OPTION
190
+ class: ''
191
+ top: 938
192
+ left: 223
193
+ visible: true
194
+ - height: 14
195
+ width: 424
196
+ id: ''
197
+ tag: OPTION
198
+ class: ''
199
+ top: 952
200
+ left: 223
201
+ visible: true
202
+ - height: 14
203
+ width: 424
204
+ id: ''
205
+ tag: OPTION
206
+ class: ''
207
+ top: 966
208
+ left: 223
209
+ visible: true
210
+ - height: 14
211
+ width: 424
212
+ id: ''
213
+ tag: OPTION
214
+ class: ''
215
+ top: 980
216
+ left: 223
217
+ visible: true
218
+ - height: 14
219
+ width: 424
220
+ id: ''
221
+ tag: OPTION
222
+ class: ''
223
+ top: 994
224
+ left: 223
225
+ visible: true
226
+ - height: 14
227
+ width: 424
228
+ id: ''
229
+ tag: OPTION
230
+ class: ''
231
+ top: 1008
232
+ left: 223
233
+ visible: true
234
+ - height: 14
235
+ width: 424
236
+ id: ''
237
+ tag: OPTION
238
+ class: ''
239
+ top: 1022
240
+ left: 223
241
+ visible: true
242
+ - height: 14
243
+ width: 424
244
+ id: ''
245
+ tag: OPTION
246
+ class: ''
247
+ top: 1036
248
+ left: 223
249
+ visible: true
250
+ - height: 14
251
+ width: 424
252
+ id: ''
253
+ tag: OPTION
254
+ class: ''
255
+ top: 1050
256
+ left: 223
257
+ visible: true
258
+ - height: 14
259
+ width: 424
260
+ id: ''
261
+ tag: OPTION
262
+ class: ''
263
+ top: 1064
264
+ left: 223
265
+ visible: true
266
+ - height: 14
267
+ width: 424
268
+ id: ''
269
+ tag: OPTION
270
+ class: ''
271
+ top: 1078
272
+ left: 223
273
+ visible: true
274
+ - height: 14
275
+ width: 424
276
+ id: ''
277
+ tag: OPTION
278
+ class: ''
279
+ top: 1092
280
+ left: 223
281
+ visible: true
282
+ - height: 14
283
+ width: 424
284
+ id: ''
285
+ tag: OPTION
286
+ class: ''
287
+ top: 1106
288
+ left: 223
289
+ visible: true
290
+ - height: 14
291
+ width: 424
292
+ id: ''
293
+ tag: OPTION
294
+ class: ''
295
+ top: 1120
296
+ left: 223
297
+ visible: true
298
+ - height: 14
299
+ width: 424
300
+ id: ''
301
+ tag: OPTION
302
+ class: ''
303
+ top: 1134
304
+ left: 223
305
+ visible: true
306
+ - height: 14
307
+ width: 424
308
+ id: ''
309
+ tag: OPTION
310
+ class: ''
311
+ top: 1148
312
+ left: 223
313
+ visible: true
314
+ - height: 14
315
+ width: 424
316
+ id: ''
317
+ tag: OPTION
318
+ class: ''
319
+ top: 1162
320
+ left: 223
321
+ visible: true
322
+ - height: 14
323
+ width: 424
324
+ id: ''
325
+ tag: OPTION
326
+ class: ''
327
+ top: 1176
328
+ left: 223
329
+ visible: true
330
+ - height: 14
331
+ width: 424
332
+ id: ''
333
+ tag: OPTION
334
+ class: ''
335
+ top: 1190
336
+ left: 223
337
+ visible: true
338
+ - height: 14
339
+ width: 424
340
+ id: ''
341
+ tag: OPTION
342
+ class: ''
343
+ top: 1204
344
+ left: 223
345
+ visible: true
346
+ - height: 14
347
+ width: 424
348
+ id: ''
349
+ tag: OPTION
350
+ class: ''
351
+ top: 1218
352
+ left: 223
353
+ visible: true
354
+ - height: 14
355
+ width: 424
356
+ id: ''
357
+ tag: OPTION
358
+ class: ''
359
+ top: 1232
360
+ left: 223
361
+ visible: true
362
+ - height: 14
363
+ width: 424
364
+ id: ''
365
+ tag: OPTION
366
+ class: ''
367
+ top: 1246
368
+ left: 223
369
+ visible: true
370
+ - height: 14
371
+ width: 424
372
+ id: ''
373
+ tag: OPTION
374
+ class: ''
375
+ top: 1260
376
+ left: 223
377
+ visible: true
378
+ - height: 14
379
+ width: 424
380
+ id: ''
381
+ tag: OPTION
382
+ class: ''
383
+ top: 1274
384
+ left: 223
385
+ visible: true
386
+ - height: 13
387
+ width: 439
388
+ id: ''
389
+ tag: OPTION
390
+ class: ''
391
+ top: 867
392
+ left: 223
393
+ visible: true
394
+ - height: 14
395
+ width: 439
396
+ id: ''
397
+ tag: OPTION
398
+ class: ''
399
+ top: 880
400
+ left: 223
401
+ visible: true
402
+ - height: 14
403
+ width: 439
404
+ id: ''
405
+ tag: OPTION
406
+ class: ''
407
+ top: 894
408
+ left: 223
409
+ visible: true
410
+ - height: 14
411
+ width: 439
412
+ id: ''
413
+ tag: OPTION
414
+ class: ''
415
+ top: 908
416
+ left: 223
417
+ visible: true
418
+ - height: 14
419
+ width: 439
420
+ id: ''
421
+ tag: OPTION
422
+ class: ''
423
+ top: 922
424
+ left: 223
425
+ visible: true
426
+ - height: 14
427
+ width: 439
428
+ id: ''
429
+ tag: OPTION
430
+ class: ''
431
+ top: 936
432
+ left: 223
433
+ visible: true
434
+ - height: 14
435
+ width: 439
436
+ id: ''
437
+ tag: OPTION
438
+ class: ''
439
+ top: 950
440
+ left: 223
441
+ visible: true
442
+ - height: 14
443
+ width: 439
444
+ id: ''
445
+ tag: OPTION
446
+ class: ''
447
+ top: 964
448
+ left: 223
449
+ visible: true
450
+ - height: 14
451
+ width: 439
452
+ id: ''
453
+ tag: OPTION
454
+ class: ''
455
+ top: 978
456
+ left: 223
457
+ visible: true
458
+ - height: 14
459
+ width: 439
460
+ id: ''
461
+ tag: OPTION
462
+ class: ''
463
+ top: 992
464
+ left: 223
465
+ visible: true
466
+ - height: 14
467
+ width: 439
468
+ id: ''
469
+ tag: OPTION
470
+ class: ''
471
+ top: 1006
472
+ left: 223
473
+ visible: true
474
+ - height: 14
475
+ width: 439
476
+ id: ''
477
+ tag: OPTION
478
+ class: ''
479
+ top: 1020
480
+ left: 223
481
+ visible: true
482
+ - height: 14
483
+ width: 439
484
+ id: ''
485
+ tag: OPTION
486
+ class: ''
487
+ top: 939
488
+ left: 223
489
+ visible: true
490
+ - height: 14
491
+ width: 439
492
+ id: ''
493
+ tag: OPTION
494
+ class: ''
495
+ top: 953
496
+ left: 223
497
+ visible: true
498
+ - height: 14
499
+ width: 136
500
+ id: ''
501
+ tag: OPTION
502
+ class: ''
503
+ top: 2291
504
+ left: 413
505
+ visible: true
506
+ - height: 14
507
+ width: 136
508
+ id: ''
509
+ tag: OPTION
510
+ class: ''
511
+ top: 2305
512
+ left: 413
513
+ visible: true
514
+ - height: 13
515
+ width: 136
516
+ id: ''
517
+ tag: OPTION
518
+ class: ''
519
+ top: 2251
520
+ left: 223
521
+ visible: true
522
+ - height: 14
523
+ width: 136
524
+ id: ''
525
+ tag: OPTION
526
+ class: ''
527
+ top: 2264
528
+ left: 223
529
+ visible: true
530
+ - height: 14
531
+ width: 136
532
+ id: ''
533
+ tag: OPTION
534
+ class: ''
535
+ top: 2278
536
+ left: 223
537
+ visible: true
538
+ - height: 14
539
+ width: 136
540
+ id: ''
541
+ tag: OPTION
542
+ class: ''
543
+ top: 2292
544
+ left: 223
545
+ visible: true
546
+ - height: 14
547
+ width: 136
548
+ id: ''
549
+ tag: OPTION
550
+ class: ''
551
+ top: 2306
552
+ left: 223
553
+ visible: true
554
+ - height: 14
555
+ width: 136
556
+ id: ''
557
+ tag: OPTION
558
+ class: ''
559
+ top: 2320
560
+ left: 223
561
+ visible: true
562
+ - height: 14
563
+ width: 136
564
+ id: ''
565
+ tag: OPTION
566
+ class: ''
567
+ top: 2334
568
+ left: 223
569
+ visible: true
570
+ - height: 14
571
+ width: 136
572
+ id: ''
573
+ tag: OPTION
574
+ class: ''
575
+ top: 2348
576
+ left: 223
577
+ visible: true
578
+ - height: 14
579
+ width: 136
580
+ id: ''
581
+ tag: OPTION
582
+ class: ''
583
+ top: 2362
584
+ left: 223
585
+ visible: true
586
+ - height: 14
587
+ width: 136
588
+ id: ''
589
+ tag: OPTION
590
+ class: ''
591
+ top: 2376
592
+ left: 223
593
+ visible: true
594
+ - height: 14
595
+ width: 136
596
+ id: ''
597
+ tag: OPTION
598
+ class: ''
599
+ top: 2390
600
+ left: 223
601
+ visible: true
602
+ - height: 14
603
+ width: 136
604
+ id: ''
605
+ tag: OPTION
606
+ class: ''
607
+ top: 2404
608
+ left: 223
609
+ visible: true
610
+ - height: 14
611
+ width: 136
612
+ id: ''
613
+ tag: OPTION
614
+ class: ''
615
+ top: 2418
616
+ left: 223
617
+ visible: true
618
+ - height: 13
619
+ width: 121
620
+ id: ''
621
+ tag: OPTION
622
+ class: ''
623
+ top: 2152
624
+ left: 375
625
+ visible: true
626
+ - height: 14
627
+ width: 121
628
+ id: ''
629
+ tag: OPTION
630
+ class: ''
631
+ top: 2165
632
+ left: 375
633
+ visible: true
634
+ - height: 14
635
+ width: 121
636
+ id: ''
637
+ tag: OPTION
638
+ class: ''
639
+ top: 2179
640
+ left: 375
641
+ visible: true
642
+ - height: 14
643
+ width: 121
644
+ id: ''
645
+ tag: OPTION
646
+ class: ''
647
+ top: 2193
648
+ left: 375
649
+ visible: true
650
+ - height: 14
651
+ width: 121
652
+ id: ''
653
+ tag: OPTION
654
+ class: ''
655
+ top: 2207
656
+ left: 375
657
+ visible: true
658
+ - height: 14
659
+ width: 121
660
+ id: ''
661
+ tag: OPTION
662
+ class: ''
663
+ top: 2221
664
+ left: 375
665
+ visible: true
666
+ - height: 14
667
+ width: 121
668
+ id: ''
669
+ tag: OPTION
670
+ class: ''
671
+ top: 2235
672
+ left: 375
673
+ visible: true
674
+ - height: 14
675
+ width: 121
676
+ id: ''
677
+ tag: OPTION
678
+ class: ''
679
+ top: 2249
680
+ left: 375
681
+ visible: true
682
+ - height: 14
683
+ width: 121
684
+ id: ''
685
+ tag: OPTION
686
+ class: ''
687
+ top: 2263
688
+ left: 375
689
+ visible: true
690
+ - height: 14
691
+ width: 121
692
+ id: ''
693
+ tag: OPTION
694
+ class: ''
695
+ top: 2277
696
+ left: 375
697
+ visible: true
698
+ - height: 14
699
+ width: 121
700
+ id: ''
701
+ tag: OPTION
702
+ class: ''
703
+ top: 2291
704
+ left: 375
705
+ visible: true
706
+ - height: 14
707
+ width: 121
708
+ id: ''
709
+ tag: OPTION
710
+ class: ''
711
+ top: 2305
712
+ left: 375
713
+ visible: true
714
+ - height: 14
715
+ width: 121
716
+ id: ''
717
+ tag: OPTION
718
+ class: ''
719
+ top: 2319
720
+ left: 375
721
+ visible: true
722
+ - height: 14
723
+ width: 121
724
+ id: ''
725
+ tag: OPTION
726
+ class: ''
727
+ top: 2333
728
+ left: 375
729
+ visible: true
730
+ - height: 14
731
+ width: 121
732
+ id: ''
733
+ tag: OPTION
734
+ class: ''
735
+ top: 2347
736
+ left: 375
737
+ visible: true
738
+ - height: 14
739
+ width: 121
740
+ id: ''
741
+ tag: OPTION
742
+ class: ''
743
+ top: 2361
744
+ left: 375
745
+ visible: true
746
+ - height: 14
747
+ width: 121
748
+ id: ''
749
+ tag: OPTION
750
+ class: ''
751
+ top: 2375
752
+ left: 375
753
+ visible: true
754
+ - height: 14
755
+ width: 121
756
+ id: ''
757
+ tag: OPTION
758
+ class: ''
759
+ top: 2389
760
+ left: 375
761
+ visible: true
762
+ - height: 14
763
+ width: 121
764
+ id: ''
765
+ tag: OPTION
766
+ class: ''
767
+ top: 2403
768
+ left: 375
769
+ visible: true
770
+ - height: 14
771
+ width: 121
772
+ id: ''
773
+ tag: OPTION
774
+ class: ''
775
+ top: 2417
776
+ left: 375
777
+ visible: true
778
+ - height: 14
779
+ width: 121
780
+ id: ''
781
+ tag: OPTION
782
+ class: ''
783
+ top: 2431
784
+ left: 375
785
+ visible: true
786
+ - height: 14
787
+ width: 121
788
+ id: ''
789
+ tag: OPTION
790
+ class: ''
791
+ top: 2445
792
+ left: 375
793
+ visible: true
794
+ - height: 14
795
+ width: 121
796
+ id: ''
797
+ tag: OPTION
798
+ class: ''
799
+ top: 2459
800
+ left: 375
801
+ visible: true
802
+ - height: 14
803
+ width: 121
804
+ id: ''
805
+ tag: OPTION
806
+ class: ''
807
+ top: 2473
808
+ left: 375
809
+ visible: true
810
+ - height: 14
811
+ width: 121
812
+ id: ''
813
+ tag: OPTION
814
+ class: ''
815
+ top: 2487
816
+ left: 375
817
+ visible: true
818
+ - height: 14
819
+ width: 121
820
+ id: ''
821
+ tag: OPTION
822
+ class: ''
823
+ top: 2501
824
+ left: 375
825
+ visible: true
826
+ - height: 14
827
+ width: 121
828
+ id: ''
829
+ tag: OPTION
830
+ class: ''
831
+ top: 2515
832
+ left: 375
833
+ visible: true
834
+ - height: 14
835
+ width: 121
836
+ id: ''
837
+ tag: OPTION
838
+ class: ''
839
+ top: 2529
840
+ left: 375
841
+ visible: true
842
+ - height: 14
843
+ width: 121
844
+ id: ''
845
+ tag: OPTION
846
+ class: ''
847
+ top: 2543
848
+ left: 375
849
+ visible: true
850
+ - height: 14
851
+ width: 121
852
+ id: ''
853
+ tag: OPTION
854
+ class: ''
855
+ top: 2557
856
+ left: 375
857
+ visible: true
858
+ - height: 14
859
+ width: 121
860
+ id: ''
861
+ tag: OPTION
862
+ class: ''
863
+ top: 2571
864
+ left: 375
865
+ visible: true
866
+ - height: 14
867
+ width: 121
868
+ id: ''
869
+ tag: OPTION
870
+ class: ''
871
+ top: 2585
872
+ left: 375
873
+ visible: true
874
+ - height: 13
875
+ width: 136
876
+ id: ''
877
+ tag: OPTION
878
+ class: ''
879
+ top: 2265
880
+ left: 526
881
+ visible: true
882
+ - height: 14
883
+ width: 136
884
+ id: ''
885
+ tag: OPTION
886
+ class: ''
887
+ top: 2278
888
+ left: 526
889
+ visible: true
890
+ - height: 14
891
+ width: 136
892
+ id: ''
893
+ tag: OPTION
894
+ class: ''
895
+ top: 2292
896
+ left: 526
897
+ visible: true
898
+ - height: 14
899
+ width: 136
900
+ id: ''
901
+ tag: OPTION
902
+ class: ''
903
+ top: 2306
904
+ left: 526
905
+ visible: true
906
+ - height: 14
907
+ width: 136
908
+ id: ''
909
+ tag: OPTION
910
+ class: ''
911
+ top: 2320
912
+ left: 526
913
+ visible: true
914
+ - height: 14
915
+ width: 136
916
+ id: ''
917
+ tag: OPTION
918
+ class: ''
919
+ top: 2334
920
+ left: 526
921
+ visible: true
922
+ - height: 14
923
+ width: 136
924
+ id: ''
925
+ tag: OPTION
926
+ class: ''
927
+ top: 2348
928
+ left: 526
929
+ visible: true
930
+ - height: 14
931
+ width: 136
932
+ id: ''
933
+ tag: OPTION
934
+ class: ''
935
+ top: 2362
936
+ left: 526
937
+ visible: true
938
+ - height: 14
939
+ width: 136
940
+ id: ''
941
+ tag: OPTION
942
+ class: ''
943
+ top: 2376
944
+ left: 526
945
+ visible: true
946
+ - height: 14
947
+ width: 136
948
+ id: ''
949
+ tag: OPTION
950
+ class: ''
951
+ top: 2390
952
+ left: 526
953
+ visible: true
954
+ - height: 14
955
+ width: 136
956
+ id: ''
957
+ tag: OPTION
958
+ class: ''
959
+ top: 2404
960
+ left: 526
961
+ visible: true
962
+ - height: 14
963
+ width: 136
964
+ id: ''
965
+ tag: OPTION
966
+ class: ''
967
+ top: 2418
968
+ left: 526
969
+ visible: true
970
+ - height: 13
971
+ width: 212
972
+ id: ''
973
+ tag: OPTION
974
+ class: ''
975
+ top: 2296
976
+ left: 223
977
+ visible: true
978
+ - height: 14
979
+ width: 212
980
+ id: ''
981
+ tag: OPTION
982
+ class: ''
983
+ top: 2309
984
+ left: 223
985
+ visible: true
986
+ - height: 14
987
+ width: 212
988
+ id: ''
989
+ tag: OPTION
990
+ class: ''
991
+ top: 2323
992
+ left: 223
993
+ visible: true
994
+ - height: 14
995
+ width: 212
996
+ id: ''
997
+ tag: OPTION
998
+ class: ''
999
+ top: 2337
1000
+ left: 223
1001
+ visible: true
1002
+ - height: 14
1003
+ width: 212
1004
+ id: ''
1005
+ tag: OPTION
1006
+ class: ''
1007
+ top: 2351
1008
+ left: 223
1009
+ visible: true
1010
+ - height: 14
1011
+ width: 212
1012
+ id: ''
1013
+ tag: OPTION
1014
+ class: ''
1015
+ top: 2365
1016
+ left: 223
1017
+ visible: true
1018
+ - height: 14
1019
+ width: 212
1020
+ id: ''
1021
+ tag: OPTION
1022
+ class: ''
1023
+ top: 2379
1024
+ left: 223
1025
+ visible: true
1026
+ - height: 14
1027
+ width: 212
1028
+ id: ''
1029
+ tag: OPTION
1030
+ class: ''
1031
+ top: 2393
1032
+ left: 223
1033
+ visible: true
1034
+ - height: 14
1035
+ width: 212
1036
+ id: ''
1037
+ tag: OPTION
1038
+ class: ''
1039
+ top: 2407
1040
+ left: 223
1041
+ visible: true
1042
+ - height: 14
1043
+ width: 212
1044
+ id: ''
1045
+ tag: OPTION
1046
+ class: ''
1047
+ top: 2421
1048
+ left: 223
1049
+ visible: true
1050
+ - height: 14
1051
+ width: 212
1052
+ id: ''
1053
+ tag: OPTION
1054
+ class: ''
1055
+ top: 2435
1056
+ left: 223
1057
+ visible: true
1058
+ - height: 14
1059
+ width: 212
1060
+ id: ''
1061
+ tag: OPTION
1062
+ class: ''
1063
+ top: 2449
1064
+ left: 223
1065
+ visible: true
1066
+ - height: 14
1067
+ width: 212
1068
+ id: ''
1069
+ tag: OPTION
1070
+ class: ''
1071
+ top: 2463
1072
+ left: 223
1073
+ visible: true
1074
+ - height: 13
1075
+ width: 212
1076
+ id: ''
1077
+ tag: OPTION
1078
+ class: ''
1079
+ top: 2310
1080
+ left: 451
1081
+ visible: true
1082
+ - height: 14
1083
+ width: 212
1084
+ id: ''
1085
+ tag: OPTION
1086
+ class: ''
1087
+ top: 2323
1088
+ left: 451
1089
+ visible: true
1090
+ - height: 14
1091
+ width: 212
1092
+ id: ''
1093
+ tag: OPTION
1094
+ class: ''
1095
+ top: 2337
1096
+ left: 451
1097
+ visible: true
1098
+ - height: 14
1099
+ width: 212
1100
+ id: ''
1101
+ tag: OPTION
1102
+ class: ''
1103
+ top: 2351
1104
+ left: 451
1105
+ visible: true
1106
+ - height: 14
1107
+ width: 212
1108
+ id: ''
1109
+ tag: OPTION
1110
+ class: ''
1111
+ top: 2365
1112
+ left: 451
1113
+ visible: true
1114
+ - height: 14
1115
+ width: 212
1116
+ id: ''
1117
+ tag: OPTION
1118
+ class: ''
1119
+ top: 2379
1120
+ left: 451
1121
+ visible: true
1122
+ - height: 14
1123
+ width: 212
1124
+ id: ''
1125
+ tag: OPTION
1126
+ class: ''
1127
+ top: 2393
1128
+ left: 451
1129
+ visible: true
1130
+ - height: 14
1131
+ width: 212
1132
+ id: ''
1133
+ tag: OPTION
1134
+ class: ''
1135
+ top: 2407
1136
+ left: 451
1137
+ visible: true
1138
+ - height: 14
1139
+ width: 212
1140
+ id: ''
1141
+ tag: OPTION
1142
+ class: ''
1143
+ top: 2421
1144
+ left: 451
1145
+ visible: true
1146
+ - height: 14
1147
+ width: 212
1148
+ id: ''
1149
+ tag: OPTION
1150
+ class: ''
1151
+ top: 2435
1152
+ left: 451
1153
+ visible: true
1154
+ - height: 14
1155
+ width: 212
1156
+ id: ''
1157
+ tag: OPTION
1158
+ class: ''
1159
+ top: 2449
1160
+ left: 451
1161
+ visible: true
1162
+ - height: 14
1163
+ width: 212
1164
+ id: ''
1165
+ tag: OPTION
1166
+ class: ''
1167
+ top: 2463
1168
+ left: 451
1169
+ visible: true
1170
+ - height: 13
1171
+ width: 439
1172
+ id: ''
1173
+ tag: OPTION
1174
+ class: ''
1175
+ top: 3762
1176
+ left: 223
1177
+ visible: true
1178
+ - height: 14
1179
+ width: 439
1180
+ id: ''
1181
+ tag: OPTION
1182
+ class: ''
1183
+ top: 3775
1184
+ left: 223
1185
+ visible: true
1186
+ - height: 14
1187
+ width: 439
1188
+ id: ''
1189
+ tag: OPTION
1190
+ class: ''
1191
+ top: 3789
1192
+ left: 223
1193
+ visible: true
1194
+ - height: 14
1195
+ width: 439
1196
+ id: ''
1197
+ tag: OPTION
1198
+ class: ''
1199
+ top: 3803
1200
+ left: 223
1201
+ visible: true
1202
+ - height: 13
1203
+ width: 439
1204
+ id: ''
1205
+ tag: OPTION
1206
+ class: ''
1207
+ top: 3722
1208
+ left: 223
1209
+ visible: true
1210
+ - height: 14
1211
+ width: 439
1212
+ id: ''
1213
+ tag: OPTION
1214
+ class: ''
1215
+ top: 3735
1216
+ left: 223
1217
+ visible: true
1218
+ - height: 14
1219
+ width: 439
1220
+ id: ''
1221
+ tag: OPTION
1222
+ class: ''
1223
+ top: 3749
1224
+ left: 223
1225
+ visible: true
1226
+ - height: 14
1227
+ width: 439
1228
+ id: ''
1229
+ tag: OPTION
1230
+ class: ''
1231
+ top: 3763
1232
+ left: 223
1233
+ visible: true
1234
+ - height: 14
1235
+ width: 439
1236
+ id: ''
1237
+ tag: OPTION
1238
+ class: ''
1239
+ top: 3777
1240
+ left: 223
1241
+ visible: true
1242
+ - height: 14
1243
+ width: 439
1244
+ id: ''
1245
+ tag: OPTION
1246
+ class: ''
1247
+ top: 3791
1248
+ left: 223
1249
+ visible: true
1250
+ - height: 14
1251
+ width: 439
1252
+ id: ''
1253
+ tag: OPTION
1254
+ class: ''
1255
+ top: 3805
1256
+ left: 223
1257
+ visible: true
1258
+ - height: 14
1259
+ width: 439
1260
+ id: ''
1261
+ tag: OPTION
1262
+ class: ''
1263
+ top: 3819
1264
+ left: 223
1265
+ visible: true
1266
+ - height: 14
1267
+ width: 439
1268
+ id: ''
1269
+ tag: OPTION
1270
+ class: ''
1271
+ top: 3833
1272
+ left: 223
1273
+ visible: true
1274
+ - height: 14
1275
+ width: 439
1276
+ id: ''
1277
+ tag: OPTION
1278
+ class: ''
1279
+ top: 3847
1280
+ left: 223
1281
+ visible: true
1282
+ - height: 14
1283
+ width: 439
1284
+ id: ''
1285
+ tag: OPTION
1286
+ class: ''
1287
+ top: 3861
1288
+ left: 223
1289
+ visible: true
1290
+ - height: 14
1291
+ width: 439
1292
+ id: ''
1293
+ tag: OPTION
1294
+ class: ''
1295
+ top: 3875
1296
+ left: 223
1297
+ visible: true
1298
+ - height: 13
1299
+ width: 439
1300
+ id: ''
1301
+ tag: OPTION
1302
+ class: ''
1303
+ top: 3734
1304
+ left: 223
1305
+ visible: true
1306
+ - height: 14
1307
+ width: 439
1308
+ id: ''
1309
+ tag: OPTION
1310
+ class: ''
1311
+ top: 3747
1312
+ left: 223
1313
+ visible: true
1314
+ - height: 14
1315
+ width: 439
1316
+ id: ''
1317
+ tag: OPTION
1318
+ class: ''
1319
+ top: 3761
1320
+ left: 223
1321
+ visible: true
1322
+ - height: 14
1323
+ width: 439
1324
+ id: ''
1325
+ tag: OPTION
1326
+ class: ''
1327
+ top: 3775
1328
+ left: 223
1329
+ visible: true
1330
+ - height: 14
1331
+ width: 439
1332
+ id: ''
1333
+ tag: OPTION
1334
+ class: ''
1335
+ top: 3789
1336
+ left: 223
1337
+ visible: true
1338
+ - height: 14
1339
+ width: 439
1340
+ id: ''
1341
+ tag: OPTION
1342
+ class: ''
1343
+ top: 3803
1344
+ left: 223
1345
+ visible: true
1346
+ - height: 14
1347
+ width: 439
1348
+ id: ''
1349
+ tag: OPTION
1350
+ class: ''
1351
+ top: 3817
1352
+ left: 223
1353
+ visible: true
1354
+ - height: 14
1355
+ width: 439
1356
+ id: ''
1357
+ tag: OPTION
1358
+ class: ''
1359
+ top: 3831
1360
+ left: 223
1361
+ visible: true
1362
+ - height: 14
1363
+ width: 439
1364
+ id: ''
1365
+ tag: OPTION
1366
+ class: ''
1367
+ top: 3845
1368
+ left: 223
1369
+ visible: true
1370
+ - height: 14
1371
+ width: 439
1372
+ id: ''
1373
+ tag: OPTION
1374
+ class: ''
1375
+ top: 3859
1376
+ left: 223
1377
+ visible: true
1378
+ - height: 14
1379
+ width: 439
1380
+ id: ''
1381
+ tag: OPTION
1382
+ class: ''
1383
+ top: 3873
1384
+ left: 223
1385
+ visible: true
1386
+ - height: 14
1387
+ width: 439
1388
+ id: ''
1389
+ tag: OPTION
1390
+ class: ''
1391
+ top: 3887
1392
+ left: 223
1393
+ visible: true
1394
+ - height: 14
1395
+ width: 439
1396
+ id: ''
1397
+ tag: OPTION
1398
+ class: ''
1399
+ top: 3901
1400
+ left: 223
1401
+ visible: true
1402
+ - height: 13
1403
+ width: 424
1404
+ id: ''
1405
+ tag: OPTION
1406
+ class: ''
1407
+ top: 3661
1408
+ left: 223
1409
+ visible: true
1410
+ - height: 14
1411
+ width: 424
1412
+ id: ''
1413
+ tag: OPTION
1414
+ class: ''
1415
+ top: 3674
1416
+ left: 223
1417
+ visible: true
1418
+ - height: 14
1419
+ width: 424
1420
+ id: ''
1421
+ tag: OPTION
1422
+ class: ''
1423
+ top: 3688
1424
+ left: 223
1425
+ visible: true
1426
+ - height: 14
1427
+ width: 424
1428
+ id: ''
1429
+ tag: OPTION
1430
+ class: ''
1431
+ top: 3702
1432
+ left: 223
1433
+ visible: true
1434
+ - height: 14
1435
+ width: 424
1436
+ id: ''
1437
+ tag: OPTION
1438
+ class: ''
1439
+ top: 3716
1440
+ left: 223
1441
+ visible: true
1442
+ - height: 14
1443
+ width: 424
1444
+ id: ''
1445
+ tag: OPTION
1446
+ class: ''
1447
+ top: 3730
1448
+ left: 223
1449
+ visible: true
1450
+ - height: 14
1451
+ width: 424
1452
+ id: ''
1453
+ tag: OPTION
1454
+ class: ''
1455
+ top: 3744
1456
+ left: 223
1457
+ visible: true
1458
+ - height: 14
1459
+ width: 424
1460
+ id: ''
1461
+ tag: OPTION
1462
+ class: ''
1463
+ top: 3758
1464
+ left: 223
1465
+ visible: true
1466
+ - height: 14
1467
+ width: 424
1468
+ id: ''
1469
+ tag: OPTION
1470
+ class: ''
1471
+ top: 3772
1472
+ left: 223
1473
+ visible: true
1474
+ - height: 14
1475
+ width: 424
1476
+ id: ''
1477
+ tag: OPTION
1478
+ class: ''
1479
+ top: 3786
1480
+ left: 223
1481
+ visible: true
1482
+ - height: 14
1483
+ width: 424
1484
+ id: ''
1485
+ tag: OPTION
1486
+ class: ''
1487
+ top: 3800
1488
+ left: 223
1489
+ visible: true
1490
+ - height: 14
1491
+ width: 424
1492
+ id: ''
1493
+ tag: OPTION
1494
+ class: ''
1495
+ top: 3814
1496
+ left: 223
1497
+ visible: true
1498
+ - height: 14
1499
+ width: 424
1500
+ id: ''
1501
+ tag: OPTION
1502
+ class: ''
1503
+ top: 3828
1504
+ left: 223
1505
+ visible: true
1506
+ - height: 14
1507
+ width: 424
1508
+ id: ''
1509
+ tag: OPTION
1510
+ class: ''
1511
+ top: 3842
1512
+ left: 223
1513
+ visible: true
1514
+ - height: 14
1515
+ width: 424
1516
+ id: ''
1517
+ tag: OPTION
1518
+ class: ''
1519
+ top: 3856
1520
+ left: 223
1521
+ visible: true
1522
+ - height: 14
1523
+ width: 424
1524
+ id: ''
1525
+ tag: OPTION
1526
+ class: ''
1527
+ top: 3870
1528
+ left: 223
1529
+ visible: true
1530
+ - height: 14
1531
+ width: 424
1532
+ id: ''
1533
+ tag: OPTION
1534
+ class: ''
1535
+ top: 3884
1536
+ left: 223
1537
+ visible: true
1538
+ - height: 14
1539
+ width: 424
1540
+ id: ''
1541
+ tag: OPTION
1542
+ class: ''
1543
+ top: 3898
1544
+ left: 223
1545
+ visible: true
1546
+ - height: 14
1547
+ width: 424
1548
+ id: ''
1549
+ tag: OPTION
1550
+ class: ''
1551
+ top: 3912
1552
+ left: 223
1553
+ visible: true
1554
+ - height: 14
1555
+ width: 424
1556
+ id: ''
1557
+ tag: OPTION
1558
+ class: ''
1559
+ top: 3926
1560
+ left: 223
1561
+ visible: true
1562
+ - height: 14
1563
+ width: 424
1564
+ id: ''
1565
+ tag: OPTION
1566
+ class: ''
1567
+ top: 3940
1568
+ left: 223
1569
+ visible: true
1570
+ - height: 14
1571
+ width: 424
1572
+ id: ''
1573
+ tag: OPTION
1574
+ class: ''
1575
+ top: 3954
1576
+ left: 223
1577
+ visible: true
1578
+ - height: 14
1579
+ width: 424
1580
+ id: ''
1581
+ tag: OPTION
1582
+ class: ''
1583
+ top: 3968
1584
+ left: 223
1585
+ visible: true
1586
+ - height: 14
1587
+ width: 424
1588
+ id: ''
1589
+ tag: OPTION
1590
+ class: ''
1591
+ top: 3982
1592
+ left: 223
1593
+ visible: true
1594
+ - height: 14
1595
+ width: 424
1596
+ id: ''
1597
+ tag: OPTION
1598
+ class: ''
1599
+ top: 3996
1600
+ left: 223
1601
+ visible: true
1602
+ - height: 14
1603
+ width: 424
1604
+ id: ''
1605
+ tag: OPTION
1606
+ class: ''
1607
+ top: 4010
1608
+ left: 223
1609
+ visible: true
1610
+ - height: 14
1611
+ width: 424
1612
+ id: ''
1613
+ tag: OPTION
1614
+ class: ''
1615
+ top: 4024
1616
+ left: 223
1617
+ visible: true
1618
+ - height: 14
1619
+ width: 424
1620
+ id: ''
1621
+ tag: OPTION
1622
+ class: ''
1623
+ top: 4038
1624
+ left: 223
1625
+ visible: true
1626
+ - height: 14
1627
+ width: 424
1628
+ id: ''
1629
+ tag: OPTION
1630
+ class: ''
1631
+ top: 4052
1632
+ left: 223
1633
+ visible: true
1634
+ - height: 14
1635
+ width: 424
1636
+ id: ''
1637
+ tag: OPTION
1638
+ class: ''
1639
+ top: 4066
1640
+ left: 223
1641
+ visible: true
1642
+ - height: 14
1643
+ width: 424
1644
+ id: ''
1645
+ tag: OPTION
1646
+ class: ''
1647
+ top: 4080
1648
+ left: 223
1649
+ visible: true
1650
+ - height: 14
1651
+ width: 424
1652
+ id: ''
1653
+ tag: OPTION
1654
+ class: ''
1655
+ top: 4094
1656
+ left: 223
1657
+ visible: true
1658
+ - height: 13
1659
+ width: 60
1660
+ id: ''
1661
+ tag: OPTION
1662
+ class: ''
1663
+ top: 4211
1664
+ left: 451
1665
+ visible: true
1666
+ - height: 14
1667
+ width: 60
1668
+ id: ''
1669
+ tag: OPTION
1670
+ class: ''
1671
+ top: 4224
1672
+ left: 451
1673
+ visible: true
1674
+ - height: 14
1675
+ width: 60
1676
+ id: ''
1677
+ tag: OPTION
1678
+ class: ''
1679
+ top: 4238
1680
+ left: 451
1681
+ visible: true
1682
+ - height: 14
1683
+ width: 60
1684
+ id: ''
1685
+ tag: OPTION
1686
+ class: ''
1687
+ top: 4252
1688
+ left: 451
1689
+ visible: true
1690
+ - height: 13
1691
+ width: 136
1692
+ id: ''
1693
+ tag: OPTION
1694
+ class: ''
1695
+ top: 4131
1696
+ left: 223
1697
+ visible: true
1698
+ - height: 14
1699
+ width: 136
1700
+ id: ''
1701
+ tag: OPTION
1702
+ class: ''
1703
+ top: 4144
1704
+ left: 223
1705
+ visible: true
1706
+ - height: 14
1707
+ width: 136
1708
+ id: ''
1709
+ tag: OPTION
1710
+ class: ''
1711
+ top: 4158
1712
+ left: 223
1713
+ visible: true
1714
+ - height: 14
1715
+ width: 136
1716
+ id: ''
1717
+ tag: OPTION
1718
+ class: ''
1719
+ top: 4172
1720
+ left: 223
1721
+ visible: true
1722
+ - height: 14
1723
+ width: 136
1724
+ id: ''
1725
+ tag: OPTION
1726
+ class: ''
1727
+ top: 4186
1728
+ left: 223
1729
+ visible: true
1730
+ - height: 14
1731
+ width: 136
1732
+ id: ''
1733
+ tag: OPTION
1734
+ class: ''
1735
+ top: 4200
1736
+ left: 223
1737
+ visible: true
1738
+ - height: 14
1739
+ width: 136
1740
+ id: ''
1741
+ tag: OPTION
1742
+ class: ''
1743
+ top: 4214
1744
+ left: 223
1745
+ visible: true
1746
+ - height: 14
1747
+ width: 136
1748
+ id: ''
1749
+ tag: OPTION
1750
+ class: ''
1751
+ top: 4228
1752
+ left: 223
1753
+ visible: true
1754
+ - height: 14
1755
+ width: 136
1756
+ id: ''
1757
+ tag: OPTION
1758
+ class: ''
1759
+ top: 4242
1760
+ left: 223
1761
+ visible: true
1762
+ - height: 14
1763
+ width: 136
1764
+ id: ''
1765
+ tag: OPTION
1766
+ class: ''
1767
+ top: 4256
1768
+ left: 223
1769
+ visible: true
1770
+ - height: 14
1771
+ width: 136
1772
+ id: ''
1773
+ tag: OPTION
1774
+ class: ''
1775
+ top: 4270
1776
+ left: 223
1777
+ visible: true
1778
+ - height: 14
1779
+ width: 136
1780
+ id: ''
1781
+ tag: OPTION
1782
+ class: ''
1783
+ top: 4284
1784
+ left: 223
1785
+ visible: true
1786
+ - height: 14
1787
+ width: 136
1788
+ id: ''
1789
+ tag: OPTION
1790
+ class: ''
1791
+ top: 4298
1792
+ left: 223
1793
+ visible: true
1794
+ - height: 13
1795
+ width: 121
1796
+ id: ''
1797
+ tag: OPTION
1798
+ class: ''
1799
+ top: 4032
1800
+ left: 375
1801
+ visible: true
1802
+ - height: 14
1803
+ width: 121
1804
+ id: ''
1805
+ tag: OPTION
1806
+ class: ''
1807
+ top: 4045
1808
+ left: 375
1809
+ visible: true
1810
+ - height: 14
1811
+ width: 121
1812
+ id: ''
1813
+ tag: OPTION
1814
+ class: ''
1815
+ top: 4059
1816
+ left: 375
1817
+ visible: true
1818
+ - height: 14
1819
+ width: 121
1820
+ id: ''
1821
+ tag: OPTION
1822
+ class: ''
1823
+ top: 4073
1824
+ left: 375
1825
+ visible: true
1826
+ - height: 14
1827
+ width: 121
1828
+ id: ''
1829
+ tag: OPTION
1830
+ class: ''
1831
+ top: 4087
1832
+ left: 375
1833
+ visible: true
1834
+ - height: 14
1835
+ width: 121
1836
+ id: ''
1837
+ tag: OPTION
1838
+ class: ''
1839
+ top: 4101
1840
+ left: 375
1841
+ visible: true
1842
+ - height: 14
1843
+ width: 121
1844
+ id: ''
1845
+ tag: OPTION
1846
+ class: ''
1847
+ top: 4115
1848
+ left: 375
1849
+ visible: true
1850
+ - height: 14
1851
+ width: 121
1852
+ id: ''
1853
+ tag: OPTION
1854
+ class: ''
1855
+ top: 4129
1856
+ left: 375
1857
+ visible: true
1858
+ - height: 14
1859
+ width: 121
1860
+ id: ''
1861
+ tag: OPTION
1862
+ class: ''
1863
+ top: 4143
1864
+ left: 375
1865
+ visible: true
1866
+ - height: 14
1867
+ width: 121
1868
+ id: ''
1869
+ tag: OPTION
1870
+ class: ''
1871
+ top: 4157
1872
+ left: 375
1873
+ visible: true
1874
+ - height: 14
1875
+ width: 121
1876
+ id: ''
1877
+ tag: OPTION
1878
+ class: ''
1879
+ top: 4171
1880
+ left: 375
1881
+ visible: true
1882
+ - height: 14
1883
+ width: 121
1884
+ id: ''
1885
+ tag: OPTION
1886
+ class: ''
1887
+ top: 4185
1888
+ left: 375
1889
+ visible: true
1890
+ - height: 14
1891
+ width: 121
1892
+ id: ''
1893
+ tag: OPTION
1894
+ class: ''
1895
+ top: 4199
1896
+ left: 375
1897
+ visible: true
1898
+ - height: 14
1899
+ width: 121
1900
+ id: ''
1901
+ tag: OPTION
1902
+ class: ''
1903
+ top: 4213
1904
+ left: 375
1905
+ visible: true
1906
+ - height: 14
1907
+ width: 121
1908
+ id: ''
1909
+ tag: OPTION
1910
+ class: ''
1911
+ top: 4227
1912
+ left: 375
1913
+ visible: true
1914
+ - height: 14
1915
+ width: 121
1916
+ id: ''
1917
+ tag: OPTION
1918
+ class: ''
1919
+ top: 4241
1920
+ left: 375
1921
+ visible: true
1922
+ - height: 14
1923
+ width: 121
1924
+ id: ''
1925
+ tag: OPTION
1926
+ class: ''
1927
+ top: 4255
1928
+ left: 375
1929
+ visible: true
1930
+ - height: 14
1931
+ width: 121
1932
+ id: ''
1933
+ tag: OPTION
1934
+ class: ''
1935
+ top: 4269
1936
+ left: 375
1937
+ visible: true
1938
+ - height: 14
1939
+ width: 121
1940
+ id: ''
1941
+ tag: OPTION
1942
+ class: ''
1943
+ top: 4283
1944
+ left: 375
1945
+ visible: true
1946
+ - height: 14
1947
+ width: 121
1948
+ id: ''
1949
+ tag: OPTION
1950
+ class: ''
1951
+ top: 4297
1952
+ left: 375
1953
+ visible: true
1954
+ - height: 14
1955
+ width: 121
1956
+ id: ''
1957
+ tag: OPTION
1958
+ class: ''
1959
+ top: 4311
1960
+ left: 375
1961
+ visible: true
1962
+ - height: 14
1963
+ width: 121
1964
+ id: ''
1965
+ tag: OPTION
1966
+ class: ''
1967
+ top: 4325
1968
+ left: 375
1969
+ visible: true
1970
+ - height: 14
1971
+ width: 121
1972
+ id: ''
1973
+ tag: OPTION
1974
+ class: ''
1975
+ top: 4339
1976
+ left: 375
1977
+ visible: true
1978
+ - height: 14
1979
+ width: 121
1980
+ id: ''
1981
+ tag: OPTION
1982
+ class: ''
1983
+ top: 4353
1984
+ left: 375
1985
+ visible: true
1986
+ - height: 14
1987
+ width: 121
1988
+ id: ''
1989
+ tag: OPTION
1990
+ class: ''
1991
+ top: 4367
1992
+ left: 375
1993
+ visible: true
1994
+ - height: 14
1995
+ width: 121
1996
+ id: ''
1997
+ tag: OPTION
1998
+ class: ''
1999
+ top: 4381
2000
+ left: 375
2001
+ visible: true
2002
+ - height: 14
2003
+ width: 121
2004
+ id: ''
2005
+ tag: OPTION
2006
+ class: ''
2007
+ top: 4395
2008
+ left: 375
2009
+ visible: true
2010
+ - height: 14
2011
+ width: 121
2012
+ id: ''
2013
+ tag: OPTION
2014
+ class: ''
2015
+ top: 4409
2016
+ left: 375
2017
+ visible: true
2018
+ - height: 14
2019
+ width: 121
2020
+ id: ''
2021
+ tag: OPTION
2022
+ class: ''
2023
+ top: 4423
2024
+ left: 375
2025
+ visible: true
2026
+ - height: 14
2027
+ width: 121
2028
+ id: ''
2029
+ tag: OPTION
2030
+ class: ''
2031
+ top: 4437
2032
+ left: 375
2033
+ visible: true
2034
+ - height: 14
2035
+ width: 121
2036
+ id: ''
2037
+ tag: OPTION
2038
+ class: ''
2039
+ top: 4451
2040
+ left: 375
2041
+ visible: true
2042
+ - height: 14
2043
+ width: 121
2044
+ id: ''
2045
+ tag: OPTION
2046
+ class: ''
2047
+ top: 4465
2048
+ left: 375
2049
+ visible: true
2050
+ - height: 13
2051
+ width: 136
2052
+ id: ''
2053
+ tag: OPTION
2054
+ class: ''
2055
+ top: 4145
2056
+ left: 526
2057
+ visible: true
2058
+ - height: 14
2059
+ width: 136
2060
+ id: ''
2061
+ tag: OPTION
2062
+ class: ''
2063
+ top: 4158
2064
+ left: 526
2065
+ visible: true
2066
+ - height: 14
2067
+ width: 136
2068
+ id: ''
2069
+ tag: OPTION
2070
+ class: ''
2071
+ top: 4172
2072
+ left: 526
2073
+ visible: true
2074
+ - height: 14
2075
+ width: 136
2076
+ id: ''
2077
+ tag: OPTION
2078
+ class: ''
2079
+ top: 4186
2080
+ left: 526
2081
+ visible: true
2082
+ - height: 14
2083
+ width: 136
2084
+ id: ''
2085
+ tag: OPTION
2086
+ class: ''
2087
+ top: 4200
2088
+ left: 526
2089
+ visible: true
2090
+ - height: 14
2091
+ width: 136
2092
+ id: ''
2093
+ tag: OPTION
2094
+ class: ''
2095
+ top: 4214
2096
+ left: 526
2097
+ visible: true
2098
+ - height: 14
2099
+ width: 136
2100
+ id: ''
2101
+ tag: OPTION
2102
+ class: ''
2103
+ top: 4228
2104
+ left: 526
2105
+ visible: true
2106
+ - height: 14
2107
+ width: 136
2108
+ id: ''
2109
+ tag: OPTION
2110
+ class: ''
2111
+ top: 4242
2112
+ left: 526
2113
+ visible: true
2114
+ - height: 14
2115
+ width: 136
2116
+ id: ''
2117
+ tag: OPTION
2118
+ class: ''
2119
+ top: 4256
2120
+ left: 526
2121
+ visible: true
2122
+ - height: 14
2123
+ width: 136
2124
+ id: ''
2125
+ tag: OPTION
2126
+ class: ''
2127
+ top: 4270
2128
+ left: 526
2129
+ visible: true
2130
+ - height: 14
2131
+ width: 136
2132
+ id: ''
2133
+ tag: OPTION
2134
+ class: ''
2135
+ top: 4284
2136
+ left: 526
2137
+ visible: true
2138
+ - height: 14
2139
+ width: 136
2140
+ id: ''
2141
+ tag: OPTION
2142
+ class: ''
2143
+ top: 4298
2144
+ left: 526
2145
+ visible: true