mumuki-laboratory 6.7.7 → 7.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -5
  3. data/app/assets/javascripts/mumuki_laboratory/application/timer.js +10 -5
  4. data/app/assets/stylesheets/mumuki_laboratory/application/_modules.scss +1 -0
  5. data/app/assets/stylesheets/mumuki_laboratory/application/modules/_datepicker.scss +10 -0
  6. data/app/controllers/api/organizations_controller.rb +1 -1
  7. data/app/controllers/application_controller.rb +4 -3
  8. data/app/controllers/concerns/organizations_controller_template.rb +3 -3
  9. data/app/controllers/concerns/with_authorization.rb +2 -2
  10. data/app/controllers/invitations_controller.rb +8 -4
  11. data/app/controllers/users_controller.rb +1 -1
  12. data/app/helpers/menu_bar_helper.rb +4 -1
  13. data/app/views/errors/gone.html.erb +1 -1
  14. data/app/views/invitations/_invitation_form.html.erb +23 -0
  15. data/app/views/invitations/show.html.erb +1 -39
  16. data/app/views/users/_profile_fields.html.erb +20 -0
  17. data/app/views/users/_user_form.html.erb +11 -0
  18. data/app/views/users/show.html.erb +1 -23
  19. data/config/routes.rb +1 -1
  20. data/lib/mumuki/laboratory/locales/en.yml +5 -0
  21. data/lib/mumuki/laboratory/locales/es.yml +5 -0
  22. data/lib/mumuki/laboratory/locales/pt.yml +5 -0
  23. data/lib/mumuki/laboratory/version.rb +1 -1
  24. data/spec/controllers/exercise_solutions_controller_spec.rb +1 -1
  25. data/spec/controllers/organizations_api_controller_spec.rb +6 -6
  26. data/spec/controllers/users_api_controller_spec.rb +6 -6
  27. data/spec/dummy/db/schema.rb +8 -1
  28. data/spec/dummy/db/seeds.rb +1 -0
  29. data/spec/dummy/public/error/403.svg +218 -0
  30. data/spec/dummy/public/error/404.svg +218 -0
  31. data/spec/dummy/public/error/410.svg +218 -0
  32. data/spec/dummy/public/error/500.svg +218 -0
  33. data/spec/dummy/public/error/timeout_1.svg +1 -0
  34. data/spec/dummy/public/error/timeout_2.svg +3 -0
  35. data/spec/dummy/public/error/timeout_3.svg +1 -0
  36. data/spec/features/login_flow_spec.rb +2 -0
  37. data/spec/features/not_found_private_flow_spec.rb +4 -4
  38. data/spec/features/not_found_public_flow_spec.rb +1 -1
  39. data/spec/features/profile_flow_spec.rb +11 -10
  40. data/spec/helpers/icons_helper_spec.rb +1 -1
  41. metadata +40 -15
  42. data/app/views/users/_users_form.html.erb +0 -0
  43. data/public/error/403.svg +0 -1
  44. data/public/error/404.svg +0 -1
  45. data/public/error/500.svg +0 -1
  46. data/public/error/timeout_1.svg +0 -1
  47. data/public/error/timeout_2.svg +0 -1
  48. data/public/error/timeout_3.svg +0 -1
@@ -1,5 +1,5 @@
1
1
  module Mumuki
2
2
  module Laboratory
3
- VERSION = '6.7.7'
3
+ VERSION = '7.0.0'
4
4
  end
5
5
  end
@@ -31,7 +31,7 @@ describe ExerciseSolutionsController, organization_workspace: :test do
31
31
  'a_file.css' => 'a css content',
32
32
  'a_file.js' => 'a js content'
33
33
  } } } }
34
- let(:files) { problem.assignment_for(user).files }
34
+ let(:files) { Assignment.last.files }
35
35
 
36
36
  it { expect(response.status).to eq 200 }
37
37
  it { expect(Assignment.last.solution).to eq("/*<a_file.css#*/a css content/*#a_file.css>*/\n/*<a_file.js#*/a js content/*#a_file.js>*/") }
@@ -110,8 +110,8 @@ describe Api::OrganizationsController, type: :controller, organization_workspace
110
110
  locale: 'es'}
111
111
  end
112
112
 
113
- context 'with the owner permissions' do
114
- let(:api_client) { create :api_client, role: :owner, grant: '*' }
113
+ context 'with the admin permissions' do
114
+ let(:api_client) { create :api_client, role: :admin, grant: '*' }
115
115
  let(:organization) { Organization.find_by name: 'a-name' }
116
116
 
117
117
  it { check_status! 200 }
@@ -174,8 +174,8 @@ describe Api::OrganizationsController, type: :controller, organization_workspace
174
174
  end
175
175
  end
176
176
 
177
- context 'with owner permissions' do
178
- let(:api_client) { create :api_client, role: :owner, grant: '*' }
177
+ context 'with admin permissions' do
178
+ let(:api_client) { create :api_client, role: :admin, grant: '*' }
179
179
 
180
180
  it { check_status! 200 }
181
181
  end
@@ -200,8 +200,8 @@ describe Api::OrganizationsController, type: :controller, organization_workspace
200
200
  let(:updated_organizaton) { organization.reload }
201
201
  let(:update_json) { {contact_email: 'second_email@gmail.com', immersive: true, locale: 'en'} }
202
202
 
203
- context 'with the owner permissions' do
204
- let(:api_client) { create :api_client, role: :owner, grant: 'existing-organization/*' }
203
+ context 'with the admin permissions' do
204
+ let(:api_client) { create :api_client, role: :admin, grant: 'existing-organization/*' }
205
205
  before { put :update, params: {id: organization.name, organization: update_json} }
206
206
 
207
207
  it { check_status! 200 }
@@ -12,12 +12,12 @@ describe Api::UsersController, type: :controller, organization_workspace: :base
12
12
  }
13
13
  end
14
14
 
15
- let(:owner_json) do
15
+ let(:admin_json) do
16
16
  {
17
17
  first_name: 'foo',
18
18
  last_name: 'bar',
19
19
  email: 'foo@bar.com',
20
- permissions: {owner: '*'}
20
+ permissions: {admin: '*'}
21
21
  }
22
22
  end
23
23
 
@@ -39,15 +39,15 @@ describe Api::UsersController, type: :controller, organization_workspace: :base
39
39
 
40
40
 
41
41
  context 'post that tries to escalate permissions' do
42
- before { post :create, params: {user: owner_json} }
42
+ before { post :create, params: {user: admin_json} }
43
43
 
44
44
  it { expect(response.status).to eq 403 }
45
- it { expect(response.body).to json_eq errors: ['The operation on organization base was forbidden to user foo+1@bar.com with permissions !janitor:test/*;owner:'] }
45
+ it { expect(response.body).to json_eq errors: ['The operation on organization base was forbidden to user foo+1@bar.com with permissions !janitor:test/*;admin:;owner:'] }
46
46
  end
47
47
 
48
48
  context 'post on a user with high permissions that does not operate on them' do
49
- let!(:user) { User.create! owner_json }
50
- before { put :update, params: {id: 'foo@bar.com', user: owner_json} }
49
+ let!(:user) { User.create! admin_json }
50
+ before { put :update, params: {id: 'foo@bar.com', user: admin_json} }
51
51
 
52
52
  it { expect(response.status).to eq 200 }
53
53
  end
@@ -10,7 +10,7 @@
10
10
  #
11
11
  # It's strongly recommended that you check this file into your version control system.
12
12
 
13
- ActiveRecord::Schema.define(version: 20190404181724) do
13
+ ActiveRecord::Schema.define(version: 20190702182407) do
14
14
 
15
15
  # These are extensions that must be enabled in order to support this database
16
16
  enable_extension "plpgsql"
@@ -41,7 +41,9 @@ ActiveRecord::Schema.define(version: 20190404181724) do
41
41
  t.text "query_results"
42
42
  t.text "manual_evaluation_comment"
43
43
  t.integer "attemps_count", default: 0
44
+ t.bigint "organization_id"
44
45
  t.index ["exercise_id"], name: "index_assignments_on_exercise_id"
46
+ t.index ["organization_id"], name: "index_assignments_on_organization_id"
45
47
  t.index ["submission_id"], name: "index_assignments_on_submission_id"
46
48
  t.index ["submitter_id"], name: "index_assignments_on_submitter_id"
47
49
  end
@@ -232,6 +234,9 @@ ActiveRecord::Schema.define(version: 20190404181724) do
232
234
  t.string "test_extension"
233
235
  t.text "test_template"
234
236
  t.boolean "feedback"
237
+ t.boolean "multifile", default: false
238
+ t.boolean "layout_shows_loading_content"
239
+ t.boolean "editor_shows_loading_content"
235
240
  t.index ["name"], name: "index_languages_on_name", unique: true
236
241
  end
237
242
 
@@ -332,6 +337,8 @@ ActiveRecord::Schema.define(version: 20190404181724) do
332
337
  t.string "last_name"
333
338
  t.boolean "accepts_reminders", default: true
334
339
  t.datetime "last_reminded_date"
340
+ t.date "birthdate"
341
+ t.integer "gender"
335
342
  t.index ["last_organization_id"], name: "index_users_on_last_organization_id"
336
343
  t.index ["uid"], name: "index_users_on_uid", unique: true
337
344
  end
@@ -20,4 +20,5 @@ Organization.find_or_create_by!(name: 'central')
20
20
 
21
21
  User.find_or_create_by!(uid: 'dev.student@mumuki.org') { |org| org.permissions = {student: 'central/*'} }
22
22
  User.find_or_create_by!(uid: 'dev.teacher@mumuki.org') { |org| org.permissions = {teacher: 'private/*'} }
23
+ User.find_or_create_by!(uid: 'dev.admin@mumuki.org') { |org| org.permissions = {admin: '*/*'} }
23
24
  User.find_or_create_by!(uid: 'dev.owner@mumuki.org') { |org| org.permissions = {owner: '*/*'} }
@@ -0,0 +1,218 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ width="1325.991px" height="345.997px" viewBox="0 0 1325.991 345.997" enable-background="new 0 0 1325.991 345.997"
6
+ xml:space="preserve">
7
+ <g id="Layer_1">
8
+ <g id="engranaje_fondo">
9
+ <g id="Layer_3_1_">
10
+ </g>
11
+ </g>
12
+ <g>
13
+ <g>
14
+ <g>
15
+
16
+ <path fill="#A6A8AB" stroke="#A6A8AB" stroke-width="0.611" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
17
+ M555.922,79.735c-3.999,0-3.999-6.201,0-6.201S559.921,79.735,555.922,79.735L555.922,79.735z"/>
18
+ </g>
19
+ </g>
20
+ <g>
21
+ <g>
22
+
23
+ <path fill="#A6A8AB" stroke="#A6A8AB" stroke-width="0.611" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
24
+ M551.923,127.326c-5.28,0-5.28-8.188,0-8.188S557.204,127.326,551.923,127.326L551.923,127.326z"/>
25
+ </g>
26
+ </g>
27
+ <g>
28
+
29
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#A6A8AB" stroke-width="5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
30
+ M594.327,102.365c-7.61,0-13.779-7.875-13.779-17.587"/>
31
+
32
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#A6A8AB" stroke-width="5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
33
+ M566.58,102.365c7.609,0,13.779-7.875,13.779-17.587"/>
34
+
35
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#A6A8AB" stroke-width="5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
36
+ M594.327,102.607c-7.61,0-13.779,7.873-13.779,17.587"/>
37
+
38
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#A6A8AB" stroke-width="5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
39
+ M566.58,102.607c7.609,0,13.779,7.873,13.779,17.587"/>
40
+ </g>
41
+ <g>
42
+
43
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#A6A8AB" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
44
+ M541.1,142.51c-3.729,0-6.752-3.858-6.752-8.617"/>
45
+
46
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#A6A8AB" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
47
+ M527.504,142.51c3.729,0,6.751-3.858,6.751-8.617"/>
48
+
49
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#A6A8AB" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
50
+ M541.1,142.628c-3.729,0-6.752,3.858-6.752,8.618"/>
51
+
52
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#A6A8AB" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
53
+ M527.504,142.628c3.729,0,6.751,3.858,6.751,8.618"/>
54
+ </g>
55
+ <g>
56
+
57
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#A6A8AB" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
58
+ M535.115,76.575c-3.729,0-7.727-7.759-7.727-12.518"/>
59
+
60
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#A6A8AB" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
61
+ M519.569,76.575c3.729,0,7.727-7.759,7.727-12.518"/>
62
+
63
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#A6A8AB" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
64
+ M535.115,76.694c-3.729,0-7.727,6.783-7.727,11.543"/>
65
+
66
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#A6A8AB" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
67
+ M519.569,76.694c3.729,0,7.727,6.783,7.727,11.543"/>
68
+ </g>
69
+ <g>
70
+ <g>
71
+
72
+ <path fill="#A6A8AB" stroke="#A6A8AB" stroke-width="0.611" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
73
+ M511.007,110.03c-3.999,0-3.999-6.201,0-6.201S515.006,110.03,511.007,110.03L511.007,110.03z"/>
74
+ </g>
75
+ </g>
76
+ </g>
77
+ </g>
78
+ <g id="Layer_5" display="none">
79
+ <g display="inline">
80
+ <g>
81
+
82
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#A6A8AB" stroke="#A6A8AB" stroke-width="2.3401" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
83
+ M655.333,238.322l7.915,1.326v8.437l-7.915,1.375c-0.168,0.832-0.379,1.643-0.632,2.433l6.177,5.104l-4.249,7.283l-7.552-2.781
84
+ c-0.285,0.296-0.563,0.579-0.838,0.854c-0.295,0.295-0.59,0.579-0.884,0.853l2.812,7.567l-7.299,4.219l-5.118-6.146
85
+ c-0.791,0.231-1.586,0.432-2.386,0.601l-1.392,7.914h-8.436l-1.327-7.914c-0.832-0.169-1.632-0.369-2.401-0.601l-5.134,6.177
86
+ l-7.314-4.219l2.812-7.63c-0.295-0.274-0.59-0.548-0.885-0.821c-0.295-0.296-0.569-0.579-0.821-0.854l-7.615,2.781l-4.218-7.316
87
+ l6.208-5.102c-0.263-0.79-0.479-1.59-0.647-2.401l-7.946-1.375v-8.437l7.946-1.326c0.169-0.813,0.374-1.606,0.616-2.386
88
+ l-6.177-5.149l4.218-7.284l7.583,2.813c0.274-0.315,0.559-0.621,0.854-0.917c0.295-0.295,0.59-0.568,0.885-0.82l-2.812-7.6
89
+ l7.314-4.219l5.134,6.178c0.77-0.253,1.569-0.464,2.401-0.632l1.327-7.947h8.436l1.392,7.947c0.8,0.168,1.595,0.379,2.386,0.632
90
+ l5.086-6.178l7.314,4.25l-2.795,7.536c0.294,0.273,0.589,0.558,0.884,0.853c0.295,0.296,0.579,0.59,0.854,0.885l7.567-2.812
91
+ l4.218,7.315l-6.146,5.133C654.965,236.689,655.165,237.49,655.333,238.322z M645.949,227.642
92
+ c-4.466-4.477-9.874-6.715-16.225-6.715c-6.331,0-11.739,2.238-16.226,6.715c-4.466,4.486-6.698,9.895-6.698,16.225
93
+ c0,6.341,2.232,11.749,6.698,16.225c4.486,4.487,9.895,6.73,16.226,6.73c6.351,0,11.759-2.243,16.225-6.73
94
+ c4.486-4.476,6.729-9.884,6.729-16.225C652.679,237.537,650.436,232.128,645.949,227.642z"/>
95
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#A6A8AB" d="M637.565,236.087c2.149,2.148,3.223,4.742,3.223,7.783
96
+ c0,3.045-1.073,5.639-3.223,7.781c-2.154,2.162-4.755,3.242-7.801,3.242c-3.033,0-5.627-1.08-7.782-3.242
97
+ c-2.143-2.143-3.213-4.736-3.213-7.781c0-3.041,1.07-5.635,3.213-7.783c2.155-2.154,4.749-3.232,7.782-3.232
98
+ C632.811,232.855,635.411,233.933,637.565,236.087z"/>
99
+ </g>
100
+ <g>
101
+
102
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#A6A8AB" stroke="#A6A8AB" stroke-width="1.3887" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
103
+ M610.272,199.481l4.356,1.925l-1.237,4.851l-4.753-0.371c-0.219,0.454-0.459,0.89-0.721,1.307l2.803,3.841l-3.513,3.564
104
+ l-3.934-2.707c-0.207,0.128-0.409,0.249-0.607,0.366c-0.212,0.126-0.424,0.247-0.634,0.362l0.506,4.764l-4.814,1.354
105
+ l-2.042-4.284c-0.488,0.017-0.976,0.015-1.46-0.006l-1.962,4.348l-4.85-1.238l0.398-4.745c-0.454-0.221-0.884-0.452-1.293-0.698
106
+ l-3.858,2.798l-3.587-3.5l2.736-3.974c-0.13-0.201-0.259-0.402-0.388-0.603c-0.127-0.213-0.242-0.416-0.348-0.61l-4.787,0.48
107
+ l-1.351-4.825l4.317-2.022c-0.035-0.493-0.041-0.985-0.02-1.477l-4.367-1.957l1.238-4.851l4.765,0.404
108
+ c0.216-0.442,0.45-0.869,0.704-1.282l-2.797-3.867l3.494-3.569l3.948,2.73c0.204-0.142,0.413-0.275,0.626-0.402
109
+ c0.213-0.126,0.423-0.24,0.629-0.342l-0.501-4.783l4.825-1.352l2.045,4.307c0.479-0.033,0.971-0.037,1.474-0.012l1.929-4.374
110
+ l4.852,1.238l-0.367,4.773c0.435,0.214,0.861,0.452,1.279,0.713l3.832-2.805l3.582,3.517l-2.714,3.923
111
+ c0.129,0.201,0.256,0.407,0.383,0.62c0.126,0.213,0.247,0.425,0.361,0.634l4.764-0.506l1.352,4.825l-4.286,2.049
112
+ C610.301,198.489,610.299,198.978,610.272,199.481z M606.445,191.963c-1.911-3.229-4.692-5.31-8.344-6.242
113
+ c-3.641-0.929-7.079-0.437-10.316,1.479c-3.226,1.924-5.303,4.706-6.232,8.346c-0.931,3.646-0.439,7.084,1.471,10.313
114
+ c1.921,3.239,4.701,5.322,8.342,6.251c3.652,0.934,7.091,0.437,10.316-1.488c3.237-1.914,5.32-4.694,6.251-8.341
115
+ C608.862,198.64,608.366,195.203,606.445,191.963z"/>
116
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#A6A8AB" d="M601.51,194.923c1.104,1.859,1.388,3.838,0.852,5.936
117
+ c-0.536,2.103-1.734,3.703-3.593,4.803c-1.868,1.112-3.851,1.4-5.954,0.863c-2.093-0.535-3.692-1.736-4.799-3.607
118
+ c-1.101-1.855-1.383-3.834-0.847-5.937c0.536-2.097,1.731-3.698,3.588-4.802c1.866-1.108,3.846-1.396,5.938-0.861
119
+ C598.799,191.855,600.401,193.056,601.51,194.923z"/>
120
+ </g>
121
+ <path fill="#A6A8AB" d="M694.957,133.524c-3.908-1.097-7.747-1.731-11.41-1.884c-0.906-0.037-1.758,0.418-2.231,1.188
122
+ c-0.473,0.771-0.492,1.736-0.051,2.526l14.887,26.563l-25.582,14.337l-14.886-26.563c-0.436-0.776-1.251-1.262-2.141-1.275
123
+ c-0.888-0.015-1.718,0.447-2.176,1.209c-2.007,3.337-3.586,7.023-4.693,10.96c-2.893,10.269-1.649,20.312,3.696,29.851
124
+ c5.353,9.552,13.227,15.757,23.305,18.417c6,1.848,12.007,2.194,17.892,1.041l35.374,63.123c1.783,3.181,4.436,5.285,8.027,6.293
125
+ c3.297,0.722,6.454,0.254,9.384-1.388c3.129-1.754,5.276-4.259,6.379-7.447c0.031-0.092,0.059-0.187,0.08-0.281
126
+ c0.723-3.296,0.201-6.554-1.554-9.683l-35.331-63.046c3.974-4.351,6.695-9.613,8.1-15.674c3.194-10.172,2.105-20.162-3.238-29.696
127
+ C713.435,142.542,705.404,136.291,694.957,133.524z"/>
128
+ </g>
129
+ </g>
130
+ <g id="Layer_7" display="none">
131
+ <g display="inline">
132
+ <g>
133
+ <path fill="#A6A8AB" d="M706.212,277.694c2.68,4.953,0.837,11.141-4.115,13.82c-4.954,2.68-11.142,0.837-13.821-4.116
134
+ l-28.621-52.899l17.937-9.705L706.212,277.694z"/>
135
+ </g>
136
+
137
+ <circle fill="none" stroke="#A6A8AB" stroke-width="10.6625" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="646.258" cy="188.309" r="47"/>
138
+
139
+ <path fill="none" stroke="#A6A8AB" stroke-width="4.3216" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
140
+ M616.621,189.936c-0.602-11.103,5.089-22.085,15.516-27.727"/>
141
+
142
+ <path fill="none" stroke="#A6A8AB" stroke-width="4.3216" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
143
+ M621.122,204.374c-0.884-1.635-1.599-3.315-2.151-5.022"/>
144
+
145
+ <line fill="none" stroke="#FFFFFF" stroke-width="6" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="664.657" y1="253.987" x2="690.124" y2="240.208"/>
146
+ </g>
147
+ </g>
148
+ <g id="Layer_6">
149
+ <g>
150
+
151
+ <path fill="none" stroke="#A6A8AB" stroke-width="10.6625" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
152
+ M604.552,209.232v-29.266c0-16.813,13.63-30.442,30.442-30.442c16.814,0,30.443,13.629,30.443,30.442v29.266H604.552z"/>
153
+ <g>
154
+ <path fill="#A6A8AB" d="M677.823,202.399h-85.654c-1.657,0-3,1.343-3,3v36.37c0,25.27,20.558,45.827,45.827,45.827
155
+ s45.827-20.558,45.827-45.827v-36.37C680.823,203.742,679.479,202.399,677.823,202.399z M643.341,258.185
156
+ c0.068,0.165,0.05,0.354-0.05,0.503c-0.1,0.148-0.267,0.237-0.445,0.237h-15.702c-0.179,0-0.346-0.089-0.445-0.237
157
+ c-0.099-0.149-0.118-0.338-0.049-0.503l4.062-9.832c-2.988-1.584-4.894-4.711-4.894-8.104c0-5.06,4.117-9.177,9.177-9.177
158
+ c5.062,0,9.178,4.117,9.178,9.177c0,3.393-1.904,6.521-4.895,8.104L643.341,258.185z"/>
159
+ </g>
160
+ </g>
161
+ </g>
162
+ <g id="Layer_9" display="none">
163
+ <g display="inline">
164
+ <g>
165
+
166
+ <path fill="none" stroke="#A6A8AB" stroke-width="7.2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
167
+ M583.38,189.593c0-28.384,23.01-51.392,51.392-51.392c28.384,0,51.394,23.008,51.394,51.392v101.121H583.38V189.593z"/>
168
+ </g>
169
+
170
+ <path fill="none" stroke="#A6A8AB" stroke-width="7.2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
171
+ M623.794,113.14c0-6.065,4.916-10.981,10.98-10.981s10.98,4.916,10.98,10.981c0,6.064-4.916,10.98-10.98,10.98"/>
172
+
173
+ <path fill="none" stroke="#A6A8AB" stroke-width="7.2805" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
174
+ M628.322,138.603c24.552,3.957,43.329,25.688,43.329,51.905v99.305"/>
175
+
176
+ <line fill="none" stroke="#A6A8AB" stroke-width="7.4511" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="684.783" y1="182.459" x2="584.763" y2="182.459"/>
177
+
178
+ <path fill="none" stroke="#A6A8AB" stroke-width="7.4511" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
179
+ M634.775,143.173c11.521,10.094,18.876,25.439,18.875,42.625v104.015"/>
180
+
181
+ <rect x="537.901" y="206.466" fill="none" stroke="#A6A8AB" stroke-width="7.3537" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" width="45.479" height="64.606"/>
182
+
183
+ <path fill="none" stroke="#A6A8AB" stroke-width="7.2805" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
184
+ M640.861,138.559c-24.687,3.838-43.604,25.633-43.604,51.948v99.305"/>
185
+
186
+ <path fill="none" stroke="#A6A8AB" stroke-width="7.4511" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
187
+ M639.368,139.145c-14.482,9.733-24.112,26.989-24.111,46.653v104.015"/>
188
+
189
+ <path fill="none" stroke="#A6A8AB" stroke-width="8.479" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
190
+ M634.773,125.121v164.692"/>
191
+
192
+ <rect x="583.38" y="206.374" fill="#FFFFFF" stroke="#A6A8AB" stroke-width="7.8172" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" width="51.393" height="64.606"/>
193
+
194
+ <line fill="none" stroke="#A6A8AB" stroke-width="7.2805" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="551.257" y1="206.467" x2="551.257" y2="271.072"/>
195
+
196
+ <line fill="none" stroke="#A6A8AB" stroke-width="7.4511" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="569.257" y1="206.466" x2="569.257" y2="271.072"/>
197
+ <path fill="#A6A8AB" d="M566.026,296.158c0,4.664,3.78,8.444,8.444,8.444h120.608c4.664,0,8.444-3.78,8.444-8.444l0,0
198
+ c0-4.663-3.78-8.443-8.444-8.443H574.471C569.806,287.714,566.026,291.495,566.026,296.158L566.026,296.158z"/>
199
+
200
+ <line fill="none" stroke="#A6A8AB" stroke-width="7.4511" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="684.783" y1="206.459" x2="584.763" y2="206.459"/>
201
+
202
+ <line fill="none" stroke="#A6A8AB" stroke-width="7.4511" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="684.783" y1="271.459" x2="584.763" y2="271.459"/>
203
+
204
+ <line fill="none" stroke="#A6A8AB" stroke-width="6.7623" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="520.546" y1="191.323" x2="506.693" y2="185.294"/>
205
+
206
+ <line fill="none" stroke="#A6A8AB" stroke-width="6.7623" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="520.546" y1="280.3" x2="506.693" y2="286.329"/>
207
+
208
+ <line fill="none" stroke="#A6A8AB" stroke-width="6.7623" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="511.694" y1="238.208" x2="496.4" y2="238.208"/>
209
+ <g>
210
+ <g>
211
+
212
+ <path fill="#A6A8AB" stroke="#A6A8AB" stroke-width="0.611" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
213
+ M534.255,242.77c-5.28,0-5.28-8.188,0-8.188S539.536,242.77,534.255,242.77L534.255,242.77z"/>
214
+ </g>
215
+ </g>
216
+ </g>
217
+ </g>
218
+ </svg>
@@ -0,0 +1,218 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ width="1325.991px" height="345.997px" viewBox="0 0 1325.991 345.997" enable-background="new 0 0 1325.991 345.997"
6
+ xml:space="preserve">
7
+ <g id="Layer_1">
8
+ <g id="engranaje_fondo">
9
+ <g id="Layer_3_1_">
10
+ </g>
11
+ </g>
12
+ <g>
13
+ <g>
14
+ <g>
15
+
16
+ <path fill="#A6A8AB" stroke="#A6A8AB" stroke-width="0.611" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
17
+ M555.922,79.735c-3.999,0-3.999-6.201,0-6.201S559.921,79.735,555.922,79.735L555.922,79.735z"/>
18
+ </g>
19
+ </g>
20
+ <g>
21
+ <g>
22
+
23
+ <path fill="#A6A8AB" stroke="#A6A8AB" stroke-width="0.611" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
24
+ M551.923,127.326c-5.28,0-5.28-8.188,0-8.188S557.204,127.326,551.923,127.326L551.923,127.326z"/>
25
+ </g>
26
+ </g>
27
+ <g>
28
+
29
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#A6A8AB" stroke-width="5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
30
+ M594.327,102.365c-7.61,0-13.779-7.875-13.779-17.587"/>
31
+
32
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#A6A8AB" stroke-width="5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
33
+ M566.58,102.365c7.609,0,13.779-7.875,13.779-17.587"/>
34
+
35
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#A6A8AB" stroke-width="5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
36
+ M594.327,102.607c-7.61,0-13.779,7.873-13.779,17.587"/>
37
+
38
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#A6A8AB" stroke-width="5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
39
+ M566.58,102.607c7.609,0,13.779,7.873,13.779,17.587"/>
40
+ </g>
41
+ <g>
42
+
43
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#A6A8AB" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
44
+ M541.1,142.51c-3.729,0-6.752-3.858-6.752-8.617"/>
45
+
46
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#A6A8AB" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
47
+ M527.504,142.51c3.729,0,6.751-3.858,6.751-8.617"/>
48
+
49
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#A6A8AB" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
50
+ M541.1,142.628c-3.729,0-6.752,3.858-6.752,8.618"/>
51
+
52
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#A6A8AB" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
53
+ M527.504,142.628c3.729,0,6.751,3.858,6.751,8.618"/>
54
+ </g>
55
+ <g>
56
+
57
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#A6A8AB" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
58
+ M535.115,76.575c-3.729,0-7.727-7.759-7.727-12.518"/>
59
+
60
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#A6A8AB" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
61
+ M519.569,76.575c3.729,0,7.727-7.759,7.727-12.518"/>
62
+
63
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#A6A8AB" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
64
+ M535.115,76.694c-3.729,0-7.727,6.783-7.727,11.543"/>
65
+
66
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="none" stroke="#A6A8AB" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
67
+ M519.569,76.694c3.729,0,7.727,6.783,7.727,11.543"/>
68
+ </g>
69
+ <g>
70
+ <g>
71
+
72
+ <path fill="#A6A8AB" stroke="#A6A8AB" stroke-width="0.611" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
73
+ M511.007,110.03c-3.999,0-3.999-6.201,0-6.201S515.006,110.03,511.007,110.03L511.007,110.03z"/>
74
+ </g>
75
+ </g>
76
+ </g>
77
+ </g>
78
+ <g id="Layer_5" display="none">
79
+ <g display="inline">
80
+ <g>
81
+
82
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#A6A8AB" stroke="#A6A8AB" stroke-width="2.3401" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
83
+ M642.333,238.322l7.915,1.326v8.437l-7.915,1.375c-0.168,0.832-0.379,1.643-0.632,2.433l6.177,5.104l-4.249,7.283l-7.552-2.781
84
+ c-0.285,0.296-0.563,0.579-0.838,0.854c-0.295,0.295-0.59,0.579-0.884,0.853l2.812,7.567l-7.299,4.219l-5.118-6.146
85
+ c-0.791,0.231-1.586,0.432-2.386,0.601l-1.392,7.914h-8.436l-1.327-7.914c-0.832-0.169-1.632-0.369-2.401-0.601l-5.134,6.177
86
+ l-7.314-4.219l2.812-7.63c-0.295-0.274-0.59-0.548-0.885-0.821c-0.295-0.296-0.569-0.579-0.821-0.854l-7.615,2.781l-4.218-7.316
87
+ l6.208-5.102c-0.263-0.79-0.479-1.59-0.647-2.401l-7.946-1.375v-8.437l7.946-1.326c0.169-0.813,0.374-1.606,0.616-2.386
88
+ l-6.177-5.149l4.218-7.284l7.583,2.813c0.274-0.315,0.559-0.621,0.854-0.917c0.295-0.295,0.59-0.568,0.885-0.82l-2.812-7.6
89
+ l7.314-4.219l5.134,6.178c0.77-0.253,1.569-0.464,2.401-0.632l1.327-7.947h8.436l1.392,7.947c0.8,0.168,1.595,0.379,2.386,0.632
90
+ l5.086-6.178l7.314,4.25l-2.795,7.536c0.294,0.273,0.589,0.558,0.884,0.853c0.295,0.296,0.579,0.59,0.854,0.885l7.567-2.812
91
+ l4.218,7.315l-6.146,5.133C641.965,236.689,642.165,237.49,642.333,238.322z M632.949,227.642
92
+ c-4.466-4.477-9.874-6.715-16.225-6.715c-6.331,0-11.739,2.238-16.226,6.715c-4.466,4.486-6.698,9.895-6.698,16.225
93
+ c0,6.341,2.232,11.749,6.698,16.225c4.486,4.487,9.895,6.73,16.226,6.73c6.351,0,11.759-2.243,16.225-6.73
94
+ c4.486-4.476,6.729-9.884,6.729-16.225C639.679,237.537,637.436,232.128,632.949,227.642z"/>
95
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#A6A8AB" d="M624.565,236.087c2.149,2.148,3.223,4.742,3.223,7.783
96
+ c0,3.045-1.073,5.639-3.223,7.781c-2.154,2.162-4.755,3.242-7.801,3.242c-3.033,0-5.627-1.08-7.782-3.242
97
+ c-2.143-2.143-3.213-4.736-3.213-7.781c0-3.041,1.07-5.635,3.213-7.783c2.155-2.154,4.749-3.232,7.782-3.232
98
+ C619.811,232.855,622.411,233.933,624.565,236.087z"/>
99
+ </g>
100
+ <g>
101
+
102
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#A6A8AB" stroke="#A6A8AB" stroke-width="1.3887" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
103
+ M597.272,199.481l4.356,1.925l-1.237,4.851l-4.753-0.371c-0.219,0.454-0.459,0.89-0.721,1.307l2.803,3.841l-3.513,3.564
104
+ l-3.934-2.707c-0.207,0.128-0.409,0.249-0.607,0.366c-0.212,0.126-0.424,0.247-0.634,0.362l0.506,4.764l-4.814,1.354
105
+ l-2.042-4.284c-0.488,0.017-0.976,0.015-1.46-0.006l-1.962,4.348l-4.85-1.238l0.398-4.745c-0.454-0.221-0.884-0.452-1.293-0.698
106
+ l-3.858,2.798l-3.587-3.5l2.736-3.974c-0.13-0.201-0.259-0.402-0.388-0.603c-0.127-0.213-0.242-0.416-0.348-0.61l-4.787,0.48
107
+ l-1.351-4.825l4.317-2.022c-0.035-0.493-0.041-0.985-0.02-1.477l-4.367-1.957l1.238-4.851l4.765,0.404
108
+ c0.216-0.442,0.45-0.869,0.704-1.282l-2.797-3.867l3.494-3.569l3.948,2.73c0.204-0.142,0.413-0.275,0.626-0.402
109
+ c0.213-0.126,0.423-0.24,0.629-0.342l-0.501-4.783l4.825-1.352l2.045,4.307c0.479-0.033,0.971-0.037,1.474-0.012l1.929-4.374
110
+ l4.852,1.238l-0.367,4.773c0.435,0.214,0.861,0.452,1.279,0.713l3.832-2.805l3.582,3.517l-2.714,3.923
111
+ c0.129,0.201,0.256,0.407,0.383,0.62c0.126,0.213,0.247,0.425,0.361,0.634l4.764-0.506l1.352,4.825l-4.286,2.049
112
+ C597.301,198.489,597.299,198.978,597.272,199.481z M593.445,191.963c-1.911-3.229-4.692-5.31-8.344-6.242
113
+ c-3.641-0.929-7.079-0.437-10.316,1.479c-3.226,1.924-5.303,4.706-6.232,8.346c-0.931,3.646-0.439,7.084,1.471,10.313
114
+ c1.921,3.239,4.701,5.322,8.342,6.251c3.652,0.934,7.091,0.437,10.316-1.488c3.237-1.914,5.32-4.694,6.251-8.341
115
+ C595.862,198.64,595.366,195.203,593.445,191.963z"/>
116
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#A6A8AB" d="M588.51,194.923c1.104,1.859,1.388,3.838,0.852,5.936
117
+ c-0.536,2.103-1.734,3.703-3.593,4.803c-1.868,1.112-3.851,1.4-5.954,0.863c-2.093-0.535-3.692-1.736-4.799-3.607
118
+ c-1.101-1.855-1.383-3.834-0.847-5.937c0.536-2.097,1.731-3.698,3.588-4.802c1.866-1.108,3.846-1.396,5.938-0.861
119
+ C585.799,191.855,587.401,193.056,588.51,194.923z"/>
120
+ </g>
121
+ <path fill="#A6A8AB" d="M681.957,133.524c-3.908-1.097-7.747-1.731-11.41-1.884c-0.906-0.037-1.758,0.418-2.231,1.188
122
+ c-0.473,0.771-0.492,1.736-0.051,2.526l14.887,26.563l-25.582,14.337l-14.886-26.563c-0.436-0.776-1.251-1.262-2.141-1.275
123
+ c-0.888-0.015-1.718,0.447-2.176,1.209c-2.007,3.337-3.586,7.023-4.693,10.96c-2.893,10.269-1.649,20.312,3.696,29.851
124
+ c5.353,9.552,13.227,15.757,23.305,18.417c6,1.848,12.007,2.194,17.892,1.041l35.374,63.123c1.783,3.181,4.436,5.285,8.027,6.293
125
+ c3.297,0.722,6.454,0.254,9.384-1.388c3.129-1.754,5.276-4.259,6.379-7.447c0.031-0.092,0.059-0.187,0.08-0.281
126
+ c0.723-3.296,0.201-6.554-1.554-9.683l-35.331-63.046c3.974-4.351,6.695-9.613,8.1-15.674c3.194-10.172,2.105-20.162-3.238-29.696
127
+ C700.435,142.542,692.404,136.291,681.957,133.524z"/>
128
+ </g>
129
+ </g>
130
+ <g id="Layer_7">
131
+ <g>
132
+ <g>
133
+ <path fill="#A6A8AB" d="M706.212,277.694c2.68,4.953,0.837,11.141-4.115,13.82c-4.954,2.68-11.142,0.837-13.821-4.116
134
+ l-28.621-52.899l17.937-9.705L706.212,277.694z"/>
135
+ </g>
136
+
137
+ <circle fill="none" stroke="#A6A8AB" stroke-width="10.6625" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="646.258" cy="188.309" r="47"/>
138
+
139
+ <path fill="none" stroke="#A6A8AB" stroke-width="4.3216" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
140
+ M616.621,189.936c-0.602-11.103,5.089-22.085,15.516-27.727"/>
141
+
142
+ <path fill="none" stroke="#A6A8AB" stroke-width="4.3216" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
143
+ M621.122,204.374c-0.884-1.635-1.599-3.315-2.151-5.022"/>
144
+
145
+ <line fill="none" stroke="#FFFFFF" stroke-width="6" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="664.657" y1="253.987" x2="690.124" y2="240.208"/>
146
+ </g>
147
+ </g>
148
+ <g id="Layer_6" display="none">
149
+ <g display="inline">
150
+
151
+ <path fill="none" stroke="#A6A8AB" stroke-width="10.6625" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
152
+ M604.552,209.232v-29.266c0-16.813,13.63-30.442,30.442-30.442c16.814,0,30.443,13.629,30.443,30.442v29.266H604.552z"/>
153
+ <g>
154
+ <path fill="#A6A8AB" d="M677.823,202.399h-85.654c-1.657,0-3,1.343-3,3v36.37c0,25.27,20.558,45.827,45.827,45.827
155
+ s45.827-20.558,45.827-45.827v-36.37C680.823,203.742,679.479,202.399,677.823,202.399z M643.341,258.185
156
+ c0.068,0.165,0.05,0.354-0.05,0.503c-0.1,0.148-0.267,0.237-0.445,0.237h-15.702c-0.179,0-0.346-0.089-0.445-0.237
157
+ c-0.099-0.149-0.118-0.338-0.049-0.503l4.062-9.832c-2.988-1.584-4.894-4.711-4.894-8.104c0-5.06,4.117-9.177,9.177-9.177
158
+ c5.062,0,9.178,4.117,9.178,9.177c0,3.393-1.904,6.521-4.895,8.104L643.341,258.185z"/>
159
+ </g>
160
+ </g>
161
+ </g>
162
+ <g id="Layer_9" display="none">
163
+ <g display="inline">
164
+ <g>
165
+
166
+ <path fill="none" stroke="#A6A8AB" stroke-width="7.2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
167
+ M583.38,189.593c0-28.384,23.01-51.392,51.392-51.392c28.384,0,51.394,23.008,51.394,51.392v101.121H583.38V189.593z"/>
168
+ </g>
169
+
170
+ <path fill="none" stroke="#A6A8AB" stroke-width="7.2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
171
+ M623.794,113.14c0-6.065,4.916-10.981,10.98-10.981s10.98,4.916,10.98,10.981c0,6.064-4.916,10.98-10.98,10.98"/>
172
+
173
+ <path fill="none" stroke="#A6A8AB" stroke-width="7.2805" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
174
+ M628.322,138.603c24.552,3.957,43.329,25.688,43.329,51.905v99.305"/>
175
+
176
+ <line fill="none" stroke="#A6A8AB" stroke-width="7.4511" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="684.783" y1="182.459" x2="584.763" y2="182.459"/>
177
+
178
+ <path fill="none" stroke="#A6A8AB" stroke-width="7.4511" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
179
+ M634.775,143.173c11.521,10.094,18.876,25.439,18.875,42.625v104.015"/>
180
+
181
+ <rect x="537.901" y="206.466" fill="none" stroke="#A6A8AB" stroke-width="7.3537" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" width="45.479" height="64.606"/>
182
+
183
+ <path fill="none" stroke="#A6A8AB" stroke-width="7.2805" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
184
+ M640.861,138.559c-24.687,3.838-43.604,25.633-43.604,51.948v99.305"/>
185
+
186
+ <path fill="none" stroke="#A6A8AB" stroke-width="7.4511" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
187
+ M639.368,139.145c-14.482,9.733-24.112,26.989-24.111,46.653v104.015"/>
188
+
189
+ <path fill="none" stroke="#A6A8AB" stroke-width="8.479" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
190
+ M634.773,125.121v164.692"/>
191
+
192
+ <rect x="583.38" y="206.374" fill="#FFFFFF" stroke="#A6A8AB" stroke-width="7.8172" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" width="51.393" height="64.606"/>
193
+
194
+ <line fill="none" stroke="#A6A8AB" stroke-width="7.2805" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="551.257" y1="206.467" x2="551.257" y2="271.072"/>
195
+
196
+ <line fill="none" stroke="#A6A8AB" stroke-width="7.4511" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="569.257" y1="206.466" x2="569.257" y2="271.072"/>
197
+ <path fill="#A6A8AB" d="M566.026,296.158c0,4.664,3.78,8.444,8.444,8.444h120.608c4.664,0,8.444-3.78,8.444-8.444l0,0
198
+ c0-4.663-3.78-8.443-8.444-8.443H574.471C569.806,287.714,566.026,291.495,566.026,296.158L566.026,296.158z"/>
199
+
200
+ <line fill="none" stroke="#A6A8AB" stroke-width="7.4511" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="684.783" y1="206.459" x2="584.763" y2="206.459"/>
201
+
202
+ <line fill="none" stroke="#A6A8AB" stroke-width="7.4511" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="684.783" y1="271.459" x2="584.763" y2="271.459"/>
203
+
204
+ <line fill="none" stroke="#A6A8AB" stroke-width="6.7623" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="520.546" y1="191.323" x2="506.693" y2="185.294"/>
205
+
206
+ <line fill="none" stroke="#A6A8AB" stroke-width="6.7623" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="520.546" y1="280.3" x2="506.693" y2="286.329"/>
207
+
208
+ <line fill="none" stroke="#A6A8AB" stroke-width="6.7623" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="511.694" y1="238.208" x2="496.4" y2="238.208"/>
209
+ <g>
210
+ <g>
211
+
212
+ <path fill="#A6A8AB" stroke="#A6A8AB" stroke-width="0.611" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
213
+ M534.255,242.77c-5.28,0-5.28-8.188,0-8.188S539.536,242.77,534.255,242.77L534.255,242.77z"/>
214
+ </g>
215
+ </g>
216
+ </g>
217
+ </g>
218
+ </svg>