decidim-proposals 0.14.4 → 0.15.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -0
  3. data/app/assets/images/decidim/gamification/badges/accepted_proposals.svg +194 -104
  4. data/app/assets/images/decidim/gamification/badges/proposals.svg +192 -108
  5. data/app/assets/javascripts/decidim/proposals/admin/proposals.es6 +25 -20
  6. data/app/cells/decidim/proposals/proposal_activity_cell.rb +19 -0
  7. data/app/commands/decidim/proposals/admin/answer_proposal.rb +6 -2
  8. data/app/commands/decidim/proposals/admin/create_proposal.rb +4 -4
  9. data/app/commands/decidim/proposals/admin/import_participatory_text.rb +49 -0
  10. data/app/commands/decidim/proposals/admin/import_proposals.rb +7 -21
  11. data/app/commands/decidim/proposals/admin/merge_proposals.rb +68 -0
  12. data/app/commands/decidim/proposals/admin/publish_participatory_text.rb +65 -0
  13. data/app/commands/decidim/proposals/admin/split_proposals.rb +67 -0
  14. data/app/commands/decidim/proposals/admin/update_proposal.rb +67 -0
  15. data/app/commands/decidim/proposals/create_collaborative_draft.rb +19 -14
  16. data/app/commands/decidim/proposals/create_proposal.rb +4 -2
  17. data/app/commands/decidim/proposals/endorse_proposal.rb +5 -1
  18. data/app/commands/decidim/proposals/publish_proposal.rb +15 -3
  19. data/app/commands/decidim/proposals/unvote_proposal.rb +34 -3
  20. data/app/commands/decidim/proposals/vote_proposal.rb +32 -2
  21. data/app/controllers/decidim/proposals/admin/participatory_texts_controller.rb +62 -0
  22. data/app/controllers/decidim/proposals/admin/proposals_controller.rb +28 -1
  23. data/app/controllers/decidim/proposals/admin/proposals_merges_controller.rb +27 -0
  24. data/app/controllers/decidim/proposals/admin/proposals_splits_controller.rb +27 -0
  25. data/app/controllers/decidim/proposals/collaborative_drafts_controller.rb +0 -1
  26. data/app/controllers/decidim/proposals/proposal_endorsements_controller.rb +6 -2
  27. data/app/controllers/decidim/proposals/proposal_votes_controller.rb +15 -0
  28. data/app/controllers/decidim/proposals/proposals_controller.rb +1 -1
  29. data/app/forms/decidim/proposals/admin/import_participatory_text_form.rb +28 -0
  30. data/app/forms/decidim/proposals/admin/preview_participatory_text_form.rb +21 -0
  31. data/app/forms/decidim/proposals/admin/proposal_form.rb +4 -1
  32. data/app/forms/decidim/proposals/admin/proposals_fork_form.rb +57 -0
  33. data/app/forms/decidim/proposals/admin/proposals_merge_form.rb +13 -0
  34. data/app/forms/decidim/proposals/admin/proposals_split_form.rb +12 -0
  35. data/app/helpers/decidim/proposals/application_helper.rb +23 -0
  36. data/app/helpers/decidim/proposals/map_helper.rb +1 -1
  37. data/app/helpers/decidim/proposals/participatory_texts_helper.rb +18 -0
  38. data/app/helpers/decidim/proposals/proposal_endorsements_helper.rb +1 -1
  39. data/app/helpers/decidim/proposals/proposal_wizard_helper.rb +2 -1
  40. data/app/jobs/decidim/proposals/notify_proposals_mentioned_job.rb +3 -4
  41. data/app/models/decidim/proposals/participatory_text.rb +13 -0
  42. data/app/models/decidim/proposals/proposal.rb +31 -9
  43. data/app/models/decidim/proposals/proposal_vote.rb +21 -1
  44. data/app/permissions/decidim/proposals/admin/permissions.rb +30 -0
  45. data/app/presenters/decidim/proposals/admin_log/proposal_presenter.rb +5 -1
  46. data/app/presenters/decidim/proposals/log/resource_presenter.rb +18 -0
  47. data/app/presenters/decidim/proposals/official_author_presenter.rb +4 -0
  48. data/app/queries/decidim/proposals/metrics/accepted_proposals_metric_manage.rb +29 -0
  49. data/app/queries/decidim/proposals/metrics/proposals_metric_manage.rb +53 -0
  50. data/app/queries/decidim/proposals/metrics/votes_metric_manage.rb +57 -0
  51. data/app/services/decidim/proposals/proposal_builder.rb +72 -0
  52. data/app/services/decidim/proposals/proposal_search.rb +2 -2
  53. data/app/views/decidim/proposals/admin/participatory_texts/_article-preview.html.erb +13 -0
  54. data/app/views/decidim/proposals/admin/participatory_texts/_bulk-actions.html.erb +1 -0
  55. data/app/views/decidim/proposals/admin/participatory_texts/index.html.erb +43 -0
  56. data/app/views/decidim/proposals/admin/participatory_texts/new_import.html.erb +39 -0
  57. data/app/views/decidim/proposals/admin/proposals/_bulk-actions.html.erb +7 -2
  58. data/app/views/decidim/proposals/admin/proposals/_proposal-tr.html.erb +4 -0
  59. data/app/views/decidim/proposals/admin/proposals/bulk_actions/_dropdown.html.erb +36 -0
  60. data/app/views/decidim/proposals/admin/proposals/bulk_actions/_merge.html.erb +15 -0
  61. data/app/views/decidim/proposals/admin/proposals/bulk_actions/_recategorize.html.erb +15 -0
  62. data/app/views/decidim/proposals/admin/proposals/bulk_actions/_split.html.erb +15 -0
  63. data/app/views/decidim/proposals/admin/proposals/edit.html.erb +7 -0
  64. data/app/views/decidim/proposals/admin/proposals/index.html.erb +2 -2
  65. data/app/views/decidim/proposals/collaborative_drafts/compare.html.erb +2 -2
  66. data/app/views/decidim/proposals/collaborative_drafts/complete.html.erb +1 -1
  67. data/app/views/decidim/proposals/collaborative_drafts/show.html.erb +1 -1
  68. data/app/views/decidim/proposals/proposal_endorsements/_identity.html.erb +5 -1
  69. data/app/views/decidim/proposals/proposal_endorsements/update_buttons_and_counters.js.erb +1 -1
  70. data/app/views/decidim/proposals/proposal_votes/update_buttons_and_counters.js.erb +13 -4
  71. data/app/views/decidim/proposals/proposals/_edit_form_fields.html.erb +2 -2
  72. data/app/views/decidim/proposals/proposals/_endorsement_identities_cabin.html.erb +1 -1
  73. data/app/views/decidim/proposals/proposals/_proposal_similar.html.erb +1 -1
  74. data/app/views/decidim/proposals/proposals/_voting_rules.html.erb +15 -4
  75. data/app/views/decidim/proposals/proposals/new.html.erb +1 -1
  76. data/config/locales/ca.yml +72 -4
  77. data/config/locales/de.yml +71 -3
  78. data/config/locales/en.yml +71 -3
  79. data/config/locales/es-PY.yml +71 -3
  80. data/config/locales/es.yml +73 -5
  81. data/config/locales/eu.yml +71 -3
  82. data/config/locales/fi.yml +81 -13
  83. data/config/locales/fr.yml +71 -3
  84. data/config/locales/gl.yml +71 -3
  85. data/config/locales/hu.yml +71 -3
  86. data/config/locales/it.yml +71 -3
  87. data/config/locales/nl.yml +71 -3
  88. data/config/locales/pl.yml +71 -3
  89. data/config/locales/pt-BR.yml +72 -4
  90. data/config/locales/pt.yml +71 -3
  91. data/config/locales/sv.yml +71 -3
  92. data/db/migrate/20180927111721_create_participatory_texts.rb +13 -0
  93. data/db/migrate/20180930125321_add_participatory_text_level_to_proposals.rb +7 -0
  94. data/db/migrate/20180930125321_add_position_to_proposals.rb +7 -0
  95. data/db/migrate/20181003074440_fix_user_groups_ids_in_proposals_endorsements.rb +16 -0
  96. data/db/migrate/20181010114622_add_temporary_votes.rb +9 -0
  97. data/db/migrate/20181016132225_add_organization_as_author.rb +13 -0
  98. data/db/migrate/20181017084221_make_author_polymorhpic_for_proposal_endorsements.rb +31 -0
  99. data/lib/decidim/content_parsers/proposal_parser.rb +9 -3
  100. data/lib/decidim/proposals.rb +3 -1
  101. data/lib/decidim/proposals/admin_engine.rb +12 -1
  102. data/lib/decidim/proposals/component.rb +60 -23
  103. data/lib/decidim/proposals/engine.rb +55 -12
  104. data/lib/decidim/proposals/markdown_to_proposals.rb +90 -0
  105. data/lib/decidim/proposals/participatory_text_section.rb +21 -0
  106. data/lib/decidim/proposals/test/factories.rb +35 -7
  107. data/lib/decidim/proposals/version.rb +1 -1
  108. metadata +86 -19
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7360e9de9d6fde846146d64ec7d7d1d5966e0d464e221864f644ea20f9dfeb13
4
- data.tar.gz: da9645ec9a1ec51cd42a3ef6c114753689978ab0d02a4d6d90f82df1d1192f07
3
+ metadata.gz: ca3286b937408192f948f9268fc616eb97de47dfeb9773116aba58bf15c67650
4
+ data.tar.gz: 5d693705cda337ca0931cf58efd294136e2e436e7bb19f91b8ec59f7634a3fd5
5
5
  SHA512:
6
- metadata.gz: c9979b4b7e9aec9a3cbf966427a04e13796d55e56ba541e3a1107afbc2b8adad3f4277b3e8639262587bc95e1f7db5b39db03710e7e38ed8aa81b7a7926ad95d
7
- data.tar.gz: '0082f2c108a86483220caf6174bf34e2255babebea2c7b85e833c7e6773c70d7ecf98a53b99f7992fb2c67191219f4aa6a01f644ee35a3dad7276800477c59b9'
6
+ metadata.gz: 34a76f8d9768ab6bd4b8f4f0eafc58bd0208a13750c0aff9583936d53dbf15e5c4ed3f2c4b50ff5e352719cbd38a63e8561069c5983459506b8fdc284e14fa89
7
+ data.tar.gz: 83f71e58793154f33bf3ecc5bee1cc76d50c9b9bd4af8d325dacec70932badf8bd76de9be8b5ca56b31e4ca86740a287fd24ba178c17dc861523d5355f3ea666
data/README.md CHANGED
@@ -37,6 +37,12 @@ end
37
37
 
38
38
  `similarity_limit`: number of maximum results.
39
39
 
40
+ ## Global Search
41
+
42
+ This module includes the following models to Decidim's Global Search:
43
+
44
+ - `Proposals`
45
+
40
46
  ## Contributing
41
47
 
42
48
  See [Decidim](https://github.com/decidim/decidim).
@@ -1,144 +1,234 @@
1
- <svg version="1.1" id="accepted-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
2
- y="0px" width="1080px" height="1080px" viewBox="0 0 1080 1080" enable-background="new 0 0 1080 1080" xml:space="preserve">
3
- <g id="accepted" class="stroke-primary">
4
- <g id="sleeve_1_">
5
-
6
- <rect class="fill-primary" id="_x32_5-pct_3_" x="383.5" y="795.5" fill="#31536E" fill-opacity="0.25" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" width="251" height="286"/>
7
- <rect class="fill-primary" x="383.5" y="908.5" fill="#31536E" width="251" height="173"/>
8
- <circle fill="#FFFFFF" stroke="#31536E" stroke-width="8" stroke-miterlimit="10" cx="579.667" cy="861.668" r="22.5"/>
9
- <circle class="fill-primary" fill="#31536E" cx="579.5" cy="861.5" r="13"/>
10
- </g>
11
- <g>
12
- <g id="hand_1_">
13
-
14
- <path fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
15
- M592.395,671.5c61.525-25.129,97.612-56.398,133.562-112.237c0,0,4.314-90.19,0-110.727
16
- c-19.493,1.786-56.957-21.036-86.993,83.572c-23.964,5.392-52.964,26.559-90,32.964"/>
17
-
18
- <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="418.5" y1="795.5" x2="418.5" y2="677.5"/>
19
-
20
- <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="604.5" y1="669.5" x2="604.5" y2="795.5"/>
21
-
22
- <path fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
23
- M572.321,554.571c0,0-87.773-39.071-88.75-93.644c16.07-10.714,63.07-69,73.596-83.286c10.524,7.143,57.627,28.263,60.368,31.786
24
- c12.192,15.667,61.25,56.072,98.75,28.394c-4.465-19.644-24.821-52.679-28.394-60.714c-3.571-8.035-11.606-22.536-23.214-29.679
25
- c-11.606-7.143-60-40.857-85.179-53.357s-49.821-3.571-56.071,0c-6.25,3.571-99.822,65-129.929,96.25
26
- C363.392,421.571,352.5,447.5,352.5,447.5s-2.401,136.587,64.531,226.439"/>
27
-
28
- <path class="fill-primary" id="_x32_5-pct_4_" fill="#31536E" fill-opacity="0.25" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
29
- M370.5,418.321c18.5-44.644,59.535-181.464,63.107-193.964c3.571-12.5,30-20,62.143-24.464
30
- c32.143-4.464,94.286-17.429,108.75-19.214c14.464-1.785,25.179,5.358,43.929,16.072s47.286,23.214,79.446,35.714
31
- c-5.34,48.214-30.339,55.876-41.946,55.17c-11.606-0.706-42.68,4.008-88.215-29.027c0,0-24.464,2.964-87.714,19.036
32
- l-3.909,27.584"/>
33
-
34
- <path class="fill-primary" id="_x35_0-pct_3_" fill="#31536E" fill-opacity="0.5" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
35
- M484.548,201.858c29.06-40.358,88.881-109.572,101.381-122.072c19.644,15.178,47.357,46.428,5.571,100.893"/>
36
-
37
- <path fill="#FFFFFF" fill-opacity="0.5" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
38
- M722.875,236.465l-46.55-19.335c-2.54,8.62-13.532,24.692,0,27.37s43.572,8.656,43.572,8.656L722.875,236.465z"/>
39
- <path fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
40
- M707.199,451.459c0,0-9.086,51.541,0,53.326s20.505,0,20.505,0"/>
41
-
42
- <path fill="#FFFFFF" fill-opacity="0.5" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
43
- M586.929,84.786l-26.049,30.076c9.979,9.209,16.312,10.862,20.787,4c3.773-5.786,3.806-6.09,17.079-21.401L586.929,84.786z"/>
44
- </g>
45
- </g>
46
-
47
- <line fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="602.5" y1="861.5" x2="612.5" y2="861.5"/>
48
-
49
- <line fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="544.5" y1="861.5" x2="557.5" y2="861.5"/>
50
- <path fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
51
- M522.011,422.676c1.989,14.646,6.312,40.896,1.848,41.788c6.25,9.822,27.142,45.127,24.643,73.036"/>
52
-
53
- <path class="fill-primary" id="_x35_0-pct" fill="#31536E" fill-opacity="0.5" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
54
- M522.011,422.676c1.989,14.646,6.312,40.896,1.848,41.788c6.25,9.822,27.142,45.127,24.643,73.036l-45.705-31.921l-19.225-44.651
55
- L522.011,422.676z"/>
56
-
57
- <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="525.678" y1="273.6" x2="523.429" y2="294.071"/>
58
- <path fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
59
- M695.802,395.398c-10.302,6.279-11.944,16.53-11.052,20.102s16.611,27.103,16.611,27.103"/>
1
+ <svg version="1.1" id="accepted-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="1080px" height="1080px" viewBox="0 0 1080 1080" enable-background="new 0 0 1080 1080" xml:space="preserve">
2
+ <g id="accepted" class="stroke-primary">
3
+ <g id="sleeve_1_">
4
+
5
+ <rect class="fill-primary" id="_x32_5-pct_3_" x="404.5" y="775.5" fill="#31536E" fill-opacity="0.25" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" width="215" height="286"/>
6
+
7
+ <rect class="fill-primary" x="404.5" y="875.5" fill="#31536E" stroke="#31536E" stroke-width="16" stroke-linejoin="round" stroke-miterlimit="10" width="215" height="208"/>
60
8
 
61
- <line fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="638.964" y1="532.108" x2="656.295" y2="550.628"/>
9
+ <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="431.5" y1="775.5" x2="431.5" y2="853.5"/>
62
10
 
63
- <line fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="557.167" y1="377.642" x2="557.167" y2="351.599"/>
11
+ <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="463.5" y1="775.5" x2="463.5" y2="853.5"/>
64
12
 
65
- <line fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="597.714" y1="252.608" x2="604.5" y2="231.143"/>
13
+ <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="495.5" y1="775.5" x2="495.5" y2="853.5"/>
66
14
 
67
- <line fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="483.571" y1="460.928" x2="455.093" y2="461.459"/>
15
+ <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="527.5" y1="775.5" x2="527.5" y2="853.5"/>
68
16
 
69
- <line fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="510" y1="277.644" x2="495.591" y2="264.603"/>
70
- <g id="stars_3" class="stars">
17
+ <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="559.5" y1="775.5" x2="559.5" y2="853.5"/>
71
18
 
72
- <path fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
19
+ <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="591.5" y1="775.5" x2="591.5" y2="853.5"/>
20
+ </g>
21
+ <g>
22
+ <g id="hand_1_">
23
+ <polygon
24
+ class="fill-primary"
25
+ opacity="0.1"
26
+ fill="#31536E"
27
+ points="423.5,770.5 601.107,770.5 601.107,667.825 658.61,634.993 696.29,599.501
28
+ 725.957,559.263 725.957,448.536 696.29,447.586 669.706,465.309 638.964,527.5 566.675,560.819 510,516.5 480.5,460.928
29
+ 557.167,370.5 619.5,404.5 647.629,438.5 684.541,447.184 716.285,430.5 675.5,351.599 569.5,283.836 527.5,287.634 441.5,341.5
30
+ 366.931,422.676 352.489,461.459 361.5,559.543 413.81,669.5 421.5,698.5 "/>
31
+ <path fill="#FFFFFF" d="M727.875,451.459h-20.676c0,0-9.086,51.541,0,53.326s20.505,0,20.505,0"/>
32
+ <path fill="#FFFFFF" d="M695.802,395.398c-10.302,6.279-11.942,16.53-11.052,20.102s16.611,27.104,16.611,27.104l14.924-4.782
33
+ L695.802,395.398z"/>
34
+
35
+ <path
36
+ fill="none"
37
+ stroke="#31536E"
38
+ stroke-width="16"
39
+ stroke-linecap="round"
40
+ stroke-linejoin="round"
41
+ stroke-miterlimit="10"
42
+ d="
43
+ M592.395,671.5c61.525-25.129,97.612-56.398,133.562-112.237c0,0,4.314-90.188,0-110.727
44
+ c-19.493,1.786-56.957-21.036-86.993,83.572c-23.964,5.392-52.964,26.559-90,32.964"/>
45
+
46
+ <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="418.5" y1="775.5" x2="418.5" y2="677.5"/>
47
+
48
+ <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="604.5" y1="669.5" x2="604.5" y2="775.5"/>
49
+
50
+ <path
51
+ fill="none"
52
+ stroke="#31536E"
53
+ stroke-width="16"
54
+ stroke-linecap="round"
55
+ stroke-linejoin="round"
56
+ stroke-miterlimit="10"
57
+ d="
58
+ M572.321,554.571c0,0-87.773-39.071-88.75-93.646c16.068-10.714,63.068-69,73.596-83.286
59
+ c10.524,7.143,57.627,28.263,60.368,31.786c12.19,15.667,61.25,56.072,98.75,28.396c-4.465-19.646-24.821-52.679-28.396-60.714
60
+ c-3.569-8.035-11.604-22.536-23.214-29.679c-11.604-7.143-60-40.857-85.179-53.357s-49.821-3.571-56.071,0
61
+ c-6.25,3.571-99.82,65-129.929,96.25C363.392,421.571,352.5,447.5,352.5,447.5s-2.401,136.587,64.531,226.439"/>
62
+
63
+ <path
64
+ class="fill-primary"
65
+ id="_x32_5-pct_4_"
66
+ fill="#31536E"
67
+ fill-opacity="0.25"
68
+ stroke="#31536E"
69
+ stroke-width="16"
70
+ stroke-linecap="round"
71
+ stroke-linejoin="round"
72
+ stroke-miterlimit="10"
73
+ d="
74
+ M370.5,418.321c18.5-44.646,59.535-181.464,63.107-193.964c3.569-12.5,30-20,62.143-24.464s94.286-17.429,108.75-19.214
75
+ c14.464-1.785,25.179,5.358,43.929,16.072s47.286,23.214,79.446,35.714c-5.34,48.214-30.339,55.876-41.946,55.17
76
+ c-11.604-0.706-42.68,4.008-88.215-29.027c0,0-24.464,2.964-87.714,19.036l-3.909,27.584"/>
77
+
78
+ <path
79
+ class="fill-primary"
80
+ id="_x35_0-pct_3_"
81
+ fill="#31536E"
82
+ fill-opacity="0.5"
83
+ stroke="#31536E"
84
+ stroke-width="16"
85
+ stroke-linecap="round"
86
+ stroke-linejoin="round"
87
+ stroke-miterlimit="10"
88
+ d="
89
+ M484.548,201.858C513.608,161.5,573.429,92.286,585.929,79.786c19.646,15.178,47.357,46.428,5.571,100.893"/>
90
+
91
+ <path
92
+ fill="#FFFFFF"
93
+ fill-opacity="0.5"
94
+ stroke="#31536E"
95
+ stroke-width="8"
96
+ stroke-linecap="round"
97
+ stroke-linejoin="round"
98
+ stroke-miterlimit="10"
99
+ d="
100
+ M722.875,236.465l-46.55-19.335c-2.54,8.62-13.532,24.692,0,27.37s43.572,8.656,43.572,8.656L722.875,236.465z"/>
101
+ <path fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
102
+ M707.199,451.459c0,0-9.086,51.541,0,53.326s20.505,0,20.505,0"/>
103
+
104
+ <path
105
+ fill="#FFFFFF"
106
+ fill-opacity="0.5"
107
+ stroke="#31536E"
108
+ stroke-width="8"
109
+ stroke-linecap="round"
110
+ stroke-linejoin="round"
111
+ stroke-miterlimit="10"
112
+ d="
113
+ M586.929,84.786l-26.049,30.076c9.979,9.209,16.312,10.862,20.787,4c3.773-5.786,3.806-6.09,17.079-21.401L586.929,84.786z"/>
114
+ </g>
115
+ </g>
116
+ <path fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
117
+ M522.011,422.676c1.989,14.646,6.312,40.896,1.85,41.788c6.25,9.822,27.142,45.127,24.643,73.036"/>
118
+
119
+ <path
120
+ class="fill-primary"
121
+ id="_x35_0-pct"
122
+ fill="#31536E"
123
+ fill-opacity="0.5"
124
+ stroke="#31536E"
125
+ stroke-width="16"
126
+ stroke-linecap="round"
127
+ stroke-linejoin="round"
128
+ stroke-miterlimit="10"
129
+ d="
130
+ M522.011,422.676c1.989,14.646,6.312,40.896,1.85,41.788c6.25,9.822,27.142,45.127,24.643,73.036l-45.705-31.921l-19.225-44.651
131
+ L522.011,422.676z"/>
132
+
133
+ <line opacity="0.1" fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="525.678" y1="273.6" x2="523.429" y2="294.071"/>
134
+ <path fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
135
+ M695.802,395.398c-10.302,6.279-11.942,16.53-11.052,20.102s16.611,27.104,16.611,27.104"/>
136
+
137
+ <line fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="638.964" y1="532.108" x2="656.295" y2="550.628"/>
138
+
139
+ <line fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="557.167" y1="377.642" x2="557.167" y2="351.599"/>
140
+
141
+ <line fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="597.714" y1="252.608" x2="604.5" y2="231.143"/>
142
+
143
+ <line fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="483.571" y1="460.928" x2="455.093" y2="461.459"/>
144
+
145
+ <line fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-miterlimit="10" x1="510" y1="277.644" x2="495.591" y2="264.603"/>
146
+ <g id="stars_3" class="stars">
147
+
148
+ <path
149
+ fill="#FFD92B"
150
+ stroke="#31536E"
151
+ stroke-width="4"
152
+ stroke-linecap="round"
153
+ stroke-linejoin="round"
154
+ stroke-miterlimit="10"
155
+ d="
73
156
  M178.645,872.483c0-14.688-18.667-35.354-35.355-35.354c15.355-0.001,35.355-20.334,35.355-35.356
74
157
  c0,15.022,16.667,35.355,35.355,35.355C194.978,837.129,178.645,857.796,178.645,872.483z"/>
75
- <g>
158
+ <g>
76
159
 
77
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="267.833" cy="219.444" r="13.5"/>
160
+ <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="267.833" cy="219.444" r="13.5"/>
78
161
 
79
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="268" y1="195.944" x2="268" y2="165.944"/>
162
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="268" y1="195.944" x2="268" y2="165.944"/>
80
163
 
81
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="268" y1="243.944" x2="268" y2="273.944"/>
164
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="268" y1="243.944" x2="268" y2="273.944"/>
82
165
 
83
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="291" y1="219.944" x2="321" y2="219.944"/>
166
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="291" y1="219.944" x2="321" y2="219.944"/>
84
167
 
85
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="244" y1="219.944" x2="214" y2="219.944"/>
86
- </g>
87
- <g>
168
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="244" y1="219.944" x2="214" y2="219.944"/>
169
+ </g>
170
+ <g>
88
171
 
89
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="878.875" y1="649.072" x2="852.713" y2="675.234"/>
172
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="878.875" y1="649.072" x2="852.713" y2="675.234"/>
90
173
 
91
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="843.521" y1="684.429" x2="817.357" y2="710.592"/>
174
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="843.521" y1="684.429" x2="817.357" y2="710.592"/>
92
175
 
93
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="878.168" y1="710.592" x2="852.005" y2="684.429"/>
176
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="878.168" y1="710.592" x2="852.005" y2="684.429"/>
94
177
 
95
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="842.813" y1="675.234" x2="816.65" y2="649.072"/>
96
- </g>
178
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="842.813" y1="675.234" x2="816.65" y2="649.072"/>
179
+ </g>
97
180
 
98
- <path fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
181
+ <path
182
+ fill="#FFD92B"
183
+ stroke="#31536E"
184
+ stroke-width="4"
185
+ stroke-linecap="round"
186
+ stroke-linejoin="round"
187
+ stroke-miterlimit="10"
188
+ d="
99
189
  M488.591,88.553c0,0-24.603,4.604-30.249,10.249c-5.646,5.646-10.249,30.249-10.249,30.249s-4.603-24.603-10.249-30.249
100
190
  c-5.646-5.646-30.249-10.249-30.249-10.249s25.188-5.187,30.249-10.249c5.062-5.062,10.249-30.249,10.249-30.249
101
191
  s4.604,24.603,10.249,30.249C463.988,83.95,488.591,88.553,488.591,88.553z"/>
102
- <g>
192
+ <g>
103
193
 
104
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="814.929" cy="165.944" r="18.5"/>
194
+ <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="814.929" cy="165.944" r="18.5"/>
105
195
 
106
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="774.929" cy="165.944" r="7.166"/>
196
+ <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="774.929" cy="165.944" r="7.166"/>
107
197
 
108
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="814.929" cy="205.944" r="7.166"/>
198
+ <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="814.929" cy="205.944" r="7.166"/>
109
199
 
110
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="854.929" cy="165.944" r="7.166"/>
200
+ <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="854.929" cy="165.944" r="7.166"/>
111
201
 
112
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="814.929" cy="125.944" r="7.166"/>
113
- </g>
114
- <g>
202
+ <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="814.929" cy="125.944" r="7.166"/>
203
+ </g>
204
+ <g>
115
205
 
116
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="133.832" y1="444.075" x2="188.735" y2="498.98"/>
206
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="133.832" y1="444.075" x2="188.735" y2="498.98"/>
117
207
 
118
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="188.735" y1="444.075" x2="133.832" y2="498.98"/>
208
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="188.735" y1="444.075" x2="133.832" y2="498.98"/>
119
209
 
120
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="143.086" y1="471.103" x2="116.086" y2="471.103"/>
210
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="143.086" y1="471.103" x2="116.086" y2="471.103"/>
121
211
 
122
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="181.086" y1="471.103" x2="208.086" y2="471.103"/>
212
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="181.086" y1="471.103" x2="208.086" y2="471.103"/>
123
213
 
124
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="162.086" y1="490.103" x2="162.086" y2="517.103"/>
214
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="162.086" y1="490.103" x2="162.086" y2="517.103"/>
125
215
 
126
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="162.086" y1="452.103" x2="162.086" y2="425.103"/>
127
- </g>
128
- <g>
216
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="162.086" y1="452.103" x2="162.086" y2="425.103"/>
217
+ </g>
218
+ <g>
129
219
 
130
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="912.5" y1="845.944" x2="912.5" y2="924.944"/>
220
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="912.5" y1="845.944" x2="912.5" y2="924.944"/>
131
221
 
132
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="951.5" y1="885.944" x2="872.5" y2="885.944"/>
222
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="951.5" y1="885.944" x2="872.5" y2="885.944"/>
133
223
 
134
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="892.5" cy="905.444" r="7.039"/>
224
+ <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="892.5" cy="905.444" r="7.039"/>
135
225
 
136
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="892.5" cy="865.444" r="7.039"/>
226
+ <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="892.5" cy="865.444" r="7.039"/>
137
227
 
138
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="932.5" cy="905.444" r="7.039"/>
228
+ <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="932.5" cy="905.444" r="7.039"/>
139
229
 
140
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="932.5" cy="865.444" r="7.039"/>
141
- </g>
142
- </g>
230
+ <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="932.5" cy="865.444" r="7.039"/>
231
+ </g>
143
232
  </g>
233
+ </g>
144
234
  </svg>
@@ -1,145 +1,229 @@
1
- <svg version="1.1" id="proposals-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
2
- y="0px" width="1080px" height="1080px" viewBox="0 0 1080 1080" enable-background="new 0 0 1080 1080" xml:space="preserve">
3
- <g id="proposals" class="stroke-primary">
4
- <g id="sleeve">
5
-
6
- <rect class="fill-primary" id="_x32_5-pct_1_" x="419.5" y="798.5" fill="#31536E" fill-opacity="0.25" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" width="251" height="286"/>
7
- <rect class="fill-primary" x="419.5" y="911.5" fill="#31536E" width="251" height="173"/>
8
- <circle fill="#FFFFFF" stroke="#31536E" stroke-width="8" stroke-miterlimit="10" cx="615.667" cy="864.668" r="22.5"/>
9
- <circle class="fill-primary" fill="#31536E" cx="615.5" cy="864.5" r="13"/>
10
- </g>
11
- <g>
12
- <g id="hand">
13
-
14
- <path fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
15
- M650.395,674.5c51.605,0,58.62-90.165,64.562-154.237"/>
16
-
17
- <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="457.5" y1="798.5" x2="457.5" y2="667.689"/>
18
-
19
- <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="646.5" y1="675.5" x2="646.5" y2="798.5"/>
20
-
21
- <path fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
22
- M451.324,498.5c0,0,31.176-4,64.176-32s32-81-4-111c-22,12-156,79-156,79l0,0v74c0,17.992-2.5,41,1.577,65.972
23
- C377.942,619.5,401.5,665,466.031,667.689"/>
24
-
25
- <path fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
26
- M505.818,513.229c12.682,29.272,13.405,80.272,8.682,102.271"/>
27
-
28
- <path fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
29
- M468.5,380.5v-14.282c0-28.564,17.923-51.718,42.5-51.718l0,0c24.577,0,44.5,23.154,44.5,51.718v95.564
30
- c0,28.563-19.923,51.718-44.5,51.718l0,0c-17.737,0-25.049-1.979-32.199-19.428"/>
31
-
32
- <path fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
33
- M548.052,337.583c7.849-8.05,19.034-13.083,31.448-13.083l0,0c23.748,0,43,18.419,43,41.141v94.719
34
- c0,22.721-19.252,41.14-43,41.14l0,0c-11.874,0-22.624-4.605-30.406-12.05"/>
35
-
36
- <path fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
37
- M621.341,356.167c6.171-4.207,13.628-6.667,21.659-6.667l0,0c21.263,0,38.5,17.237,38.5,38.5v81c0,21.263-17.237,38.5-38.5,38.5
38
- l0,0c-13.871,0-26.029-7.336-32.807-18.34"/>
39
-
40
- <path fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
41
- M681.973,386.233c4.827-4.194,9.131-6.733,16.027-6.733l0,0c15.188,0,27.5,12.312,27.5,27.5v89c0,15.188-12.312,27.5-27.5,27.5
42
- l0,0c-15.188,0-27.5-12.312-27.5-27.5"/>
43
- <path class="fill-primary" id="_x32_5-pct_2_" fill="#31536E" fill-opacity="0.25" d="M688,523.5c-15.188,0-27.5-12.312-27.5-27.5l0.008-0.075
44
- C653.52,503.064,643.779,507.5,633,507.5c-13.871,0-26.028-7.336-32.807-18.339c-7.803,7.611-18.669,12.339-30.693,12.339
45
- c-11.874,0-22.624-4.605-30.406-12.051l-0.006-0.91C531.29,503.501,517.15,513.5,501,513.5c-10.683,0-18.826-16-27.386-20.245
46
- c-5.651-2.803-13.74,8.544-14.813,0.817l10,35C475.952,546.522,490.26,623.5,524,623.5c16.15,0,18.094-67.051,18.094-67.051
47
- c7.782,7.445,8.532,23.051,20.406,23.051c12.024,0,29.891-47.728,37.693-55.339C606.972,535.164,619.129,542.5,633,542.5
48
- c10.779,0,20.52-4.436,27.508-11.575L660.5,531c0,15.188,12.312,27.5,27.5,27.5s27.5-12.312,27.5-27.5v-35
49
- C715.5,511.188,703.188,523.5,688,523.5z"/>
50
- <path fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
51
- M473.499,373.498c0,0,12.987,26.002,22.994,22.002s32.046-23.229,32.046-23.229"/>
52
-
53
- <path fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
54
- M542.539,502.5c12.047,5.577,23.875,74.756,22.961,69"/>
55
- </g>
56
- </g>
57
-
58
- <line fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="638.5" y1="864.5" x2="648.5" y2="864.5"/>
59
-
60
- <line fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="580.5" y1="864.5" x2="593.5" y2="864.5"/>
61
- <path fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
62
- M426.638,477.259"/>
63
- <path fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
64
- M469.333,347.889V99.028c0-23.58-19.115-42.695-42.695-42.695l0,0c-23.58,0-42.696,19.115-42.696,42.695v320.536"/>
1
+ <svg version="1.1" id="proposals-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="1080px" height="1080px" viewBox="0 0 1080 1080" enable-background="new 0 0 1080 1080" xml:space="preserve">
2
+ <g id="proposals" class="stroke-primary">
3
+ <g id="sleeve">
4
+
5
+ <rect class="fill-primary" id="_x32_5-pct_1_" x="437.5" y="798.5" fill="#31536E" fill-opacity="0.25" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" width="225" height="286"/>
6
+ <rect class="fill-primary" x="437.5" y="892.5" fill="#31536E" width="225" height="192"/>
7
+
8
+ <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="469.5" y1="798.5" x2="469.5" y2="876.5"/>
65
9
 
66
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-miterlimit="10" x1="404.098" y1="165.608" x2="447.455" y2="165.608"/>
10
+ <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="501.5" y1="798.5" x2="501.5" y2="876.5"/>
67
11
 
68
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-miterlimit="10" x1="404.098" y1="269.608" x2="447.455" y2="269.608"/>
12
+ <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="533.5" y1="798.5" x2="533.5" y2="876.5"/>
69
13
 
70
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-miterlimit="10" x1="404.098" y1="387.608" x2="447.455" y2="387.608"/>
71
- <g id="stars_2" class="stars">
14
+ <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="565.5" y1="798.5" x2="565.5" y2="876.5"/>
15
+
16
+ <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="597.5" y1="798.5" x2="597.5" y2="876.5"/>
17
+
18
+ <line fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="629.5" y1="798.5" x2="629.5" y2="876.5"/>
19
+ </g>
20
+ <g>
21
+ <g id="hand_1_" class="fill-primary" fill-opacity="0.25">
22
+ <path
23
+ class="fill-primary"
24
+ fill="#31536E"
25
+ fill-opacity="0.1"
26
+ d="M702.979,523.043l-19.699-3.815l-13.889-22.199L640.001,508.5l-29.808-17.167
27
+ l-22.892,9.486l-38.948-10.921l-12.906,15.104l-35.937,6.877c0,0-21.511-9.38-24.181-20.584
28
+ c9.166-8.183,25.578-12.414,40.17-24.795c33-28,32-81-4-111c-22,12-156,79-156,79l0,0v74c0,17.992-2.5,41,1.577,65.972
29
+ C377.942,619.5,401.5,665,466.031,667.689l-8.531-0.627V798.5h189v-123h-0.105c51.605,0,66.62-94.165,72.562-158.237
30
+ L702.979,523.043z"/>
31
+ <path fill="#FFFFFF" d="M473.499,373.498c0,0,12.987,26.002,22.994,22.002s32.046-23.229,32.046-23.229L511.5,355.5
32
+ L473.499,373.498z"/>
33
+
34
+ <path
35
+ fill="none"
36
+ stroke="#31536E"
37
+ stroke-width="16"
38
+ stroke-linecap="round"
39
+ stroke-linejoin="round"
40
+ stroke-miterlimit="10"
41
+ d="
42
+ M451.324,498.5c0,0,31.176-4,64.176-32s32-81-4-111c-22,12-156,79-156,79l0,0v74c0,17.992-2.5,41,1.577,65.972
43
+ C377.942,619.5,401.5,665,466.031,667.689l-8.531-0.627V798.5h189v-123h-0.105c51.605,0,62.62-94.165,68.562-158.237"/>
72
44
 
73
- <path fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
45
+ <path fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
46
+ M505.818,513.229c12.682,29.272,13.403,80.272,8.682,102.271"/>
47
+
48
+ <path
49
+ class="fill-primary"
50
+ fill="#31536E"
51
+ fill-opacity="0.1"
52
+ stroke="#31536E"
53
+ stroke-width="16"
54
+ stroke-linecap="round"
55
+ stroke-linejoin="round"
56
+ stroke-miterlimit="10"
57
+ d="
58
+ M468.5,377.5v-11.282c0-28.564,17.923-51.718,42.5-51.718l0,0c24.577,0,44.5,23.154,44.5,51.718v95.564
59
+ c0,28.562-19.923,51.718-44.5,51.718l0,0c-17.737,0-26.049-4.979-33.199-22.428c0,0,43.033-21.906,53.699-44.572
60
+ c8.476-18.011,18-58.892-20-91C496.188,363.522,468.5,377.5,468.5,377.5z"/>
61
+
62
+ <path
63
+ class="fill-primary"
64
+ fill="#31536E"
65
+ fill-opacity="0.1"
66
+ stroke="#31536E"
67
+ stroke-width="16"
68
+ stroke-linecap="round"
69
+ stroke-linejoin="round"
70
+ stroke-miterlimit="10"
71
+ d="
72
+ M548.052,337.583c7.851-8.05,19.034-13.083,31.448-13.083l0,0c23.748,0,43,18.419,43,41.141v94.719
73
+ c0,22.721-19.252,41.14-43,41.14l0,0c-11.874,0-22.624-4.605-30.406-12.05"/>
74
+
75
+ <path
76
+ class="fill-primary"
77
+ fill="#31536E"
78
+ fill-opacity="0.1"
79
+ stroke="#31536E"
80
+ stroke-width="16"
81
+ stroke-linecap="round"
82
+ stroke-linejoin="round"
83
+ stroke-miterlimit="10"
84
+ d="
85
+ M621.341,356.167c6.171-4.207,13.628-6.667,21.659-6.667l0,0c21.263,0,38.5,17.237,38.5,38.5v81c0,21.263-17.237,38.5-38.5,38.5
86
+ l0,0c-13.871,0-26.029-7.336-32.807-18.34"/>
87
+
88
+ <path
89
+ class="fill-primary"
90
+ fill="#31536E"
91
+ fill-opacity="0.1"
92
+ stroke="#31536E"
93
+ stroke-width="16"
94
+ stroke-linecap="round"
95
+ stroke-linejoin="round"
96
+ stroke-miterlimit="10"
97
+ d="
98
+ M681.973,386.233c4.827-4.194,9.131-6.733,16.027-6.733l0,0c15.188,0,27.5,12.312,27.5,27.5v89c0,15.188-12.312,27.5-27.5,27.5
99
+ l0,0c-15.188,0-27.5-12.312-27.5-27.5"/>
100
+ <path
101
+ class="fill-primary"
102
+ id="_x32_5-pct_3_"
103
+ fill="#31536E"
104
+ fill-opacity="0.25"
105
+ d="M688,523.5c-15.188,0-27.5-12.312-27.5-27.5l0.008-0.075
106
+ C653.52,503.064,643.779,507.5,633,507.5c-13.871,0-26.028-7.336-32.807-18.339c-7.805,7.611-18.669,12.339-30.693,12.339
107
+ c-11.874,0-22.624-4.605-30.406-12.051l-0.006-0.91C531.29,503.501,517.15,513.5,501,513.5c-10.683,0-18.826-16-27.386-20.245
108
+ c-5.651-2.803-13.74,8.544-14.813,0.817l10,35C475.952,546.521,490.26,623.5,524,623.5c16.15,0,18.094-67.051,18.094-67.051
109
+ c7.782,7.443,8.532,23.051,20.406,23.051c12.024,0,29.891-47.729,37.693-55.339C606.972,535.164,619.129,542.5,633,542.5
110
+ c10.779,0,20.52-4.436,27.508-11.575L660.5,531c0,15.188,12.312,27.5,27.5,27.5s27.5-12.312,27.5-27.5v-35
111
+ C715.5,511.188,703.188,523.5,688,523.5z"/>
112
+ <path fill="none" stroke="#31536E" stroke-width="8" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
113
+ M473.499,373.498c0,0,12.987,26.002,22.994,22.002s32.046-23.229,32.046-23.229"/>
114
+
115
+ <path fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
116
+ M542.539,502.5c12.047,5.577,23.875,74.756,22.961,69"/>
117
+ </g>
118
+ </g>
119
+ <path fill="none" stroke="#31536E" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
120
+ M426.638,477.259"/>
121
+
122
+ <path
123
+ class="fill-primary"
124
+ fill="#31536E"
125
+ fill-opacity="0.1"
126
+ stroke="#31536E"
127
+ stroke-width="16"
128
+ stroke-linecap="round"
129
+ stroke-linejoin="round"
130
+ stroke-miterlimit="10"
131
+ d="
132
+ M469.333,369.889V99.028c0-23.58-19.115-42.695-42.695-42.695l0,0c-23.58,0-42.694,19.115-42.694,42.695v320.536"/>
133
+
134
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-miterlimit="10" x1="404.098" y1="165.608" x2="447.455" y2="165.608"/>
135
+
136
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-miterlimit="10" x1="404.098" y1="269.608" x2="447.455" y2="269.608"/>
137
+
138
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-miterlimit="10" x1="404.098" y1="387.608" x2="447.455" y2="387.608"/>
139
+ <path fill="#FFFFFF" d="M1404.5,687.5"/>
140
+ <g id="stars_2" class="stars">
141
+
142
+ <path
143
+ fill="#FFD92B"
144
+ stroke="#31536E"
145
+ stroke-width="4"
146
+ stroke-linecap="round"
147
+ stroke-linejoin="round"
148
+ stroke-miterlimit="10"
149
+ d="
74
150
  M137.5,645.605c0-14.688-18.667-35.354-35.355-35.354c15.355,0,35.355-20.333,35.355-35.354c0,15.021,16.666,35.354,35.355,35.354
75
151
  C153.833,610.251,137.5,630.918,137.5,645.605z"/>
76
- <g>
152
+ <g>
77
153
 
78
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="1008.882" cy="708.662" r="13.5"/>
154
+ <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="1008.882" cy="708.662" r="13.5"/>
79
155
 
80
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="992.383" y1="691.927" x2="971.17" y2="670.714"/>
156
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="992.383" y1="691.927" x2="971.17" y2="670.714"/>
81
157
 
82
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="1026.324" y1="725.868" x2="1047.537" y2="747.081"/>
158
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="1026.324" y1="725.868" x2="1047.537" y2="747.081"/>
83
159
 
84
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="1025.617" y1="692.634" x2="1046.83" y2="671.421"/>
160
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="1025.617" y1="692.634" x2="1046.83" y2="671.421"/>
85
161
 
86
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="992.383" y1="725.868" x2="971.17" y2="747.081"/>
87
- </g>
88
- <g>
162
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="992.383" y1="725.868" x2="971.17" y2="747.081"/>
163
+ </g>
164
+ <g>
89
165
 
90
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="212.112" y1="161.345" x2="185.95" y2="187.508"/>
166
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="212.112" y1="161.345" x2="185.95" y2="187.508"/>
91
167
 
92
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="176.758" y1="196.701" x2="150.595" y2="222.864"/>
168
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="176.758" y1="196.701" x2="150.595" y2="222.864"/>
93
169
 
94
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="211.405" y1="222.864" x2="185.242" y2="196.701"/>
170
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="211.405" y1="222.864" x2="185.242" y2="196.701"/>
95
171
 
96
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="176.051" y1="187.508" x2="149.888" y2="161.345"/>
97
- </g>
172
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="176.051" y1="187.508" x2="149.888" y2="161.345"/>
173
+ </g>
98
174
 
99
- <path fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
175
+ <path
176
+ fill="#FFD92B"
177
+ stroke="#31536E"
178
+ stroke-width="4"
179
+ stroke-linecap="round"
180
+ stroke-linejoin="round"
181
+ stroke-miterlimit="10"
182
+ d="
100
183
  M833.092,333.86c0,0-24.604,4.603-30.25,10.249c-5.646,5.646-10.248,30.249-10.248,30.249s-4.604-24.603-10.25-30.249
101
184
  c-5.646-5.646-30.248-10.249-30.248-10.249s25.188-5.187,30.248-10.249c5.062-5.062,10.25-30.249,10.25-30.249
102
185
  s4.604,24.603,10.248,30.249C808.488,329.257,833.092,333.86,833.092,333.86z"/>
103
- <g>
186
+ <g>
104
187
 
105
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="978.834" cy="500.751" r="18.5"/>
188
+ <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="978.834" cy="500.751" r="18.5"/>
106
189
 
107
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="938.834" cy="500.751" r="7.166"/>
190
+ <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="938.834" cy="500.751" r="7.166"/>
108
191
 
109
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="978.834" cy="540.751" r="7.166"/>
192
+ <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="978.834" cy="540.751" r="7.166"/>
110
193
 
111
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="1018.834" cy="500.751" r="7.166"/>
194
+ <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="1018.834" cy="500.751" r="7.166"/>
112
195
 
113
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="978.834" cy="460.751" r="7.166"/>
114
- </g>
115
- <g>
196
+ <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="978.834" cy="460.751" r="7.166"/>
197
+ </g>
198
+ <g>
116
199
 
117
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="296.246" y1="682.224" x2="351.149" y2="737.129"/>
200
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="296.246" y1="682.224" x2="351.149" y2="737.129"/>
118
201
 
119
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="351.149" y1="682.224" x2="296.246" y2="737.129"/>
202
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="351.149" y1="682.224" x2="296.246" y2="737.129"/>
120
203
 
121
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="305.5" y1="709.251" x2="278.5" y2="709.251"/>
204
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="305.5" y1="709.251" x2="278.5" y2="709.251"/>
122
205
 
123
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="343.5" y1="709.251" x2="370.5" y2="709.251"/>
206
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="343.5" y1="709.251" x2="370.5" y2="709.251"/>
124
207
 
125
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="324.5" y1="728.251" x2="324.5" y2="755.251"/>
208
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="324.5" y1="728.251" x2="324.5" y2="755.251"/>
126
209
 
127
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="324.5" y1="690.251" x2="324.5" y2="663.251"/>
128
- </g>
129
- <g>
210
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="324.5" y1="690.251" x2="324.5" y2="663.251"/>
211
+ </g>
212
+ <g>
130
213
 
131
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="629.5" y1="122.251" x2="629.5" y2="201.251"/>
214
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="629.5" y1="122.251" x2="629.5" y2="201.251"/>
132
215
 
133
- <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="668.5" y1="162.251" x2="589.5" y2="162.251"/>
216
+ <line fill="none" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="668.5" y1="162.251" x2="589.5" y2="162.251"/>
134
217
 
135
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="609.5" cy="181.751" r="7.039"/>
218
+ <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="609.5" cy="181.751" r="7.039"/>
136
219
 
137
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="609.5" cy="141.751" r="7.039"/>
220
+ <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="609.5" cy="141.751" r="7.039"/>
138
221
 
139
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="649.5" cy="181.751" r="7.039"/>
222
+ <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="649.5" cy="181.751" r="7.039"/>
140
223
 
141
- <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="649.5" cy="141.751" r="7.039"/>
142
- </g>
143
- </g>
224
+ <circle fill="#FFD92B" stroke="#31536E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" cx="649.5" cy="141.751" r="7.039"/>
225
+ </g>
144
226
  </g>
145
- </svg>
227
+
228
+ </g>
229
+ </svg>