coverband 5.2.1 → 5.2.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e351bdee87e7ad05b10fe2d2b373f33031a4b205330145c9b7d3ee20aee58631
4
- data.tar.gz: d4d2c5ac611ca4048f53992d7f7d246c0d9320bb3d5ab6423997ce2f547f44a8
3
+ metadata.gz: 5c8757666aef8f0f574448435cb61fd66d24a7ace2b128df30562dbd8e7a3e1e
4
+ data.tar.gz: 8420bf08b255e38623b9dcfbef365d25bcb5dd6715bb362c5763a08616955d4a
5
5
  SHA512:
6
- metadata.gz: c220622122ed52359fdaeda88f17d2e248ea9abc24e6f998af2e9f99d5ec56e6f84b2a42fca096dc5a69eec535088d02b2cec2e31ea04492d9654cbce473a934
7
- data.tar.gz: 3e292a35d9d4657b5225375eda49895eeb358de28f49265a69e1c839f24d675bc4b961d62bb9d906986286b1af0de62a271798887eff79e6a892b3dcf898becf
6
+ metadata.gz: 96714df5ae4daf880e400319a867035eea27db7c87df49501d62c32da2514a7cfbc92e40d8e5bd0fe20a56e5626058c7e173f155c46a6742204641a9dd451a0b
7
+ data.tar.gz: bac28c51086c03e22100a84958f5b04fec83ec9942d600e2da4f2d7039d54585e15394699b225bcd5a20c6d6976263a2ec611e4e5afa8d805464a021c3428973
data/README.md CHANGED
@@ -29,12 +29,10 @@ The primary goal of Coverband is giving deep insight into your production runtim
29
29
  - Low performance overhead
30
30
  - Simple setup and configuration
31
31
  - Out of the box support for all standard code execution paths (web, cron, background jobs, rake tasks, etc)
32
- - Splits load time (Rails eager load) and runtime metrics
32
+ - Splits code loading usage (Rails eager load) and runtime usage metrics
33
33
  - Easy to understand actionable insights from the report
34
- - Development mode, offers deep insight of code usage details (number of LOC execution during single request, etc) during development.
35
34
  - Mountable web interface to easily share reports
36
35
 
37
-
38
36
  # Installation
39
37
 
40
38
  ## Redis
@@ -45,7 +43,7 @@ Coverband stores coverage data in Redis. The Redis endpoint is looked for in thi
45
43
  2. `ENV['REDIS_URL']`
46
44
  3. `localhost:6379`
47
45
 
48
- The redis store can also be explicitly defined within the coverband.rb. See [advanced config](#advanced-config).
46
+ The redis store can also be explicitly defined within the `config/coverband.rb`. See [advanced config](#advanced-config).
49
47
 
50
48
  ## Gem Installation
51
49
 
@@ -162,12 +160,12 @@ Take Coverband for a spin on the live Heroku deployed [Coverband Demo](https://c
162
160
  If you need to configure coverband, this can be done by creating a `config/coverband.rb` file relative to your project root.
163
161
 
164
162
  - See [lib/coverband/configuration.rb](https://github.com/danmayer/coverband/blob/master/lib/coverband/configuration.rb) for all options
165
- - By default Coverband will try to stored data to Redis \* Redis endpoint is looked for in this order: `ENV['COVERBAND_REDIS_URL']`, `ENV['REDIS_URL']`, or `localhost`
163
+ - By default Coverband will try to store data to Redis \* Redis endpoint is looked for in this order: `ENV['COVERBAND_REDIS_URL']`, `ENV['REDIS_URL']`, or `localhost`
166
164
 
167
165
  Below is an example config file for a Rails 5 app:
168
166
 
169
167
  ```ruby
170
- #config/coverband.rb
168
+ # config/coverband.rb NOT in the initializers
171
169
  Coverband.configure do |config|
172
170
  config.store = Coverband::Adapters::RedisStore.new(Redis.new(url: ENV['MY_REDIS_URL']))
173
171
  config.logger = Rails.logger
@@ -239,7 +237,7 @@ config.after_initialize do
239
237
  end
240
238
  ```
241
239
 
242
- or if you know you are manually calling eager load anywhere in your initialization process immediately adfter call those two lines. A user reported an issue after calling `ResqueWeb::Engine.eager_load!` for example.
240
+ or if you know you are manually calling eager load anywhere in your initialization process immediately after call those two lines. A user reported an issue after calling `ResqueWeb::Engine.eager_load!` for example.
243
241
 
244
242
  ```ruby
245
243
  Rails.application.routes.draw do
@@ -251,7 +249,7 @@ end
251
249
 
252
250
  ### Avoiding Cache Stampede
253
251
 
254
- If you have many servers and they all hit Redis at the same time you can see spikes in your Redis CPU, and memory. This is do to a concept called [cache stampede](https://en.wikipedia.org/wiki/Cache_stampede). It is better to spread out the reporting across your servers. A simple way to do this is to add a random wiggle on your background reporting. This configuration option allows a wiggle. The right amount of wiggle depends on the numbers of servers you have and how willing you are to have delays in your coverage reporting. I would recommend at least 1 second per server. Note, the default wiggle is set to 30 seconds.
252
+ If you have many servers and they all hit Redis at the same time you can see spikes in your Redis CPU, and memory. This is due to a concept called [cache stampede](https://en.wikipedia.org/wiki/Cache_stampede). It is better to spread out the reporting across your servers. A simple way to do this is to add a random wiggle on your background reporting. This configuration option allows a wiggle. The right amount of wiggle depends on the numbers of servers you have and how willing you are to have delays in your coverage reporting. I would recommend at least 1 second per server. Note, the default wiggle is set to 30 seconds.
255
253
 
256
254
  Add a wiggle (in seconds) to the background thread to avoid all your servers reporting at the same time:
257
255
 
@@ -339,6 +337,10 @@ gem 'coverband', require: ['alternative_coverband_patch']
339
337
 
340
338
  This conflict happens when a ruby method is patched twice, once using module prepend, and once using method aliasing. See this ruby issue for details. The fix is to apply all patches the same way. Coverband by default will apply its patch using prepend, but you can change that to method aliasing by adding require: ['alternative_coverband_patch'] to the gem line as shown above.
341
339
 
340
+ ### Redis Sizing Info
341
+
342
+ A few folks have asked about what size of Redis is needed to run coverband. I have some of our largest services with hundreds of servers on cache.m3.medium with plenty of room to spare. I run most apps on the smallest AWS Redis instances available and bump up only if needed or if I am forced to be on a shared Redis instance, which I try to avoid. On Heroku, I have used it with most of the 3rd party and also been fine on the smallest Redis instances, if you have hundreds of dynos you would likely need to scale up. Also note there is a tradeoff one can make, `Coverband::Adapters::HashRedisStore` will use LUA on Redis and increase the Redis load, while being nicer to your app servers and avoid potential lost data during race conditions. While the `Coverband::Adapters::RedisStore` uses in app memory and merging and has lower load on Redis.
343
+
342
344
  # Newer Features
343
345
 
344
346
  ### Dead Method Scanning (ruby 2.6+)
@@ -372,7 +374,7 @@ Outputs:
372
374
 
373
375
  We will match Heroku & Ruby's support lifetime, supporting the last 3 major Ruby releases. For details see [supported runtimes](https://devcenter.heroku.com/articles/ruby-support#supported-runtimes).
374
376
 
375
- For Rails, we will follow the policy of the [Rails team maintenance policy](https://guides.rubyonrails.org/maintenance_policy.html). We officially support the last two major release versions, while providing minimal support (major bugs / security fixes) for an additional version. This means at the moment we primaryly target Rails 6.x, 5.x, and will try to keep current functionality working for Rails 4.x but may release new features that do not work on that target.
377
+ For Rails, we will follow the policy of the [Rails team maintenance policy](https://guides.rubyonrails.org/maintenance_policy.html). We officially support the last two major release versions, while providing minimal support (major bugs / security fixes) for an additional version. This means at the moment we primarily target Rails 6.x, 5.x, and will try to keep current functionality working for Rails 4.x but may release new features that do not work on that target.
376
378
 
377
379
  ### JRuby Support
378
380
 
@@ -416,6 +418,9 @@ If you submit a change please make sure the tests and benchmarks are passing.
416
418
  - **Coverage does NOT work when used alongside Scout APM Auto Instrumentation**
417
419
  - In an environment that uses Scout's `AUTO_INSTRUMENT=true` (usually production or staging) it stops reporting any coverage, it will show one or two files that have been loaded at the start but everything else will show up as having 0% coverage
418
420
  - Bug tracked here: https://github.com/scoutapp/scout_apm_ruby/issues/343
421
+ - **Coverband, [Elastic APM](https://github.com/elastic/apm-agent-ruby) and resque**
422
+ - In an environment that uses the Elastic APM ruby agent, resque jobs will fail with `Transactions may not be nested. Already inside #<ElasticAPM::Transaction>` if the `elastic-apm` gem is loaded _before_ the `coverband` gem
423
+ - Put `coverage` ahead of `elastic-apm` in your Gemfile
419
424
 
420
425
  ### Debugging Redis Store
421
426
 
data/changes.md CHANGED
@@ -1,3 +1,16 @@
1
+ ### Coverband 5.2.4
2
+
3
+ - add install task with example configuration file
4
+
5
+ ### Coverband 5.2.3
6
+
7
+ - fix for thread error bubbling up
8
+ - additional documentation around Redis
9
+
10
+ ### Coverband 5.2.2
11
+
12
+ - fix for deprecated redis pipeline usage by @casperisfine
13
+
1
14
  ### Coverband 5.2.1
2
15
 
3
16
  - fix for `can't add a new key into hash during iteration` https://github.com/danmayer/coverband/issues/436
data/coverband.gemspec CHANGED
@@ -55,5 +55,5 @@ Gem::Specification.new do |spec|
55
55
  # redis now. I was reluctant to add this, but until we offer another production
56
56
  # quality adapter, I think this is more honest about requirements and reduces confusion
57
57
  # without this there was a race condition on calling coverband configure before redis was loaded
58
- spec.add_runtime_dependency "redis"
58
+ spec.add_runtime_dependency "redis", ">= 3.0"
59
59
  end
data/diagram.svg CHANGED
@@ -1 +1 @@
1
- <svg width="1000" height="1000" style="background:white;font-family:sans-serif;overflow:visible" xmlns="http://www.w3.org/2000/svg"><defs><filter id="glow" x="-50%" y="-50%" width="200%" height="200%"><feGaussianBlur stdDeviation="4" result="coloredBlur"></feGaussianBlur><feMerge><feMergeNode in="coloredBlur"></feMergeNode><feMergeNode in="SourceGraphic"></feMergeNode></feMerge></filter></defs><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(320.03217647733584, 687.1879015823728)"><circle r="41.02816740225301" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(661.4636478218016, 565.1534216463607)"><circle r="305.5557030186961" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#89e051;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(288.92468415298856, 583.3120574686816)"><circle r="51.43077848678633" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(198.27998719901586, 337.6260669973246)"><circle r="194.44429698130384" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(208.88195504491605, 675.5633141537206)"><circle r="54.711191555393924" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(467.6316421823875, 199.4691906709776)"><circle r="92.27279292068721" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(310.0704177270241, 685.7169134146375)"><circle style="transition:all 0.5s ease-out" r="13.301381111862199" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(345.9967395971064, 685.87858507444)"><circle style="transition:all 0.5s ease-out" r="12.030612753430841" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(328.9266810919272, 706.7488073048472)"><circle style="transition:all 0.5s ease-out" r="11.745715862145229" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(329.0161914814334, 668.1702621135582)"><circle style="transition:all 0.5s ease-out" r="9.31753872781958" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(309.04445083610716, 660.295708479135)"><circle style="transition:all 0.5s ease-out" r="8.977863364795045" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(305.7449439786629, 710.3538729027944)"><circle style="transition:all 0.5s ease-out" r="8.512405011024716" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(345.68560019222, 666.4034901122409)"><circle style="transition:all 0.5s ease-out" r="4.24523760321108" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(344.7982228141053, 702.5383514587736)"><circle style="transition:all 0.5s ease-out" r="1.4748132327929047" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(703.8340266416853, 527.1123148557385)"><circle style="transition:all 0.5s ease-out" r="16.53595728373488" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(778.8823108255815, 570.0418105310641)"><circle r="61.70171688953024" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(717.5698510232253, 693.0974846128829)"><circle r="61.86175746988233" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(725.4985440437379, 443.30692177002356)"><circle r="61.70171688953024" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(815.9455465684139, 665.1720067360632)"><circle r="26.457774832634264" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(831.0072570873335, 473.34952443630743)"><circle r="34.07716873552073" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(896.6200091491909, 619.7698600613876)"><circle r="52.168568605689806" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(853.6513785510316, 527.3727834535074)"><circle style="transition:all 0.5s ease-out" r="15.964226765506472" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(526.6989790627695, 561.9398180954051)"><circle r="155.7840394634931" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(917.8343197304551, 514.5735602425773)"><circle r="41.24316257235544" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(856.6345611588144, 560.7554162328365)"><circle style="transition:all 0.5s ease-out" r="8.027723057845122" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(871.2174176686775, 548.2434570803775)"><circle style="transition:all 0.5s ease-out" r="8.00834643519396" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(851.9651980306454, 574.2585755774109)"><circle style="transition:all 0.5s ease-out" r="3.0734404123364563" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(718.5919752205431, 611.3289699052239)"><circle style="transition:all 0.5s ease-out" r="2.798261363389026" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(792.2871617194293, 498.5297224740954)"><circle style="transition:all 0.5s ease-out" r="2.391095472725763" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(728.3780196051995, 517.9978039845764)"><circle style="transition:all 0.5s ease-out" r="2.1732505571358876" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#000080;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(271.1191139403885, 583.3120574686816)"><circle r="29.926946523691313" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#000080;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(320.70076155192737, 583.3120574686816)"><circle style="transition:all 0.5s ease-out" r="15.956439337352606" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#89e051;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(304.6103234302117, 600.9742984586665)"><circle style="transition:all 0.5s ease-out" r="4.237911907324462" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(24.11681986330811, 337.6260669973246)"><circle style="transition:all 0.5s ease-out" r="16.58286789510116" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(216.7119859693645, 337.6260669973246)"><circle r="172.3140364604603" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(39.1734724660345, 354.4885671962532)"><circle style="transition:all 0.5s ease-out" r="2.3252123972478738" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(181.66519679506484, 668.7512148924276)"><circle style="transition:all 0.5s ease-out" r="23.654879859510725" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(235.30821027471342, 666.1276997552529)"><circle style="transition:all 0.5s ease-out" r="23.650938802666197" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#ff9900;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(210.5952684658176, 709.4458854897669)"><circle r="17.78532998607633" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#083fa1;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(217.63171846036204, 634.3280969866266)"><circle style="transition:all 0.5s ease-out" r="9.557882140311447" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#083fa1;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(196.1269442838862, 636.9579686521599)"><circle style="transition:all 0.5s ease-out" r="8.050913447200113" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(207.8858126830208, 655.6398894889261)"><circle style="transition:all 0.5s ease-out" r="2.5906866146425043" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(208.56528904830017, 680.6505278725681)"><circle style="transition:all 0.5s ease-out" r="2.5786648021433405" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(235.9111922744389, 695.5271287029836)"><circle style="transition:all 0.5s ease-out" r="2.5665866804645554" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(232.74494256027666, 636.8026524175057)"><circle style="transition:all 0.5s ease-out" r="2.554451450872218" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(211.96808424487833, 648.3823270504467)"><circle style="transition:all 0.5s ease-out" r="2.530006377049947" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(203.1683261005584, 648.7727121026616)"><circle style="transition:all 0.5s ease-out" r="2.5176948374333445" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#f1e05a;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(414.82221112175375, 225.18573711185599)"><circle style="transition:all 0.5s ease-out" r="30.53458755319508" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#563d7c;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(512.4152257100293, 234.7075647136296)"><circle style="transition:all 0.5s ease-out" r="30.53153455238225" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(458.94436547876234, 257.86281112177363)"><circle style="transition:all 0.5s ease-out" r="21.23496944979632" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#f1e05a;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(463.64167180125565, 209.8249740773377)"><circle style="transition:all 0.5s ease-out" r="17.64324721063872" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(429.9446446047959, 163.45313746192357)"><circle r="24.55527965920111" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(500.1551515815086, 164.90170011239337)"><circle r="31.810280691007137" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(450.8404314892812, 229.48377926472628)"><circle style="transition:all 0.5s ease-out" r="2.6145644153926697" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(469.0144518672845, 232.64961581090972)"><circle style="transition:all 0.5s ease-out" r="2.5786648021433405" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(476.66945820476235, 229.12533881412358)"><circle style="transition:all 0.5s ease-out" r="2.5665866804645554" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(431.9685404469262, 257.1567833882906)"><circle style="transition:all 0.5s ease-out" r="2.554451450872218" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(476.3735397074795, 237.42891084783722)"><circle style="transition:all 0.5s ease-out" r="2.5422582955687822" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#083fa1;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(323.836066782082, 805.3139193066313)"><circle style="transition:all 0.5s ease-out" r="30.54171003493518" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#083fa1;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(392.0822735420951, 805.2151950193588)"><circle style="transition:all 0.5s ease-out" r="29.421375486739343" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#083fa1;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(366.76055196424784, 855.1156024174074)"><circle style="transition:all 0.5s ease-out" r="14.43509944757214" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#083fa1;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(363.9842718696619, 768.178789988698)"><circle style="transition:all 0.5s ease-out" r="13.861899508521617" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(335.2224333421874, 760.39051229831)"><circle style="transition:all 0.5s ease-out" r="12.576126490044082" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(342.3655510264265, 844.0108539787298)"><circle style="transition:all 0.5s ease-out" r="9.162852130454407" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#cb171e;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(389.59373991012393, 763.6941392020776)"><circle style="transition:all 0.5s ease-out" r="8.943186281308252" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(358.65100421769597, 828.7397641425838)"><circle style="transition:all 0.5s ease-out" r="8.226534878923955" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#199f4b;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(322.0595983962307, 847.2096467904636)"><circle style="transition:all 0.5s ease-out" r="8.19247040598124" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(404.3821679399356, 770.7391569692227)"><circle style="transition:all 0.5s ease-out" r="4.555921546801744" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#000000;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(389.8409394935441, 841.9785744626477)"><circle style="transition:all 0.5s ease-out" r="4.19368900771065" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(358.54089679183244, 792.4146905016313)"><circle style="transition:all 0.5s ease-out" r="3.278884019168034" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(372.0005681071892, 834.8828204113349)"><circle style="transition:all 0.5s ease-out" r="3.2693937416103056" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(345.59564391105414, 775.9167018203419)"><circle style="transition:all 0.5s ease-out" r="2.89647568936972" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#ff9900;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(380.3827760822477, 838.5335610104822)"><circle style="transition:all 0.5s ease-out" r="2.6733260088534" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#083fa1;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(353.7344945811603, 784.8389915483548)"><circle style="transition:all 0.5s ease-out" r="2.4928893572496835" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(363.42043654841854, 786.3987316284215)"><circle style="transition:all 0.5s ease-out" r="1.1423854178746484" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(753.5799255319125, 535.5969452901693)"><circle style="transition:all 0.5s ease-out" r="15.962280264643844" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(798.6841480722314, 548.075689569396)"><circle r="19.78734388349524" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(766.3083613514731, 588.9168957753287)"><circle r="36.0219230554654" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(769.057373855949, 545.4108103526958)"><circle style="transition:all 0.5s ease-out" r="3.755916529796614" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(778.6955684047242, 548.3264088996301)"><circle style="transition:all 0.5s ease-out" r="3.113617809250589" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(696.0442262081584, 655.9893639274621)"><circle style="transition:all 0.5s ease-out" r="15.962280264643844" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(737.5223342606196, 671.7986857857035)"><circle r="20.304813828350333" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(703.5097815700387, 711.1124169411502)"><circle r="36.00955101578958" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(711.4977300046646, 668.5939706376375)"><circle style="transition:all 0.5s ease-out" r="3.755916529796614" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(719.0945993219516, 673.3262166900272)"><circle style="transition:all 0.5s ease-out" r="1.9943114857997468" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(700.1961587500691, 408.86205652912855)"><circle style="transition:all 0.5s ease-out" r="15.962280264643844" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(745.3003812903879, 421.3408008083556)"><circle r="19.78734388349524" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(712.9245945696291, 462.18200701428793)"><circle r="36.0219230554654" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(715.6736070741055, 418.6759215916551)"><circle style="transition:all 0.5s ease-out" r="3.755916529796614" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(725.3118016228806, 421.5915201385895)"><circle style="transition:all 0.5s ease-out" r="3.113617809250589" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(803.6858041001714, 665.1720067360632)"><circle style="transition:all 0.5s ease-out" r="10.499770613896775" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(828.2944480575582, 665.1720067360632)"><circle style="transition:all 0.5s ease-out" r="10.410611592995085" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(814.902371770188, 471.85792882972135)"><circle style="transition:all 0.5s ease-out" r="14.205095172963798" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(842.9655909437852, 471.85792882972135)"><circle style="transition:all 0.5s ease-out" r="10.159862250138433" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(832.6832447016709, 493.5297222036801)"><circle style="transition:all 0.5s ease-out" r="10.129232508291985" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(832.4880112876547, 451.79625189775834)"><circle style="transition:all 0.5s ease-out" r="8.774828894934963" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(884.9097644692689, 619.7711966222735)"><circle r="37.45832384949299" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(936.6256864322213, 619.8258584805545)"><circle style="transition:all 0.5s ease-out" r="9.162852130454407" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(931.2507443006568, 633.0720713690589)"><circle style="transition:all 0.5s ease-out" r="3.0633137277641023" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(930.7688333488279, 607.892891986682)"><circle style="transition:all 0.5s ease-out" r="2.2297080252784203" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(928.018285736084, 601.2472780301207)"><circle style="transition:all 0.5s ease-out" r="1.7627389692590252" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(927.1607472334935, 639.7835779493107)"><circle style="transition:all 0.5s ease-out" r="1.5962280264643844" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(924.7027407452719, 596.1537234887468)"><circle style="transition:all 0.5s ease-out" r="1.1148540126392101" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(509.4458615151518, 562.1511911988173)"><circle style="transition:all 0.5s ease-out" r="16.914947764577388" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(594.3329753174932, 565.9402171865516)"><circle r="57.331698519269096" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(458.1119989365349, 593.0857339892572)"><circle r="35.25264132867093" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(414.90706084233204, 523.3188216795213)"><circle r="34.50887578336677" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(524.6346810386193, 653.841954969221)"><circle r="42.49996301962606" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(504.2809815744674, 488.46719565592036)"><circle r="49.11482483951621" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(583.0216848815105, 639.9330600742272)"><circle style="transition:all 0.5s ease-out" r="9.750990176211733" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(527.6735344552686, 545.4041943894321)"><circle style="transition:all 0.5s ease-out" r="4.670426713875883" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(908.0069995198396, 514.4503108540416)"><circle style="transition:all 0.5s ease-out" r="26.693712103472212" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#89e051;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(946.8715222161235, 512.6304758302066)"><circle style="transition:all 0.5s ease-out" r="9.002057843140824" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#89e051;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(941.365216100471, 531.7173817530843)"><circle style="transition:all 0.5s ease-out" r="7.663354352616654" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(934.3006605991542, 492.72867651096254)"><circle style="transition:all 0.5s ease-out" r="4.201091818428636" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(937.4584710733403, 501.76727511899867)"><circle style="transition:all 0.5s ease-out" r="2.1732505571358876" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#000000;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(930.2354957728826, 535.9881559683596)"><circle style="transition:all 0.5s ease-out" r="1.0576433815554147" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#000080;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(259.541324647751, 583.3120574686816)"><circle style="transition:all 0.5s ease-out" r="14.650895480558898" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#000080;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(287.61914029619487, 583.3120574686816)"><circle style="transition:all 0.5s ease-out" r="9.728658417390012" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#000080;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(277.25793849307, 598.6595309961859)"><circle style="transition:all 0.5s ease-out" r="5.09062412077616" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#000080;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(276.77079306692247, 571.9093821265027)"><circle style="transition:all 0.5s ease-out" r="2.3118104850615064" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(145.26997953748912, 347.7250465803166)"><circle style="transition:all 0.5s ease-out" r="23.175828048711697" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(238.19866966458864, 347.7250465803166)"><circle r="66.05460032789284" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(150.41534260109285, 415.6392727359294)"><circle r="41.2347706770341" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(157.30132476192497, 295.91848795838945)"><circle r="26.311178688944565" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(227.18562918156053, 461.37247159488703)"><circle r="44.426927171388044" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(207.23237893686104, 225.62422928873298)"><circle r="56.213485589181076" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(127.7803569876915, 318.5181656387116)"><circle style="transition:all 0.5s ease-out" r="7.168953414811111" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(248.7866029079375, 274.4957470845605)"><circle style="transition:all 0.5s ease-out" r="4.237911907324462" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#ff9900;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(207.45210686175878, 708.6716016753475)"><circle style="transition:all 0.5s ease-out" r="2.5665866804645554" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#ff9900;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(215.50363345281372, 710.7723498807043)"><circle style="transition:all 0.5s ease-out" r="2.554451450872218" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#ff9900;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(209.67559322585782, 716.6773866094065)"><circle style="transition:all 0.5s ease-out" r="2.5422582955687822" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#ff9900;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(213.29541649195505, 702.7818513916542)"><circle style="transition:all 0.5s ease-out" r="2.530006377049947" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(200.07893098216616, 704.8946450316807)"><circle style="transition:all 0.5s ease-out" r="2.5176948374333445" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#ff9900;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(201.6269473561882, 714.5445641886004)"><circle style="transition:all 0.5s ease-out" r="2.505322797757532" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(221.25184430745472, 704.8582113492705)"><circle style="transition:all 0.5s ease-out" r="2.4928893572496835" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(425.6097965207276, 162.42210546923042)"><circle style="transition:all 0.5s ease-out" r="2.638226114112926" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(434.0714151941836, 162.65144557027494)"><circle style="transition:all 0.5s ease-out" r="2.6264219112154277" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(429.6566845933963, 169.84586016351054)"><circle style="transition:all 0.5s ease-out" r="2.6145644153926697" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(430.0507355402445, 155.2432545007628)"><circle style="transition:all 0.5s ease-out" r="2.6026528982487704" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(421.6620296115785, 154.96844076451754)"><circle style="transition:all 0.5s ease-out" r="2.5906866146425043" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(421.26565841460905, 169.63130219791057)"><circle style="transition:all 0.5s ease-out" r="2.5786648021433405" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(438.4167818942691, 155.47018220027505)"><circle style="transition:all 0.5s ease-out" r="2.5665866804645554" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(438.2819513029236, 169.89764798724735)"><circle style="transition:all 0.5s ease-out" r="2.554451450872218" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(417.2384634284576, 162.03028395184197)"><circle style="transition:all 0.5s ease-out" r="2.5422582955687822" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(412.9724522956057, 169.1177032156215)"><circle style="transition:all 0.5s ease-out" r="2.530006377049947" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(442.41520574109717, 162.725438727194)"><circle style="transition:all 0.5s ease-out" r="2.5176948374333445" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(446.54415852735593, 169.8366810880879)"><circle style="transition:all 0.5s ease-out" r="2.505322797757532" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(434.46329719500216, 148.21857666109676)"><circle style="transition:all 0.5s ease-out" r="2.4928893572496835" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(495.6955444300594, 164.86401440712228)"><circle style="transition:all 0.5s ease-out" r="23.652252561245334" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(525.5760651188497, 164.86401440712228)"><circle style="transition:all 0.5s ease-out" r="2.530006377049947" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(524.2750483396466, 173.5001573998452)"><circle style="transition:all 0.5s ease-out" r="2.505322797757532" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(524.2662592628411, 156.24177592200982)"><circle style="transition:all 0.5s ease-out" r="2.4928893572496835" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(794.3318046311477, 548.3448873687126)"><circle style="transition:all 0.5s ease-out" r="4.480270799001845" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(806.1111831758801, 549.4456129638797)"><circle style="transition:all 0.5s ease-out" r="4.148994776152871" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#cb171e;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(799.6924323665933, 557.7705330095079)"><circle style="transition:all 0.5s ease-out" r="3.163121990922397" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(801.3338645784961, 540.1566490178845)"><circle style="transition:all 0.5s ease-out" r="3.0935943359032483" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(788.3287184078471, 539.6629848996754)"><circle style="transition:all 0.5s ease-out" r="2.8749402554070627" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(788.3270959412054, 556.6028008791097)"><circle style="transition:all 0.5s ease-out" r="2.530006377049947" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(809.9568428377293, 540.5540733154982)"><circle style="transition:all 0.5s ease-out" r="2.3385375057480027" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(749.1321393597976, 588.9168957753287)"><circle r="9.230220512503111" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(780.3463221396196, 588.9168957753287)"><circle r="12.368481716032033" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(729.4601796617173, 672.4972983980235)"><circle style="transition:all 0.5s ease-out" r="7.059764070198074" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(748.6931817271368, 671.5735081083964)"><circle style="transition:all 0.5s ease-out" r="6.131697069515656" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(740.25961650631, 682.395014908541)"><circle style="transition:all 0.5s ease-out" r="4.389184636947402" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(739.26795690811, 661.9476366505552)"><circle style="transition:all 0.5s ease-out" r="4.141498844508945" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(730.0861296826683, 660.2590267710506)"><circle style="transition:all 0.5s ease-out" r="1.9943114857997468" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(686.3459316180391, 711.1124169411502)"><circle r="9.230220512503111" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(717.5477423581852, 711.1124169411502)"><circle r="12.356109676356217" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(740.9480378493042, 421.60999860767225)"><circle style="transition:all 0.5s ease-out" r="4.480270799001845" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(752.7274163940366, 422.7107242028396)"><circle style="transition:all 0.5s ease-out" r="4.148994776152871" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#cb171e;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(746.3086655847495, 431.0356442484675)"><circle style="transition:all 0.5s ease-out" r="3.163121990922397" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(747.9500977966527, 413.42176025684427)"><circle style="transition:all 0.5s ease-out" r="3.0935943359032483" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(734.9449516260039, 412.9280961386347)"><circle style="transition:all 0.5s ease-out" r="2.8749402554070627" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(734.9433291593614, 429.867912118069)"><circle style="transition:all 0.5s ease-out" r="2.530006377049947" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(756.573076055886, 413.81918455445816)"><circle style="transition:all 0.5s ease-out" r="2.3385375057480027" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(695.7483725779537, 462.18200701428793)"><circle r="9.230220512503111" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(726.9625553577756, 462.18200701428793)"><circle r="12.368481716032033" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(867.1061417076235, 619.7711966222735)"><circle style="transition:all 0.5s ease-out" r="15.956439337352606" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(902.715334681869, 619.7711966222735)"><circle style="transition:all 0.5s ease-out" r="15.954491886397975" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(580.4192008583004, 567.2071973413949)"><circle style="transition:all 0.5s ease-out" r="16.955313246732693" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(615.57497315641, 566.3385062748453)"><circle style="transition:all 0.5s ease-out" r="15.011251574067426" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(600.5999071286823, 595.8360890692384)"><circle style="transition:all 0.5s ease-out" r="14.869829038144633" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(599.1257766701273, 539.2800824043596)"><circle style="transition:all 0.5s ease-out" r="13.454676054530152" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(569.3873516493801, 535.6142292094123)"><circle style="transition:all 0.5s ease-out" r="13.308387370505454" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(568.5518951767305, 596.4452389230787)"><circle style="transition:all 0.5s ease-out" r="11.399348206629604" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(626.7793390224465, 539.3708442897989)"><circle style="transition:all 0.5s ease-out" r="10.991352438857609" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(628.5614761664162, 591.6110813332724)"><circle style="transition:all 0.5s ease-out" r="10.202589405167515" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(552.5890040156982, 555.9506646592552)"><circle style="transition:all 0.5s ease-out" r="9.865040722758001" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(553.1881377583397, 578.2342126443918)"><circle style="transition:all 0.5s ease-out" r="9.22369062182383" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(639.3726974500788, 557.3079764921772)"><circle style="transition:all 0.5s ease-out" r="7.242261912745558" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(639.1500025263566, 574.4825760716333)"><circle style="transition:all 0.5s ease-out" r="6.730801264574144" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(443.14926912591795, 589.6653929088313)"><circle style="transition:all 0.5s ease-out" r="16.20569831586637" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(476.19952795785053, 589.6653929088313)"><circle style="transition:all 0.5s ease-out" r="13.146298765571315" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(462.36647164713577, 613.4935358782318)"><circle style="transition:all 0.5s ease-out" r="10.707823124294093" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(462.0283702128282, 570.420015456499)"><circle style="transition:all 0.5s ease-out" r="7.05536134817947" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(405.58840833207296, 526.6302978707675)"><circle style="transition:all 0.5s ease-out" r="10.371737997318968" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(436.4888162200342, 522.2291201628259)"><circle style="transition:all 0.5s ease-out" r="9.899627425812419" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(423.6290529255176, 540.1760635500058)"><circle style="transition:all 0.5s ease-out" r="8.988240401622202" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(419.20241237069666, 509.0898841373207)"><circle style="transition:all 0.5s ease-out" r="8.624820766221188" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(399.75004192524193, 505.99730376165144)"><circle style="transition:all 0.5s ease-out" r="7.871374629279357" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(408.7278198693222, 542.8507333441332)"><circle style="transition:all 0.5s ease-out" r="2.94962646558581" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(506.4444606305024, 643.9958756467266)"><circle style="transition:all 0.5s ease-out" r="18.11766402973505" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(544.7059002234021, 643.9958756467266)"><circle style="transition:all 0.5s ease-out" r="16.445513812669702" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(527.2091380448135, 676.087500027808)"><circle style="transition:all 0.5s ease-out" r="16.40768189273586" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(485.99421206955213, 488.23413067455954)"><circle style="transition:all 0.5s ease-out" r="19.063677632637976" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(534.2993474748856, 485.9775786122145)"><circle style="transition:all 0.5s ease-out" r="15.993395850245081" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(513.5735710021173, 512.4379711243089)"><circle style="transition:all 0.5s ease-out" r="14.426486618972687" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(511.21860627898553, 467.7784203335998)"><circle style="transition:all 0.5s ease-out" r="10.208678686166305" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(490.85436557486486, 456.43933596532105)"><circle style="transition:all 0.5s ease-out" r="9.899627425812419" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(489.0128521405769, 517.872844612738)"><circle style="transition:all 0.5s ease-out" r="7.52836076507345" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(218.94649691320922, 348.92416926538016)"><circle style="transition:all 0.5s ease-out" r="23.242767787361217" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(263.94678504039314, 348.92416926538016)"><circle style="transition:all 0.5s ease-out" r="18.05925858932778" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(245.80652719594457, 379.15791152514356)"><circle style="transition:all 0.5s ease-out" r="13.500785429072073" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(245.68830119989747, 319.96811426786826)"><circle style="transition:all 0.5s ease-out" r="12.474414358242155" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(219.21867448793054, 309.80204247666876)"><circle style="transition:all 0.5s ease-out" r="12.182044026272075" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(217.86526650637987, 387.9400907247678)"><circle style="transition:all 0.5s ease-out" r="12.089870868331689" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(273.5577843972495, 316.67814396150754)"><circle style="transition:all 0.5s ease-out" r="11.89032441337783" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(274.12631331691756, 380.207321298469)"><circle style="transition:all 0.5s ease-out" r="11.140175583416546" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(194.97368814288242, 320.1760745308977)"><circle style="transition:all 0.5s ease-out" r="10.490888810011553" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(194.72177223296907, 376.72177206901546)"><circle style="transition:all 0.5s ease-out" r="9.930965356129603" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(239.83424985033116, 294.9323943656043)"><circle style="transition:all 0.5s ease-out" r="9.538356313707054" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(236.50764975641124, 402.30716164796564)"><circle style="transition:all 0.5s ease-out" r="7.748034871936319" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(286.9469469971985, 333.518201400589)"><circle style="transition:all 0.5s ease-out" r="5.925530357133561" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(285.9656470138674, 364.22189048452395)"><circle style="transition:all 0.5s ease-out" r="5.053868231184775" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(132.79388378035887, 415.6392727359294)"><circle style="transition:all 0.5s ease-out" r="19.915050105805193" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(172.17952358214552, 415.6392727359294)"><circle style="transition:all 0.5s ease-out" r="15.772327945486499" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(155.73821126886057, 439.335386179747)"><circle style="transition:all 0.5s ease-out" r="9.370744235118998" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(155.32763656429552, 397.2568381325934)"><circle style="transition:all 0.5s ease-out" r="5.467333192830014" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(149.11173338174544, 295.87918517708056)"><circle style="transition:all 0.5s ease-out" r="10.208678686166305" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(169.9496235726675, 295.87918517708056)"><circle style="transition:all 0.5s ease-out" r="6.930949754260808" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(162.47463234180208, 311.2333739258153)"><circle style="transition:all 0.5s ease-out" r="6.447866876316513" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(162.13617741684865, 283.1623850951177)"><circle style="transition:all 0.5s ease-out" r="4.2961677250826185" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(151.3158047433579, 278.1991555729222)"><circle style="transition:all 0.5s ease-out" r="3.909944177967545" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(205.40550325030952, 457.9420427634565)"><circle style="transition:all 0.5s ease-out" r="18.680043524079185" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(243.07804535316234, 457.9420427634565)"><circle style="transition:all 0.5s ease-out" r="15.294236828278688" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(227.40650954193808, 487.5728411092061)"><circle style="transition:all 0.5s ease-out" r="14.52736486499591" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(227.12660430225324, 432.05683472685854)"><circle style="transition:all 0.5s ease-out" r="11.412969131797563" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(195.50704857815947, 225.22695007375364)"><circle style="transition:all 0.5s ease-out" r="19.712750166794866" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(237.17411408722592, 225.22695007375364)"><circle style="transition:all 0.5s ease-out" r="18.25605359177665" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(217.736881871007, 259.2814524180906)"><circle style="transition:all 0.5s ease-out" r="17.25684539223958" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(217.65401497151421, 193.98252479613882)"><circle style="transition:all 0.5s ease-out" r="14.886536716491467" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(187.0847335402717, 190.66311613278003)"><circle style="transition:all 0.5s ease-out" r="12.164176167900024" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(190.05085896584112, 255.17835258829155)"><circle style="transition:all 0.5s ease-out" r="7.033306397848054" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(242.87391897494308, 197.02490283343394)"><circle style="transition:all 0.5s ease-out" r="6.8179498501540605" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(745.6892892930535, 587.0905788076193)"><circle style="transition:all 0.5s ease-out" r="1.6346968708051528" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#2b2b2b;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(752.618475940818, 587.0905788076193)"><circle style="transition:all 0.5s ease-out" r="1.5962280264643844" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#ece2a9;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(749.1916867613452, 592.9526816405053)"><circle style="transition:all 0.5s ease-out" r="1.4957336143498101" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(775.9794964269388, 588.9168957753287)"><circle style="transition:all 0.5s ease-out" r="4.303394252856278" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(786.4988472677234, 588.9168957753287)"><circle style="transition:all 0.5s ease-out" r="2.5176948374333445" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(682.903081551295, 709.2860999734407)"><circle style="transition:all 0.5s ease-out" r="1.6346968708051528" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#2b2b2b;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(689.8322681990595, 709.2860999734407)"><circle style="transition:all 0.5s ease-out" r="1.5962280264643844" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#ece2a9;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(686.4054790195867, 715.1482028063267)"><circle style="transition:all 0.5s ease-out" r="1.4957336143498101" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(713.1932886851803, 711.1124169411502)"><circle style="transition:all 0.5s ease-out" r="4.303394252856278" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(723.700267486289, 711.1124169411502)"><circle style="transition:all 0.5s ease-out" r="2.505322797757532" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(692.3055225112096, 460.3556900465785)"><circle style="transition:all 0.5s ease-out" r="1.6346968708051528" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#2b2b2b;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(699.234709158974, 460.3556900465785)"><circle style="transition:all 0.5s ease-out" r="1.5962280264643844" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#ece2a9;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(695.8079199795012, 466.21779287946447)"><circle style="transition:all 0.5s ease-out" r="1.4957336143498101" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(722.5957296450948, 462.18200701428793)"><circle style="transition:all 0.5s ease-out" r="4.303394252856278" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(733.1150804858794, 462.18200701428793)"><circle style="transition:all 0.5s ease-out" r="2.5176948374333445" stroke-width="0" stroke="#374151"></circle></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(320.03217647733584, 687.1879015823728)"><path fill="none" d="M 0 46.02816740225301 A 46.02816740225301 46.02816740225301 0 0 1 0 -46.02816740225301 A 46.02816740225301 46.02816740225301 0 0 1 0 46.02816740225301" id="CircleText--1" transform="rotate(1)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:15px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--1" startOffset="50%">views</textPath></text><path fill="none" d="M 0 46.02816740225301 A 46.02816740225301 46.02816740225301 0 0 1 0 -46.02816740225301 A 46.02816740225301 46.02816740225301 0 0 1 0 46.02816740225301" id="CircleText--2" transform="rotate(1)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:15px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--2" startOffset="50%">views</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(661.4636478218016, 565.1534216463607)"><path fill="none" d="M 0 310.5557030186961 A 310.5557030186961 310.5557030186961 0 0 1 0 -310.5557030186961 A 310.5557030186961 310.5557030186961 0 0 1 0 310.5557030186961" id="CircleText--3" transform="rotate(1)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:15px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--3" startOffset="50%">test</textPath></text><path fill="none" d="M 0 310.5557030186961 A 310.5557030186961 310.5557030186961 0 0 1 0 -310.5557030186961 A 310.5557030186961 310.5557030186961 0 0 1 0 310.5557030186961" id="CircleText--4" transform="rotate(1)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:15px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--4" startOffset="50%">test</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(288.92468415298856, 583.3120574686816)"><path fill="none" d="M 0 56.43077848678633 A 56.43077848678633 56.43077848678633 0 0 1 0 -56.43077848678633 A 56.43077848678633 56.43077848678633 0 0 1 0 56.43077848678633" id="CircleText--5" transform="rotate(1)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:15px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--5" startOffset="50%">lua</textPath></text><path fill="none" d="M 0 56.43077848678633 A 56.43077848678633 56.43077848678633 0 0 1 0 -56.43077848678633 A 56.43077848678633 56.43077848678633 0 0 1 0 56.43077848678633" id="CircleText--6" transform="rotate(1)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:15px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--6" startOffset="50%">lua</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(198.27998719901586, 337.6260669973246)"><path fill="none" d="M 0 199.44429698130384 A 199.44429698130384 199.44429698130384 0 0 1 0 -199.44429698130384 A 199.44429698130384 199.44429698130384 0 0 1 0 199.44429698130384" id="CircleText--7" transform="rotate(1)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:15px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--7" startOffset="50%">lib</textPath></text><path fill="none" d="M 0 199.44429698130384 A 199.44429698130384 199.44429698130384 0 0 1 0 -199.44429698130384 A 199.44429698130384 199.44429698130384 0 0 1 0 199.44429698130384" id="CircleText--8" transform="rotate(1)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:15px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--8" startOffset="50%">lib</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(208.88195504491605, 675.5633141537206)"><path fill="none" d="M 0 59.711191555393924 A 59.711191555393924 59.711191555393924 0 0 1 0 -59.711191555393924 A 59.711191555393924 59.711191555393924 0 0 1 0 59.711191555393924" id="CircleText--9" transform="rotate(1)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:15px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--9" startOffset="50%">docs</textPath></text><path fill="none" d="M 0 59.711191555393924 A 59.711191555393924 59.711191555393924 0 0 1 0 -59.711191555393924 A 59.711191555393924 59.711191555393924 0 0 1 0 59.711191555393924" id="CircleText--10" transform="rotate(1)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:15px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--10" startOffset="50%">docs</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(467.6316421823875, 199.4691906709776)"><path fill="none" d="M 0 97.27279292068721 A 97.27279292068721 97.27279292068721 0 0 1 0 -97.27279292068721 A 97.27279292068721 97.27279292068721 0 0 1 0 97.27279292068721" id="CircleText--11" transform="rotate(1)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:15px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--11" startOffset="50%">public</textPath></text><path fill="none" d="M 0 97.27279292068721 A 97.27279292068721 97.27279292068721 0 0 1 0 -97.27279292068721 A 97.27279292068721 97.27279292068721 0 0 1 0 97.27279292068721" id="CircleText--12" transform="rotate(1)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:15px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--12" startOffset="50%">public</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(778.8823108255815, 570.0418105310641)"><path fill="none" d="M 0 62.701716889530246 A 62.701716889530246 62.701716889530246 0 0 1 0 -62.701716889530246 A 62.701716889530246 62.701716889530246 0 0 1 0 62.701716889530246" id="CircleText--13" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--13" startOffset="50%">rails6_dummy</textPath></text><path fill="none" d="M 0 62.701716889530246 A 62.701716889530246 62.701716889530246 0 0 1 0 -62.701716889530246 A 62.701716889530246 62.701716889530246 0 0 1 0 62.701716889530246" id="CircleText--14" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--14" startOffset="50%">rails6_dummy</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(717.5698510232253, 693.0974846128829)"><path fill="none" d="M 0 62.86175746988232 A 62.86175746988232 62.86175746988232 0 0 1 0 -62.86175746988232 A 62.86175746988232 62.86175746988232 0 0 1 0 62.86175746988232" id="CircleText--15" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--15" startOffset="50%">rails5_dummy</textPath></text><path fill="none" d="M 0 62.86175746988232 A 62.86175746988232 62.86175746988232 0 0 1 0 -62.86175746988232 A 62.86175746988232 62.86175746988232 0 0 1 0 62.86175746988232" id="CircleText--16" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--16" startOffset="50%">rails5_dummy</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(725.4985440437379, 443.30692177002356)"><path fill="none" d="M 0 62.701716889530246 A 62.701716889530246 62.701716889530246 0 0 1 0 -62.701716889530246 A 62.701716889530246 62.701716889530246 0 0 1 0 62.701716889530246" id="CircleText--17" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--17" startOffset="50%">rails4_dummy</textPath></text><path fill="none" d="M 0 62.701716889530246 A 62.701716889530246 62.701716889530246 0 0 1 0 -62.701716889530246 A 62.701716889530246 62.701716889530246 0 0 1 0 62.701716889530246" id="CircleText--18" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--18" startOffset="50%">rails4_dummy</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(815.9455465684139, 665.1720067360632)"><path fill="none" d="M 0 27.457774832634264 A 27.457774832634264 27.457774832634264 0 0 1 0 -27.457774832634264 A 27.457774832634264 27.457774832634264 0 0 1 0 27.457774832634264" id="CircleText--19" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--19" startOffset="50%">integration</textPath></text><path fill="none" d="M 0 27.457774832634264 A 27.457774832634264 27.457774832634264 0 0 1 0 -27.457774832634264 A 27.457774832634264 27.457774832634264 0 0 1 0 27.457774832634264" id="CircleText--20" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--20" startOffset="50%">integration</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(831.0072570873335, 473.34952443630743)"><path fill="none" d="M 0 35.07716873552073 A 35.07716873552073 35.07716873552073 0 0 1 0 -35.07716873552073 A 35.07716873552073 35.07716873552073 0 0 1 0 35.07716873552073" id="CircleText--21" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--21" startOffset="50%">forked</textPath></text><path fill="none" d="M 0 35.07716873552073 A 35.07716873552073 35.07716873552073 0 0 1 0 -35.07716873552073 A 35.07716873552073 35.07716873552073 0 0 1 0 35.07716873552073" id="CircleText--22" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--22" startOffset="50%">forked</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(896.6200091491909, 619.7698600613876)"><path fill="none" d="M 0 53.16856860568981 A 53.16856860568981 53.16856860568981 0 0 1 0 -53.16856860568981 A 53.16856860568981 53.16856860568981 0 0 1 0 53.16856860568981" id="CircleText--23" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--23" startOffset="50%">fixtures</textPath></text><path fill="none" d="M 0 53.16856860568981 A 53.16856860568981 53.16856860568981 0 0 1 0 -53.16856860568981 A 53.16856860568981 53.16856860568981 0 0 1 0 53.16856860568981" id="CircleText--24" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--24" startOffset="50%">fixtures</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(526.6989790627695, 561.9398180954051)"><path fill="none" d="M 0 156.7840394634931 A 156.7840394634931 156.7840394634931 0 0 1 0 -156.7840394634931 A 156.7840394634931 156.7840394634931 0 0 1 0 156.7840394634931" id="CircleText--25" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--25" startOffset="50%">coverband</textPath></text><path fill="none" d="M 0 156.7840394634931 A 156.7840394634931 156.7840394634931 0 0 1 0 -156.7840394634931 A 156.7840394634931 156.7840394634931 0 0 1 0 156.7840394634931" id="CircleText--26" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--26" startOffset="50%">coverband</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(917.8343197304551, 514.5735602425773)"><path fill="none" d="M 0 42.24316257235544 A 42.24316257235544 42.24316257235544 0 0 1 0 -42.24316257235544 A 42.24316257235544 42.24316257235544 0 0 1 0 42.24316257235544" id="CircleText--27" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--27" startOffset="50%">benchmarks</textPath></text><path fill="none" d="M 0 42.24316257235544 A 42.24316257235544 42.24316257235544 0 0 1 0 -42.24316257235544 A 42.24316257235544 42.24316257235544 0 0 1 0 42.24316257235544" id="CircleText--28" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--28" startOffset="50%">benchmarks</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(271.1191139403885, 583.3120574686816)"><path fill="none" d="M 0 30.926946523691313 A 30.926946523691313 30.926946523691313 0 0 1 0 -30.926946523691313 A 30.926946523691313 30.926946523691313 0 0 1 0 30.926946523691313" id="CircleText--29" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--29" startOffset="50%">test</textPath></text><path fill="none" d="M 0 30.926946523691313 A 30.926946523691313 30.926946523691313 0 0 1 0 -30.926946523691313 A 30.926946523691313 30.926946523691313 0 0 1 0 30.926946523691313" id="CircleText--30" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--30" startOffset="50%">test</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(216.7119859693645, 337.6260669973246)"><path fill="none" d="M 0 173.3140364604603 A 173.3140364604603 173.3140364604603 0 0 1 0 -173.3140364604603 A 173.3140364604603 173.3140364604603 0 0 1 0 173.3140364604603" id="CircleText--31" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--31" startOffset="50%">coverband</textPath></text><path fill="none" d="M 0 173.3140364604603 A 173.3140364604603 173.3140364604603 0 0 1 0 -173.3140364604603 A 173.3140364604603 173.3140364604603 0 0 1 0 173.3140364604603" id="CircleText--32" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--32" startOffset="50%">coverband</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(429.9446446047959, 163.45313746192357)"><path fill="none" d="M 0 25.555279659201105 A 25.555279659201105 25.555279659201105 0 0 1 0 -25.555279659201105 A 25.555279659201105 25.555279659201105 0 0 1 0 25.555279659201105" id="CircleText--33" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--33" startOffset="50%">images</textPath></text><path fill="none" d="M 0 25.555279659201105 A 25.555279659201105 25.555279659201105 0 0 1 0 -25.555279659201105 A 25.555279659201105 25.555279659201105 0 0 1 0 25.555279659201105" id="CircleText--34" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--34" startOffset="50%">images</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(500.1551515815086, 164.90170011239337)"><path fill="none" d="M 0 32.81028069100714 A 32.81028069100714 32.81028069100714 0 0 1 0 -32.81028069100714 A 32.81028069100714 32.81028069100714 0 0 1 0 32.81028069100714" id="CircleText--35" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--35" startOffset="50%">colorbox</textPath></text><path fill="none" d="M 0 32.81028069100714 A 32.81028069100714 32.81028069100714 0 0 1 0 -32.81028069100714 A 32.81028069100714 32.81028069100714 0 0 1 0 32.81028069100714" id="CircleText--36" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--36" startOffset="50%">colorbox</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(798.6841480722314, 548.075689569396)"><path fill="none" d="M 0 20 A 20 20 0 0 1 0 -20 A 20 20 0 0 1 0 20" id="CircleText--37" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--37" startOffset="50%">config</textPath></text><path fill="none" d="M 0 20 A 20 20 0 0 1 0 -20 A 20 20 0 0 1 0 20" id="CircleText--38" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--38" startOffset="50%">config</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(766.3083613514731, 588.9168957753287)"><path fill="none" d="M 0 33.0219230554654 A 33.0219230554654 33.0219230554654 0 0 1 0 -33.0219230554654 A 33.0219230554654 33.0219230554654 0 0 1 0 33.0219230554654" id="CircleText--39" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--39" startOffset="50%">app</textPath></text><path fill="none" d="M 0 33.0219230554654 A 33.0219230554654 33.0219230554654 0 0 1 0 -33.0219230554654 A 33.0219230554654 33.0219230554654 0 0 1 0 33.0219230554654" id="CircleText--40" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--40" startOffset="50%">app</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(737.5223342606196, 671.7986857857035)"><path fill="none" d="M 0 20 A 20 20 0 0 1 0 -20 A 20 20 0 0 1 0 20" id="CircleText--41" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--41" startOffset="50%">config</textPath></text><path fill="none" d="M 0 20 A 20 20 0 0 1 0 -20 A 20 20 0 0 1 0 20" id="CircleText--42" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--42" startOffset="50%">config</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(703.5097815700387, 711.1124169411502)"><path fill="none" d="M 0 33.00955101578958 A 33.00955101578958 33.00955101578958 0 0 1 0 -33.00955101578958 A 33.00955101578958 33.00955101578958 0 0 1 0 33.00955101578958" id="CircleText--43" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--43" startOffset="50%">app</textPath></text><path fill="none" d="M 0 33.00955101578958 A 33.00955101578958 33.00955101578958 0 0 1 0 -33.00955101578958 A 33.00955101578958 33.00955101578958 0 0 1 0 33.00955101578958" id="CircleText--44" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--44" startOffset="50%">app</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(745.3003812903879, 421.3408008083556)"><path fill="none" d="M 0 20 A 20 20 0 0 1 0 -20 A 20 20 0 0 1 0 20" id="CircleText--45" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--45" startOffset="50%">config</textPath></text><path fill="none" d="M 0 20 A 20 20 0 0 1 0 -20 A 20 20 0 0 1 0 20" id="CircleText--46" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--46" startOffset="50%">config</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(712.9245945696291, 462.18200701428793)"><path fill="none" d="M 0 33.0219230554654 A 33.0219230554654 33.0219230554654 0 0 1 0 -33.0219230554654 A 33.0219230554654 33.0219230554654 0 0 1 0 33.0219230554654" id="CircleText--47" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--47" startOffset="50%">app</textPath></text><path fill="none" d="M 0 33.0219230554654 A 33.0219230554654 33.0219230554654 0 0 1 0 -33.0219230554654 A 33.0219230554654 33.0219230554654 0 0 1 0 33.0219230554654" id="CircleText--48" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--48" startOffset="50%">app</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(884.9097644692689, 619.7711966222735)"><path fill="none" d="M 0 34.45832384949299 A 34.45832384949299 34.45832384949299 0 0 1 0 -34.45832384949299 A 34.45832384949299 34.45832384949299 0 0 1 0 34.45832384949299" id="CircleText--49" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--49" startOffset="50%">app</textPath></text><path fill="none" d="M 0 34.45832384949299 A 34.45832384949299 34.45832384949299 0 0 1 0 -34.45832384949299 A 34.45832384949299 34.45832384949299 0 0 1 0 34.45832384949299" id="CircleText--50" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--50" startOffset="50%">app</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(594.3329753174932, 565.9402171865516)"><path fill="none" d="M 0 54.331698519269096 A 54.331698519269096 54.331698519269096 0 0 1 0 -54.331698519269096 A 54.331698519269096 54.331698519269096 0 0 1 0 54.331698519269096" id="CircleText--51" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--51" startOffset="50%">utils</textPath></text><path fill="none" d="M 0 54.331698519269096 A 54.331698519269096 54.331698519269096 0 0 1 0 -54.331698519269096 A 54.331698519269096 54.331698519269096 0 0 1 0 54.331698519269096" id="CircleText--52" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--52" startOffset="50%">utils</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(458.1119989365349, 593.0857339892572)"><path fill="none" d="M 0 32.25264132867093 A 32.25264132867093 32.25264132867093 0 0 1 0 -32.25264132867093 A 32.25264132867093 32.25264132867093 0 0 1 0 32.25264132867093" id="CircleText--53" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--53" startOffset="50%">reporters</textPath></text><path fill="none" d="M 0 32.25264132867093 A 32.25264132867093 32.25264132867093 0 0 1 0 -32.25264132867093 A 32.25264132867093 32.25264132867093 0 0 1 0 32.25264132867093" id="CircleText--54" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--54" startOffset="50%">reporters</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(414.90706084233204, 523.3188216795213)"><path fill="none" d="M 0 31.50887578336677 A 31.50887578336677 31.50887578336677 0 0 1 0 -31.50887578336677 A 31.50887578336677 31.50887578336677 0 0 1 0 31.50887578336677" id="CircleText--55" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--55" startOffset="50%">integrations</textPath></text><path fill="none" d="M 0 31.50887578336677 A 31.50887578336677 31.50887578336677 0 0 1 0 -31.50887578336677 A 31.50887578336677 31.50887578336677 0 0 1 0 31.50887578336677" id="CircleText--56" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--56" startOffset="50%">integrations</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(524.6346810386193, 653.841954969221)"><path fill="none" d="M 0 39.49996301962606 A 39.49996301962606 39.49996301962606 0 0 1 0 -39.49996301962606 A 39.49996301962606 39.49996301962606 0 0 1 0 39.49996301962606" id="CircleText--57" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--57" startOffset="50%">collectors</textPath></text><path fill="none" d="M 0 39.49996301962606 A 39.49996301962606 39.49996301962606 0 0 1 0 -39.49996301962606 A 39.49996301962606 39.49996301962606 0 0 1 0 39.49996301962606" id="CircleText--58" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--58" startOffset="50%">collectors</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(504.2809815744674, 488.46719565592036)"><path fill="none" d="M 0 46.11482483951621 A 46.11482483951621 46.11482483951621 0 0 1 0 -46.11482483951621 A 46.11482483951621 46.11482483951621 0 0 1 0 46.11482483951621" id="CircleText--59" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--59" startOffset="50%">adapters</textPath></text><path fill="none" d="M 0 46.11482483951621 A 46.11482483951621 46.11482483951621 0 0 1 0 -46.11482483951621 A 46.11482483951621 46.11482483951621 0 0 1 0 46.11482483951621" id="CircleText--60" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--60" startOffset="50%">adapters</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(238.19866966458864, 347.7250465803166)"><path fill="none" d="M 0 63.05460032789284 A 63.05460032789284 63.05460032789284 0 0 1 0 -63.05460032789284 A 63.05460032789284 63.05460032789284 0 0 1 0 63.05460032789284" id="CircleText--61" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--61" startOffset="50%">utils</textPath></text><path fill="none" d="M 0 63.05460032789284 A 63.05460032789284 63.05460032789284 0 0 1 0 -63.05460032789284 A 63.05460032789284 63.05460032789284 0 0 1 0 63.05460032789284" id="CircleText--62" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--62" startOffset="50%">utils</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(150.41534260109285, 415.6392727359294)"><path fill="none" d="M 0 38.2347706770341 A 38.2347706770341 38.2347706770341 0 0 1 0 -38.2347706770341 A 38.2347706770341 38.2347706770341 0 0 1 0 38.2347706770341" id="CircleText--63" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--63" startOffset="50%">reporters</textPath></text><path fill="none" d="M 0 38.2347706770341 A 38.2347706770341 38.2347706770341 0 0 1 0 -38.2347706770341 A 38.2347706770341 38.2347706770341 0 0 1 0 38.2347706770341" id="CircleText--64" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--64" startOffset="50%">reporters</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(157.30132476192497, 295.91848795838945)"><path fill="none" d="M 0 23.311178688944565 A 23.311178688944565 23.311178688944565 0 0 1 0 -23.311178688944565 A 23.311178688944565 23.311178688944565 0 0 1 0 23.311178688944565" id="CircleText--65" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--65" startOffset="50%">integrations</textPath></text><path fill="none" d="M 0 23.311178688944565 A 23.311178688944565 23.311178688944565 0 0 1 0 -23.311178688944565 A 23.311178688944565 23.311178688944565 0 0 1 0 23.311178688944565" id="CircleText--66" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--66" startOffset="50%">integrations</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(227.18562918156053, 461.37247159488703)"><path fill="none" d="M 0 41.426927171388044 A 41.426927171388044 41.426927171388044 0 0 1 0 -41.426927171388044 A 41.426927171388044 41.426927171388044 0 0 1 0 41.426927171388044" id="CircleText--67" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--67" startOffset="50%">collectors</textPath></text><path fill="none" d="M 0 41.426927171388044 A 41.426927171388044 41.426927171388044 0 0 1 0 -41.426927171388044 A 41.426927171388044 41.426927171388044 0 0 1 0 41.426927171388044" id="CircleText--68" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--68" startOffset="50%">collectors</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(207.23237893686104, 225.62422928873298)"><path fill="none" d="M 0 53.213485589181076 A 53.213485589181076 53.213485589181076 0 0 1 0 -53.213485589181076 A 53.213485589181076 53.213485589181076 0 0 1 0 53.213485589181076" id="CircleText--69" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--69" startOffset="50%">adapters</textPath></text><path fill="none" d="M 0 53.213485589181076 A 53.213485589181076 53.213485589181076 0 0 1 0 -53.213485589181076 A 53.213485589181076 53.213485589181076 0 0 1 0 53.213485589181076" id="CircleText--70" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--70" startOffset="50%">adapters</textPath></text></g><g style="fill:#CED6E0;transition:transform 0s ease-out" transform="translate(181.66519679506484, 668.7512148924276)"><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;transition:all 0.5s ease-out" fill="#4B5563" text-anchor="middle" dominant-baseline="middle" stroke="white" stroke-width="3" stroke-linejoin="round">coverban...</text><text style="pointer-events:none;opacity:1;font-size:14px;font-weight:500;transition:all 0.5s ease-out" text-anchor="middle" dominant-baseline="middle">coverban...</text><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;mix-blend-mode:color-burn;transition:all 0.5s ease-out" fill="#110101" text-anchor="middle" dominant-baseline="middle">coverban...</text></g><g style="fill:#CED6E0;transition:transform 0s ease-out" transform="translate(235.30821027471342, 666.1276997552529)"><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;transition:all 0.5s ease-out" fill="#4B5563" text-anchor="middle" dominant-baseline="middle" stroke="white" stroke-width="3" stroke-linejoin="round">coverban...</text><text style="pointer-events:none;opacity:1;font-size:14px;font-weight:500;transition:all 0.5s ease-out" text-anchor="middle" dominant-baseline="middle">coverban...</text><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;mix-blend-mode:color-burn;transition:all 0.5s ease-out" fill="#110101" text-anchor="middle" dominant-baseline="middle">coverban...</text></g><g style="fill:#f1e05a;transition:transform 0s ease-out" transform="translate(414.82221112175375, 225.18573711185599)"><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;transition:all 0.5s ease-out" fill="#4B5563" text-anchor="middle" dominant-baseline="middle" stroke="white" stroke-width="3" stroke-linejoin="round">dependenci...</text><text style="pointer-events:none;opacity:1;font-size:14px;font-weight:500;transition:all 0.5s ease-out" text-anchor="middle" dominant-baseline="middle">dependenci...</text><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;mix-blend-mode:color-burn;transition:all 0.5s ease-out" fill="#110101" text-anchor="middle" dominant-baseline="middle">dependenci...</text></g><g style="fill:#563d7c;transition:transform 0s ease-out" transform="translate(512.4152257100293, 234.7075647136296)"><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;transition:all 0.5s ease-out" fill="#4B5563" text-anchor="middle" dominant-baseline="middle" stroke="white" stroke-width="3" stroke-linejoin="round">applicatio...</text><text style="pointer-events:none;opacity:1;font-size:14px;font-weight:500;transition:all 0.5s ease-out" text-anchor="middle" dominant-baseline="middle">applicatio...</text><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;mix-blend-mode:color-burn;transition:all 0.5s ease-out" fill="#110101" text-anchor="middle" dominant-baseline="middle">applicatio...</text></g><g style="fill:#083fa1;transition:transform 0s ease-out" transform="translate(323.836066782082, 805.3139193066313)"><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;transition:all 0.5s ease-out" fill="#4B5563" text-anchor="middle" dominant-baseline="middle" stroke="white" stroke-width="3" stroke-linejoin="round">README.md</text><text style="pointer-events:none;opacity:1;font-size:14px;font-weight:500;transition:all 0.5s ease-out" text-anchor="middle" dominant-baseline="middle">README.md</text><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;mix-blend-mode:color-burn;transition:all 0.5s ease-out" fill="#110101" text-anchor="middle" dominant-baseline="middle">README.md</text></g><g style="fill:#083fa1;transition:transform 0s ease-out" transform="translate(392.0822735420951, 805.2151950193588)"><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;transition:all 0.5s ease-out" fill="#4B5563" text-anchor="middle" dominant-baseline="middle" stroke="white" stroke-width="3" stroke-linejoin="round">changes.md</text><text style="pointer-events:none;opacity:1;font-size:14px;font-weight:500;transition:all 0.5s ease-out" text-anchor="middle" dominant-baseline="middle">changes.md</text><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;mix-blend-mode:color-burn;transition:all 0.5s ease-out" fill="#110101" text-anchor="middle" dominant-baseline="middle">changes.md</text></g><g style="fill:#701516;transition:transform 0s ease-out" transform="translate(908.0069995198396, 514.4503108540416)"><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;transition:all 0.5s ease-out" fill="#4B5563" text-anchor="middle" dominant-baseline="middle" stroke="white" stroke-width="3" stroke-linejoin="round">benchmark...</text><text style="pointer-events:none;opacity:1;font-size:14px;font-weight:500;transition:all 0.5s ease-out" text-anchor="middle" dominant-baseline="middle">benchmark...</text><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;mix-blend-mode:color-burn;transition:all 0.5s ease-out" fill="#110101" text-anchor="middle" dominant-baseline="middle">benchmark...</text></g><g style="fill:#701516;transition:transform 0s ease-out" transform="translate(145.26997953748912, 347.7250465803166)"><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;transition:all 0.5s ease-out" fill="#4B5563" text-anchor="middle" dominant-baseline="middle" stroke="white" stroke-width="3" stroke-linejoin="round">configur...</text><text style="pointer-events:none;opacity:1;font-size:14px;font-weight:500;transition:all 0.5s ease-out" text-anchor="middle" dominant-baseline="middle">configur...</text><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;mix-blend-mode:color-burn;transition:all 0.5s ease-out" fill="#110101" text-anchor="middle" dominant-baseline="middle">configur...</text></g><g style="fill:#CED6E0;transition:transform 0s ease-out" transform="translate(495.6955444300594, 164.86401440712228)"><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;transition:all 0.5s ease-out" fill="#4B5563" text-anchor="middle" dominant-baseline="middle" stroke="white" stroke-width="3" stroke-linejoin="round">loading.gif</text><text style="pointer-events:none;opacity:1;font-size:14px;font-weight:500;transition:all 0.5s ease-out" text-anchor="middle" dominant-baseline="middle">loading.gif</text><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;mix-blend-mode:color-burn;transition:all 0.5s ease-out" fill="#110101" text-anchor="middle" dominant-baseline="middle">loading.gif</text></g><g style="fill:#701516;transition:transform 0s ease-out" transform="translate(218.94649691320922, 348.92416926538016)"><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;transition:all 0.5s ease-out" fill="#4B5563" text-anchor="middle" dominant-baseline="middle" stroke="white" stroke-width="3" stroke-linejoin="round">source_f...</text><text style="pointer-events:none;opacity:1;font-size:14px;font-weight:500;transition:all 0.5s ease-out" text-anchor="middle" dominant-baseline="middle">source_f...</text><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;mix-blend-mode:color-burn;transition:all 0.5s ease-out" fill="#110101" text-anchor="middle" dominant-baseline="middle">source_f...</text></g><g transform="translate(940, 740)"><g transform="translate(0, 0)"><circle r="5" fill="#563d7c"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.css</text></g><g transform="translate(0, 15)"><circle r="5" fill="#701516"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.erb</text></g><g transform="translate(0, 30)"><circle r="5" fill="#701516"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.gemspec</text></g><g transform="translate(0, 45)"><circle r="5" fill="#000000"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.gitignore</text></g><g transform="translate(0, 60)"><circle r="5" fill="#ece2a9"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.haml</text></g><g transform="translate(0, 75)"><circle r="5" fill="#f1e05a"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.js</text></g><g transform="translate(0, 90)"><circle r="5" fill="#000080"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.lua</text></g><g transform="translate(0, 105)"><circle r="5" fill="#083fa1"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.md</text></g><g transform="translate(0, 120)"><circle r="5" fill="#701516"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.rake</text></g><g transform="translate(0, 135)"><circle r="5" fill="#701516"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.rb</text></g><g transform="translate(0, 150)"><circle r="5" fill="#701516"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.ru</text></g><g transform="translate(0, 165)"><circle r="5" fill="#89e051"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.sh</text></g><g transform="translate(0, 180)"><circle r="5" fill="#2b2b2b"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.slim</text></g><g transform="translate(0, 195)"><circle r="5" fill="#ff9900"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.svg</text></g><g transform="translate(0, 210)"><circle r="5" fill="#199f4b"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.txt</text></g><g transform="translate(0, 225)"><circle r="5" fill="#cb171e"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.yml</text></g><g fill="#9CA3AF" style="font-weight:300;font-style:italic;font-size:12px">each dot sized by file size</g></g></svg>
1
+ <svg width="1000" height="1000" style="background:white;font-family:sans-serif;overflow:visible" xmlns="http://www.w3.org/2000/svg"><defs><filter id="glow" x="-50%" y="-50%" width="200%" height="200%"><feGaussianBlur stdDeviation="4" result="coloredBlur"></feGaussianBlur><feMerge><feMergeNode in="coloredBlur"></feMergeNode><feMergeNode in="SourceGraphic"></feMergeNode></feMerge></filter></defs><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(320.0440955851613, 687.1095098202743)"><circle r="41.0223690651281" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(661.4804553274951, 565.0900516031681)"><circle r="305.5611201285023" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#89e051;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(288.9428814644705, 583.2452646411235)"><circle r="51.42382489927203" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(198.29056803988055, 337.5752692065822)"><circle r="194.43887987149773" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(208.90653735006148, 675.4839339054097)"><circle r="54.70448277314053" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(467.62572783315943, 199.42635236170597)"><circle r="92.25990031514071" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(310.08296187238335, 685.6384827820033)"><circle style="transition:all 0.5s ease-out" r="13.299028563894721" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(346.0050009856996, 685.8005401247326)"><circle style="transition:all 0.5s ease-out" r="12.028484959832372" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(328.93665337151947, 706.6667327359944)"><circle style="transition:all 0.5s ease-out" r="11.743638456818244" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(329.0265820181665, 668.0954026167574)"><circle style="transition:all 0.5s ease-out" r="9.31589078189489" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(309.05817469826945, 660.2211276837338)"><circle style="transition:all 0.5s ease-out" r="8.976275495532933" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(305.7585310369056, 710.2717082656536)"><circle style="transition:all 0.5s ease-out" r="8.510899465026252" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(345.693546811314, 666.3283315944777)"><circle style="transition:all 0.5s ease-out" r="4.24448676951863" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(344.8062043587553, 702.4578918669059)"><circle style="transition:all 0.5s ease-out" r="1.4745523900395068" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(704.0130009267003, 526.8945922551312)"><circle style="transition:all 0.5s ease-out" r="16.533032652648004" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(779.0265804969448, 569.8306716213202)"><circle r="61.6981668726683" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(717.8942018035813, 692.9668225846458)"><circle r="61.85831992466662" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(725.6234870754139, 443.0966087239823)"><circle r="61.6981668726683" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(816.2248010855251, 664.9010560509219)"><circle r="26.454166736894685" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(831.1291944101944, 473.1163753017446)"><circle r="34.07246111008902" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(896.8247901002759, 619.3863730582299)"><circle r="52.16148452897065" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(853.7454304870963, 527.1382548108802)"><circle style="transition:all 0.5s ease-out" r="15.961403253503194" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(526.9232224004259, 561.9278965746463)"><circle r="155.80108722167293" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(917.7984642878178, 514.1842004195445)"><circle r="41.23693945990572" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(703.6822329006824, 591.1144869647278)"><circle style="transition:all 0.5s ease-out" r="8.02630323509105" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(856.5806107543642, 559.165810239285)"><circle style="transition:all 0.5s ease-out" r="8.006930039485082" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(852.317368732135, 572.7976878502546)"><circle style="transition:all 0.5s ease-out" r="3.0728968284834415" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(770.9108070466517, 642.4415481089178)"><circle style="transition:all 0.5s ease-out" r="2.7977664490618945" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(792.2668738614016, 498.29098670104605)"><circle style="transition:all 0.5s ease-out" r="2.390672571769306" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(773.5169038017946, 497.5394519638012)"><circle style="transition:all 0.5s ease-out" r="2.172866185307277" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#000080;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(271.1401033139682, 583.2452646411235)"><circle r="29.922724853109994" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#000080;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(320.7147672654104, 583.2452646411235)"><circle style="transition:all 0.5s ease-out" r="15.953617202672337" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#89e051;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(304.6269882462286, 600.905177867421)"><circle style="transition:all 0.5s ease-out" r="4.237162369290774" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(24.129945031214476, 337.5752692065822)"><circle style="transition:all 0.5s ease-out" r="16.579934967171837" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(216.7196639548823, 337.5752692065822)"><circle r="172.31146206083616" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(39.18389976549244, 354.4357756737933)"><circle style="transition:all 0.5s ease-out" r="2.324801148697585" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(181.8982561622121, 667.8965963156165)"><circle style="transition:all 0.5s ease-out" r="23.650696140612183" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(235.1520986859985, 665.563926136353)"><circle style="transition:all 0.5s ease-out" r="23.646755780802433" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#ff9900;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(212.80154791822704, 709.1802046668524)"><circle r="17.7838434726412" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#083fa1;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(215.95348823955632, 634.781776762123)"><circle style="transition:all 0.5s ease-out" r="9.556191686063613" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#083fa1;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(195.14095699913577, 635.7730372435528)"><circle style="transition:all 0.5s ease-out" r="8.049489522879226" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(208.35293740607125, 674.2562664837936)"><circle style="transition:all 0.5s ease-out" r="2.5902284130107796" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(204.79546338036621, 682.4001409768272)"><circle style="transition:all 0.5s ease-out" r="2.5782087267487577" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(213.09470902755157, 681.5338103668971)"><circle style="transition:all 0.5s ease-out" r="2.5661327412662343" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(231.1993141113285, 636.178524249702)"><circle style="transition:all 0.5s ease-out" r="2.553999657970546" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(207.99738754289993, 656.8696010522789)"><circle style="transition:all 0.5s ease-out" r="2.5295589076247826" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(211.357267257043, 649.3382854007112)"><circle style="transition:all 0.5s ease-out" r="2.51724954548789" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#f1e05a;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(414.8220241493654, 225.13754753606952)"><circle style="transition:all 0.5s ease-out" r="30.529187055210553" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#563d7c;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(512.6954159742604, 234.66985959341756)"><circle style="transition:all 0.5s ease-out" r="30.52613459436653" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(459.09401779544265, 257.59119691339134)"><circle style="transition:all 0.5s ease-out" r="21.231213728206328" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#f1e05a;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(463.6290000039327, 209.78308702984688)"><circle style="transition:all 0.5s ease-out" r="17.64012673878576" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(429.9948630491546, 163.4274311963832)"><circle r="24.553137938561665" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(500.197211948622, 164.9155590044098)"><circle r="31.8057494362784" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(450.831255977882, 229.4398213234365)"><circle style="transition:all 0.5s ease-out" r="2.6141019906151572" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(476.6027118772827, 237.180568762732)"><circle style="transition:all 0.5s ease-out" r="2.5782087267487577" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(477.00311069307065, 228.84520809619698)"><circle style="transition:all 0.5s ease-out" r="2.5661327412662343" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(432.119226555109, 257.01925098845095)"><circle style="transition:all 0.5s ease-out" r="2.553999657970546" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(469.5138689451539, 232.441504523016)"><circle style="transition:all 0.5s ease-out" r="2.541808659208787" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#083fa1;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(319.7591050031548, 805.6688459724202)"><circle style="transition:all 0.5s ease-out" r="30.536308277233346" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#083fa1;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(392.1523794030603, 806.6964709054034)"><circle style="transition:all 0.5s ease-out" r="29.603531218879485" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#083fa1;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(366.19198410199033, 854.768800588129)"><circle style="transition:all 0.5s ease-out" r="14.432546384579647" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#083fa1;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(375.9300563425946, 760.0677642146627)"><circle style="transition:all 0.5s ease-out" r="13.859447824501748" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(341.73197393655727, 764.8739874722233)"><circle style="transition:all 0.5s ease-out" r="12.598581143164463" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(342.65853558478807, 841.9277659917557)"><circle style="transition:all 0.5s ease-out" r="9.161231543165425" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#cb171e;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(356.7774448061204, 784.5181793927715)"><circle style="transition:all 0.5s ease-out" r="8.941604545206419" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(356.19178264046775, 826.4169117568249)"><circle style="transition:all 0.5s ease-out" r="8.225079893329148" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#199f4b;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(322.86931202491365, 847.4756653359799)"><circle style="transition:all 0.5s ease-out" r="8.191021445197382" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(405.0869268832439, 771.632058084219)"><circle style="transition:all 0.5s ease-out" r="4.555115764012364" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#000000;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(390.9446194715077, 843.6694978899665)"><circle style="transition:all 0.5s ease-out" r="4.192947291157433" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(394.6337541296217, 768.1041266999961)"><circle style="transition:all 0.5s ease-out" r="3.2783040995438975" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(368.75402375765935, 834.0392904428882)"><circle style="transition:all 0.5s ease-out" r="3.2688155004835364" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(381.11352157218545, 840.6320399819573)"><circle style="transition:all 0.5s ease-out" r="2.895963404371752" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#ff9900;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(370.4444099615012, 778.8012060714244)"><circle style="transition:all 0.5s ease-out" r="2.6728531912102067" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#083fa1;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(359.2643548188532, 770.0869070244897)"><circle style="transition:all 0.5s ease-out" r="2.4924484525239845" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(388.7371631170108, 772.9313451400711)"><circle style="transition:all 0.5s ease-out" r="1.1421833699466706" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(753.7289101917194, 535.3832451510488)"><circle style="transition:all 0.5s ease-out" r="15.959457096908322" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(798.8291935675398, 547.8666020954935)"><circle r="19.785508043185736" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(766.4509352230344, 588.7020287174995)"><circle r="36.02053532290675" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(769.2045379114994, 545.1978480712345)"><circle style="transition:all 0.5s ease-out" r="3.7552522398462793" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(778.8413147628413, 548.1139368728197)"><circle style="transition:all 0.5s ease-out" r="3.1130671194246937" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(696.3721539993559, 655.8573374059551)"><circle style="transition:all 0.5s ease-out" r="15.959457096908322" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(737.8475773057486, 671.66969255637)"><circle r="20.302671609765945" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(703.8331610124201, 710.9783935990504)"><circle r="36.00816547141098" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(711.8237424971333, 668.4618130482025)"><circle style="transition:all 0.5s ease-out" r="3.7552522398462793" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(719.4196606166047, 673.193662589512)"><circle style="transition:all 0.5s ease-out" r="1.9939587620191874" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(700.3258167701888, 408.6491822537106)"><circle style="transition:all 0.5s ease-out" r="15.959457096908322" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(745.4261001460092, 421.1325391981557)"><circle r="19.785508043185736" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(713.0478418015034, 461.9679658201615)"><circle r="36.02053532290675" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(715.8014444899688, 418.46378517389644)"><circle style="transition:all 0.5s ease-out" r="3.7552522398462793" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(725.4382213413106, 421.37987397548187)"><circle style="transition:all 0.5s ease-out" r="3.1130671194246937" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(803.9668698168911, 664.9010560509219)"><circle style="transition:all 0.5s ease-out" r="10.497913572600915" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(828.5718756059559, 664.9010560509219)"><circle style="transition:all 0.5s ease-out" r="10.408770320804074" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(815.0265494402948, 471.62504630626734)"><circle style="transition:all 0.5s ease-out" r="14.202582789663454" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(843.0855194523328, 471.62504630626734)"><circle style="transition:all 0.5s ease-out" r="10.158065326714812" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(832.8046422103037, 493.29363138790177)"><circle style="transition:all 0.5s ease-out" r="10.127441002195805" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(832.6094482949997, 451.56629178366575)"><circle style="transition:all 0.5s ease-out" r="8.773276935352108" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(885.1160757896745, 619.3877075929289)"><circle r="37.45277014231553" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(936.8250038534792, 619.4423965039002)"><circle style="transition:all 0.5s ease-out" r="9.161231543165425" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(931.4512126875001, 632.6868783605919)"><circle style="transition:all 0.5s ease-out" r="3.062771934966543" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(930.9693990649134, 607.5109014969189)"><circle style="transition:all 0.5s ease-out" r="2.229313668103115" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(928.2191424895043, 600.8659312975528)"><circle style="transition:all 0.5s ease-out" r="1.762427202537626" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(927.3617271272764, 639.3977315754133)"><circle style="transition:all 0.5s ease-out" r="1.595945709690832" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(924.9038923038592, 595.7727921287513)"><circle style="transition:all 0.5s ease-out" r="1.1146568340515572" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(509.2101274402586, 561.1285898554693)"><circle style="transition:all 0.5s ease-out" r="16.911956103361995" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(594.0351154989638, 566.3657633746085)"><circle r="57.32332841316585" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(458.850061787801, 593.611303270355)"><circle r="35.24751550395715" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(415.7438940293957, 523.1522317988723)"><circle r="35.053920649238755" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(524.9928948663709, 654.7638039861384)"><circle r="42.49357187372219" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(505.33042139247726, 487.379551019095)"><circle r="49.10760072720852" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(583.2685923837618, 640.4296318393759)"><circle style="transition:all 0.5s ease-out" r="9.749265567922787" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(527.7361726360534, 544.7034088431643)"><circle style="transition:all 0.5s ease-out" r="4.66960067913704" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(907.972566381131, 514.060970506728)"><circle style="transition:all 0.5s ease-out" r="26.688990921692266" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#89e051;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(946.8307843176606, 512.2414949050201)"><circle style="transition:all 0.5s ease-out" r="9.00046569472376" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#89e051;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(941.3252296120834, 531.3255498964007)"><circle style="transition:all 0.5s ease-out" r="7.661998973911638" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(934.261496369253, 492.3421914561861)"><circle style="transition:all 0.5s ease-out" r="4.200348792577748" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(937.4192093747499, 501.3796298903501)"><circle style="transition:all 0.5s ease-out" r="2.172866185307277" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#000000;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(930.1970141604477, 535.595940439652)"><circle style="transition:all 0.5s ease-out" r="1.0574563215225756" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#000080;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(259.5640046073321, 583.2452646411235)"><circle style="transition:all 0.5s ease-out" r="14.648304250814057" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#000080;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(287.6375685126122, 583.2452646411235)"><circle style="transition:all 0.5s ease-out" r="9.726937758806242" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#000080;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(277.27787378114857, 598.5906657828161)"><circle style="transition:all 0.5s ease-out" r="5.08972376784831" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#000080;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(276.79082690554264, 571.8439180468591)"><circle style="transition:all 0.5s ease-out" r="2.311401606839607" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(145.23859723062782, 347.69864762740224)"><circle style="transition:all 0.5s ease-out" r="23.171729057282757" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(238.15357248072684, 347.69864762740224)"><circle r="66.04492429715646" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(150.38239997180227, 415.60270211282636)"><circle r="41.22854904881643" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(157.24689592365584, 295.84920760056366)"><circle r="26.351783556943587" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(227.14146867600633, 461.32995075916983)"><circle r="44.420405998367634" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(207.28791388730755, 225.57708296821852)"><circle r="56.218515605011554" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(127.72494526061479, 318.51235810585007)"><circle style="transition:all 0.5s ease-out" r="7.16768547829812" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(248.71569839782808, 274.513288876657)"><circle style="transition:all 0.5s ease-out" r="4.200348792577748" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#ff9900;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(209.65871646106274, 708.4060817754512)"><circle style="transition:all 0.5s ease-out" r="2.5661327412662343" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#ff9900;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(217.70939100093068, 710.5065080121914)"><circle style="transition:all 0.5s ease-out" r="2.553999657970546" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#ff9900;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(211.88205241859302, 716.4109707092156)"><circle style="transition:all 0.5s ease-out" r="2.541808659208787" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#ff9900;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(215.50132171832544, 702.5169024374999)"><circle style="transition:all 0.5s ease-out" r="2.5295589076247826" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(202.28641573585958, 704.6293890665039)"><circle style="transition:all 0.5s ease-out" r="2.51724954548789" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#ff9900;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(203.8341030172719, 714.2783224421274)"><circle style="transition:all 0.5s ease-out" r="2.504879693992128" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(223.45691401805325, 704.5929458355382)"><circle style="transition:all 0.5s ease-out" r="2.4924484525239845" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(425.66049366015994, 162.39649640191774)"><circle style="transition:all 0.5s ease-out" r="2.637759504410497" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(434.12118166124463, 162.62580740679127)"><circle style="transition:all 0.5s ease-out" r="2.625957389262632" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(429.70693872393343, 169.81943369228344)"><circle style="transition:all 0.5s ease-out" r="2.6141019906151572" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(430.1009400527615, 155.21843081970505)"><circle style="transition:all 0.5s ease-out" r="2.602192580201019" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(421.713151919664, 154.9436535842551)"><circle style="transition:all 0.5s ease-out" r="2.5902284130107796" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(421.31683064278377, 169.60490214928654)"><circle style="transition:all 0.5s ease-out" r="2.5782087267487577" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(438.46607259301186, 155.44532960128217)"><circle style="transition:all 0.5s ease-out" r="2.5661327412662343" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(438.3312464170361, 169.871223949124)"><circle style="transition:all 0.5s ease-out" r="2.553999657970546" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(417.29007513657416, 162.00473209595285)"><circle style="transition:all 0.5s ease-out" r="2.541808659208787" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(413.02452491120516, 169.09138170580943)"><circle style="transition:all 0.5s ease-out" r="2.5295589076247826" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(442.4640623983199, 162.69979859714735)"><circle style="transition:all 0.5s ease-out" r="2.51724954548789" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(446.59255877135035, 169.81027867422054)"><circle style="transition:all 0.5s ease-out" r="2.504879693992128" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(434.5130140198101, 148.19451091724835)"><circle style="transition:all 0.5s ease-out" r="2.4924484525239845" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(495.73801288091965, 164.87788235205582)"><circle style="transition:all 0.5s ease-out" r="23.648069307023743" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(525.6139629912279, 164.87788235205582)"><circle style="transition:all 0.5s ease-out" r="2.5295589076247826" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(524.3129980601932, 173.51319335693657)"><circle style="transition:all 0.5s ease-out" r="2.504879693992128" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#CED6E0;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(524.3042107479487, 156.25647345379937)"><circle style="transition:all 0.5s ease-out" r="2.4924484525239845" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(794.4774479504858, 548.1356811114016)"><circle style="transition:all 0.5s ease-out" r="4.479478396177409" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(806.2552942979823, 549.2363929693095)"><circle style="transition:all 0.5s ease-out" r="4.14826096444222" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#cb171e;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(799.8372622639664, 557.5602341790801)"><circle style="transition:all 0.5s ease-out" r="3.1625625455423996" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(801.4786873752445, 539.9485036455743)"><circle style="transition:all 0.5s ease-out" r="3.0930471875277585" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(788.4745740435021, 539.455213429994)"><circle style="transition:all 0.5s ease-out" r="2.8744317792723213" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(788.4732586671385, 556.392439293017)"><circle style="transition:all 0.5s ease-out" r="2.5295589076247826" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(810.1007008170399, 540.3459939717364)"><circle style="transition:all 0.5s ease-out" r="2.338123900453204" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(749.2757512364076, 588.7020287174995)"><circle r="9.229714407564451" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(780.4884680949566, 588.7020287174995)"><circle r="12.367365522269086" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(729.7865604298578, 672.368301787349)"><circle style="transition:all 0.5s ease-out" r="7.058515445451928" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(749.0173675912392, 671.4445530885108)"><circle style="transition:all 0.5s ease-out" r="6.130612587283567" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(740.5847191672291, 682.264415839197)"><circle style="transition:all 0.5s ease-out" r="4.38840834407152" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(739.5931479164078, 661.8202396954226)"><circle style="transition:all 0.5s ease-out" r="4.1407663585657914" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(730.4124242287338, 660.1316291284224)"><circle style="transition:all 0.5s ease-out" r="1.9939587620191874" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(686.670346877289, 710.9783935990504)"><circle r="9.229714407564451" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(717.8706938843422, 710.9783935990504)"><circle r="12.354995670773324" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(741.0743545289549, 421.4016182140637)"><circle style="transition:all 0.5s ease-out" r="4.479478396177409" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(752.8522008764515, 422.5023300719715)"><circle style="transition:all 0.5s ease-out" r="4.14826096444222" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#cb171e;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(746.4341688424355, 430.8261712817422)"><circle style="transition:all 0.5s ease-out" r="3.1625625455423996" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(748.0755939537137, 413.2144407482364)"><circle style="transition:all 0.5s ease-out" r="3.0930471875277585" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(735.0714806219715, 412.72115053265594)"><circle style="transition:all 0.5s ease-out" r="2.8744317792723213" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(735.0701652456086, 429.65837639567974)"><circle style="transition:all 0.5s ease-out" r="2.5295589076247826" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(756.6976073955091, 413.61193107439857)"><circle style="transition:all 0.5s ease-out" r="2.338123900453204" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(695.8726578148766, 461.9679658201615)"><circle r="9.229714407564451" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(727.0853746734256, 461.9679658201615)"><circle r="12.367365522269086" style="transition:all 0.5s ease-out" stroke="#290819" stroke-opacity="0.2" stroke-width="1" fill="white"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(867.3152447456911, 619.3877075929289)"><circle style="transition:all 0.5s ease-out" r="15.953617202672337" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(902.9188539401767, 619.3877075929289)"><circle style="transition:all 0.5s ease-out" r="15.951670096153501" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(580.1234587627545, 567.6325186033819)"><circle style="transition:all 0.5s ease-out" r="16.952314446278734" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(615.2735824498051, 566.7641061144061)"><circle style="transition:all 0.5s ease-out" r="15.008596609963858" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(600.3007787596385, 596.2569104543846)"><circle style="transition:all 0.5s ease-out" r="14.867199086729348" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(598.8271096185126, 539.7099184699977)"><circle style="transition:all 0.5s ease-out" r="13.452296394061891" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(569.0933881773469, 536.0445989253675)"><circle style="transition:all 0.5s ease-out" r="13.306033583376465" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(568.2584133381015, 596.8660652970807)"><circle style="transition:all 0.5s ease-out" r="11.397332061597103" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(626.4763468789299, 539.8007588601218)"><circle style="transition:all 0.5s ease-out" r="10.989408453971949" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(628.257989302277, 592.032744531328)"><circle style="transition:all 0.5s ease-out" r="10.200784924808197" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(552.2976241489417, 556.3778517552003)"><circle style="transition:all 0.5s ease-out" r="9.863295942926023" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(552.8967784177412, 578.6580210690795)"><circle style="transition:all 0.5s ease-out" r="9.222059274338744" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(639.0675234171687, 557.7346999545609)"><circle style="transition:all 0.5s ease-out" r="7.240981010529505" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(638.8450084719805, 574.9068297375163)"><circle style="transition:all 0.5s ease-out" r="6.729610821814759" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(443.88962403047935, 590.1913451163624)"><circle style="transition:all 0.5s ease-out" r="16.20283209601191" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(476.9347516683847, 590.1913451163624)"><circle style="transition:all 0.5s ease-out" r="13.143973646233654" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(463.10379275933275, 614.0158968815783)"><circle style="transition:all 0.5s ease-out" r="10.705929285803537" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(462.76575842975313, 570.9487362547126)"><circle style="transition:all 0.5s ease-out" r="7.054113502120485" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(405.9496110731497, 526.5532572819772)"><circle style="transition:all 0.5s ease-out" r="11.000708619892162" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(437.41240207548515, 522.3322595881416)"><circle style="transition:all 0.5s ease-out" r="10.369903600504111" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(424.32526744039245, 540.6949999273659)"><circle style="transition:all 0.5s ease-out" r="8.986650697026098" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(420.0145202037343, 508.5684750556069)"><circle style="transition:all 0.5s ease-out" r="8.623295337816964" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(400.62258698719796, 505.1350834576568)"><circle style="transition:all 0.5s ease-out" r="7.869982459080667" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(409.42271282042736, 543.3477938956881)"><circle style="transition:all 0.5s ease-out" r="2.949104780079014" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(506.80553497308125, 644.9192608937551)"><circle style="transition:all 0.5s ease-out" r="18.114459650180013" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(545.0609216967829, 644.9192608937551)"><circle style="transition:all 0.5s ease-out" r="16.44260517786188" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(527.5668976759175, 677.0058285714978)"><circle style="transition:all 0.5s ease-out" r="16.40477994906827" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(487.04648599297167, 487.1465556469088)"><circle style="transition:all 0.5s ease-out" r="19.060305936444166" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(535.3444159754513, 484.89040680835564)"><circle style="transition:all 0.5s ease-out" r="15.990567179253391" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(514.6215824497654, 511.34627206023634)"><circle style="transition:all 0.5s ease-out" r="14.423935079287604" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(512.267092664751, 466.6943960134847)"><circle style="transition:all 0.5s ease-out" r="10.206873128826672" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(491.90606313940515, 455.35685513243334)"><circle style="transition:all 0.5s ease-out" r="9.897876528805295" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(490.0647162076586, 516.7805837985555)"><circle style="transition:all 0.5s ease-out" r="7.5270292620011485" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(218.90470517807466, 348.8975640701658)"><circle style="transition:all 0.5s ease-out" r="23.238656956639442" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(263.89774857002135, 348.8975640701658)"><circle style="transition:all 0.5s ease-out" r="18.056064539647434" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(245.7603550543946, 379.12658555034557)"><circle style="transition:all 0.5s ease-out" r="13.498397613472067" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(245.64215184481714, 319.94600176769603)"><circle style="transition:all 0.5s ease-out" r="12.472208071699642" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(219.17647542857458, 309.7816398615523)"><circle style="transition:all 0.5s ease-out" r="12.179889449790675" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(217.82331208444134, 387.9072896837597)"><circle style="transition:all 0.5s ease-out" r="12.087732594050305" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(273.50742457921035, 316.65660888730946)"><circle style="transition:all 0.5s ease-out" r="11.888221431868159" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(274.0758469773638, 380.1758137392038)"><circle style="transition:all 0.5s ease-out" r="11.138205276934405" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(194.9352318121714, 320.15437817943507)"><circle style="transition:all 0.5s ease-out" r="10.4890333395954" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(194.68337547949176, 376.6904226536212)"><circle style="transition:all 0.5s ease-out" r="9.929208916541322" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(239.7888653880404, 294.9140395495729)"><circle style="transition:all 0.5s ease-out" r="9.536669312893363" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(236.46285094518242, 402.27240210485877)"><circle style="transition:all 0.5s ease-out" r="7.746664516216365" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(286.89465648365035, 333.49425264004515)"><circle style="transition:all 0.5s ease-out" r="5.924482338564612" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(285.91353475897864, 364.1926532269878)"><circle style="transition:all 0.5s ease-out" r="5.052974379085119" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(132.76370065031594, 415.60270211282636)"><circle style="transition:all 0.5s ease-out" r="19.911527831670305" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(172.14308875130249, 415.60270211282636)"><circle style="transition:all 0.5s ease-out" r="15.769538373656436" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(155.704343372142, 439.2952572978255)"><circle style="transition:all 0.5s ease-out" r="9.36908687900547" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(155.29384872927008, 397.2228555148515)"><circle style="transition:all 0.5s ease-out" r="5.466366213274873" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(148.91206020909854, 295.84263621148915)"><circle style="transition:all 0.5s ease-out" r="10.309822540958224" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(169.84992855796744, 295.84263621148915)"><circle style="transition:all 0.5s ease-out" r="6.929723912250874" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(162.4102878479447, 311.21142258549503)"><circle style="transition:all 0.5s ease-out" r="6.446726474730628" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(162.06299036290437, 283.11184426322285)"><circle style="transition:all 0.5s ease-out" r="4.295407883637238" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(151.2750764089284, 278.08174454882436)"><circle style="transition:all 0.5s ease-out" r="3.9092526459265136" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(205.36456456947656, 457.9001317725035)"><circle style="transition:all 0.5s ease-out" r="18.676739679308827" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(243.03115795845042, 457.9001317725035)"><circle style="transition:all 0.5s ease-out" r="15.291531814005218" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(227.36204096469774, 487.52631078998854)"><circle style="transition:all 0.5s ease-out" r="14.524795483485937" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(227.08219053709087, 432.0188771755729)"><circle style="transition:all 0.5s ease-out" r="11.410950577700955" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(195.5543597710994, 225.18179724881645)"><circle style="transition:all 0.5s ease-out" r="19.731315121137225" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(237.23682152385652, 225.18179724881645)"><circle style="transition:all 0.5s ease-out" r="18.25282473596008" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(217.81242379766454, 259.2364604388086)"><circle style="transition:all 0.5s ease-out" r="17.253793261320908" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(217.7283630531628, 193.93694184605727)"><circle style="transition:all 0.5s ease-out" r="14.883903810073654" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(187.16654924717872, 190.59262232295356)"><circle style="transition:all 0.5s ease-out" r="12.162024751616318" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(190.1273135630446, 255.15615802624808)"><circle style="transition:all 0.5s ease-out" r="7.03206245253653" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(242.94369730632434, 196.98564325854034)"><circle style="transition:all 0.5s ease-out" r="6.816743993865346" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(745.8331530170909, 586.8758283634884)"><circle style="transition:all 0.5s ease-out" r="1.634407750241768" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#2b2b2b;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(752.7618283726833, 586.8758283634884)"><circle style="transition:all 0.5s ease-out" r="1.595945709690832" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#ece2a9;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(749.3352882215769, 592.7375129962558)"><circle style="transition:all 0.5s ease-out" r="1.4954690715143906" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(776.1220576016389, 588.7020287174995)"><circle style="transition:all 0.5s ease-out" r="4.3026331332915" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(786.640262176078, 588.7020287174995)"><circle style="transition:all 0.5s ease-out" r="2.51724954548789" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(683.2277486579724, 709.1521932450393)"><circle style="transition:all 0.5s ease-out" r="1.634407750241768" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#2b2b2b;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(690.1564240135648, 709.1521932450393)"><circle style="transition:all 0.5s ease-out" r="1.595945709690832" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#ece2a9;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(686.7298838624583, 715.0138778778066)"><circle style="transition:all 0.5s ease-out" r="1.4954690715143906" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(713.5166532425202, 710.9783935990504)"><circle style="transition:all 0.5s ease-out" r="4.3026331332915" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(724.0224879654636, 710.9783935990504)"><circle style="transition:all 0.5s ease-out" r="2.504879693992128" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(692.4300595955599, 460.1417654661504)"><circle style="transition:all 0.5s ease-out" r="1.634407750241768" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#2b2b2b;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(699.3587349511523, 460.1417654661504)"><circle style="transition:all 0.5s ease-out" r="1.595945709690832" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#ece2a9;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(695.9321948000459, 466.00345009891777)"><circle style="transition:all 0.5s ease-out" r="1.4954690715143906" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(722.7189641801078, 461.9679658201615)"><circle style="transition:all 0.5s ease-out" r="4.3026331332915" stroke-width="0" stroke="#374151"></circle></g><g style="fill:#701516;transition:transform 0s ease-out, fill 0.1s ease-out" transform="translate(733.2371687545469, 461.9679658201615)"><circle style="transition:all 0.5s ease-out" r="2.51724954548789" stroke-width="0" stroke="#374151"></circle></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(320.0440955851613, 687.1095098202743)"><path fill="none" d="M 0 46.0223690651281 A 46.0223690651281 46.0223690651281 0 0 1 0 -46.0223690651281 A 46.0223690651281 46.0223690651281 0 0 1 0 46.0223690651281" id="CircleText--1" transform="rotate(1)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:15px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--1" startOffset="50%">views</textPath></text><path fill="none" d="M 0 46.0223690651281 A 46.0223690651281 46.0223690651281 0 0 1 0 -46.0223690651281 A 46.0223690651281 46.0223690651281 0 0 1 0 46.0223690651281" id="CircleText--2" transform="rotate(1)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:15px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--2" startOffset="50%">views</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(661.4804553274951, 565.0900516031681)"><path fill="none" d="M 0 310.5611201285023 A 310.5611201285023 310.5611201285023 0 0 1 0 -310.5611201285023 A 310.5611201285023 310.5611201285023 0 0 1 0 310.5611201285023" id="CircleText--3" transform="rotate(1)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:15px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--3" startOffset="50%">test</textPath></text><path fill="none" d="M 0 310.5611201285023 A 310.5611201285023 310.5611201285023 0 0 1 0 -310.5611201285023 A 310.5611201285023 310.5611201285023 0 0 1 0 310.5611201285023" id="CircleText--4" transform="rotate(1)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:15px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--4" startOffset="50%">test</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(288.9428814644705, 583.2452646411235)"><path fill="none" d="M 0 56.42382489927203 A 56.42382489927203 56.42382489927203 0 0 1 0 -56.42382489927203 A 56.42382489927203 56.42382489927203 0 0 1 0 56.42382489927203" id="CircleText--5" transform="rotate(1)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:15px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--5" startOffset="50%">lua</textPath></text><path fill="none" d="M 0 56.42382489927203 A 56.42382489927203 56.42382489927203 0 0 1 0 -56.42382489927203 A 56.42382489927203 56.42382489927203 0 0 1 0 56.42382489927203" id="CircleText--6" transform="rotate(1)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:15px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--6" startOffset="50%">lua</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(198.29056803988055, 337.5752692065822)"><path fill="none" d="M 0 199.43887987149773 A 199.43887987149773 199.43887987149773 0 0 1 0 -199.43887987149773 A 199.43887987149773 199.43887987149773 0 0 1 0 199.43887987149773" id="CircleText--7" transform="rotate(1)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:15px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--7" startOffset="50%">lib</textPath></text><path fill="none" d="M 0 199.43887987149773 A 199.43887987149773 199.43887987149773 0 0 1 0 -199.43887987149773 A 199.43887987149773 199.43887987149773 0 0 1 0 199.43887987149773" id="CircleText--8" transform="rotate(1)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:15px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--8" startOffset="50%">lib</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(208.90653735006148, 675.4839339054097)"><path fill="none" d="M 0 59.70448277314054 A 59.70448277314054 59.70448277314054 0 0 1 0 -59.70448277314054 A 59.70448277314054 59.70448277314054 0 0 1 0 59.70448277314054" id="CircleText--9" transform="rotate(1)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:15px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--9" startOffset="50%">docs</textPath></text><path fill="none" d="M 0 59.70448277314054 A 59.70448277314054 59.70448277314054 0 0 1 0 -59.70448277314054 A 59.70448277314054 59.70448277314054 0 0 1 0 59.70448277314054" id="CircleText--10" transform="rotate(1)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:15px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--10" startOffset="50%">docs</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(467.62572783315943, 199.42635236170597)"><path fill="none" d="M 0 97.25990031514071 A 97.25990031514071 97.25990031514071 0 0 1 0 -97.25990031514071 A 97.25990031514071 97.25990031514071 0 0 1 0 97.25990031514071" id="CircleText--11" transform="rotate(1)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:15px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--11" startOffset="50%">public</textPath></text><path fill="none" d="M 0 97.25990031514071 A 97.25990031514071 97.25990031514071 0 0 1 0 -97.25990031514071 A 97.25990031514071 97.25990031514071 0 0 1 0 97.25990031514071" id="CircleText--12" transform="rotate(1)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:15px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--12" startOffset="50%">public</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(779.0265804969448, 569.8306716213202)"><path fill="none" d="M 0 62.69816687266831 A 62.69816687266831 62.69816687266831 0 0 1 0 -62.69816687266831 A 62.69816687266831 62.69816687266831 0 0 1 0 62.69816687266831" id="CircleText--13" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--13" startOffset="50%">rails6_dummy</textPath></text><path fill="none" d="M 0 62.69816687266831 A 62.69816687266831 62.69816687266831 0 0 1 0 -62.69816687266831 A 62.69816687266831 62.69816687266831 0 0 1 0 62.69816687266831" id="CircleText--14" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--14" startOffset="50%">rails6_dummy</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(717.8942018035813, 692.9668225846458)"><path fill="none" d="M 0 62.85831992466662 A 62.85831992466662 62.85831992466662 0 0 1 0 -62.85831992466662 A 62.85831992466662 62.85831992466662 0 0 1 0 62.85831992466662" id="CircleText--15" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--15" startOffset="50%">rails5_dummy</textPath></text><path fill="none" d="M 0 62.85831992466662 A 62.85831992466662 62.85831992466662 0 0 1 0 -62.85831992466662 A 62.85831992466662 62.85831992466662 0 0 1 0 62.85831992466662" id="CircleText--16" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--16" startOffset="50%">rails5_dummy</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(725.6234870754139, 443.0966087239823)"><path fill="none" d="M 0 62.69816687266831 A 62.69816687266831 62.69816687266831 0 0 1 0 -62.69816687266831 A 62.69816687266831 62.69816687266831 0 0 1 0 62.69816687266831" id="CircleText--17" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--17" startOffset="50%">rails4_dummy</textPath></text><path fill="none" d="M 0 62.69816687266831 A 62.69816687266831 62.69816687266831 0 0 1 0 -62.69816687266831 A 62.69816687266831 62.69816687266831 0 0 1 0 62.69816687266831" id="CircleText--18" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--18" startOffset="50%">rails4_dummy</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(816.2248010855251, 664.9010560509219)"><path fill="none" d="M 0 27.454166736894685 A 27.454166736894685 27.454166736894685 0 0 1 0 -27.454166736894685 A 27.454166736894685 27.454166736894685 0 0 1 0 27.454166736894685" id="CircleText--19" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--19" startOffset="50%">integration</textPath></text><path fill="none" d="M 0 27.454166736894685 A 27.454166736894685 27.454166736894685 0 0 1 0 -27.454166736894685 A 27.454166736894685 27.454166736894685 0 0 1 0 27.454166736894685" id="CircleText--20" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--20" startOffset="50%">integration</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(831.1291944101944, 473.1163753017446)"><path fill="none" d="M 0 35.07246111008902 A 35.07246111008902 35.07246111008902 0 0 1 0 -35.07246111008902 A 35.07246111008902 35.07246111008902 0 0 1 0 35.07246111008902" id="CircleText--21" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--21" startOffset="50%">forked</textPath></text><path fill="none" d="M 0 35.07246111008902 A 35.07246111008902 35.07246111008902 0 0 1 0 -35.07246111008902 A 35.07246111008902 35.07246111008902 0 0 1 0 35.07246111008902" id="CircleText--22" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--22" startOffset="50%">forked</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(896.8247901002759, 619.3863730582299)"><path fill="none" d="M 0 53.16148452897065 A 53.16148452897065 53.16148452897065 0 0 1 0 -53.16148452897065 A 53.16148452897065 53.16148452897065 0 0 1 0 53.16148452897065" id="CircleText--23" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--23" startOffset="50%">fixtures</textPath></text><path fill="none" d="M 0 53.16148452897065 A 53.16148452897065 53.16148452897065 0 0 1 0 -53.16148452897065 A 53.16148452897065 53.16148452897065 0 0 1 0 53.16148452897065" id="CircleText--24" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--24" startOffset="50%">fixtures</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(526.9232224004259, 561.9278965746463)"><path fill="none" d="M 0 156.80108722167293 A 156.80108722167293 156.80108722167293 0 0 1 0 -156.80108722167293 A 156.80108722167293 156.80108722167293 0 0 1 0 156.80108722167293" id="CircleText--25" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--25" startOffset="50%">coverband</textPath></text><path fill="none" d="M 0 156.80108722167293 A 156.80108722167293 156.80108722167293 0 0 1 0 -156.80108722167293 A 156.80108722167293 156.80108722167293 0 0 1 0 156.80108722167293" id="CircleText--26" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--26" startOffset="50%">coverband</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(917.7984642878178, 514.1842004195445)"><path fill="none" d="M 0 42.23693945990572 A 42.23693945990572 42.23693945990572 0 0 1 0 -42.23693945990572 A 42.23693945990572 42.23693945990572 0 0 1 0 42.23693945990572" id="CircleText--27" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--27" startOffset="50%">benchmarks</textPath></text><path fill="none" d="M 0 42.23693945990572 A 42.23693945990572 42.23693945990572 0 0 1 0 -42.23693945990572 A 42.23693945990572 42.23693945990572 0 0 1 0 42.23693945990572" id="CircleText--28" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--28" startOffset="50%">benchmarks</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(271.1401033139682, 583.2452646411235)"><path fill="none" d="M 0 30.922724853109997 A 30.922724853109997 30.922724853109997 0 0 1 0 -30.922724853109997 A 30.922724853109997 30.922724853109997 0 0 1 0 30.922724853109997" id="CircleText--29" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--29" startOffset="50%">test</textPath></text><path fill="none" d="M 0 30.922724853109997 A 30.922724853109997 30.922724853109997 0 0 1 0 -30.922724853109997 A 30.922724853109997 30.922724853109997 0 0 1 0 30.922724853109997" id="CircleText--30" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--30" startOffset="50%">test</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(216.7196639548823, 337.5752692065822)"><path fill="none" d="M 0 173.31146206083616 A 173.31146206083616 173.31146206083616 0 0 1 0 -173.31146206083616 A 173.31146206083616 173.31146206083616 0 0 1 0 173.31146206083616" id="CircleText--31" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--31" startOffset="50%">coverband</textPath></text><path fill="none" d="M 0 173.31146206083616 A 173.31146206083616 173.31146206083616 0 0 1 0 -173.31146206083616 A 173.31146206083616 173.31146206083616 0 0 1 0 173.31146206083616" id="CircleText--32" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--32" startOffset="50%">coverband</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(429.9948630491546, 163.4274311963832)"><path fill="none" d="M 0 25.55313793856166 A 25.55313793856166 25.55313793856166 0 0 1 0 -25.55313793856166 A 25.55313793856166 25.55313793856166 0 0 1 0 25.55313793856166" id="CircleText--33" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--33" startOffset="50%">images</textPath></text><path fill="none" d="M 0 25.55313793856166 A 25.55313793856166 25.55313793856166 0 0 1 0 -25.55313793856166 A 25.55313793856166 25.55313793856166 0 0 1 0 25.55313793856166" id="CircleText--34" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--34" startOffset="50%">images</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(500.197211948622, 164.9155590044098)"><path fill="none" d="M 0 32.805749436278404 A 32.805749436278404 32.805749436278404 0 0 1 0 -32.805749436278404 A 32.805749436278404 32.805749436278404 0 0 1 0 32.805749436278404" id="CircleText--35" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--35" startOffset="50%">colorbox</textPath></text><path fill="none" d="M 0 32.805749436278404 A 32.805749436278404 32.805749436278404 0 0 1 0 -32.805749436278404 A 32.805749436278404 32.805749436278404 0 0 1 0 32.805749436278404" id="CircleText--36" transform="rotate(2)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:14px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--36" startOffset="50%">colorbox</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(798.8291935675398, 547.8666020954935)"><path fill="none" d="M 0 20 A 20 20 0 0 1 0 -20 A 20 20 0 0 1 0 20" id="CircleText--37" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--37" startOffset="50%">config</textPath></text><path fill="none" d="M 0 20 A 20 20 0 0 1 0 -20 A 20 20 0 0 1 0 20" id="CircleText--38" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--38" startOffset="50%">config</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(766.4509352230344, 588.7020287174995)"><path fill="none" d="M 0 33.02053532290675 A 33.02053532290675 33.02053532290675 0 0 1 0 -33.02053532290675 A 33.02053532290675 33.02053532290675 0 0 1 0 33.02053532290675" id="CircleText--39" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--39" startOffset="50%">app</textPath></text><path fill="none" d="M 0 33.02053532290675 A 33.02053532290675 33.02053532290675 0 0 1 0 -33.02053532290675 A 33.02053532290675 33.02053532290675 0 0 1 0 33.02053532290675" id="CircleText--40" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--40" startOffset="50%">app</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(737.8475773057486, 671.66969255637)"><path fill="none" d="M 0 20 A 20 20 0 0 1 0 -20 A 20 20 0 0 1 0 20" id="CircleText--41" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--41" startOffset="50%">config</textPath></text><path fill="none" d="M 0 20 A 20 20 0 0 1 0 -20 A 20 20 0 0 1 0 20" id="CircleText--42" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--42" startOffset="50%">config</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(703.8331610124201, 710.9783935990504)"><path fill="none" d="M 0 33.00816547141098 A 33.00816547141098 33.00816547141098 0 0 1 0 -33.00816547141098 A 33.00816547141098 33.00816547141098 0 0 1 0 33.00816547141098" id="CircleText--43" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--43" startOffset="50%">app</textPath></text><path fill="none" d="M 0 33.00816547141098 A 33.00816547141098 33.00816547141098 0 0 1 0 -33.00816547141098 A 33.00816547141098 33.00816547141098 0 0 1 0 33.00816547141098" id="CircleText--44" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--44" startOffset="50%">app</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(745.4261001460092, 421.1325391981557)"><path fill="none" d="M 0 20 A 20 20 0 0 1 0 -20 A 20 20 0 0 1 0 20" id="CircleText--45" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--45" startOffset="50%">config</textPath></text><path fill="none" d="M 0 20 A 20 20 0 0 1 0 -20 A 20 20 0 0 1 0 20" id="CircleText--46" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--46" startOffset="50%">config</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(713.0478418015034, 461.9679658201615)"><path fill="none" d="M 0 33.02053532290675 A 33.02053532290675 33.02053532290675 0 0 1 0 -33.02053532290675 A 33.02053532290675 33.02053532290675 0 0 1 0 33.02053532290675" id="CircleText--47" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--47" startOffset="50%">app</textPath></text><path fill="none" d="M 0 33.02053532290675 A 33.02053532290675 33.02053532290675 0 0 1 0 -33.02053532290675 A 33.02053532290675 33.02053532290675 0 0 1 0 33.02053532290675" id="CircleText--48" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--48" startOffset="50%">app</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(885.1160757896745, 619.3877075929289)"><path fill="none" d="M 0 34.45277014231553 A 34.45277014231553 34.45277014231553 0 0 1 0 -34.45277014231553 A 34.45277014231553 34.45277014231553 0 0 1 0 34.45277014231553" id="CircleText--49" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--49" startOffset="50%">app</textPath></text><path fill="none" d="M 0 34.45277014231553 A 34.45277014231553 34.45277014231553 0 0 1 0 -34.45277014231553 A 34.45277014231553 34.45277014231553 0 0 1 0 34.45277014231553" id="CircleText--50" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--50" startOffset="50%">app</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(594.0351154989638, 566.3657633746085)"><path fill="none" d="M 0 54.323328413165854 A 54.323328413165854 54.323328413165854 0 0 1 0 -54.323328413165854 A 54.323328413165854 54.323328413165854 0 0 1 0 54.323328413165854" id="CircleText--51" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--51" startOffset="50%">utils</textPath></text><path fill="none" d="M 0 54.323328413165854 A 54.323328413165854 54.323328413165854 0 0 1 0 -54.323328413165854 A 54.323328413165854 54.323328413165854 0 0 1 0 54.323328413165854" id="CircleText--52" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--52" startOffset="50%">utils</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(458.850061787801, 593.611303270355)"><path fill="none" d="M 0 32.24751550395715 A 32.24751550395715 32.24751550395715 0 0 1 0 -32.24751550395715 A 32.24751550395715 32.24751550395715 0 0 1 0 32.24751550395715" id="CircleText--53" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--53" startOffset="50%">reporters</textPath></text><path fill="none" d="M 0 32.24751550395715 A 32.24751550395715 32.24751550395715 0 0 1 0 -32.24751550395715 A 32.24751550395715 32.24751550395715 0 0 1 0 32.24751550395715" id="CircleText--54" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--54" startOffset="50%">reporters</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(415.7438940293957, 523.1522317988723)"><path fill="none" d="M 0 32.053920649238755 A 32.053920649238755 32.053920649238755 0 0 1 0 -32.053920649238755 A 32.053920649238755 32.053920649238755 0 0 1 0 32.053920649238755" id="CircleText--55" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--55" startOffset="50%">integrations</textPath></text><path fill="none" d="M 0 32.053920649238755 A 32.053920649238755 32.053920649238755 0 0 1 0 -32.053920649238755 A 32.053920649238755 32.053920649238755 0 0 1 0 32.053920649238755" id="CircleText--56" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--56" startOffset="50%">integrations</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(524.9928948663709, 654.7638039861384)"><path fill="none" d="M 0 39.49357187372219 A 39.49357187372219 39.49357187372219 0 0 1 0 -39.49357187372219 A 39.49357187372219 39.49357187372219 0 0 1 0 39.49357187372219" id="CircleText--57" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--57" startOffset="50%">collectors</textPath></text><path fill="none" d="M 0 39.49357187372219 A 39.49357187372219 39.49357187372219 0 0 1 0 -39.49357187372219 A 39.49357187372219 39.49357187372219 0 0 1 0 39.49357187372219" id="CircleText--58" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--58" startOffset="50%">collectors</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(505.33042139247726, 487.379551019095)"><path fill="none" d="M 0 46.10760072720852 A 46.10760072720852 46.10760072720852 0 0 1 0 -46.10760072720852 A 46.10760072720852 46.10760072720852 0 0 1 0 46.10760072720852" id="CircleText--59" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--59" startOffset="50%">adapters</textPath></text><path fill="none" d="M 0 46.10760072720852 A 46.10760072720852 46.10760072720852 0 0 1 0 -46.10760072720852 A 46.10760072720852 46.10760072720852 0 0 1 0 46.10760072720852" id="CircleText--60" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--60" startOffset="50%">adapters</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(238.15357248072684, 347.69864762740224)"><path fill="none" d="M 0 63.044924297156456 A 63.044924297156456 63.044924297156456 0 0 1 0 -63.044924297156456 A 63.044924297156456 63.044924297156456 0 0 1 0 63.044924297156456" id="CircleText--61" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--61" startOffset="50%">utils</textPath></text><path fill="none" d="M 0 63.044924297156456 A 63.044924297156456 63.044924297156456 0 0 1 0 -63.044924297156456 A 63.044924297156456 63.044924297156456 0 0 1 0 63.044924297156456" id="CircleText--62" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--62" startOffset="50%">utils</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(150.38239997180227, 415.60270211282636)"><path fill="none" d="M 0 38.22854904881643 A 38.22854904881643 38.22854904881643 0 0 1 0 -38.22854904881643 A 38.22854904881643 38.22854904881643 0 0 1 0 38.22854904881643" id="CircleText--63" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--63" startOffset="50%">reporters</textPath></text><path fill="none" d="M 0 38.22854904881643 A 38.22854904881643 38.22854904881643 0 0 1 0 -38.22854904881643 A 38.22854904881643 38.22854904881643 0 0 1 0 38.22854904881643" id="CircleText--64" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--64" startOffset="50%">reporters</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(157.24689592365584, 295.84920760056366)"><path fill="none" d="M 0 23.351783556943587 A 23.351783556943587 23.351783556943587 0 0 1 0 -23.351783556943587 A 23.351783556943587 23.351783556943587 0 0 1 0 23.351783556943587" id="CircleText--65" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--65" startOffset="50%">integrations</textPath></text><path fill="none" d="M 0 23.351783556943587 A 23.351783556943587 23.351783556943587 0 0 1 0 -23.351783556943587 A 23.351783556943587 23.351783556943587 0 0 1 0 23.351783556943587" id="CircleText--66" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--66" startOffset="50%">integrations</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(227.14146867600633, 461.32995075916983)"><path fill="none" d="M 0 41.420405998367634 A 41.420405998367634 41.420405998367634 0 0 1 0 -41.420405998367634 A 41.420405998367634 41.420405998367634 0 0 1 0 41.420405998367634" id="CircleText--67" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--67" startOffset="50%">collectors</textPath></text><path fill="none" d="M 0 41.420405998367634 A 41.420405998367634 41.420405998367634 0 0 1 0 -41.420405998367634 A 41.420405998367634 41.420405998367634 0 0 1 0 41.420405998367634" id="CircleText--68" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--68" startOffset="50%">collectors</textPath></text></g><g style="pointer-events:none;transition:all 0.5s ease-out" transform="translate(207.28791388730755, 225.57708296821852)"><path fill="none" d="M 0 53.21851560501156 A 53.21851560501156 53.21851560501156 0 0 1 0 -53.21851560501156 A 53.21851560501156 53.21851560501156 0 0 1 0 53.21851560501156" id="CircleText--69" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151" stroke="white" stroke-width="6"><textPath href="#CircleText--69" startOffset="50%">adapters</textPath></text><path fill="none" d="M 0 53.21851560501156 A 53.21851560501156 53.21851560501156 0 0 1 0 -53.21851560501156 A 53.21851560501156 53.21851560501156 0 0 1 0 53.21851560501156" id="CircleText--70" transform="rotate(3)" style="pointer-events:none"></path><text text-anchor="middle" style="font-size:13px;transition:all 0.5s ease-out" fill="#374151"><textPath href="#CircleText--70" startOffset="50%">adapters</textPath></text></g><g style="fill:#CED6E0;transition:transform 0s ease-out" transform="translate(181.8982561622121, 667.8965963156165)"><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;transition:all 0.5s ease-out" fill="#4B5563" text-anchor="middle" dominant-baseline="middle" stroke="white" stroke-width="3" stroke-linejoin="round">coverban...</text><text style="pointer-events:none;opacity:1;font-size:14px;font-weight:500;transition:all 0.5s ease-out" text-anchor="middle" dominant-baseline="middle">coverban...</text><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;mix-blend-mode:color-burn;transition:all 0.5s ease-out" fill="#110101" text-anchor="middle" dominant-baseline="middle">coverban...</text></g><g style="fill:#CED6E0;transition:transform 0s ease-out" transform="translate(235.1520986859985, 665.563926136353)"><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;transition:all 0.5s ease-out" fill="#4B5563" text-anchor="middle" dominant-baseline="middle" stroke="white" stroke-width="3" stroke-linejoin="round">coverban...</text><text style="pointer-events:none;opacity:1;font-size:14px;font-weight:500;transition:all 0.5s ease-out" text-anchor="middle" dominant-baseline="middle">coverban...</text><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;mix-blend-mode:color-burn;transition:all 0.5s ease-out" fill="#110101" text-anchor="middle" dominant-baseline="middle">coverban...</text></g><g style="fill:#f1e05a;transition:transform 0s ease-out" transform="translate(414.8220241493654, 225.13754753606952)"><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;transition:all 0.5s ease-out" fill="#4B5563" text-anchor="middle" dominant-baseline="middle" stroke="white" stroke-width="3" stroke-linejoin="round">dependenci...</text><text style="pointer-events:none;opacity:1;font-size:14px;font-weight:500;transition:all 0.5s ease-out" text-anchor="middle" dominant-baseline="middle">dependenci...</text><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;mix-blend-mode:color-burn;transition:all 0.5s ease-out" fill="#110101" text-anchor="middle" dominant-baseline="middle">dependenci...</text></g><g style="fill:#563d7c;transition:transform 0s ease-out" transform="translate(512.6954159742604, 234.66985959341756)"><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;transition:all 0.5s ease-out" fill="#4B5563" text-anchor="middle" dominant-baseline="middle" stroke="white" stroke-width="3" stroke-linejoin="round">applicatio...</text><text style="pointer-events:none;opacity:1;font-size:14px;font-weight:500;transition:all 0.5s ease-out" text-anchor="middle" dominant-baseline="middle">applicatio...</text><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;mix-blend-mode:color-burn;transition:all 0.5s ease-out" fill="#110101" text-anchor="middle" dominant-baseline="middle">applicatio...</text></g><g style="fill:#083fa1;transition:transform 0s ease-out" transform="translate(319.7591050031548, 805.6688459724202)"><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;transition:all 0.5s ease-out" fill="#4B5563" text-anchor="middle" dominant-baseline="middle" stroke="white" stroke-width="3" stroke-linejoin="round">README.md</text><text style="pointer-events:none;opacity:1;font-size:14px;font-weight:500;transition:all 0.5s ease-out" text-anchor="middle" dominant-baseline="middle">README.md</text><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;mix-blend-mode:color-burn;transition:all 0.5s ease-out" fill="#110101" text-anchor="middle" dominant-baseline="middle">README.md</text></g><g style="fill:#083fa1;transition:transform 0s ease-out" transform="translate(392.1523794030603, 806.6964709054034)"><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;transition:all 0.5s ease-out" fill="#4B5563" text-anchor="middle" dominant-baseline="middle" stroke="white" stroke-width="3" stroke-linejoin="round">changes.md</text><text style="pointer-events:none;opacity:1;font-size:14px;font-weight:500;transition:all 0.5s ease-out" text-anchor="middle" dominant-baseline="middle">changes.md</text><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;mix-blend-mode:color-burn;transition:all 0.5s ease-out" fill="#110101" text-anchor="middle" dominant-baseline="middle">changes.md</text></g><g style="fill:#701516;transition:transform 0s ease-out" transform="translate(907.972566381131, 514.060970506728)"><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;transition:all 0.5s ease-out" fill="#4B5563" text-anchor="middle" dominant-baseline="middle" stroke="white" stroke-width="3" stroke-linejoin="round">benchmark...</text><text style="pointer-events:none;opacity:1;font-size:14px;font-weight:500;transition:all 0.5s ease-out" text-anchor="middle" dominant-baseline="middle">benchmark...</text><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;mix-blend-mode:color-burn;transition:all 0.5s ease-out" fill="#110101" text-anchor="middle" dominant-baseline="middle">benchmark...</text></g><g style="fill:#701516;transition:transform 0s ease-out" transform="translate(145.23859723062782, 347.69864762740224)"><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;transition:all 0.5s ease-out" fill="#4B5563" text-anchor="middle" dominant-baseline="middle" stroke="white" stroke-width="3" stroke-linejoin="round">configur...</text><text style="pointer-events:none;opacity:1;font-size:14px;font-weight:500;transition:all 0.5s ease-out" text-anchor="middle" dominant-baseline="middle">configur...</text><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;mix-blend-mode:color-burn;transition:all 0.5s ease-out" fill="#110101" text-anchor="middle" dominant-baseline="middle">configur...</text></g><g style="fill:#CED6E0;transition:transform 0s ease-out" transform="translate(495.73801288091965, 164.87788235205582)"><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;transition:all 0.5s ease-out" fill="#4B5563" text-anchor="middle" dominant-baseline="middle" stroke="white" stroke-width="3" stroke-linejoin="round">loading.gif</text><text style="pointer-events:none;opacity:1;font-size:14px;font-weight:500;transition:all 0.5s ease-out" text-anchor="middle" dominant-baseline="middle">loading.gif</text><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;mix-blend-mode:color-burn;transition:all 0.5s ease-out" fill="#110101" text-anchor="middle" dominant-baseline="middle">loading.gif</text></g><g style="fill:#701516;transition:transform 0s ease-out" transform="translate(218.90470517807466, 348.8975640701658)"><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;transition:all 0.5s ease-out" fill="#4B5563" text-anchor="middle" dominant-baseline="middle" stroke="white" stroke-width="3" stroke-linejoin="round">source_f...</text><text style="pointer-events:none;opacity:1;font-size:14px;font-weight:500;transition:all 0.5s ease-out" text-anchor="middle" dominant-baseline="middle">source_f...</text><text style="pointer-events:none;opacity:0.9;font-size:14px;font-weight:500;mix-blend-mode:color-burn;transition:all 0.5s ease-out" fill="#110101" text-anchor="middle" dominant-baseline="middle">source_f...</text></g><g transform="translate(940, 740)"><g transform="translate(0, 0)"><circle r="5" fill="#563d7c"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.css</text></g><g transform="translate(0, 15)"><circle r="5" fill="#701516"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.erb</text></g><g transform="translate(0, 30)"><circle r="5" fill="#701516"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.gemspec</text></g><g transform="translate(0, 45)"><circle r="5" fill="#000000"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.gitignore</text></g><g transform="translate(0, 60)"><circle r="5" fill="#ece2a9"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.haml</text></g><g transform="translate(0, 75)"><circle r="5" fill="#f1e05a"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.js</text></g><g transform="translate(0, 90)"><circle r="5" fill="#000080"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.lua</text></g><g transform="translate(0, 105)"><circle r="5" fill="#083fa1"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.md</text></g><g transform="translate(0, 120)"><circle r="5" fill="#701516"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.rake</text></g><g transform="translate(0, 135)"><circle r="5" fill="#701516"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.rb</text></g><g transform="translate(0, 150)"><circle r="5" fill="#701516"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.ru</text></g><g transform="translate(0, 165)"><circle r="5" fill="#89e051"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.sh</text></g><g transform="translate(0, 180)"><circle r="5" fill="#2b2b2b"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.slim</text></g><g transform="translate(0, 195)"><circle r="5" fill="#ff9900"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.svg</text></g><g transform="translate(0, 210)"><circle r="5" fill="#199f4b"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.txt</text></g><g transform="translate(0, 225)"><circle r="5" fill="#cb171e"></circle><text x="10" style="font-size:14px;font-weight:300" dominant-baseline="middle">.yml</text></g><g fill="#9CA3AF" style="font-weight:300;font-style:italic;font-size:12px">each dot sized by file size</g></g></svg>
@@ -88,9 +88,9 @@ module Coverband
88
88
 
89
89
  def coverage(local_type = nil)
90
90
  files_set = files_set(local_type)
91
- @redis.pipelined {
92
- files_set.map do |key|
93
- @redis.hgetall(key)
91
+ @redis.pipelined { |pipeline|
92
+ files_set.each do |key|
93
+ pipeline.hgetall(key)
94
94
  end
95
95
  }.each_with_object({}) do |data_from_redis, hash|
96
96
  add_coverage_for_file(data_from_redis, hash)
@@ -46,6 +46,8 @@ module Coverband
46
46
  end
47
47
  }
48
48
  end
49
+ rescue ThreadError
50
+ stop
49
51
  end
50
52
  end
51
53
  end
@@ -0,0 +1,52 @@
1
+ ####
2
+ # This is an example coverband configuration file. In a typical Rails app
3
+ # it would be placed in config/coverband.rb
4
+ #
5
+ # Uncomment or adjust the code to your apps needs
6
+ ####
7
+ # Coverband.configure do |config|
8
+ ####
9
+ # set a redis URL and set it with with some reasonable timeouts
10
+ ####
11
+ # redis_url = ENV["COVERBAND_REDIS"] || ENV["REDIS_URL"] || "redis://localhost:6379"
12
+ # config.store = Coverband::Adapters::RedisStore.new(
13
+ # Redis.new(
14
+ # url: redis_url,
15
+ # timeout: ENV.fetch("REDIS_TIMEOUT", 1),
16
+ # reconnect_attempts: ENV.fetch("REDIS_RECONNECT_ATTEMPTS", 1),
17
+ # reconnect_delay: ENV.fetch("REDIS_RECONNECT_DELAY", 0.25),
18
+ # reconnect_delay_max: ENV.fetch("REDIS_RECONNECT_DELAY_MAX", 2.5)
19
+ # )
20
+ # )
21
+
22
+ # Allow folks to reset the coverband data via the web UI
23
+ # config.web_enable_clear = true
24
+
25
+ ###
26
+ # Redis Performance Options. If you running hundreds of web server processes
27
+ # you may want to have some controls on how often they are calling redis
28
+ # This can help a relatively small Redis handle hundreds / thousands of reporting servers.
29
+ ###
30
+ # reduce the CPU and Redis overhead, we don't need reporting every 30s... This is how often each process will try to save reports
31
+ # config.background_reporting_sleep_seconds = 400
32
+ # add a wiggle to avoid cache stampede and flatten out Redis CPU...
33
+ # This can help if you have many servers restart around a deploy and are all hitting redis at the same time.
34
+ # config.reporting_wiggle = 90
35
+
36
+ # ignore various files for whatever reason. I often ignore the below list as some are setup before coverband and not always
37
+ # tracked correctly... Accepts regex or exact match strings.
38
+ # config.ignore = %w[config/*
39
+ # config/locales/*
40
+ # config/environments/*
41
+ # config/initializers/*]
42
+
43
+ # config options false, true, or 'debug'. Always use false in production
44
+ # true and debug can give helpful and interesting code usage information
45
+ # they both increase the performance overhead of the gem a little.
46
+ # they can also help with initially debugging the installation.
47
+ # defaults to false
48
+ # config.verbose = false
49
+
50
+ # allow the web UI to display raw coverband data, generally only useful for coverband development
51
+ # config.web_debug = true
52
+ # end
@@ -4,6 +4,14 @@ namespace :coverband do
4
4
  # handles configuring in require => false and COVERBAND_DISABLE_AUTO_START cases
5
5
  Coverband.configure unless Coverband.configured?
6
6
 
7
+ desc "install coverband configuration file defaults"
8
+ task :install do
9
+ require "fileutils"
10
+ full_path = Gem::Specification.find_by_name("coverband").full_gem_path
11
+ config_template = File.expand_path("lib/coverband/utils/configuration_template.rb", full_path)
12
+ FileUtils.cp(config_template, "./config/coverband.rb")
13
+ end
14
+
7
15
  desc "report runtime Coverband code coverage"
8
16
  task :coverage do
9
17
  Coverband::Reporters::ConsoleReport.report(Coverband.configuration.store)
@@ -5,5 +5,5 @@
5
5
  # use format "4.2.1.rc.1" ~> 4.2.1.rc to prerelease versions like v4.2.1.rc.2 and v4.2.1.rc.3
6
6
  ###
7
7
  module Coverband
8
- VERSION = '5.2.1'
8
+ VERSION = "5.2.4"
9
9
  end
@@ -3,45 +3,50 @@
3
3
  require File.expand_path("../../test_helper", File.dirname(__FILE__))
4
4
 
5
5
  class ResqueWorkerTest < Minitest::Test
6
- def enqueue_and_run_job
7
- Resque.enqueue(TestResqueJob)
8
- ENV["QUEUE"] = "resque_coverband"
9
- worker = Resque::Worker.new
10
- worker.startup
11
- worker.work_one_job
12
- end
6
+ # NOTE: It appears there are some bugs in resque for JRUBY, not coverband, so excluding these tests on JRUBY
7
+ # if folks hit issues with Coverband and resque this could be a resque issue, reach out with details.
8
+ # I also highly recommend moving to sidekiq.
9
+ unless RUBY_PLATFORM == "java"
10
+ def enqueue_and_run_job
11
+ Resque.enqueue(TestResqueJob)
12
+ ENV["QUEUE"] = "resque_coverband"
13
+ worker = Resque::Worker.new
14
+ worker.startup
15
+ worker.work_one_job
16
+ end
13
17
 
14
- def setup
15
- super
16
- Coverband.configure do |config|
17
- config.background_reporting_enabled = false
18
+ def setup
19
+ super
20
+ Coverband.configure do |config|
21
+ config.background_reporting_enabled = false
22
+ end
23
+ Coverband.start
24
+ redis = Coverband.configuration.store.instance_eval { @redis }
25
+ Resque.redis = redis
18
26
  end
19
- Coverband.start
20
- redis = Coverband.configuration.store.instance_eval { @redis }
21
- Resque.redis = redis
22
- end
23
27
 
24
- test "resque job coverage" do
25
- relative_job_file = "./test/coverband/integrations/test_resque_job.rb"
26
- resque_job_file = File.expand_path("./test_resque_job.rb", File.dirname(__FILE__))
27
- require resque_job_file
28
+ test "resque job coverage" do
29
+ relative_job_file = "./test/coverband/integrations/test_resque_job.rb"
30
+ resque_job_file = File.expand_path("./test_resque_job.rb", File.dirname(__FILE__))
31
+ require resque_job_file
28
32
 
29
- enqueue_and_run_job
33
+ enqueue_and_run_job
30
34
 
31
- assert !Coverband::Background.running?
35
+ assert !Coverband::Background.running?
32
36
 
33
- # TODO: There is a test only type issue where the test is looking at eager data
34
- # it merged eager and eager for merged and runtime is eager
35
- Coverband.runtime_coverage!
36
- report = Coverband.configuration.store.get_coverage_report
37
+ # TODO: There is a test only type issue where the test is looking at eager data
38
+ # it merged eager and eager for merged and runtime is eager
39
+ Coverband.runtime_coverage!
40
+ report = Coverband.configuration.store.get_coverage_report
37
41
 
38
- if RUBY_PLATFORM == "java"
39
- # NOTE: the todo test only issue seems to be slightly different in JRuby
40
- # were nothing is showing up as runtime Coverage... This appears to be a test only issue
41
- assert_equal 1, report[Coverband::EAGER_TYPE][relative_job_file]["data"][6]
42
- else
43
- assert_equal 0, report[Coverband::EAGER_TYPE][relative_job_file]["data"][6]
44
- assert_equal 1, report[Coverband::RUNTIME_TYPE][relative_job_file]["data"][6]
42
+ if RUBY_PLATFORM == "java"
43
+ # NOTE: the todo test only issue seems to be slightly different in JRuby
44
+ # were nothing is showing up as runtime Coverage... This appears to be a test only issue
45
+ assert_equal 1, report[Coverband::EAGER_TYPE][relative_job_file]["data"][6]
46
+ else
47
+ assert_equal 0, report[Coverband::EAGER_TYPE][relative_job_file]["data"][6]
48
+ assert_equal 1, report[Coverband::RUNTIME_TYPE][relative_job_file]["data"][6]
49
+ end
45
50
  end
46
51
  end
47
52
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: coverband
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.2.1
4
+ version: 5.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Mayer
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2022-01-13 00:00:00.000000000 Z
12
+ date: 2022-07-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: benchmark-ips
@@ -255,14 +255,14 @@ dependencies:
255
255
  requirements:
256
256
  - - ">="
257
257
  - !ruby/object:Gem::Version
258
- version: '0'
258
+ version: '3.0'
259
259
  type: :runtime
260
260
  prerelease: false
261
261
  version_requirements: !ruby/object:Gem::Requirement
262
262
  requirements:
263
263
  - - ">="
264
264
  - !ruby/object:Gem::Version
265
- version: '0'
265
+ version: '3.0'
266
266
  description: Rack middleware to measure production code usage (LOC runtime usage)
267
267
  email:
268
268
  - dan@mayerdan.com
@@ -315,6 +315,7 @@ files:
315
315
  - lib/coverband/reporters/html_report.rb
316
316
  - lib/coverband/reporters/web.rb
317
317
  - lib/coverband/utils/absolute_file_converter.rb
318
+ - lib/coverband/utils/configuration_template.rb
318
319
  - lib/coverband/utils/dead_methods.rb
319
320
  - lib/coverband/utils/file_hasher.rb
320
321
  - lib/coverband/utils/file_list.rb