punter 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: acd24bc4ece0e2ec2e1e944be75dfb6a73912199
4
+ data.tar.gz: f11b891db70e1422080e769149e40c724655b512
5
+ SHA512:
6
+ metadata.gz: e20e2ae29ceac067d85e78eeebad4da3e1b0546eab466ecd9f624c3c7c32580391c8f419a7a5d7af8a4eb6589904a1b56723f3b054d9eb663b102c9ba4f41ade
7
+ data.tar.gz: 85ee1940cf31ada72d77a0f8c7cf1bebc972651be08837c8699817533341e5c7cf3f3c43ca90d21db2d48df70714f47b0475003e36e39efd04d7e570759b59e3
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.gem
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.2.0
5
+ before_install: gem install bundler -v 1.13.6
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in punter.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 Mohit M
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/NOTES ADDED
@@ -0,0 +1 @@
1
+ 1. sqlite sample table taken from http://www.sqlitetutorial.net/sqlite-sample-database/
data/README.md ADDED
@@ -0,0 +1,43 @@
1
+ # Punter
2
+
3
+ Punter allows you to quickly inspect, manipulate your data using raw SQL as well as ORM. It uses ActiveRecord as ORM engine
4
+
5
+ <p align="center">
6
+ <img src="https://cdn.rawgit.com/mohitmun/punter/ce455a7/termtosvg_afdv3y8o.svg">
7
+ </p>
8
+
9
+ ## Installation
10
+
11
+
12
+ $ gem install punter
13
+
14
+ ## Usage
15
+
16
+ * for sqlite3
17
+
18
+ $punter path_to_your_db
19
+ This will start new irb console with required methods.
20
+
21
+ ## How it works
22
+
23
+ * uses activerecord ORM
24
+ * irb console
25
+ ## TODOs
26
+
27
+ [ ] Multiple connections
28
+
29
+ ## Development
30
+
31
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
32
+
33
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
34
+
35
+ ## Contributing
36
+
37
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/punter.
38
+
39
+
40
+ ## License
41
+
42
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
43
+
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "punter"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/punter ADDED
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "punter"
5
+ require "awesome_print"
6
+
7
+ # You can add fixtures and/or initialization code here to make experimenting
8
+ # with your gem easier. You can also use a different console, if you like.
9
+
10
+ # (If you use this, don't forget to add pry to your Gemfile!)
11
+ # require "pry"
12
+ # Pry.start
13
+
14
+ require "irb"
15
+ Punter.init
16
+ AwesomePrint.irb!
17
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
data/lib/punter.rb ADDED
@@ -0,0 +1,35 @@
1
+ require "punter/version"
2
+ require "punter/punter_sqlite3"
3
+ require "punter/method_generator"
4
+ require "active_record"
5
+ require 'optparse'
6
+ require 'logger'
7
+
8
+ include MethodGenerator
9
+
10
+ module Punter
11
+ # Your code goes here...
12
+ $logger = Logger.new $stdout
13
+ $logger.level = Logger::INFO
14
+ def self.init
15
+ options = {}
16
+ OptionParser.new do |opt|
17
+ opt.on('--first_name FIRSTNAME') { |o| options[:first_name] = o }
18
+ opt.on('--log LOG_LEVEL') { |o| $logger.level = o.to_i}
19
+ end.parse!
20
+ filename = ARGV.pop
21
+ $logger.debug "openinng file #{filename}"
22
+ $logger.debug "options #{options.inspect}"
23
+ file_type = determine_file_type(filename)
24
+ case file_type
25
+ when "sqlite3"
26
+ PunterSqlite3.init(File.absolute_path(filename))
27
+ $logger.debug "sqlite3 file detected"
28
+ end
29
+ end
30
+
31
+ def self.determine_file_type(filename)
32
+ return "sqlite3" if filename.end_with?("db")
33
+ end
34
+
35
+ end
@@ -0,0 +1,7 @@
1
+ module MethodGenerator
2
+
3
+ def add_method name, &block
4
+ define_method name, &block
5
+ end
6
+
7
+ end
@@ -0,0 +1,32 @@
1
+ require 'active_record'
2
+ require 'punter/method_generator'
3
+ module PunterSqlite3
4
+
5
+ def self.init(absolute_filepath)
6
+ ActiveRecord::Base.establish_connection(
7
+ :adapter => "sqlite3",
8
+ :database => absolute_filepath
9
+ )
10
+ generate_models
11
+ end
12
+
13
+ def self.generate_models
14
+ tables = ActiveRecord::Base.connection.tables
15
+ puts "tables found: #{tables}"
16
+ tables.each do |table_name|
17
+ $logger.debug "generating model for #{table_name}"
18
+ variable = table_name.titleize.gsub(" ", "")
19
+ klass = Class.new(ActiveRecord::Base)
20
+ # ...maybe evaluate some code in the context of the new, anonymous class
21
+
22
+ ## ...or define some methods
23
+ #klass.send(:attribute, :name, String)
24
+ # Finally, name that class!
25
+ klass.send(:table_name=, table_name)
26
+ MethodGenerator.add_method(table_name){return klass}
27
+ ActiveRecord::Base.send(:const_set, variable, klass)
28
+ end
29
+ MethodGenerator.add_method("show_tables"){return tables}
30
+ end
31
+
32
+ end
@@ -0,0 +1,3 @@
1
+ module Punter
2
+ VERSION = "0.1.0"
3
+ end
data/punter.gemspec ADDED
@@ -0,0 +1,32 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'punter/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "punter"
8
+ spec.version = Punter::VERSION
9
+ spec.authors = ["Mohit M"]
10
+ spec.email = ["mohitcrox@gmail.com"]
11
+
12
+ spec.summary = "(cross)db client you always wanted"
13
+ spec.description = "(cross)db client you always wanted"
14
+ spec.homepage = "https://mohitmun.github.io/punter"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
19
+
20
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
21
+ f.match(%r{^(test|spec|features)/})
22
+ end
23
+ spec.executables << 'punter'
24
+ spec.require_paths = ["lib"]
25
+
26
+ spec.add_development_dependency "bundler", "~> 1.13"
27
+ spec.add_development_dependency "rake", "~> 10.0"
28
+ spec.add_development_dependency "rspec", "~> 3.0"
29
+ spec.add_runtime_dependency "activerecord"
30
+ spec.add_runtime_dependency "sqlite3"
31
+ spec.add_runtime_dependency "awesome_print"
32
+ end
Binary file
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="utf-8" ?>
2
+ <svg baseProfile="full" height="357" version="1.1" width="720" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><style type="text/css"><![CDATA[* {font-family: "DejaVu Sans Mono", monospace; font-style: normal; font-size: 14px}
3
+ text {dominant-baseline: text-before-edge}
4
+ .background {fill: #1c1c1c}]]></style><g id="1"><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="0"> </text></g><g id="2"><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="0"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="712" x="8">                                                                                         </text></g><g id="3"><text fill="#0087d7" lengthAdjust="spacingAndGlyphs" textLength="48" x="0">punter</text><text fill="#5fafff" lengthAdjust="spacingAndGlyphs" textLength="8" x="48">(</text><text fill="#5fd787" lengthAdjust="spacingAndGlyphs" textLength="48" x="56">master</text><text fill="#ffaf00" lengthAdjust="spacingAndGlyphs" textLength="8" x="104">*</text><text fill="#5fafff" lengthAdjust="spacingAndGlyphs" textLength="8" x="112">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="120"> </text><text fill="#8787ff" lengthAdjust="spacingAndGlyphs" textLength="8" x="128">»</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="136"> </text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="144"> </text></g><g id="4"><text fill="#0087d7" lengthAdjust="spacingAndGlyphs" textLength="48" x="0">punter</text><text fill="#5fafff" lengthAdjust="spacingAndGlyphs" textLength="8" x="48">(</text><text fill="#5fd787" lengthAdjust="spacingAndGlyphs" textLength="48" x="56">master</text><text fill="#ffaf00" lengthAdjust="spacingAndGlyphs" textLength="8" x="104">*</text><text fill="#5fafff" lengthAdjust="spacingAndGlyphs" textLength="8" x="112">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="120"> </text><text fill="#8787ff" lengthAdjust="spacingAndGlyphs" textLength="8" x="128">»</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="136"> </text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="144"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="280" x="152">                                   </text><text fill="#3a3a3a" lengthAdjust="spacingAndGlyphs" textLength="280" x="432">~/Desktop/githubclone/punter/punter</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="712"> </text></g><g id="5"><text fill="#0087d7" lengthAdjust="spacingAndGlyphs" textLength="48" x="0">punter</text><text fill="#5fafff" lengthAdjust="spacingAndGlyphs" textLength="8" x="48">(</text><text fill="#5fd787" lengthAdjust="spacingAndGlyphs" textLength="48" x="56">master</text><text fill="#ffaf00" lengthAdjust="spacingAndGlyphs" textLength="8" x="104">*</text><text fill="#5fafff" lengthAdjust="spacingAndGlyphs" textLength="8" x="112">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="120"> </text><text fill="#8787ff" lengthAdjust="spacingAndGlyphs" textLength="8" x="128">»</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="80" x="136"> termtosvg</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="216"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="208" x="224">                          </text><text fill="#3a3a3a" lengthAdjust="spacingAndGlyphs" textLength="280" x="432">~/Desktop/githubclone/punter/punter</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="712"> </text></g><g id="6"><text fill="#0087d7" lengthAdjust="spacingAndGlyphs" textLength="48" x="0">punter</text><text fill="#5fafff" lengthAdjust="spacingAndGlyphs" textLength="8" x="48">(</text><text fill="#5fd787" lengthAdjust="spacingAndGlyphs" textLength="48" x="56">master</text><text fill="#ffaf00" lengthAdjust="spacingAndGlyphs" textLength="8" x="104">*</text><text fill="#5fafff" lengthAdjust="spacingAndGlyphs" textLength="8" x="112">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="120"> </text><text fill="#8787ff" lengthAdjust="spacingAndGlyphs" textLength="8" x="128">»</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="584" x="136"> alias termtosvg="python3.6 /Users/mohitmunjani/Library/Python/3.6/lib/py</text></g><g id="7"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="328" x="0">thon/site-packages/termtosvg/__main__.py"</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="328"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="336">                                                </text></g><g id="8"><text fill="#0087d7" lengthAdjust="spacingAndGlyphs" textLength="48" x="0">punter</text><text fill="#5fafff" lengthAdjust="spacingAndGlyphs" textLength="8" x="48">(</text><text fill="#5fd787" lengthAdjust="spacingAndGlyphs" textLength="48" x="56">master</text><text fill="#ffaf00" lengthAdjust="spacingAndGlyphs" textLength="8" x="104">*</text><text fill="#5fafff" lengthAdjust="spacingAndGlyphs" textLength="8" x="112">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="120"> </text><text fill="#8787ff" lengthAdjust="spacingAndGlyphs" textLength="8" x="128">»</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="288" x="136"> ./bin/punter sample_dbs/sqlite3.db </text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="424"> </text><text fill="#3a3a3a" lengthAdjust="spacingAndGlyphs" textLength="280" x="432">~/Desktop/githubclone/punter/punter</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="712"> </text></g><g id="9"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="720" x="0">                                                                                          </text></g><g id="10"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="104" x="0">2.2.0 :001 &gt; </text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="104"> </text></g><g id="11"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="112" x="0">2.2.0 :001 &gt; a</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="112"> </text></g><g id="12"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="120" x="0">2.2.0 :001 &gt; al</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="120"> </text></g><g id="13"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="128" x="0">2.2.0 :001 &gt; alb</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="128"> </text></g><g id="14"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">2.2.0 :001 &gt; albu</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="136"> </text></g><g id="15"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="152" x="0">2.2.0 :001 &gt; albums</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="152"> </text></g><g id="16"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="160" x="0">2.2.0 :001 &gt; albums.</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="160"> </text></g><g id="17"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="168" x="0">2.2.0 :001 &gt; albums.l</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="168"> </text></g><g id="18"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="176" x="0">2.2.0 :001 &gt; albums.la</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="176"> </text></g><g id="19"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="184" x="0">2.2.0 :001 &gt; albums.las</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="184"> </text></g><g id="20"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="192" x="0">2.2.0 :001 &gt; albums.last</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="192"> </text></g><g id="21"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="104" x="0">2.2.0 :002 &gt; </text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="104"> </text></g><g id="22"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="192" x="0">2.2.0 :002 &gt; albums.last</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="192"> </text></g><g id="23"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="184" x="0">2.2.0 :002 &gt; albums.las</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="184"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="528" x="192">                                                                  </text></g><g id="24"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="176" x="0">2.2.0 :002 &gt; albums.la</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="176"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="536" x="184">                                                                   </text></g><g id="25"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="168" x="0">2.2.0 :002 &gt; albums.l</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="168"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="544" x="176">                                                                    </text></g><g id="26"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="160" x="0">2.2.0 :002 &gt; albums.</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="160"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="552" x="168">                                                                     </text></g><g id="27"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="168" x="0">2.2.0 :002 &gt; albums.w</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="168"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="544" x="176">                                                                    </text></g><g id="28"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="176" x="0">2.2.0 :002 &gt; albums.wh</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="176"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="536" x="184">                                                                   </text></g><g id="29"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="184" x="0">2.2.0 :002 &gt; albums.whe</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="184"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="528" x="192">                                                                  </text></g><g id="30"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="192" x="0">2.2.0 :002 &gt; albums.wher</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="192"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="520" x="200">                                                                 </text></g><g id="31"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="200" x="0">2.2.0 :002 &gt; albums.where</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="200"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="512" x="208">                                                                </text></g><g id="32"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="208" x="0">2.2.0 :002 &gt; albums.where(</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="208"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="504" x="216">                                                               </text></g><g id="33"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="216" x="0">2.2.0 :002 &gt; albums.where()</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="216"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="496" x="224">                                                              </text></g><g id="34"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="208" x="0">2.2.0 :002 &gt; albums.where(</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="208">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="504" x="216">                                                               </text></g><g id="35"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="216" x="0">2.2.0 :002 &gt; albums.where(a</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="216">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="496" x="224">                                                              </text></g><g id="36"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="216" x="0">2.2.0 :002 &gt; albums.where(A</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="216">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="496" x="224">                                                              </text></g><g id="37"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="224" x="0">2.2.0 :002 &gt; albums.where(Ar</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="224">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="488" x="232">                                                             </text></g><g id="38"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="232" x="0">2.2.0 :002 &gt; albums.where(Art</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="232">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="480" x="240">                                                            </text></g><g id="39"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="240" x="0">2.2.0 :002 &gt; albums.where(Arti</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="240">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="472" x="248">                                                           </text></g><g id="40"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="248" x="0">2.2.0 :002 &gt; albums.where(Artis</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="248">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="464" x="256">                                                          </text></g><g id="41"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="256" x="0">2.2.0 :002 &gt; albums.where(Artist</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="256">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="456" x="264">                                                         </text></g><g id="42"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="264" x="0">2.2.0 :002 &gt; albums.where(ArtistI</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="264">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="448" x="272">                                                        </text></g><g id="43"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="272" x="0">2.2.0 :002 &gt; albums.where(ArtistId</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="272">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="440" x="280">                                                       </text></g><g id="44"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="280" x="0">2.2.0 :002 &gt; albums.where(ArtistId:</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="280">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="432" x="288">                                                      </text></g><g id="45"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="288" x="0">2.2.0 :002 &gt; albums.where(ArtistId: </text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="288">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="424" x="296">                                                     </text></g><g id="46"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="296" x="0">2.2.0 :002 &gt; albums.where(ArtistId: 2</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="296">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="416" x="304">                                                    </text></g><g id="47"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="304" x="0">2.2.0 :002 &gt; albums.where(ArtistId: 24</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="304">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="408" x="312">                                                   </text></g><g id="48"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="312" x="0">2.2.0 :002 &gt; albums.where(ArtistId: 245</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="312">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="400" x="320">                                                  </text></g><g id="49"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="288" x="0"> __________________________________ </text></g><g id="50"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="288" x="0">/ See also lsof and fuser for open \</text></g><g id="51"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="288" x="0">\ sockets and files.               /</text></g><g id="52"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="288" x="0"> ---------------------------------- </text></g><g id="53"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="128" x="0">        \   ^__^</text></g><g id="54"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="192" x="0">         \  (oo)\_______</text></g><g id="55"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="224" x="0">            (__)\       )\/\</text></g><g id="56"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="200" x="0">                ||----w |</text></g><g id="57"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="200" x="0">                ||     ||</text></g><g id="58"><text fill="#3a3a3a" lengthAdjust="spacingAndGlyphs" textLength="480" x="0">------------------------------------------------------------</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="240" x="480">                              </text></g><g id="59"><text fill="#0087d7" lengthAdjust="spacingAndGlyphs" textLength="48" x="0">punter</text><text fill="#5fafff" lengthAdjust="spacingAndGlyphs" textLength="8" x="48">(</text><text fill="#5fd787" lengthAdjust="spacingAndGlyphs" textLength="48" x="56">master</text><text fill="#ffaf00" lengthAdjust="spacingAndGlyphs" textLength="8" x="104">*</text><text fill="#5fafff" lengthAdjust="spacingAndGlyphs" textLength="8" x="112">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="120"> </text><text fill="#8787ff" lengthAdjust="spacingAndGlyphs" textLength="8" x="128">»</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="296" x="136"> ./bin/punter sample_dbs/sqlite3.db  </text><text fill="#3a3a3a" lengthAdjust="spacingAndGlyphs" textLength="280" x="432">~/Desktop/githubclone/punter/punter</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="712"> </text></g><g id="60"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="720" x="0">tables found: ["albums", "artists", "customers", "employees", "genres", "invoices", "invoi</text></g><g id="61"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="656" x="0">ce_items", "media_types", "playlists", "playlist_track", "tracks", "sqlite_stat1"]</text></g><g id="62"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="192" x="0">2.2.0 :001 &gt; albums.last</text></g><g id="63"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="0">#&lt;ActiveRecord::Base::Albums:0x007fc6fe2fced0&gt; {</text></g><g id="64"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="104" x="0">     :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="104"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="136">347</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="160">,</text></g><g id="65"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="104" x="0">       :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="104"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="416" x="136">"Koyaanisqatsi (Soundtrack from the Motion Picture)"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="552">,</text></g><g id="66"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="104" x="0">    :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="104"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="136">275</text></g><g id="67"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="0">}</text></g><g id="68"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="720" x="0">2.2.0 :002 &gt; albums.where(ArtistId: 245)                                                  </text></g><g id="69"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="104" x="0">2.2.0 :003 &gt; </text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="104"> </text></g><g id="70"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="320" x="0">2.2.0 :003 &gt; albums.where(ArtistId: 245)</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="320"> </text></g><g id="71"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="312" x="0">2.2.0 :003 &gt; albums.where(ArtistId: 245</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="312">)</text></g><g id="72"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="304" x="0">2.2.0 :003 &gt; albums.where(ArtistId: 24</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="304">5</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="312">)</text></g><g id="73"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="296" x="0">2.2.0 :003 &gt; albums.where(ArtistId: 2</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="296">4</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="16" x="304">5)</text></g><g id="74"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="288" x="0">2.2.0 :003 &gt; albums.where(ArtistId: </text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="288">2</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="24" x="296">45)</text></g><g id="75"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="280" x="0">2.2.0 :003 &gt; albums.where(ArtistId:</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="280"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="288">245)</text></g><g id="76"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="272" x="0">2.2.0 :003 &gt; albums.where(ArtistId</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="272">:</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="40" x="280"> 245)</text></g><g id="77"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="264" x="0">2.2.0 :003 &gt; albums.where(ArtistI</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="264">d</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="48" x="272">: 245)</text></g><g id="78"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="256" x="0">2.2.0 :003 &gt; albums.where(Artist</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="256">I</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="56" x="264">d: 245)</text></g><g id="79"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="248" x="0">2.2.0 :003 &gt; albums.where(Artis</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="248">t</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="64" x="256">Id: 245)</text></g><g id="80"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="240" x="0">2.2.0 :003 &gt; albums.where(Arti</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="240">s</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="72" x="248">tId: 245)</text></g><g id="81"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="232" x="0">2.2.0 :003 &gt; albums.where(Art</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="232">i</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="80" x="240">stId: 245)</text></g><g id="82"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="224" x="0">2.2.0 :003 &gt; albums.where(Ar</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="224">t</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="88" x="232">istId: 245)</text></g><g id="83"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="216" x="0">2.2.0 :003 &gt; albums.where(A</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="216">r</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="96" x="224">tistId: 245)</text></g><g id="84"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="208" x="0">2.2.0 :003 &gt; albums.where(</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="208">A</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="104" x="216">rtistId: 245)</text></g><g id="85"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="200" x="0">2.2.0 :003 &gt; albums.where</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="200">(</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="112" x="208">ArtistId: 245)</text></g><g id="86"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="208" x="0">2.2.0 :003 &gt; albums.where.</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="208">(</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="512" x="216">ArtistId: 245)                                                  </text></g><g id="87"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="216" x="0">2.2.0 :003 &gt; albums.where.n</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="216">(</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="504" x="224">ArtistId: 245)                                                 </text></g><g id="88"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="224" x="0">2.2.0 :003 &gt; albums.where.no</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="224">(</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="496" x="232">ArtistId: 245)                                                </text></g><g id="89"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="0">[</text></g><g id="90"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="32" x="32">[0] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="64">#&lt;ActiveRecord::Base::Albums:0x007fc6ff0ce3d8&gt; {</text></g><g id="91"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">310</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="92"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="216" x="168">"Prokofiev: Romeo &amp; Juliet"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="384">,</text></g><g id="93"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">245</text></g><g id="94"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="48" x="0">    },</text></g><g id="95"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="32" x="32">[1] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="64">#&lt;ActiveRecord::Base::Albums:0x007fc6ff0ce108&gt; {</text></g><g id="96"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">312</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="97"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="256" x="168">"Berlioz: Symphonie Fantastique"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="424">,</text></g><g id="98"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="40" x="0">    }</text></g><g id="99"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="0">]</text></g><g id="100"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="232" x="0">2.2.0 :003 &gt; albums.where.not</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="232">(</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="488" x="240">ArtistId: 245)                                               </text></g><g id="101"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="728" x="0">2.2.0 :003 &gt; albums.where.not(ArtistId: 245)                                               </text></g><g id="102"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[  0] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb33eb0&gt; {</text></g><g id="103"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="8" x="168">1</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="176">,</text></g><g id="104"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="312" x="168">"For Those About To Rock We Salute You"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="480">,</text></g><g id="105"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="8" x="168">1</text></g><g id="106"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[  1] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb33d70&gt; {</text></g><g id="107"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="8" x="168">2</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="176">,</text></g><g id="108"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="152" x="168">"Balls to the Wall"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="320">,</text></g><g id="109"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="8" x="168">2</text></g><g id="110"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[  2] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb33c30&gt; {</text></g><g id="111"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="8" x="168">3</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="176">,</text></g><g id="112"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="152" x="168">"Restless and Wild"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="320">,</text></g><g id="113"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[  3] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb33af0&gt; {</text></g><g id="114"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="8" x="168">4</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="176">,</text></g><g id="115"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="152" x="168">"Let There Be Rock"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="320">,</text></g><g id="116"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[  4] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="256" x="80">#&lt;ActiveRecord::Base::Albums:0x0</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="336"> </text></g><g id="117"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="80" x="168">"Big Ones"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="248">,</text></g><g id="118"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="8" x="168">3</text></g><g id="119"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[  5] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb33848&gt; {</text></g><g id="120"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="8" x="168">6</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="176">,</text></g><g id="121"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="160" x="168">"Jagged Little Pill"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="328">,</text></g><g id="122"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="8" x="168">4</text></g><g id="123"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[  6] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb33708&gt; {</text></g><g id="124"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="8" x="168">7</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="176">,</text></g><g id="125"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="80" x="168">"Facelift"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="248">,</text></g><g id="126"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="8" x="168">5</text></g><g id="127"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[  7] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb335a0&gt; {</text></g><g id="128"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="8" x="168">8</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="176">,</text></g><g id="129"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="128" x="168">"Warner 25 Anos"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="296">,</text></g><g id="130"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="8" x="168">6</text></g><g id="131"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[  8] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb33460&gt; {</text></g><g id="132"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="8" x="168">9</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="176">,</text></g><g id="133"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="168"> </text></g><g id="134"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="8" x="168">7</text></g><g id="135"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[  9] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb33320&gt; {</text></g><g id="136"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">10</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="137"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="96" x="168">"Audioslave"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="264">,</text></g><g id="138"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="8" x="168">8</text></g><g id="139"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 10] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb331e0&gt; {</text></g><g id="140"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">11</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="141"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="112" x="168">"Out Of Exile"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="280">,</text></g><g id="142"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 11] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb33078&gt; {</text></g><g id="143"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">12</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="144"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="168" x="168">"BackBeat Soundtrack"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="336">,</text></g><g id="145"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="8" x="168">9</text></g><g id="146"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 12] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb32f38&gt; {</text></g><g id="147"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">13</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="148"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="208" x="168">"The Best Of Billy Cobham"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="376">,</text></g><g id="149"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="168"> </text></g><g id="150"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">10</text></g><g id="151"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 13] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb32df8&gt; {</text></g><g id="152"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">14</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="153"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="336" x="168">"Alcohol Fueled Brewtality Live! [Disc 1]"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="504">,</text></g><g id="154"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">11</text></g><g id="155"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 14] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb32cb8&gt; {</text></g><g id="156"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">15</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="157"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="336" x="168">"Alcohol Fueled Brewtality Live! [Disc 2]"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="504">,</text></g><g id="158"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 15] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb32b78&gt; {</text></g><g id="159"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">16</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="160"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="120" x="168">"Black Sabbath"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="288">,</text></g><g id="161"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">12</text></g><g id="162"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 16] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb32a10&gt; {</text></g><g id="163"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">17</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="164"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="264" x="168">"Black Sabbath Vol. 4 (Remaster)"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="432">,</text></g><g id="165"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="8" x="168">1</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="176"> </text></g><g id="166"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 17] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb328d0&gt; {</text></g><g id="167"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">18</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="168"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="96" x="168">"Body Count"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="264">,</text></g><g id="169"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">13</text></g><g id="170"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 18] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb32790&gt; {</text></g><g id="171"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">19</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="172"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="144" x="168">"Chemical Wedding"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="312">,</text></g><g id="173"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">14</text></g><g id="174"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 19] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb32650&gt; {</text></g><g id="175"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">20</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="176"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="400" x="168">"The Best Of Buddy Guy - The Millenium Collection"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="568">,</text></g><g id="177"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">15</text></g><g id="178"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 20] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb32510&gt; {</text></g><g id="179"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">21</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="180"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="112" x="168">"Prenda Minha"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="280">,</text></g><g id="181"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">16</text></g><g id="182"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 21] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="112" x="80">#&lt;ActiveRecord</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="192"> </text></g><g id="183"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">22</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="184"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="184" x="168">"Sozinho Remix Ao Vivo"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="352">,</text></g><g id="185"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 22] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb32290&gt; {</text></g><g id="186"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">23</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="187"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="128" x="168">"Minha Historia"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="296">,</text></g><g id="188"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">17</text></g><g id="189"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 23] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb32128&gt; {</text></g><g id="190"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">24</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="191"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="128" x="168">"Afrociberdelia"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="296">,</text></g><g id="192"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">18</text></g><g id="193"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 24] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb31fc0&gt; {</text></g><g id="194"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">25</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="195"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="136" x="168">"Da Lama Ao Caos"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="304">,</text></g><g id="196"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 25] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb31e80&gt; {</text></g><g id="197"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="168"> </text></g><g id="198"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="168" x="168">"Acústico MTV [Live]"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="336">,</text></g><g id="199"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">19</text></g><g id="200"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 26] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb31d18&gt; {</text></g><g id="201"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">27</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="202"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="168" x="168">"Cidade Negra - Hits"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="336">,</text></g><g id="203"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 27] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb31bd8&gt; {</text></g><g id="204"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">28</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="205"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="80" x="168">"Na Pista"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="248">,</text></g><g id="206"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">20</text></g><g id="207"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 28] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb31a98&gt; {</text></g><g id="208"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">29</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="209"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="128" x="168">"Axé Bahia 2001"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="296">,</text></g><g id="210"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">21</text></g><g id="211"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 29] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb31930&gt; {</text></g><g id="212"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">30</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="213"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="184" x="168">"BBC Sessions [Disc 1] </text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="352"> </text></g><g id="214"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 30] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb317c8&gt; {</text></g><g id="215"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">31</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="216"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="96" x="168">"Bongo Fury"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="264">,</text></g><g id="217"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">23</text></g><g id="218"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 31] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb31688&gt; {</text></g><g id="219"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">32</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="220"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="120" x="168">"Carnaval 2001"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="288">,</text></g><g id="221"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 32] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb31548&gt; {</text></g><g id="222"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">33</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="223"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="192" x="168">"Chill: Brazil (Disc 1)"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="360">,</text></g><g id="224"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">24</text></g><g id="225"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 33] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb313b8&gt; {</text></g><g id="226"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">34</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="227"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="192" x="168">"Chill: Brazil (Disc 2)"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="360">,</text></g><g id="228"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="0"> </text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="8"> </text></g><g id="229"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 34] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb31250&gt; {</text></g><g id="230"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">35</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="231"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="176" x="168">"Garage Inc. (Disc 1)"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="344">,</text></g><g id="232"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">50</text></g><g id="233"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 35] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb310c0&gt; {</text></g><g id="234"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">36</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="235"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="144" x="168">"Greatest Hits II"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="312">,</text></g><g id="236"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">51</text></g><g id="237"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 36] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb30f58&gt; {</text></g><g id="238"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">37</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="239"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="120" x="168">"Greatest Kiss"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="288">,</text></g><g id="240"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">52</text></g><g id="241"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 37] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb30df0&gt; {</text></g><g id="242"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">38</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="243"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="160" x="168">"Heart of the Night"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="328">,</text></g><g id="244"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">53</text></g><g id="245"><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="0"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="24" x="8">   </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 38] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb30c88&gt; {</text></g><g id="246"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="200" x="168">"International Superhits"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="368">,</text></g><g id="247"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">54</text></g><g id="248"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 39] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb30b20&gt; {</text></g><g id="249"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">40</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="250"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="128" x="168">"Into The Light"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="296">,</text></g><g id="251"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">55</text></g><g id="252"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 40] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb309e0&gt; {</text></g><g id="253"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">41</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="254"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="120" x="168">"Meus Momentos"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="288">,</text></g><g id="255"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">56</text></g><g id="256"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 41] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb308a0&gt; {</text></g><g id="257"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">42</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="258"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="128" x="168">"Minha História"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="296">,</text></g><g id="259"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">57</text></g><g id="260"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 42] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb30738&gt; {</text></g><g id="261"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">43</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="262"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="136"> </text></g><g id="263"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="288" x="168">"MK III The Final Concerts [Disc 1]"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="456">,</text></g><g id="264"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">58</text></g><g id="265"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 43] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb305d0&gt; {</text></g><g id="266"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">44</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="267"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="224" x="168">"Physical Graffiti [Disc 1]"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="392">,</text></g><g id="268"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">22</text></g><g id="269"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 44] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb30468&gt; {</text></g><g id="270"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">45</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="271"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="184" x="168">"Sambas De Enredo 2001"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="352">,</text></g><g id="272"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 45] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb30300&gt; {</text></g><g id="273"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">46</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="274"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="112" x="168">"Supernatural"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="280">,</text></g><g id="275"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">59</text></g><g id="276"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 46] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb301c0&gt; {</text></g><g id="277"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">47</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="278"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="176" x="168">"The Best of Ed Motta"</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="344"> </text></g><g id="279"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">37</text></g><g id="280"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 47] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb30080&gt; {</text></g><g id="281"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">48</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="282"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="288" x="168">"The Essential Miles Davis [Disc 1]"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="456">,</text></g><g id="283"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">68</text></g><g id="284"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 48] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb31070&gt; {</text></g><g id="285"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">49</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="286"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="288" x="168">"The Essential Miles Davis [Disc 2]"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="456">,</text></g><g id="287"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 49] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb2be68&gt; {</text></g><g id="288"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">50</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="289"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="232" x="168">"The Final Concerts (Disc 2)"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="400">,</text></g><g id="290"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 50] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb2bbe8&gt; {</text></g><g id="291"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">51</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="292"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="104" x="168">"Up An' Atom"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="272">,</text></g><g id="293"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="16" x="136"> =</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="152"> </text></g><g id="294"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 51] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb2b918&gt; {</text></g><g id="295"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">52</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="296"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="264" x="168">"Vinícius De Moraes - Sem Limite"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="432">,</text></g><g id="297"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">70</text></g><g id="298"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 52] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb2b6e8&gt; {</text></g><g id="299"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">53</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="300"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="112" x="168">"Vozes do MPB"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="280">,</text></g><g id="301"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 53] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb2b508&gt; {</text></g><g id="302"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">54</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="303"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="152" x="168">"Chronicle, Vol. 1"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="320">,</text></g><g id="304"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">76</text></g><g id="305"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 54] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb2b350&gt; {</text></g><g id="306"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">55</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="307"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="152" x="168">"Chronicle, Vol. 2"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="320">,</text></g><g id="308"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 55] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="64" x="80">#&lt;Active</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="144"> </text></g><g id="309"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 55] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb2b170&gt; {</text></g><g id="310"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">56</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="311"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="352" x="168">"Cássia Eller - Coleção Sem Limite [Disc 2]"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="520">,</text></g><g id="312"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">77</text></g><g id="313"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 56] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb2af90&gt; {</text></g><g id="314"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">57</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="315"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="288" x="168">"Cássia Eller - Sem Limite [Disc 1]"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="456">,</text></g><g id="316"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 57] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb2ae50&gt; {</text></g><g id="317"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">58</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="318"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="168" x="168">"Come Taste The Band"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="336">,</text></g><g id="319"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 58] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb2ac98&gt; {</text></g><g id="320"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">59</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="321"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="168" x="168">"Deep Purple In Rock"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="336">,</text></g><g id="322"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 59] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="208" x="80">#&lt;ActiveRecord::Base::Albu</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="288"> </text></g><g id="323"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">60</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="324"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="80" x="168">"Fireball"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="248">,</text></g><g id="325"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 60] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb2a5e0&gt; {</text></g><g id="326"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">61</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="327"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="520" x="168">"Knocking at Your Back Door: The Best Of Deep Purple in the 80's"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="688">,</text></g><g id="328"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 61] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb2a4a0&gt; {</text></g><g id="329"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">62</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="330"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="112" x="168">"Machine Head"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="280">,</text></g><g id="331"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 62] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb2a360&gt; {</text></g><g id="332"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">63</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="333"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="120" x="168">"Purpendicular"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="288">,</text></g><g id="334"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 63] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb2a1d0&gt; {</text></g><g id="335"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="128" x="0">         :AlbumI</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="128"> </text></g><g id="336"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="160" x="168">"Slaves And Masters"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="328">,</text></g><g id="337"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 64] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb29eb0&gt; {</text></g><g id="338"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">65</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="339"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="112" x="168">"Stormbringer"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="280">,</text></g><g id="340"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 65] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb29d48&gt; {</text></g><g id="341"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">66</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="342"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="168" x="168">"The Battle Rages On"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="336">,</text></g><g id="343"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 66] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb29c08&gt; {</text></g><g id="344"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">67</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="345"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="288" x="168">"Vault: Def Leppard's Greatest Hits"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="456">,</text></g><g id="346"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">78</text></g><g id="347"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 67] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb29ac8&gt; {</text></g><g id="348"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">68</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="349"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">79</text></g><g id="350"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 68] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb29988&gt; {</text></g><g id="351"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">69</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="352"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="208" x="168">"Djavan Ao Vivo - Vol. 02"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="376">,</text></g><g id="353"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">80</text></g><g id="354"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 69] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb29848&gt; {</text></g><g id="355"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">70</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="356"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="200" x="168">"Djavan Ao Vivo - Vol. 1"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="368">,</text></g><g id="357"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 70] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb29708&gt; {</text></g><g id="358"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">71</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="359"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="224" x="168">"Elis Regina-Minha História"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="392">,</text></g><g id="360"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">41</text></g><g id="361"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 71] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb295c8&gt; {</text></g><g id="362"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">72</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="363"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="176" x="168">"The Cream Of Clapton"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="344">,</text></g><g id="364"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="56" x="0">       </text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="56"> </text></g><g id="365"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 72] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb29488&gt; {</text></g><g id="366"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">73</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="367"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="88" x="168">"Unplugged"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="256">,</text></g><g id="368"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">81</text></g><g id="369"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 73] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb29348&gt; {</text></g><g id="370"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">74</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="371"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="152" x="168">"Album Of The Year"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="320">,</text></g><g id="372"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">82</text></g><g id="373"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 74] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb29208&gt; {</text></g><g id="374"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">75</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="375"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="96" x="168">"Angel Dust"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="264">,</text></g><g id="376"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 75] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb290c8&gt; {</text></g><g id="377"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">76</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="378"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="288" x="168">"King For A Day Fool For A Lifetime"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="456">,</text></g><g id="379"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 76] </text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="80"> </text></g><g id="380"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">77</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="381"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="128" x="168">"The Real Thing"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="296">,</text></g><g id="382"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 77] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb28e48&gt; {</text></g><g id="383"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">78</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="384"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="112" x="168">"Deixa Entrar"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="280">,</text></g><g id="385"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">83</text></g><g id="386"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 78] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb28d08&gt; {</text></g><g id="387"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">79</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="388"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="192" x="168">"In Your Honor [Disc 1]"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="360">,</text></g><g id="389"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">84</text></g><g id="390"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 79] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb28bc8&gt; {</text></g><g id="391"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">80</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="392"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="192" x="168">"In Your Honor [Disc 2]"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="360">,</text></g><g id="393"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 80] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb28a88&gt; {</text></g><g id="394"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="104" x="0">         :Alb</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="104"> </text></g><g id="395"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="96" x="168">"One By One"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="264">,</text></g><g id="396"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 81] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb28920&gt; {</text></g><g id="397"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">82</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="398"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="208" x="168">"The Colour And The Shape"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="376">,</text></g><g id="399"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 82] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb287e0&gt; {</text></g><g id="400"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">83</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="401"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="352" x="168">"My Way: The Best Of Frank Sinatra [Disc 1]"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="520">,</text></g><g id="402"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">85</text></g><g id="403"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 83] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb286a0&gt; {</text></g><g id="404"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">84</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="405"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="112" x="168">"Roda De Funk"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="280">,</text></g><g id="406"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">86</text></g><g id="407"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 84] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb28560&gt; {</text></g><g id="408"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">85</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="409"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="104" x="0">           :T</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="104"> </text></g><g id="410"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="208" x="168">"As Canções de Eu Tu Eles"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="376">,</text></g><g id="411"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">27</text></g><g id="412"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 85] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb283d0&gt; {</text></g><g id="413"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">86</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="414"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="240" x="168">"Quanta Gente Veio Ver (Live)"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="408">,</text></g><g id="415"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 86] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb28290&gt; {</text></g><g id="416"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">87</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="417"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="336" x="168">"Quanta Gente Veio ver--Bônus De Carnaval"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="504">,</text></g><g id="418"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 87] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb28100&gt; {</text></g><g id="419"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">88</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="420"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="80" x="168">"Faceless"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="248">,</text></g><g id="421"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">87</text></g><g id="422"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 88] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb28150&gt; {</text></g><g id="423"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">89</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="424"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="56" x="168">"Americ</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="224"> </text></g><g id="425"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 89] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb23e70&gt; {</text></g><g id="426"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">90</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="427"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="208" x="168">"Appetite for Destruction"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="376">,</text></g><g id="428"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">88</text></g><g id="429"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 90] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb23c90&gt; {</text></g><g id="430"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">91</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="431"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="168" x="168">"Use Your Illusion I"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="336">,</text></g><g id="432"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 91] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb23ab0&gt; {</text></g><g id="433"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">92</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="434"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="176" x="168">"Use Your Illusion II"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="344">,</text></g><g id="435"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 92] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb23808&gt; {</text></g><g id="436"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">93</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="437"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="96" x="168">"Blue Moods"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="264">,</text></g><g id="438"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">89</text></g><g id="439"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 93] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb235d8&gt; {</text></g><g id="440"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">94</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="441"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="224" x="168">"A Matter of Life and Death"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="392">,</text></g><g id="442"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">90</text></g><g id="443"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 94] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb233d0&gt; {</text></g><g id="444"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">95</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="445"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="136" x="168">"A Real Dead One"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="304">,</text></g><g id="446"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 95] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb23240&gt; {</text></g><g id="447"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">96</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="448"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="136" x="168">"A Real Live One"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="304">,</text></g><g id="449"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 96] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb23088&gt; {</text></g><g id="450"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">97</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="451"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="136" x="168">"Brave New World"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="304">,</text></g><g id="452"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 97] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="288" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="368"> </text></g><g id="453"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="128" x="168">"Dance Of Death"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="296">,</text></g><g id="454"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 98] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb22c78&gt; {</text></g><g id="455"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">99</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="184">,</text></g><g id="456"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="144" x="168">"Fear Of The Dark"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="312">,</text></g><g id="457"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[ 99] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb22a98&gt; {</text></g><g id="458"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">100</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="459"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="104" x="168">"Iron Maiden"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="272">,</text></g><g id="460"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[100] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb228b8&gt; {</text></g><g id="461"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">101</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="462"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="72" x="168">"Killers"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="240">,</text></g><g id="463"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[101] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb226b0&gt; {</text></g><g id="464"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">102</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="465"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="144" x="168">"Live After Death"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="312">,</text></g><g id="466"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[102] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb22458&gt; {</text></g><g id="467"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">103</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="468"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="264" x="168">"Live At Donington 1992 (Disc 1)"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="432">,</text></g><g id="469"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[103] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb22250&gt; {</text></g><g id="470"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">104</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="471"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="264" x="168">"Live At Donington 1992 (Disc 2)"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="432">,</text></g><g id="472"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[104] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb22098&gt; {</text></g><g id="473"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">105</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="474"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="200" x="168">"No Prayer For The Dying"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="368">,</text></g><g id="475"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[105] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb21e40&gt; {</text></g><g id="476"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">106</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="477"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="120" x="168">"Piece Of Mind"</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="288"> </text></g><g id="478"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[106] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb21cb0&gt; {</text></g><g id="479"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">107</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="480"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="96" x="168">"Powerslave"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="264">,</text></g><g id="481"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[107] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb21b48&gt; {</text></g><g id="482"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">108</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="483"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="152" x="168">"Rock In Rio [CD1]"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="320">,</text></g><g id="484"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[108] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb21968&gt; {</text></g><g id="485"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">109</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="486"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="152" x="168">"Rock In Rio [CD2]"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="320">,</text></g><g id="487"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[109] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb21760&gt; {</text></g><g id="488"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">110</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="489"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="240" x="168">"Seventh Son of a Seventh Son"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="408">,</text></g><g id="490"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="48" x="0">    },</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="48"> </text></g><g id="491"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[110] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb215a8&gt; {</text></g><g id="492"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">111</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="493"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="152" x="168">"Somewhere in Time"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="320">,</text></g><g id="494"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[111] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb213c8&gt; {</text></g><g id="495"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">112</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="496"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="200" x="168">"The Number of The Beast"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="368">,</text></g><g id="497"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[112] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb21170&gt; {</text></g><g id="498"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">113</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="499"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="112" x="168">"The X Factor"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="280">,</text></g><g id="500"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[113] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb20fe0&gt; {</text></g><g id="501"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">114</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="502"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="96" x="168">"Virtual XI"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="264">,</text></g><g id="503"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[114] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="376" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb20e28&gt; </text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="456"> </text></g><g id="504"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="104" x="168">"Sex Machine"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="272">,</text></g><g id="505"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">91</text></g><g id="506"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[115] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb20bf8&gt; {</text></g><g id="507"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">116</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="508"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="216" x="168">"Emergency On Planet Earth"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="384">,</text></g><g id="509"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">92</text></g><g id="510"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[116] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb209c8&gt; {</text></g><g id="511"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">117</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="512"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="104" x="168">"Synkronized"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="272">,</text></g><g id="513"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[117] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb20798&gt; {</text></g><g id="514"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">118</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="515"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="256" x="168">"The Return Of The Space Cowboy"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="424">,</text></g><g id="516"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[118] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb20658&gt; {</text></g><g id="517"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">119</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="518"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="24" x="0">   </text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="24"> </text></g><g id="519"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="80" x="168">"Get Born"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="248">,</text></g><g id="520"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">93</text></g><g id="521"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[119] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb204a0&gt; {</text></g><g id="522"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">120</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="523"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="176" x="168">"Are You Experienced?"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="344">,</text></g><g id="524"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">94</text></g><g id="525"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[120] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb20310&gt; {</text></g><g id="526"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">121</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="527"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="296" x="168">"Surfing with the Alien (Remastered)"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="464">,</text></g><g id="528"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">95</text></g><g id="529"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[121] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb200b8&gt; {</text></g><g id="530"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">122</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="531"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="184" x="168">"Jorge Ben Jor 25 Anos"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="352">,</text></g><g id="532"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">46</text></g><g id="533"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[122] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb1bea0&gt; {</text></g><g id="534"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">123</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="535"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="96" x="168">"Jota Quest-</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="264"> </text></g><g id="536"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">96</text></g><g id="537"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[123] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb1bd60&gt; {</text></g><g id="538"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">124</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="539"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="88" x="168">"Cafezinho"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="256">,</text></g><g id="540"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">97</text></g><g id="541"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[124] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb1bc20&gt; {</text></g><g id="542"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">125</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="543"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="184" x="168">"Living After Midnight"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="352">,</text></g><g id="544"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">98</text></g><g id="545"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[125] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb1bae0&gt; {</text></g><g id="546"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">126</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="547"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="144" x="168">"Unplugged [Live]"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="312">,</text></g><g id="548"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[126] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb1b978&gt; {</text></g><g id="549"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">127</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="550"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="240" x="168">"BBC Sessions [Disc 2] [Live]"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="408">,</text></g><g id="551"><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="0"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="128" x="8">       :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">22</text></g><g id="552"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">128</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="553"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="48" x="168">"Coda"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="216">,</text></g><g id="554"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[128] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb1b6f8&gt; {</text></g><g id="555"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">129</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="556"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="160" x="168">"Houses Of The Holy"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="328">,</text></g><g id="557"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[129] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb1b5b8&gt; {</text></g><g id="558"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">130</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="559"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="200" x="168">"In Through The Out Door"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="368">,</text></g><g id="560"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[130] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb1b478&gt; {</text></g><g id="561"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">131</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="562"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="32" x="168">"IV"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="200">,</text></g><g id="563"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[131] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb1b338&gt; {</text></g><g id="564"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="32"> </text></g><g id="565"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="128" x="168">"Led Zeppelin I"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="296">,</text></g><g id="566"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[132] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb1b1f8&gt; {</text></g><g id="567"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">133</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="568"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="136" x="168">"Led Zeppelin II"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="304">,</text></g><g id="569"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[133] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb1b0b8&gt; {</text></g><g id="570"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">134</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="571"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="144" x="168">"Led Zeppelin III"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="312">,</text></g><g id="572"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[134] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb1af78&gt; {</text></g><g id="573"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">135</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="574"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="224" x="168">"Physical Graffiti [Disc 2]"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="392">,</text></g><g id="575"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[135] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb1ae38&gt; {</text></g><g id="576"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">136</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="577"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="128" x="0">           :Titl</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="128"> </text></g><g id="578"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="80" x="168">"Presence"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="248">,</text></g><g id="579"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[136] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb1acf8&gt; {</text></g><g id="580"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">137</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="581"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="288" x="168">"The Song Remains The Same (Disc 1)"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="456">,</text></g><g id="582"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[137] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb1ab68&gt; {</text></g><g id="583"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">138</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="584"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="288" x="168">"The Song Remains The Same (Disc 2)"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="456">,</text></g><g id="585"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[138] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb1aa28&gt; {</text></g><g id="586"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">139</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="587"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="352" x="168">"A TempestadeTempestade Ou O Livro Dos Dias"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="520">,</text></g><g id="588"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">99</text></g><g id="589"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[139] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb1a8e8&gt; {</text></g><g id="590"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">140</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="591"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="120" x="168">"Mais Do Mesmo"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="288">,</text></g><g id="592"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[140] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb1a7a8&gt; {</text></g><g id="593"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">141</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="594"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="120" x="168">"Greatest Hits"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="288">,</text></g><g id="595"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">100</text></g><g id="596"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[141] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb1a668&gt; {</text></g><g id="597"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">142</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="598"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="392" x="168">"Lulu Santos - RCA 100 Anos De Música - Álbum 01"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="560">,</text></g><g id="599"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">101</text></g><g id="600"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[142] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb1a528&gt; {</text></g><g id="601"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">143</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="602"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="392" x="168">"Lulu Santos - RCA 100 Anos De Música - Álbum 02"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="560">,</text></g><g id="603"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[143] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb1a3e8&gt; {</text></g><g id="604"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">144</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="605"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="168" x="168">"Misplaced Childhood"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="336">,</text></g><g id="606"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">102</text></g><g id="607"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[144] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb1a2a8&gt; {</text></g><g id="608"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">145</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="609"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="128" x="168">"Barulhinho Bom"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="296">,</text></g><g id="610"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">103</text></g><g id="611"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[145] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb1a168&gt; {</text></g><g id="612"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">146</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="613"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="408" x="168">"Seek And Shall Find: More Of The Best (1963-1981)"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="576">,</text></g><g id="614"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">104</text></g><g id="615"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[146] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb1a028&gt; {</text></g><g id="616"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">147</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="617"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="200" x="168">"The Best Of Men At Work"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="368">,</text></g><g id="618"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">105</text></g><g id="619"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[147] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb19ec0&gt; {</text></g><g id="620"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">148</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="621"><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="0"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="128" x="8">          :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="104" x="168">"Black Album"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="272">,</text></g><g id="622"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[148] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb19d58&gt; {</text></g><g id="623"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">149</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="624"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="176" x="168">"Garage Inc. (Disc 2)"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="344">,</text></g><g id="625"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[149] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb19c18&gt; {</text></g><g id="626"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">150</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="627"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="112" x="168">"Kill 'Em All"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="280">,</text></g><g id="628"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[150] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb19ad8&gt; {</text></g><g id="629"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">151</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="630"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="48" x="168">"Load"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="216">,</text></g><g id="631"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[151] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb19998&gt; {</text></g><g id="632"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">152</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="633"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="152" x="168">"Master Of Puppets"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="320">,</text></g><g id="634"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[152] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="80">#</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="88"> </text></g><g id="635"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">153</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="636"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="64" x="168">"ReLoad"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="232">,</text></g><g id="637"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[153] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb19718&gt; {</text></g><g id="638"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">154</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="639"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="160" x="168">"Ride The Lightning"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="328">,</text></g><g id="640"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[154] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb195d8&gt; {</text></g><g id="641"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">155</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="642"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="88" x="168">"St. Anger"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="256">,</text></g><g id="643"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[155] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb19498&gt; {</text></g><g id="644"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">156</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="645"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="192" x="168">"...And Justice For All"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="360">,</text></g><g id="646"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[156] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb19358&gt; {</text></g><g id="647"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="104" x="168">"Miles Ahead"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="272">,</text></g><g id="648"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[157] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb19218&gt; {</text></g><g id="649"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">158</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="650"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="216" x="168">"Milton Nascimento Ao Vivo"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="384">,</text></g><g id="651"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">42</text></g><g id="652"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[158] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb190d8&gt; {</text></g><g id="653"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">159</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="654"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="56" x="168">"Minas"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="224">,</text></g><g id="655"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[159] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb18f98&gt; {</text></g><g id="656"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">160</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="657"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="120" x="168">"Ace Of Spades"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="288">,</text></g><g id="658"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">106</text></g><g id="659"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[160] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb18e58&gt; {</text></g><g id="660"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">161</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="661"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="96" x="168">"Demorou..."</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="264">,</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="272"> </text></g><g id="662"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">108</text></g><g id="663"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[161] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb18d18&gt; {</text></g><g id="664"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">162</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="665"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="216" x="168">"Motley Crue Greatest Hits"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="384">,</text></g><g id="666"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">109</text></g><g id="667"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[162] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb18bb0&gt; {</text></g><g id="668"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">163</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="669"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="352" x="168">"From The Muddy Banks Of The Wishkah [Live]"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="520">,</text></g><g id="670"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">110</text></g><g id="671"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[163] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb18a48&gt; {</text></g><g id="672"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">164</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="673"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="88" x="168">"Nevermind"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="256">,</text></g><g id="674"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[164] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb188e0&gt; {</text></g><g id="675"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">165</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="676"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="112" x="168">"Compositores"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="280">,</text></g><g id="677"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[165] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb18778&gt; {</text></g><g id="678"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">166</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="679"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="64" x="168">"Olodum"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="232">,</text></g><g id="680"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">112</text></g><g id="681"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[166] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb18548&gt; {</text></g><g id="682"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">167</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="683"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="112" x="168">"Acústico MTV"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="280">,</text></g><g id="684"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">113</text></g><g id="685"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[167] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb18340&gt; {</text></g><g id="686"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">168</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="687"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="96" x="168">"Arquivo II"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="264">,</text></g><g id="688"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[168] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb18160&gt; {</text></g><g id="689"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">169</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="690"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="264" x="168">"Arquivo Os Paralamas Do Sucesso"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="432">,</text></g><g id="691"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[169] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="232" x="80">#&lt;ActiveRecord::Base::Albums:</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="312"> </text></g><g id="692"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">170</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="693"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="248" x="168">"Bark at the Moon (Remastered)"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="416">,</text></g><g id="694"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">114</text></g><g id="695"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[170] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb13e30&gt; {</text></g><g id="696"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">171</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="697"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="136" x="168">"Blizzard of Ozz"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="304">,</text></g><g id="698"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[171] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb13cf0&gt; {</text></g><g id="699"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">172</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="700"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="256" x="168">"Diary of a Madman (Remastered)"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="424">,</text></g><g id="701"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[172] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb13bb0&gt; {</text></g><g id="702"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">173</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="703"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="224" x="168">"No More Tears (Remastered)"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="392">,</text></g><g id="704"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[173] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb13a70&gt; {</text></g><g id="705"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="72" x="168">"Tribute"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="240">,</text></g><g id="706"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[174] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb13930&gt; {</text></g><g id="707"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">175</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="708"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="200" x="168">"Walking Into Clarksdale"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="368">,</text></g><g id="709"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">115</text></g><g id="710"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[175] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb137f0&gt; {</text></g><g id="711"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">176</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="712"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="192" x="168">"Original Soundtracks 1"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="360">,</text></g><g id="713"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">116</text></g><g id="714"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[176] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb136b0&gt; {</text></g><g id="715"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">177</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="716"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="128" x="168">"The Beast Live"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="296">,</text></g><g id="717"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">117</text></g><g id="718"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[177] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb13570&gt; {</text></g><g id="719"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">178</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="720"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[178] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb13430&gt; {</text></g><g id="721"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">179</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="722"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="88" x="168">"Pearl Jam"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="256">,</text></g><g id="723"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">118</text></g><g id="724"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[179] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb132f0&gt; {</text></g><g id="725"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">180</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="726"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="80" x="168">"Riot Act"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="248">,</text></g><g id="727"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[180] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb131b0&gt; {</text></g><g id="728"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">181</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="729"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="40" x="168">"Ten"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="208">,</text></g><g id="730"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[181] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb13070&gt; {</text></g><g id="731"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">182</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="732"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="40" x="168">"Vs."</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="208">,</text></g><g id="733"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[182] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb12f08&gt; {</text></g><g id="734"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">183</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="735"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="184" x="168">"Dark Side Of The Moon"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="352">,</text></g><g id="736"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">120</text></g><g id="737"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[183] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb12da0&gt; {</text></g><g id="738"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">184</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="739"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="320" x="168">"Os Cães Ladram Mas A Caravana Não Pára"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="488">,</text></g><g id="740"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">121</text></g><g id="741"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[184] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb12c60&gt; {</text></g><g id="742"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">185</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="743"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="136" x="168">"Greatest Hits I"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="304">,</text></g><g id="744"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[185] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb12b20&gt; {</text></g><g id="745"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">186</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="746"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="152" x="168">"News Of The World"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="320">,</text></g><g id="747"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[186] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="104" x="80">#&lt;ActiveRecor</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="184"> </text></g><g id="748"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">187</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="749"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="104" x="168">"Out Of Time"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="272">,</text></g><g id="750"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">122</text></g><g id="751"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[187] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb12850&gt; {</text></g><g id="752"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">188</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="753"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="56" x="168">"Green"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="224">,</text></g><g id="754"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">124</text></g><g id="755"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[188] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb12710&gt; {</text></g><g id="756"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">189</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="757"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="200" x="168">"New Adventures In Hi-Fi"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="368">,</text></g><g id="758"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[189] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb125a8&gt; {</text></g><g id="759"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">190</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="760"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="280" x="168">"The Best Of R.E.M.: The IRS Years"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="448">,</text></g><g id="761"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[190] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb12440&gt; {</text></g><g id="762"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="136"> </text></g><g id="763"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="112" x="168">"Cesta Básica"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="280">,</text></g><g id="764"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">125</text></g><g id="765"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[191] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb12288&gt; {</text></g><g id="766"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">192</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="767"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="104" x="168">"Raul Seixas"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="272">,</text></g><g id="768"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">126</text></g><g id="769"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[192] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb12120&gt; {</text></g><g id="770"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">193</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="771"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="184" x="168">"Blood Sugar Sex Magik"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="352">,</text></g><g id="772"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">127</text></g><g id="773"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[193] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb11fe0&gt; {</text></g><g id="774"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">194</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="775"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="96" x="168">"By The Way"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="264">,</text></g><g id="776"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[194] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb11ea0&gt; {</text></g><g id="777"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">195</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="778"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="32" x="168">"Cal</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="200"> </text></g><g id="779"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[195] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb11d60&gt; {</text></g><g id="780"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">196</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="781"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="232" x="168">"Retrospective I (1974-1980)"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="400">,</text></g><g id="782"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">128</text></g><g id="783"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[196] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb11bf8&gt; {</text></g><g id="784"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">197</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="785"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="208" x="168">"Santana - As Years Go By"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="376">,</text></g><g id="786"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[197] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb11a90&gt; {</text></g><g id="787"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">198</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="788"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="112" x="168">"Santana Live"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="280">,</text></g><g id="789"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[198] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb11950&gt; {</text></g><g id="790"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">199</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="791"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="104" x="168">"Maquinarama"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="272">,</text></g><g id="792"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[199] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb11810&gt; {</text></g><g id="793"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">200</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="794"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="128" x="168">"O Samba Poconé"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="296">,</text></g><g id="795"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">130</text></g><g id="796"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[200] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb116a8&gt; {</text></g><g id="797"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">201</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="798"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="248" x="168">"Judas 0: B-Sides and Rarities"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="416">,</text></g><g id="799"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">131</text></g><g id="800"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[201] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb11568&gt; {</text></g><g id="801"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">202</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="802"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="240" x="168">"Rotten Apples: Greatest Hits"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="408">,</text></g><g id="803"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[202] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb11428&gt; {</text></g><g id="804"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">203</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="805"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="72" x="168">"A-Sides"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="240">,</text></g><g id="806"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">132</text></g><g id="807"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[203] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="64" x="80">#&lt;Active</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="144"> </text></g><g id="808"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="120" x="168">"Morning Dance"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="288">,</text></g><g id="809"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[204] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb111a8&gt; {</text></g><g id="810"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">205</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="811"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="72" x="168">"In Step"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="240">,</text></g><g id="812"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">133</text></g><g id="813"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[205] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb11068&gt; {</text></g><g id="814"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">206</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="815"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="48" x="168">"Core"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="216">,</text></g><g id="816"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">134</text></g><g id="817"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[206] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb10f28&gt; {</text></g><g id="818"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">207</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="819"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="88" x="168">"Mezmerize"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="256">,</text></g><g id="820"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">135</text></g><g id="821"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[207] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb10de8&gt; {</text></g><g id="822"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">208</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="823"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="40" x="0">     </text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="40"> </text></g><g id="824"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">136</text></g><g id="825"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[208] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb10ca8&gt; {</text></g><g id="826"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">209</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="827"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="120" x="168">"Live [Disc 1]"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="288">,</text></g><g id="828"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">137</text></g><g id="829"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[209] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb10b40&gt; {</text></g><g id="830"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">210</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="831"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="120" x="168">"Live [Disc 2]"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="288">,</text></g><g id="832"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[210] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb10a00&gt; {</text></g><g id="833"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">211</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="834"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="104" x="168">"The Singles"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="272">,</text></g><g id="835"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">138</text></g><g id="836"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[211] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb10898&gt; {</text></g><g id="837"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">212</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="838"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="176" x="168">"Beyond Good And Evil"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="344">,</text></g><g id="839"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">139</text></g><g id="840"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[212] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb10758&gt; {</text></g><g id="841"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">213</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="842"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="552" x="168">"Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers &amp; Sinne</text></g><g id="843"><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="72" x="0">rs) [UK]"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="72">,</text></g><g id="844"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[213] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb10618&gt; {</text></g><g id="845"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">214</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="846"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="88" x="168">"The Doors"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="256">,</text></g><g id="847"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">140</text></g><g id="848"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[214] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb104d8&gt; {</text></g><g id="849"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">215</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="850"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="208" x="168">"The Police Greatest Hits"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="376">,</text></g><g id="851"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">141</text></g><g id="852"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[215] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb10398&gt; {</text></g><g id="853"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">216</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="854"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="232" x="168">"Hot Rocks, 1964-1971 (Disc 1</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="400"> </text></g><g id="855"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[216] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb10258&gt; {</text></g><g id="856"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">217</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="857"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="104" x="168">"No Security"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="272">,</text></g><g id="858"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">142</text></g><g id="859"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[217] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb10118&gt; {</text></g><g id="860"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">218</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="861"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="120" x="168">"Voodoo Lounge"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="288">,</text></g><g id="862"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[218] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb10c80&gt; {</text></g><g id="863"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">219</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="864"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="80" x="168">"Tangents"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="248">,</text></g><g id="865"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">143</text></g><g id="866"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[219] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb0bfa0&gt; {</text></g><g id="867"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">220</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="868"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="112" x="168">"Transmission"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="280">,</text></g><g id="869"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[220] </text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="80"> </text></g><g id="870"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[220] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb0be60&gt; {</text></g><g id="871"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">221</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="872"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="336" x="168">"My Generation - The Very Best Of The Who"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="504">,</text></g><g id="873"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">144</text></g><g id="874"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[221] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb0bd20&gt; {</text></g><g id="875"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">222</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="876"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="216" x="168">"Serie Sem Limite (Disc 1)"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="384">,</text></g><g id="877"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">145</text></g><g id="878"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[222] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb0bbe0&gt; {</text></g><g id="879"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">223</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="880"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="216" x="168">"Serie Sem Limite (Disc 2)"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="384">,</text></g><g id="881"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[223] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb0baa0&gt; {</text></g><g id="882"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">224</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="883"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="80" x="168">"Acústico"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="248">,</text></g><g id="884"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">146</text></g><g id="885"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[224] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="216" x="80">#&lt;ActiveRecord::Base::Album</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="296"> </text></g><g id="886"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">225</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="887"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="104" x="168">"Volume Dois"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="272">,</text></g><g id="888"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[225] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb0b820&gt; {</text></g><g id="889"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">226</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="890"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="320" x="168">"Battlestar Galactica: The Story So Far"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="488">,</text></g><g id="891"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">147</text></g><g id="892"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[226] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb0b6e0&gt; {</text></g><g id="893"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">227</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="894"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="256" x="168">"Battlestar Galactica, Season 3"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="424">,</text></g><g id="895"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[227] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb0b5a0&gt; {</text></g><g id="896"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">228</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="897"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="144" x="168">"Heroes, Season 1"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="312">,</text></g><g id="898"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">148</text></g><g id="899"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[228] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb0b460&gt; {</text></g><g id="900"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="80" x="0">         :</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="80"> </text></g><g id="901"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="128" x="168">"Lost, Season 3"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="296">,</text></g><g id="902"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">149</text></g><g id="903"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[229] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb0b320&gt; {</text></g><g id="904"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">230</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="905"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="128" x="168">"Lost, Season 1"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="296">,</text></g><g id="906"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[230] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb0b1b8&gt; {</text></g><g id="907"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">231</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="908"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="128" x="168">"Lost, Season 2"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="296">,</text></g><g id="909"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[231] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb0b050&gt; {</text></g><g id="910"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">232</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="911"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="112" x="168">"Achtung Baby"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="280">,</text></g><g id="912"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">150</text></g><g id="913"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[232] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb0af10&gt; {</text></g><g id="914"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">233</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="915"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[233] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb0add0&gt; {</text></g><g id="916"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">234</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="917"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="152" x="168">"B-Sides 1980-1990"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="320">,</text></g><g id="918"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[234] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb0ac90&gt; {</text></g><g id="919"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">235</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="920"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="264" x="168">"How To Dismantle An Atomic Bomb"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="432">,</text></g><g id="921"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[235] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb0ab50&gt; {</text></g><g id="922"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">236</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="923"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="40" x="168">"Pop"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="208">,</text></g><g id="924"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[236] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb0aa10&gt; {</text></g><g id="925"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">237</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="926"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="128" x="168">"Rattle And Hum"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="296">,</text></g><g id="927"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="136"> </text></g><g id="928"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[237] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb0a8d0&gt; {</text></g><g id="929"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">238</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="930"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="184" x="168">"The Best Of 1980-1990"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="352">,</text></g><g id="931"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[238] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb0a790&gt; {</text></g><g id="932"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">239</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="933"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="40" x="168">"War"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="208">,</text></g><g id="934"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[239] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb0a650&gt; {</text></g><g id="935"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">240</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="936"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="72" x="168">"Zooropa"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="240">,</text></g><g id="937"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[240] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb0a510&gt; {</text></g><g id="938"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">241</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="939"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="288" x="168">"UB40 The Best Of - Volume Two [UK]"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="456">,</text></g><g id="940"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">151</text></g><g id="941"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[241] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="40" x="80">#&lt;Act</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="120"> </text></g><g id="942"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">242</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="943"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="96" x="168">"Diver Down"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="264">,</text></g><g id="944"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">152</text></g><g id="945"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[242] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb0a268&gt; {</text></g><g id="946"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">243</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="947"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="248" x="168">"The Best Of Van Halen, Vol. I"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="416">,</text></g><g id="948"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[243] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb0a128&gt; {</text></g><g id="949"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">244</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="950"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="88" x="168">"Van Halen"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="256">,</text></g><g id="951"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[244] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb09fe8&gt; {</text></g><g id="952"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">245</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="953"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="120" x="168">"Van Halen III"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="288">,</text></g><g id="954"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[245] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb09e80&gt; {</text></g><g id="955"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="96" x="168">"Contraband"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="264">,</text></g><g id="956"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">153</text></g><g id="957"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[246] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb09d40&gt; {</text></g><g id="958"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">247</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="959"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="160" x="168">"Vinicius De Moraes"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="328">,</text></g><g id="960"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">72</text></g><g id="961"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[247] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb09c00&gt; {</text></g><g id="962"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">248</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="963"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="144" x="168">"Ao Vivo [IMPORT]"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="312">,</text></g><g id="964"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">155</text></g><g id="965"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[248] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb09ac0&gt; {</text></g><g id="966"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">249</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="967"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="176" x="168">"The Office, Season 1"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="344">,</text></g><g id="968"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">156</text></g><g id="969"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[249] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb09980&gt; {</text></g><g id="970"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">250</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="971"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[250] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb09840&gt; {</text></g><g id="972"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">251</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="973"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="176" x="168">"The Office, Season 3"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="344">,</text></g><g id="974"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[251] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb09700&gt; {</text></g><g id="975"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">252</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="976"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="88" x="168">"Un-Led-Ed"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="256">,</text></g><g id="977"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">157</text></g><g id="978"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[252] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb095c0&gt; {</text></g><g id="979"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">253</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="980"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="336" x="168">"Battlestar Galactica (Classic), Season 1"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="504">,</text></g><g id="981"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">158</text></g><g id="982"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[253] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb09480&gt; {</text></g><g id="983"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">254</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="984"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="72" x="168">"Aquaman"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="240">,</text></g><g id="985"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">159</text></g><g id="986"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[254] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb09340&gt; {</text></g><g id="987"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">255</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="988"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="528" x="168">"Instant Karma: The Amnesty International Campaign to Save Darfur"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="696">,</text></g><g id="989"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[255] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb09200&gt; {</text></g><g id="990"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">256</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="991"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="160" x="168">"Speak of the Devil"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="328">,</text></g><g id="992"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[256] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb090c0&gt; {</text></g><g id="993"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">257</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="994"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="552" x="168">"20th Century Masters - The Millennium Collection: The Best of Scorpi</text></g><g id="995"><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">ons"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="32">,</text></g><g id="996"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">179</text></g><g id="997"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[257] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb08f80&gt; {</text></g><g id="998"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">258</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="999"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="48" x="168">"House</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="216"> </text></g><g id="1000"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">180</text></g><g id="1001"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[258] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb08e40&gt; {</text></g><g id="1002"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">259</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1003"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="552" x="168">"Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro</text></g><g id="1004"><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="8" x="0">"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="8">,</text></g><g id="1005"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="168">36</text></g><g id="1006"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[259] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb08cb0&gt; {</text></g><g id="1007"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">260</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1008"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="224" x="168">"Cake: B-Sides and Rarities"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="392">,</text></g><g id="1009"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">196</text></g><g id="1010"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[260] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb08b70&gt; {</text></g><g id="1011"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">261</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1012"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="128" x="168">"LOST, Season 4"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="296">,</text></g><g id="1013"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[261] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb08a30&gt; {</text></g><g id="1014"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">262</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1015"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="104" x="168">"Quiet Songs"</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="272"> </text></g><g id="1016"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[262] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb088c8&gt; {</text></g><g id="1017"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">263</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1018"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="72" x="168">"Muso Ko"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="240">,</text></g><g id="1019"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">198</text></g><g id="1020"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[263] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb08788&gt; {</text></g><g id="1021"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">264</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1022"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="72" x="168">"Realize"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="240">,</text></g><g id="1023"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">199</text></g><g id="1024"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[264] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb08648&gt; {</text></g><g id="1025"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">265</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1026"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="168" x="168">"Every Kind of Light"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="336">,</text></g><g id="1027"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">200</text></g><g id="1028"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[265] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb08508&gt; {</text></g><g id="1029"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">266</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1030"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="72" x="168">"Duos II"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="240">,</text></g><g id="1031"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">201</text></g><g id="1032"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[266] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="40" x="80">#&lt;Act</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="120"> </text></g><g id="1033"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">267</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1034"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="64" x="168">"Worlds"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="232">,</text></g><g id="1035"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">202</text></g><g id="1036"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[267] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb08288&gt; {</text></g><g id="1037"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">268</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1038"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="184" x="168">"The Best of Beethoven"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="352">,</text></g><g id="1039"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">203</text></g><g id="1040"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[268] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb08148&gt; {</text></g><g id="1041"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">269</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1042"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="152" x="168">"Temple of the Dog"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="320">,</text></g><g id="1043"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">204</text></g><g id="1044"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[269] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb08008&gt; {</text></g><g id="1045"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">270</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1046"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="80" x="168">"Carry On"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="248">,</text></g><g id="1047"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">205</text></g><g id="1048"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[270] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb03e90&gt; {</text></g><g id="1049"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="104" x="168">"Revelations"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="272">,</text></g><g id="1050"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[271] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb03d00&gt; {</text></g><g id="1051"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">272</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1052"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="472" x="168">"Adorate Deum: Gregorian Chant from the Proper of the Mass"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="640">,</text></g><g id="1053"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">206</text></g><g id="1054"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[272] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb03bc0&gt; {</text></g><g id="1055"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">273</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1056"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="152" x="168">"Allegri: Miserere"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="320">,</text></g><g id="1057"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">207</text></g><g id="1058"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[273] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb03a80&gt; {</text></g><g id="1059"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">274</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1060"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="208" x="168">"Pachelbel: Canon &amp; Gigue"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="376">,</text></g><g id="1061"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">208</text></g><g id="1062"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[274] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb03918&gt; {</text></g><g id="1063"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">275</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1064"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="216" x="168">"Vivaldi: The Four Seasons"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="384">,</text></g><g id="1065"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">209</text></g><g id="1066"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[275] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb037b0&gt; {</text></g><g id="1067"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">276</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1068"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="192" x="168">"Bach: Violin Concertos"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="360">,</text></g><g id="1069"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">210</text></g><g id="1070"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[276] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb03670&gt; {</text></g><g id="1071"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">277</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1072"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="216" x="168">"Bach: Goldberg Variations"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="384">,</text></g><g id="1073"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">211</text></g><g id="1074"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[277] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb03530&gt; {</text></g><g id="1075"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">278</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1076"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="192" x="168">"Bach: The Cello Suites"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="360">,</text></g><g id="1077"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">212</text></g><g id="1078"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[278] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb033f0&gt; {</text></g><g id="1079"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">279</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1080"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="272" x="168">"Handel: The Messiah (Highlights)"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="440">,</text></g><g id="1081"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">213</text></g><g id="1082"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[279] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb03260&gt; {</text></g><g id="1083"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">280</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1084"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="280" x="168">"The World of Classical Favourites"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="448">,</text></g><g id="1085"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">214</text></g><g id="1086"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[280] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb030d0&gt; {</text></g><g id="1087"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">281</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1088"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="296" x="168">"Sir Neville Marriner: A Celebration"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="464">,</text></g><g id="1089"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">215</text></g><g id="1090"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[281] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb02f90&gt; {</text></g><g id="1091"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">282</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1092"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="192" x="168">"Mozart: Wind Concertos"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="360">,</text></g><g id="1093"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">216</text></g><g id="1094"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[282] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb02e50&gt; {</text></g><g id="1095"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">283</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1096"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="32" x="168">"Hay</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="200"> </text></g><g id="1097"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">217</text></g><g id="1098"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[283] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb02ce8&gt; {</text></g><g id="1099"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">284</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1100"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="264" x="168">"Beethoven: Symhonies Nos. 5 &amp; 6"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="432">,</text></g><g id="1101"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">218</text></g><g id="1102"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[284] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb02ba8&gt; {</text></g><g id="1103"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">285</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1104"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="160" x="168">"A Soprano Inspired"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="328">,</text></g><g id="1105"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">219</text></g><g id="1106"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[285] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb02a40&gt; {</text></g><g id="1107"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">286</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1108"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="176" x="168">"Great Opera Choruses"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="344">,</text></g><g id="1109"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">220</text></g><g id="1110"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[286] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb028d8&gt; {</text></g><g id="1111"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">287</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1112"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="232" x="168">"Wagner: Favourite Overtures"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="400">,</text></g><g id="1113"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">221</text></g><g id="1114"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[287] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb02798&gt; {</text></g><g id="1115"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">288</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1116"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="320" x="168">"Fauré: Requiem, Ravel: Pavane &amp; Others"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="488">,</text></g><g id="1117"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">222</text></g><g id="1118"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[288] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb02658&gt; {</text></g><g id="1119"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">289</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1120"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="232" x="168">"Tchaikovsky: The Nutcracker"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="400">,</text></g><g id="1121"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">223</text></g><g id="1122"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[289] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb024f0&gt; {</text></g><g id="1123"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">290</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1124"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="232" x="168">"The Last Night of the Proms"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="400">,</text></g><g id="1125"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">224</text></g><g id="1126"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[290] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb023b0&gt; {</text></g><g id="1127"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">291</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1128"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="320" x="168">"Puccini: Madama Butterfly - Highlights"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="488">,</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="496"> </text></g><g id="1129"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">225</text></g><g id="1130"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[291] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb02248&gt; {</text></g><g id="1131"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">292</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1132"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="464" x="168">"Holst: The Planets, Op. 32 &amp; Vaughan Williams: Fantasies"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="632">,</text></g><g id="1133"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">226</text></g><g id="1134"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[292] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb02108&gt; {</text></g><g id="1135"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">293</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1136"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="232" x="168">"Pavarotti's Opera Made Easy"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="400">,</text></g><g id="1137"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">227</text></g><g id="1138"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[293] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb01f78&gt; {</text></g><g id="1139"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">294</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1140"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="552" x="168">"Great Performances - Barber's Adagio and Other Romantic Favorites fo</text></g><g id="1141"><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="80" x="0">r Strings"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="80">,</text></g><g id="1142"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">228</text></g><g id="1143"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[294] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb01e10&gt; {</text></g><g id="1144"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">295</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1145"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="112" x="0">           :Ti</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="112"> </text></g><g id="1146"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="128" x="168">"Carmina Burana"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="296">,</text></g><g id="1147"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">229</text></g><g id="1148"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[295] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb01cd0&gt; {</text></g><g id="1149"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">296</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1150"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="248" x="168">"A Copland Celebration, Vol. I"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="416">,</text></g><g id="1151"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">230</text></g><g id="1152"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[296] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb01b90&gt; {</text></g><g id="1153"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">297</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1154"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="272" x="168">"Bach: Toccata &amp; Fugue in D Minor"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="440">,</text></g><g id="1155"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">231</text></g><g id="1156"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[297] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb01a28&gt; {</text></g><g id="1157"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">298</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1158"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="208" x="168">"Prokofiev: Symphony No.1"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="376">,</text></g><g id="1159"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">232</text></g><g id="1160"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[298] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb018e8&gt; {</text></g><g id="1161"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">299</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1162"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="32" x="168">"Sch</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="200"> </text></g><g id="1163"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="112" x="168">"Scheherazade"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="280">,</text></g><g id="1164"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">233</text></g><g id="1165"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[299] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb01780&gt; {</text></g><g id="1166"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">300</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1167"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="264" x="168">"Bach: The Brandenburg Concertos"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="432">,</text></g><g id="1168"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">234</text></g><g id="1169"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[300] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb01640&gt; {</text></g><g id="1170"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">301</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1171"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="288" x="168">"Chopin: Piano Concertos Nos. 1 &amp; 2"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="456">,</text></g><g id="1172"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">235</text></g><g id="1173"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[301] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb01500&gt; {</text></g><g id="1174"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">302</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1175"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="256" x="168">"Mascagni: Cavalleria Rusticana"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="424">,</text></g><g id="1176"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">236</text></g><g id="1177"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[302] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb013c0&gt; {</text></g><g id="1178"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">303</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1179"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="168" x="168">"Sibelius: Finlandia"</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="336"> </text></g><g id="1180"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="168" x="168">"Sibelius: Finlandia"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="336">,</text></g><g id="1181"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">237</text></g><g id="1182"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[303] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb01230&gt; {</text></g><g id="1183"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">304</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1184"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="384" x="168">"Beethoven Piano Sonatas: Moonlight &amp; Pastorale"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="552">,</text></g><g id="1185"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">238</text></g><g id="1186"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[304] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb010f0&gt; {</text></g><g id="1187"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">305</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1188"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="520" x="168">"Great Recordings of the Century - Mahler: Das Lied von der Erde"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="688">,</text></g><g id="1189"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">240</text></g><g id="1190"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[305] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb00fb0&gt; {</text></g><g id="1191"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">306</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1192"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="424" x="168">"Elgar: Cello Concerto &amp; Vaughan Williams: Fantasias"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="592">,</text></g><g id="1193"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">241</text></g><g id="1194"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[306] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb00e70&gt; {</text></g><g id="1195"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">307</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1196"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="272" x="168">"Adams, John: The Chairman Dances"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="440">,</text></g><g id="1197"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">242</text></g><g id="1198"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[307] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb00d08&gt; {</text></g><g id="1199"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">308</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1200"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="552" x="168">"Tchaikovsky: 1812 Festival Overture, Op.49, Capriccio Italien &amp; Beet</text></g><g id="1201"><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="224" x="0">hoven: Wellington's Victory"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="224">,</text></g><g id="1202"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">243</text></g><g id="1203"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[308] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb00bc8&gt; {</text></g><g id="1204"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">309</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1205"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="432" x="168">"Palestrina: Missa Papae Marcelli &amp; Allegri: Miserere"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="600">,</text></g><g id="1206"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">244</text></g><g id="1207"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[309] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb00a88&gt; {</text></g><g id="1208"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">311</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1209"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="144" x="168">"Strauss: Waltzes"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="312">,</text></g><g id="1210"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[310] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="360" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb00948</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="440"> </text></g><g id="1211"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[310] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb00948&gt; {</text></g><g id="1212"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">313</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1213"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="208" x="168">"Bizet: Carmen Highlights"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="376">,</text></g><g id="1214"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">246</text></g><g id="1215"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[311] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb00808&gt; {</text></g><g id="1216"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">314</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1217"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="168" x="168">"English Renaissance"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="336">,</text></g><g id="1218"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">247</text></g><g id="1219"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[312] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb006c8&gt; {</text></g><g id="1220"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">315</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1221"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="504" x="168">"Handel: Music for the Royal Fireworks (Original Version 1749)"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="672">,</text></g><g id="1222"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[313] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb00588&gt; {</text></g><g id="1223"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">316</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1224"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="464" x="168">"Grieg: Peer Gynt Suites &amp; Sibelius: Pelléas et Mélisande"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="632">,</text></g><g id="1225"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">248</text></g><g id="1226"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[314] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="88" x="80">#&lt;ActiveRec</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="168"> </text></g><g id="1227"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[314] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb00448&gt; {</text></g><g id="1228"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">317</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1229"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="216" x="168">"Mozart Gala: Famous Arias"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="384">,</text></g><g id="1230"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">249</text></g><g id="1231"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[315] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb00308&gt; {</text></g><g id="1232"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">318</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1233"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="208" x="168">"SCRIABIN: Vers la flamme"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="376">,</text></g><g id="1234"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">250</text></g><g id="1235"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[316] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb001c8&gt; {</text></g><g id="1236"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">319</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1237"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="416" x="168">"Armada: Music from the Courts of England and Spain"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="584">,</text></g><g id="1238"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">251</text></g><g id="1239"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[317] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdb00088&gt; {</text></g><g id="1240"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">320</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1241"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="264" x="168">"Mozart: Symphonies Nos. 40 &amp; 41"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="432">,</text></g><g id="1242"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[318] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="72" x="80">#&lt;ActiveR</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="152"> </text></g><g id="1243"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[318] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdafbf60&gt; {</text></g><g id="1244"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">321</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1245"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="120" x="168">"Back to Black"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="288">,</text></g><g id="1246"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">252</text></g><g id="1247"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[319] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdafbe20&gt; {</text></g><g id="1248"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">322</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1249"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="56" x="168">"Frank"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="224">,</text></g><g id="1250"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[320] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdafbce0&gt; {</text></g><g id="1251"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">323</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1252"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="312" x="168">"Carried to Dust (Bonus Track Version)"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="480">,</text></g><g id="1253"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">253</text></g><g id="1254"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[321] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdafbba0&gt; {</text></g><g id="1255"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">324</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1256"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="344" x="168">"Beethoven: Symphony No. 6 'Pastoral' Etc."</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="512">,</text></g><g id="1257"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">254</text></g><g id="1258"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[322] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="328" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdaf</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="408"> </text></g><g id="1259"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[322] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdafba60&gt; {</text></g><g id="1260"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">325</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1261"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="272" x="168">"Bartok: Violin &amp; Viola Concertos"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="440">,</text></g><g id="1262"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">255</text></g><g id="1263"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[323] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdafb920&gt; {</text></g><g id="1264"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">326</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1265"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="320" x="168">"Mendelssohn: A Midsummer Night's Dream"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="488">,</text></g><g id="1266"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">256</text></g><g id="1267"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[324] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdafb7e0&gt; {</text></g><g id="1268"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">327</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1269"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="288" x="168">"Bach: Orchestral Suites Nos. 1 - 4"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="456">,</text></g><g id="1270"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">257</text></g><g id="1271"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[325] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdafb6a0&gt; {</text></g><g id="1272"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">328</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1273"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="376" x="168">"Charpentier: Divertissements, Airs &amp; Concerts"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="544">,</text></g><g id="1274"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">258</text></g><g id="1275"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[326] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="160" x="80">#&lt;ActiveRecord::Base</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="240"> </text></g><g id="1276"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[326] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdafb560&gt; {</text></g><g id="1277"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">329</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1278"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="192" x="168">"South American Getaway"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="360">,</text></g><g id="1279"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">259</text></g><g id="1280"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[327] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdafb420&gt; {</text></g><g id="1281"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">330</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1282"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="200" x="168">"Górecki: Symphony No. 3"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="368">,</text></g><g id="1283"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">260</text></g><g id="1284"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[328] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdafb2e0&gt; {</text></g><g id="1285"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">331</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1286"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="208" x="168">"Purcell: The Fairy Queen"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="376">,</text></g><g id="1287"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">261</text></g><g id="1288"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[329] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdafb1a0&gt; {</text></g><g id="1289"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">332</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1290"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="248" x="168">"The Ultimate Relexation Album"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="416">,</text></g><g id="1291"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">262</text></g><g id="1292"><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="0"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="24" x="8">   </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[330] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdafb060&gt; {</text></g><g id="1293"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[330] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdafb060&gt; {</text></g><g id="1294"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">333</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1295"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="280" x="168">"Purcell: Music for the Queen Mary"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="448">,</text></g><g id="1296"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">263</text></g><g id="1297"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[331] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdafaef8&gt; {</text></g><g id="1298"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">334</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1299"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="240" x="168">"Weill: The Seven Deadly Sins"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="408">,</text></g><g id="1300"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">264</text></g><g id="1301"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[332] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdafadb8&gt; {</text></g><g id="1302"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">335</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1303"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="552" x="168">"J.S. Bach: Chaconne, Suite in E Minor, Partita in E Major &amp; Prelude,</text></g><g id="1304"><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="152" x="0"> Fugue and Allegro"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="152">,</text></g><g id="1305"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">265</text></g><g id="1306"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[333] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdafac78&gt; {</text></g><g id="1307"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">336</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1308"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="496" x="168">"Prokofiev: Symphony No.5 &amp; Stravinksy: Le Sacre Du Printemps"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="664">,</text></g><g id="1309"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">248</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="192"> </text></g><g id="1310"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[334] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdafab38&gt; {</text></g><g id="1311"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">337</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1312"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="272" x="168">"Szymanowski: Piano Works, Vol. 1"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="440">,</text></g><g id="1313"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">266</text></g><g id="1314"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[335] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdafa9f8&gt; {</text></g><g id="1315"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">338</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1316"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="232" x="168">"Nielsen: The Six Symphonies"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="400">,</text></g><g id="1317"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">267</text></g><g id="1318"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[336] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdafa8b8&gt; {</text></g><g id="1319"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">339</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1320"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="456" x="168">"Great Recordings of the Century: Paganini's 24 Caprices"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="624">,</text></g><g id="1321"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">268</text></g><g id="1322"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[337] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdafa778&gt; {</text></g><g id="1323"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">340</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1324"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="360" x="168">"Liszt - 12 Études D'Execution Transcendante"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="528">,</text></g><g id="1325"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="128" x="0">        :ArtistI</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="128"> </text></g><g id="1326"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">269</text></g><g id="1327"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[338] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdafa638&gt; {</text></g><g id="1328"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">341</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1329"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="552" x="168">"Great Recordings of the Century - Shubert: Schwanengesang, 4 Lieder"</text></g><g id="1330"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="0">,</text></g><g id="1331"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">270</text></g><g id="1332"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[339] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdafa4f8&gt; {</text></g><g id="1333"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">342</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1334"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="504" x="168">"Locatelli: Concertos for Violin, Strings and Continuo, Vol. 3"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="672">,</text></g><g id="1335"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">271</text></g><g id="1336"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[340] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdafa3b8&gt; {</text></g><g id="1337"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">343</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1338"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="192" x="168">"Respighi:Pines of Rome"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="360">,</text></g><g id="1339"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[341] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdafa278&gt; {</text></g><g id="1340"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">344</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1341"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">"Sc</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="192"> </text></g><g id="1342"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="104" x="0">2.2.0 :004 &gt; </text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="104"> </text></g><g id="1343"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="112" x="0">2.2.0 :004 &gt; g</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="112"> </text></g><g id="1344"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="120" x="0">2.2.0 :004 &gt; ge</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="120"> </text></g><g id="1345"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="128" x="0">2.2.0 :004 &gt; gen</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="128"> </text></g><g id="1346"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="152" x="0">2.2.0 :004 &gt; genres</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="152"> </text></g><g id="1347"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="160" x="0">2.2.0 :004 &gt; genres.</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="160"> </text></g><g id="1348"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="168" x="0">2.2.0 :004 &gt; genres.c</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="168"> </text></g><g id="1349"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="176" x="0">2.2.0 :004 &gt; genres.co</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="176"> </text></g><g id="1350"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="184" x="0">2.2.0 :004 &gt; genres.cou</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="184"> </text></g><g id="1351"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="192" x="0">2.2.0 :004 &gt; genres.coun</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="192"> </text></g><g id="1352"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="496" x="168">"Schubert: The Late String Quartets &amp; String Quintet (3 CD's)"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="664">,</text></g><g id="1353"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">272</text></g><g id="1354"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[342] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdafa138&gt; {</text></g><g id="1355"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">345</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1356"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="168" x="168">"Monteverdi: L'Orfeo"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="336">,</text></g><g id="1357"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">273</text></g><g id="1358"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[343] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdaf9fd0&gt; {</text></g><g id="1359"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">346</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1360"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="184" x="168">"Mozart: Chamber Music"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="352">,</text></g><g id="1361"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">274</text></g><g id="1362"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="48" x="32">[344] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="80">#&lt;ActiveRecord::Base::Albums:0x007fc6fdaf9e90&gt; {</text></g><g id="1363"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">         :AlbumId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">347</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="192">,</text></g><g id="1364"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">           :Title</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="416" x="168">"Koyaanisqatsi (Soundtrack from the Motion Picture)"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="584">,</text></g><g id="1365"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">        :ArtistId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="136"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="24" x="168">275</text></g><g id="1366"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="200" x="0">2.2.0 :004 &gt; genres.count</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="200"> </text></g><g id="1367"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="200" x="0">2.2.0 :004 &gt; genres.count</text></g><g id="1368"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="104" x="0">2.2.0 :005 &gt; </text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="104"> </text></g><g id="1369"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="200" x="0">2.2.0 :005 &gt; genres.count</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="200"> </text></g><g id="1370"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="192" x="0">2.2.0 :005 &gt; genres.coun</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="192"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="520" x="200">                                                                 </text></g><g id="1371"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="184" x="0">2.2.0 :005 &gt; genres.cou</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="184"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="528" x="192">                                                                  </text></g><g id="1372"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="176" x="0">2.2.0 :005 &gt; genres.co</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="176"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="536" x="184">                                                                   </text></g><g id="1373"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="168" x="0">2.2.0 :005 &gt; genres.c</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="168"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="544" x="176">                                                                    </text></g><g id="1374"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="160" x="0">2.2.0 :005 &gt; genres.</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="160"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="552" x="168">                                                                     </text></g><g id="1375"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="168" x="0">2.2.0 :005 &gt; genres.f</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="168"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="544" x="176">                                                                    </text></g><g id="1376"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="176" x="0">2.2.0 :005 &gt; genres.fi</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="176"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="536" x="184">                                                                   </text></g><g id="1377"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="184" x="0">2.2.0 :005 &gt; genres.fin</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="184"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="528" x="192">                                                                  </text></g><g id="1378"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="192" x="0">2.2.0 :005 &gt; genres.find</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="192"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="520" x="200">                                                                 </text></g><g id="1379"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="200" x="0">2.2.0 :005 &gt; genres.find </text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="200"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="512" x="208">                                                                </text></g><g id="1380"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="208" x="0">2.2.0 :005 &gt; genres.find 2</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="208"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="504" x="216">                                                               </text></g><g id="1381"><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="0">25</text></g><g id="1382"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="216" x="0">2.2.0 :005 &gt; genres.find 23</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="216"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="496" x="224">                                                              </text></g><g id="1383"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="720" x="0">2.2.0 :005 &gt; genres.find 23                                                               </text></g><g id="1384"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="104" x="0">2.2.0 :006 &gt; </text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="104"> </text></g><g id="1385"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="216" x="0">2.2.0 :006 &gt; genres.find 23</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="216"> </text></g><g id="1386"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="200" x="0">2.2.0 :006 &gt; genres.count</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="200"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="504" x="208">                                                               </text></g><g id="1387"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="192" x="0">2.2.0 :006 &gt; genres.coun</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="192"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="520" x="200">                                                                 </text></g><g id="1388"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="184" x="0">2.2.0 :006 &gt; genres.cou</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="184"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="528" x="192">                                                                  </text></g><g id="1389"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="176" x="0">2.2.0 :006 &gt; genres.co</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="176"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="536" x="184">                                                                   </text></g><g id="1390"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="168" x="0">2.2.0 :006 &gt; genres.c</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="168"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="544" x="176">                                                                    </text></g><g id="1391"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="160" x="0">2.2.0 :006 &gt; genres.</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="160"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="552" x="168">                                                                     </text></g><g id="1392"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="168" x="0">2.2.0 :006 &gt; genres.w</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="168"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="544" x="176">                                                                    </text></g><g id="1393"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="176" x="0">2.2.0 :006 &gt; genres.wh</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="176"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="536" x="184">                                                                   </text></g><g id="1394"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="184" x="0">2.2.0 :006 &gt; genres.whe</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="184"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="528" x="192">                                                                  </text></g><g id="1395"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="192" x="0">2.2.0 :006 &gt; genres.wher</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="192"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="520" x="200">                                                                 </text></g><g id="1396"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="200" x="0">2.2.0 :006 &gt; genres.where</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="200"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="512" x="208">                                                                </text></g><g id="1397"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="208" x="0">2.2.0 :006 &gt; genres.where(</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="208"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="504" x="216">                                                               </text></g><g id="1398"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="216" x="0">2.2.0 :006 &gt; genres.where()</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="216"> </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="496" x="224">                                                              </text></g><g id="1399"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="208" x="0">2.2.0 :006 &gt; genres.where(</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="208">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="504" x="216">                                                               </text></g><g id="1400"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="216" x="0">2.2.0 :006 &gt; genres.where(N</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="216">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="496" x="224">                                                              </text></g><g id="1401"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="224" x="0">2.2.0 :006 &gt; genres.where(Na</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="224">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="488" x="232">                                                             </text></g><g id="1402"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="232" x="0">2.2.0 :006 &gt; genres.where(Nam</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="232">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="480" x="240">                                                            </text></g><g id="1403"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="240" x="0">2.2.0 :006 &gt; genres.where(Name</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="240">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="472" x="248">                                                           </text></g><g id="1404"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="248" x="0">2.2.0 :006 &gt; genres.where(Name:</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="248">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="464" x="256">                                                          </text></g><g id="1405"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="256" x="0">2.2.0 :006 &gt; genres.where(Name: </text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="256">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="456" x="264">                                                         </text></g><g id="1406"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="264" x="0">2.2.0 :006 &gt; genres.where(Name: "</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="264">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="448" x="272">                                                        </text></g><g id="1407"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="272" x="0">2.2.0 :006 &gt; genres.where(Name: ""</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="272">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="440" x="280">                                                       </text></g><g id="1408"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="264" x="0">2.2.0 :006 &gt; genres.where(Name: "</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="264">"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="448" x="272">)                                                       </text></g><g id="1409"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="272" x="0">2.2.0 :006 &gt; genres.where(Name: "P</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="272">"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="440" x="280">)                                                      </text></g><g id="1410"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="280" x="0">2.2.0 :006 &gt; genres.where(Name: "Po</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="280">"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="432" x="288">)                                                     </text></g><g id="1411"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="0">#&lt;ActiveRecord::Base::Genres:0x007fc6fdc09128&gt; {</text></g><g id="1412"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="96" x="0">    :GenreId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="96"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="16" x="128">23</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="144">,</text></g><g id="1413"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="96" x="0">       :Name</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="96"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="104" x="128">"Alternative"</text></g><g id="1414"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="288" x="0">2.2.0 :006 &gt; genres.where(Name: "Pop</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="288">"</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="424" x="296">)                                                    </text></g><g id="1415"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="720" x="0">2.2.0 :006 &gt; genres.where(Name: "Pop")                                                    </text></g><g id="1416"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="104" x="0">2.2.0 :007 &gt; </text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="104"> </text></g><g id="1417"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="112" x="0">2.2.0 :007 &gt; e</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="112"> </text></g><g id="1418"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="120" x="0">2.2.0 :007 &gt; ex</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="120"> </text></g><g id="1419"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="128" x="0">2.2.0 :007 &gt; exi</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="128"> </text></g><g id="1420"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="32" x="0">    </text><text fill="#e5e5e5" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="32" x="32">[0] </text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="384" x="64">#&lt;ActiveRecord::Base::Genres:0x007fc6fdbf0038&gt; {</text></g><g id="1421"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="128" x="0">        :GenreId</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="128"> =&gt; </text><text fill="#048ac7" font-weight="bold" lengthAdjust="spacingAndGlyphs" textLength="8" x="160">9</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="168">,</text></g><g id="1422"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="128" x="0">           :Name</text><text fill="#e5e5e5" lengthAdjust="spacingAndGlyphs" textLength="32" x="128"> =&gt; </text><text fill="#ffe755" lengthAdjust="spacingAndGlyphs" textLength="40" x="160">"Pop"</text></g><g id="1423"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">2.2.0 :007 &gt; exit</text><text fill="#1c1c1c" lengthAdjust="spacingAndGlyphs" textLength="8" x="136"> </text></g><g id="1424"><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="136" x="0">2.2.0 :007 &gt; exit</text></g><g id="1425"><text fill="#0087d7" lengthAdjust="spacingAndGlyphs" textLength="48" x="0">punter</text><text fill="#5fafff" lengthAdjust="spacingAndGlyphs" textLength="8" x="48">(</text><text fill="#5fd787" lengthAdjust="spacingAndGlyphs" textLength="48" x="56">master</text><text fill="#ffaf00" lengthAdjust="spacingAndGlyphs" textLength="8" x="104">*</text><text fill="#5fafff" lengthAdjust="spacingAndGlyphs" textLength="8" x="112">)</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="120"> </text><text fill="#8787ff" lengthAdjust="spacingAndGlyphs" textLength="8" x="128">»</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="296" x="136">                                     </text><text fill="#3a3a3a" lengthAdjust="spacingAndGlyphs" textLength="280" x="432">~/Desktop/githubclone/punter/punter</text><text fill="#c5c5c5" lengthAdjust="spacingAndGlyphs" textLength="8" x="712"> </text></g></defs><rect class="background" height="100%" width="100%" x="0" y="0" /><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="0" y="153" /><use xlink:href="#1" y="153" /><animate attributeName="display" begin="0ms;anim_last.end+0ms" dur="277ms" fill="remove" from="inline" id="anim_0" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="0" y="153" /><use xlink:href="#2" y="153" /><animate attributeName="display" begin="anim_0.end+0ms" dur="6ms" fill="remove" from="inline" id="anim_1" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="0" y="153" /><use xlink:href="#2" y="153" /><animate attributeName="display" begin="anim_1.end+0ms" dur="57ms" fill="remove" from="inline" id="anim_2" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="144" y="170" /><use xlink:href="#3" y="170" /><animate attributeName="display" begin="340ms;anim_last.end+340ms" dur="4ms" fill="remove" from="inline" id="anim_3" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="144" y="170" /><use xlink:href="#4" y="170" /><animate attributeName="display" begin="anim_3.end+0ms" dur="3071ms" fill="remove" from="inline" id="anim_4" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="216" y="170" /><use xlink:href="#5" y="170" /><animate attributeName="display" begin="anim_4.end+0ms" dur="461ms" fill="remove" from="inline" id="anim_5" to="inline" /></g><g display="none"><use xlink:href="#6" y="170" /><rect fill="#c5c5c5" height="17" width="8" x="328" y="187" /><use xlink:href="#7" y="187" /><animate attributeName="display" begin="anim_5.end+0ms" dur="629ms" fill="remove" from="inline" id="anim_6" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="424" y="170" /><use xlink:href="#8" y="170" /><animate attributeName="display" begin="anim_6.end+0ms" dur="1309ms" fill="remove" from="inline" id="anim_7" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="424" y="170" /><use xlink:href="#8" y="170" /><animate attributeName="display" begin="anim_7.end+0ms" dur="5ms" fill="remove" from="inline" id="anim_8" to="inline" /></g><g display="none"><use xlink:href="#9" y="187" /><animate attributeName="display" begin="anim_6.end+0ms" dur="1314ms" fill="remove" from="inline" id="anim_9" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="0" y="187" /><use xlink:href="#2" y="187" /><animate attributeName="display" begin="anim_9.end+0ms" dur="4ms" fill="remove" from="inline" id="anim_10" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="0" y="187" /><use xlink:href="#2" y="187" /><animate attributeName="display" begin="anim_10.end+0ms" dur="688ms" fill="remove" from="inline" id="anim_11" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="0" y="221" /><use xlink:href="#1" y="221" /><animate attributeName="display" begin="6511ms;anim_last.end+6511ms" dur="38ms" fill="remove" from="inline" id="anim_12" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="104" y="221" /><use xlink:href="#10" y="221" /><animate attributeName="display" begin="anim_12.end+0ms" dur="1314ms" fill="remove" from="inline" id="anim_13" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="112" y="221" /><use xlink:href="#11" y="221" /><animate attributeName="display" begin="anim_13.end+0ms" dur="144ms" fill="remove" from="inline" id="anim_14" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="120" y="221" /><use xlink:href="#12" y="221" /><animate attributeName="display" begin="anim_14.end+0ms" dur="204ms" fill="remove" from="inline" id="anim_15" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="120" y="221" /><use xlink:href="#12" y="221" /><animate attributeName="display" begin="anim_15.end+0ms" dur="1166ms" fill="remove" from="inline" id="anim_16" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="128" y="221" /><use xlink:href="#13" y="221" /><animate attributeName="display" begin="anim_16.end+0ms" dur="126ms" fill="remove" from="inline" id="anim_17" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="136" y="221" /><use xlink:href="#14" y="221" /><animate attributeName="display" begin="anim_17.end+0ms" dur="141ms" fill="remove" from="inline" id="anim_18" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="152" y="221" /><use xlink:href="#15" y="221" /><animate attributeName="display" begin="anim_18.end+0ms" dur="950ms" fill="remove" from="inline" id="anim_19" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="160" y="221" /><use xlink:href="#16" y="221" /><animate attributeName="display" begin="anim_19.end+0ms" dur="266ms" fill="remove" from="inline" id="anim_20" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="168" y="221" /><use xlink:href="#17" y="221" /><animate attributeName="display" begin="anim_20.end+0ms" dur="280ms" fill="remove" from="inline" id="anim_21" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="176" y="221" /><use xlink:href="#18" y="221" /><animate attributeName="display" begin="anim_21.end+0ms" dur="119ms" fill="remove" from="inline" id="anim_22" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="184" y="221" /><use xlink:href="#19" y="221" /><animate attributeName="display" begin="anim_22.end+0ms" dur="237ms" fill="remove" from="inline" id="anim_23" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="192" y="221" /><use xlink:href="#20" y="221" /><animate attributeName="display" begin="anim_23.end+0ms" dur="130ms" fill="remove" from="inline" id="anim_24" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="0" y="238" /><use xlink:href="#1" y="238" /><animate attributeName="display" begin="11626ms;anim_last.end+11626ms" dur="9ms" fill="remove" from="inline" id="anim_25" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="0" y="323" /><use xlink:href="#1" y="323" /><animate attributeName="display" begin="11635ms;anim_last.end+11635ms" dur="2ms" fill="remove" from="inline" id="anim_26" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="104" y="323" /><use xlink:href="#21" y="323" /><animate attributeName="display" begin="anim_26.end+0ms" dur="857ms" fill="remove" from="inline" id="anim_27" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="192" y="323" /><use xlink:href="#22" y="323" /><animate attributeName="display" begin="anim_27.end+0ms" dur="629ms" fill="remove" from="inline" id="anim_28" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="184" y="323" /><use xlink:href="#23" y="323" /><animate attributeName="display" begin="anim_28.end+0ms" dur="223ms" fill="remove" from="inline" id="anim_29" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="176" y="323" /><use xlink:href="#24" y="323" /><animate attributeName="display" begin="anim_29.end+0ms" dur="190ms" fill="remove" from="inline" id="anim_30" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="168" y="323" /><use xlink:href="#25" y="323" /><animate attributeName="display" begin="anim_30.end+0ms" dur="837ms" fill="remove" from="inline" id="anim_31" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="160" y="323" /><use xlink:href="#26" y="323" /><animate attributeName="display" begin="anim_31.end+0ms" dur="979ms" fill="remove" from="inline" id="anim_32" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="168" y="323" /><use xlink:href="#27" y="323" /><animate attributeName="display" begin="anim_32.end+0ms" dur="152ms" fill="remove" from="inline" id="anim_33" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="176" y="323" /><use xlink:href="#28" y="323" /><animate attributeName="display" begin="anim_33.end+0ms" dur="80ms" fill="remove" from="inline" id="anim_34" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="184" y="323" /><use xlink:href="#29" y="323" /><animate attributeName="display" begin="anim_34.end+0ms" dur="227ms" fill="remove" from="inline" id="anim_35" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="192" y="323" /><use xlink:href="#30" y="323" /><animate attributeName="display" begin="anim_35.end+0ms" dur="148ms" fill="remove" from="inline" id="anim_36" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="200" y="323" /><use xlink:href="#31" y="323" /><animate attributeName="display" begin="anim_36.end+0ms" dur="644ms" fill="remove" from="inline" id="anim_37" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="208" y="323" /><use xlink:href="#32" y="323" /><animate attributeName="display" begin="anim_37.end+0ms" dur="180ms" fill="remove" from="inline" id="anim_38" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="216" y="323" /><use xlink:href="#33" y="323" /><animate attributeName="display" begin="anim_38.end+0ms" dur="280ms" fill="remove" from="inline" id="anim_39" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="208" y="323" /><use xlink:href="#34" y="323" /><animate attributeName="display" begin="anim_39.end+0ms" dur="452ms" fill="remove" from="inline" id="anim_40" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="216" y="323" /><use xlink:href="#35" y="323" /><animate attributeName="display" begin="anim_40.end+0ms" dur="795ms" fill="remove" from="inline" id="anim_41" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="208" y="323" /><use xlink:href="#34" y="323" /><animate attributeName="display" begin="anim_41.end+0ms" dur="220ms" fill="remove" from="inline" id="anim_42" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="216" y="323" /><use xlink:href="#36" y="323" /><animate attributeName="display" begin="anim_42.end+0ms" dur="495ms" fill="remove" from="inline" id="anim_43" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="224" y="323" /><use xlink:href="#37" y="323" /><animate attributeName="display" begin="anim_43.end+0ms" dur="217ms" fill="remove" from="inline" id="anim_44" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="232" y="323" /><use xlink:href="#38" y="323" /><animate attributeName="display" begin="anim_44.end+0ms" dur="152ms" fill="remove" from="inline" id="anim_45" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="240" y="323" /><use xlink:href="#39" y="323" /><animate attributeName="display" begin="anim_45.end+0ms" dur="154ms" fill="remove" from="inline" id="anim_46" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="240" y="323" /><use xlink:href="#39" y="323" /><animate attributeName="display" begin="anim_46.end+0ms" dur="390ms" fill="remove" from="inline" id="anim_47" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="240" y="323" /><use xlink:href="#39" y="323" /><animate attributeName="display" begin="anim_47.end+0ms" dur="836ms" fill="remove" from="inline" id="anim_48" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="248" y="323" /><use xlink:href="#40" y="323" /><animate attributeName="display" begin="anim_48.end+0ms" dur="176ms" fill="remove" from="inline" id="anim_49" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="256" y="323" /><use xlink:href="#41" y="323" /><animate attributeName="display" begin="anim_49.end+0ms" dur="348ms" fill="remove" from="inline" id="anim_50" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="264" y="323" /><use xlink:href="#42" y="323" /><animate attributeName="display" begin="anim_50.end+0ms" dur="153ms" fill="remove" from="inline" id="anim_51" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="272" y="323" /><use xlink:href="#43" y="323" /><animate attributeName="display" begin="anim_51.end+0ms" dur="409ms" fill="remove" from="inline" id="anim_52" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="280" y="323" /><use xlink:href="#44" y="323" /><animate attributeName="display" begin="anim_52.end+0ms" dur="198ms" fill="remove" from="inline" id="anim_53" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="288" y="323" /><use xlink:href="#45" y="323" /><animate attributeName="display" begin="anim_53.end+0ms" dur="1248ms" fill="remove" from="inline" id="anim_54" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="296" y="323" /><use xlink:href="#46" y="323" /><animate attributeName="display" begin="anim_54.end+0ms" dur="579ms" fill="remove" from="inline" id="anim_55" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="304" y="323" /><use xlink:href="#47" y="323" /><animate attributeName="display" begin="anim_55.end+0ms" dur="112ms" fill="remove" from="inline" id="anim_56" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="312" y="323" /><use xlink:href="#48" y="323" /><animate attributeName="display" begin="anim_56.end+0ms" dur="539ms" fill="remove" from="inline" id="anim_57" to="inline" /></g><g display="none"><use xlink:href="#49" y="0" /><use xlink:href="#50" y="17" /><use xlink:href="#51" y="34" /><use xlink:href="#52" y="51" /><use xlink:href="#53" y="68" /><use xlink:href="#54" y="85" /><use xlink:href="#55" y="102" /><use xlink:href="#56" y="119" /><use xlink:href="#57" y="136" /><animate attributeName="display" begin="0ms;anim_last.end+0ms" dur="24543ms" fill="remove" from="inline" id="anim_58" to="inline" /></g><g display="none"><use xlink:href="#58" y="153" /><animate attributeName="display" begin="anim_2.end+0ms" dur="24203ms" fill="remove" from="inline" id="anim_59" to="inline" /></g><g display="none"><use xlink:href="#59" y="170" /><animate attributeName="display" begin="anim_8.end+0ms" dur="18724ms" fill="remove" from="inline" id="anim_60" to="inline" /></g><g display="none"><use xlink:href="#60" y="187" /><use xlink:href="#61" y="204" /><animate attributeName="display" begin="anim_11.end+0ms" dur="18032ms" fill="remove" from="inline" id="anim_61" to="inline" /></g><g display="none"><use xlink:href="#62" y="221" /><animate attributeName="display" begin="anim_24.end+0ms" dur="12917ms" fill="remove" from="inline" id="anim_62" to="inline" /></g><g display="none"><use xlink:href="#63" y="238" /><use xlink:href="#64" y="255" /><use xlink:href="#65" y="272" /><use xlink:href="#66" y="289" /><use xlink:href="#67" y="306" /><animate attributeName="display" begin="anim_25.end+0ms" dur="12908ms" fill="remove" from="inline" id="anim_63" to="inline" /></g><g display="none"><use xlink:href="#68" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="0" y="340" /><use xlink:href="#1" y="340" /><animate attributeName="display" begin="anim_57.end+0ms" dur="7ms" fill="remove" from="inline" id="anim_64" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="0" y="340" /><use xlink:href="#1" y="340" /><animate attributeName="display" begin="anim_64.end+0ms" dur="2ms" fill="remove" from="inline" id="anim_65" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="104" y="340" /><use xlink:href="#69" y="340" /><animate attributeName="display" begin="anim_65.end+0ms" dur="2963ms" fill="remove" from="inline" id="anim_66" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="320" y="340" /><use xlink:href="#70" y="340" /><animate attributeName="display" begin="anim_66.end+0ms" dur="703ms" fill="remove" from="inline" id="anim_67" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="312" y="340" /><use xlink:href="#71" y="340" /><animate attributeName="display" begin="anim_67.end+0ms" dur="252ms" fill="remove" from="inline" id="anim_68" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="304" y="340" /><use xlink:href="#72" y="340" /><animate attributeName="display" begin="anim_68.end+0ms" dur="38ms" fill="remove" from="inline" id="anim_69" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="296" y="340" /><use xlink:href="#73" y="340" /><animate attributeName="display" begin="anim_69.end+0ms" dur="33ms" fill="remove" from="inline" id="anim_70" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="288" y="340" /><use xlink:href="#74" y="340" /><animate attributeName="display" begin="anim_70.end+0ms" dur="34ms" fill="remove" from="inline" id="anim_71" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="280" y="340" /><use xlink:href="#75" y="340" /><animate attributeName="display" begin="anim_71.end+0ms" dur="33ms" fill="remove" from="inline" id="anim_72" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="272" y="340" /><use xlink:href="#76" y="340" /><animate attributeName="display" begin="anim_72.end+0ms" dur="34ms" fill="remove" from="inline" id="anim_73" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="264" y="340" /><use xlink:href="#77" y="340" /><animate attributeName="display" begin="anim_73.end+0ms" dur="39ms" fill="remove" from="inline" id="anim_74" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="256" y="340" /><use xlink:href="#78" y="340" /><animate attributeName="display" begin="anim_74.end+0ms" dur="35ms" fill="remove" from="inline" id="anim_75" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="248" y="340" /><use xlink:href="#79" y="340" /><animate attributeName="display" begin="anim_75.end+0ms" dur="33ms" fill="remove" from="inline" id="anim_76" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="240" y="340" /><use xlink:href="#80" y="340" /><animate attributeName="display" begin="anim_76.end+0ms" dur="37ms" fill="remove" from="inline" id="anim_77" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="232" y="340" /><use xlink:href="#81" y="340" /><animate attributeName="display" begin="anim_77.end+0ms" dur="34ms" fill="remove" from="inline" id="anim_78" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="224" y="340" /><use xlink:href="#82" y="340" /><animate attributeName="display" begin="anim_78.end+0ms" dur="35ms" fill="remove" from="inline" id="anim_79" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="216" y="340" /><use xlink:href="#83" y="340" /><animate attributeName="display" begin="anim_79.end+0ms" dur="38ms" fill="remove" from="inline" id="anim_80" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="208" y="340" /><use xlink:href="#84" y="340" /><animate attributeName="display" begin="anim_80.end+0ms" dur="216ms" fill="remove" from="inline" id="anim_81" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="200" y="340" /><use xlink:href="#85" y="340" /><animate attributeName="display" begin="anim_81.end+0ms" dur="473ms" fill="remove" from="inline" id="anim_82" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="208" y="340" /><use xlink:href="#86" y="340" /><animate attributeName="display" begin="anim_82.end+0ms" dur="275ms" fill="remove" from="inline" id="anim_83" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="216" y="340" /><use xlink:href="#87" y="340" /><animate attributeName="display" begin="anim_83.end+0ms" dur="164ms" fill="remove" from="inline" id="anim_84" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="224" y="340" /><use xlink:href="#88" y="340" /><animate attributeName="display" begin="anim_84.end+0ms" dur="76ms" fill="remove" from="inline" id="anim_85" to="inline" /></g><g display="none"><use xlink:href="#61" y="0" /><use xlink:href="#62" y="17" /><use xlink:href="#63" y="34" /><use xlink:href="#64" y="51" /><use xlink:href="#65" y="68" /><use xlink:href="#66" y="85" /><use xlink:href="#67" y="102" /><use xlink:href="#68" y="119" /><use xlink:href="#89" y="136" /><use xlink:href="#90" y="153" /><use xlink:href="#91" y="170" /><use xlink:href="#92" y="187" /><use xlink:href="#93" y="204" /><use xlink:href="#94" y="221" /><use xlink:href="#95" y="238" /><use xlink:href="#96" y="255" /><use xlink:href="#97" y="272" /><use xlink:href="#93" y="289" /><use xlink:href="#98" y="306" /><use xlink:href="#99" y="323" /><animate attributeName="display" begin="anim_58.end+0ms" dur="5756ms" fill="remove" from="inline" id="anim_86" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="232" y="340" /><use xlink:href="#100" y="340" /><animate attributeName="display" begin="anim_85.end+0ms" dur="209ms" fill="remove" from="inline" id="anim_87" to="inline" /></g><g display="none"><use xlink:href="#62" y="0" /><use xlink:href="#63" y="17" /><use xlink:href="#64" y="34" /><use xlink:href="#65" y="51" /><use xlink:href="#66" y="68" /><use xlink:href="#67" y="85" /><use xlink:href="#68" y="102" /><use xlink:href="#89" y="119" /><use xlink:href="#90" y="136" /><use xlink:href="#91" y="153" /><use xlink:href="#92" y="170" /><use xlink:href="#93" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#95" y="221" /><use xlink:href="#96" y="238" /><use xlink:href="#97" y="255" /><use xlink:href="#93" y="272" /><use xlink:href="#98" y="289" /><use xlink:href="#99" y="306" /><use xlink:href="#101" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="0" y="340" /><use xlink:href="#1" y="340" /><animate attributeName="display" begin="anim_86.end+0ms" dur="68ms" fill="remove" from="inline" id="anim_88" to="inline" /></g><g display="none"><use xlink:href="#102" y="0" /><use xlink:href="#103" y="17" /><use xlink:href="#104" y="34" /><use xlink:href="#105" y="51" /><use xlink:href="#94" y="68" /><use xlink:href="#106" y="85" /><use xlink:href="#107" y="102" /><use xlink:href="#108" y="119" /><use xlink:href="#109" y="136" /><use xlink:href="#94" y="153" /><use xlink:href="#110" y="170" /><use xlink:href="#111" y="187" /><use xlink:href="#112" y="204" /><use xlink:href="#109" y="221" /><use xlink:href="#94" y="238" /><use xlink:href="#113" y="255" /><use xlink:href="#114" y="272" /><use xlink:href="#115" y="289" /><use xlink:href="#105" y="306" /><use xlink:href="#94" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="336" y="340" /><use xlink:href="#116" y="340" /><animate attributeName="display" begin="anim_88.end+0ms" dur="14ms" fill="remove" from="inline" id="anim_89" to="inline" /></g><g display="none"><use xlink:href="#117" y="0" /><use xlink:href="#118" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#119" y="51" /><use xlink:href="#120" y="68" /><use xlink:href="#121" y="85" /><use xlink:href="#122" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#123" y="136" /><use xlink:href="#124" y="153" /><use xlink:href="#125" y="170" /><use xlink:href="#126" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#127" y="221" /><use xlink:href="#128" y="238" /><use xlink:href="#129" y="255" /><use xlink:href="#130" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#131" y="306" /><use xlink:href="#132" y="323" /><rect fill="#e5e5e5" height="17" width="8" x="168" y="340" /><use xlink:href="#133" y="340" /><animate attributeName="display" begin="anim_89.end+0ms" dur="21ms" fill="remove" from="inline" id="anim_90" to="inline" /></g><g display="none"><use xlink:href="#134" y="0" /><use xlink:href="#94" y="17" /><use xlink:href="#135" y="34" /><use xlink:href="#136" y="51" /><use xlink:href="#137" y="68" /><use xlink:href="#138" y="85" /><use xlink:href="#94" y="102" /><use xlink:href="#139" y="119" /><use xlink:href="#140" y="136" /><use xlink:href="#141" y="153" /><use xlink:href="#138" y="170" /><use xlink:href="#94" y="187" /><use xlink:href="#142" y="204" /><use xlink:href="#143" y="221" /><use xlink:href="#144" y="238" /><use xlink:href="#145" y="255" /><use xlink:href="#94" y="272" /><use xlink:href="#146" y="289" /><use xlink:href="#147" y="306" /><use xlink:href="#148" y="323" /><rect fill="#e5e5e5" height="17" width="8" x="168" y="340" /><use xlink:href="#149" y="340" /><animate attributeName="display" begin="anim_90.end+0ms" dur="20ms" fill="remove" from="inline" id="anim_91" to="inline" /></g><g display="none"><use xlink:href="#150" y="0" /><use xlink:href="#94" y="17" /><use xlink:href="#151" y="34" /><use xlink:href="#152" y="51" /><use xlink:href="#153" y="68" /><use xlink:href="#154" y="85" /><use xlink:href="#94" y="102" /><use xlink:href="#155" y="119" /><use xlink:href="#156" y="136" /><use xlink:href="#157" y="153" /><use xlink:href="#154" y="170" /><use xlink:href="#94" y="187" /><use xlink:href="#158" y="204" /><use xlink:href="#159" y="221" /><use xlink:href="#160" y="238" /><use xlink:href="#161" y="255" /><use xlink:href="#94" y="272" /><use xlink:href="#162" y="289" /><use xlink:href="#163" y="306" /><use xlink:href="#164" y="323" /><rect fill="#048ac7" height="17" width="8" x="176" y="340" /><use xlink:href="#165" y="340" /><animate attributeName="display" begin="anim_91.end+0ms" dur="19ms" fill="remove" from="inline" id="anim_92" to="inline" /></g><g display="none"><use xlink:href="#166" y="0" /><use xlink:href="#167" y="17" /><use xlink:href="#168" y="34" /><use xlink:href="#169" y="51" /><use xlink:href="#94" y="68" /><use xlink:href="#170" y="85" /><use xlink:href="#171" y="102" /><use xlink:href="#172" y="119" /><use xlink:href="#173" y="136" /><use xlink:href="#94" y="153" /><use xlink:href="#174" y="170" /><use xlink:href="#175" y="187" /><use xlink:href="#176" y="204" /><use xlink:href="#177" y="221" /><use xlink:href="#94" y="238" /><use xlink:href="#178" y="255" /><use xlink:href="#179" y="272" /><use xlink:href="#180" y="289" /><use xlink:href="#181" y="306" /><use xlink:href="#94" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="192" y="340" /><use xlink:href="#182" y="340" /><animate attributeName="display" begin="anim_92.end+0ms" dur="22ms" fill="remove" from="inline" id="anim_93" to="inline" /></g><g display="none"><use xlink:href="#183" y="0" /><use xlink:href="#184" y="17" /><use xlink:href="#181" y="34" /><use xlink:href="#94" y="51" /><use xlink:href="#185" y="68" /><use xlink:href="#186" y="85" /><use xlink:href="#187" y="102" /><use xlink:href="#188" y="119" /><use xlink:href="#94" y="136" /><use xlink:href="#189" y="153" /><use xlink:href="#190" y="170" /><use xlink:href="#191" y="187" /><use xlink:href="#192" y="204" /><use xlink:href="#94" y="221" /><use xlink:href="#193" y="238" /><use xlink:href="#194" y="255" /><use xlink:href="#195" y="272" /><use xlink:href="#192" y="289" /><use xlink:href="#94" y="306" /><use xlink:href="#196" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="168" y="340" /><use xlink:href="#197" y="340" /><animate attributeName="display" begin="anim_93.end+0ms" dur="23ms" fill="remove" from="inline" id="anim_94" to="inline" /></g><g display="none"><use xlink:href="#198" y="0" /><use xlink:href="#199" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#200" y="51" /><use xlink:href="#201" y="68" /><use xlink:href="#202" y="85" /><use xlink:href="#199" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#203" y="136" /><use xlink:href="#204" y="153" /><use xlink:href="#205" y="170" /><use xlink:href="#206" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#207" y="221" /><use xlink:href="#208" y="238" /><use xlink:href="#209" y="255" /><use xlink:href="#210" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#211" y="306" /><use xlink:href="#212" y="323" /><rect fill="#ffe755" height="17" width="8" x="352" y="340" /><use xlink:href="#213" y="340" /><animate attributeName="display" begin="anim_94.end+0ms" dur="18ms" fill="remove" from="inline" id="anim_95" to="inline" /></g><g display="none"><use xlink:href="#214" y="0" /><use xlink:href="#215" y="17" /><use xlink:href="#216" y="34" /><use xlink:href="#217" y="51" /><use xlink:href="#94" y="68" /><use xlink:href="#218" y="85" /><use xlink:href="#219" y="102" /><use xlink:href="#220" y="119" /><use xlink:href="#210" y="136" /><use xlink:href="#94" y="153" /><use xlink:href="#221" y="170" /><use xlink:href="#222" y="187" /><use xlink:href="#223" y="204" /><use xlink:href="#224" y="221" /><use xlink:href="#94" y="238" /><use xlink:href="#225" y="255" /><use xlink:href="#226" y="272" /><use xlink:href="#227" y="289" /><use xlink:href="#130" y="306" /><use xlink:href="#94" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="8" y="340" /><use xlink:href="#228" y="340" /><animate attributeName="display" begin="anim_95.end+0ms" dur="19ms" fill="remove" from="inline" id="anim_96" to="inline" /></g><g display="none"><use xlink:href="#229" y="0" /><use xlink:href="#230" y="17" /><use xlink:href="#231" y="34" /><use xlink:href="#232" y="51" /><use xlink:href="#94" y="68" /><use xlink:href="#233" y="85" /><use xlink:href="#234" y="102" /><use xlink:href="#235" y="119" /><use xlink:href="#236" y="136" /><use xlink:href="#94" y="153" /><use xlink:href="#237" y="170" /><use xlink:href="#238" y="187" /><use xlink:href="#239" y="204" /><use xlink:href="#240" y="221" /><use xlink:href="#94" y="238" /><use xlink:href="#241" y="255" /><use xlink:href="#242" y="272" /><use xlink:href="#243" y="289" /><use xlink:href="#244" y="306" /><use xlink:href="#94" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="0" y="340" /><use xlink:href="#245" y="340" /><animate attributeName="display" begin="anim_96.end+0ms" dur="22ms" fill="remove" from="inline" id="anim_97" to="inline" /></g><g display="none"><use xlink:href="#246" y="0" /><use xlink:href="#247" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#248" y="51" /><use xlink:href="#249" y="68" /><use xlink:href="#250" y="85" /><use xlink:href="#251" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#252" y="136" /><use xlink:href="#253" y="153" /><use xlink:href="#254" y="170" /><use xlink:href="#255" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#256" y="221" /><use xlink:href="#257" y="238" /><use xlink:href="#258" y="255" /><use xlink:href="#259" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#260" y="306" /><use xlink:href="#261" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="136" y="340" /><use xlink:href="#262" y="340" /><animate attributeName="display" begin="anim_97.end+0ms" dur="19ms" fill="remove" from="inline" id="anim_98" to="inline" /></g><g display="none"><use xlink:href="#263" y="0" /><use xlink:href="#264" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#265" y="51" /><use xlink:href="#266" y="68" /><use xlink:href="#267" y="85" /><use xlink:href="#268" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#269" y="136" /><use xlink:href="#270" y="153" /><use xlink:href="#271" y="170" /><use xlink:href="#210" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#272" y="221" /><use xlink:href="#273" y="238" /><use xlink:href="#274" y="255" /><use xlink:href="#275" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#276" y="306" /><use xlink:href="#277" y="323" /><rect fill="#ffe755" height="17" width="8" x="344" y="340" /><use xlink:href="#278" y="340" /><animate attributeName="display" begin="anim_98.end+0ms" dur="19ms" fill="remove" from="inline" id="anim_99" to="inline" /></g><g display="none"><use xlink:href="#279" y="0" /><use xlink:href="#94" y="17" /><use xlink:href="#280" y="34" /><use xlink:href="#281" y="51" /><use xlink:href="#282" y="68" /><use xlink:href="#283" y="85" /><use xlink:href="#94" y="102" /><use xlink:href="#284" y="119" /><use xlink:href="#285" y="136" /><use xlink:href="#286" y="153" /><use xlink:href="#283" y="170" /><use xlink:href="#94" y="187" /><use xlink:href="#287" y="204" /><use xlink:href="#288" y="221" /><use xlink:href="#289" y="238" /><use xlink:href="#264" y="255" /><use xlink:href="#94" y="272" /><use xlink:href="#290" y="289" /><use xlink:href="#291" y="306" /><use xlink:href="#292" y="323" /><rect fill="#e5e5e5" height="17" width="8" x="152" y="340" /><use xlink:href="#293" y="340" /><animate attributeName="display" begin="anim_99.end+0ms" dur="23ms" fill="remove" from="inline" id="anim_100" to="inline" /></g><g display="none"><use xlink:href="#294" y="0" /><use xlink:href="#295" y="17" /><use xlink:href="#296" y="34" /><use xlink:href="#297" y="51" /><use xlink:href="#94" y="68" /><use xlink:href="#298" y="85" /><use xlink:href="#299" y="102" /><use xlink:href="#300" y="119" /><use xlink:href="#210" y="136" /><use xlink:href="#94" y="153" /><use xlink:href="#301" y="170" /><use xlink:href="#302" y="187" /><use xlink:href="#303" y="204" /><use xlink:href="#304" y="221" /><use xlink:href="#94" y="238" /><use xlink:href="#305" y="255" /><use xlink:href="#306" y="272" /><use xlink:href="#307" y="289" /><use xlink:href="#304" y="306" /><use xlink:href="#94" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="144" y="340" /><use xlink:href="#308" y="340" /><animate attributeName="display" begin="anim_100.end+0ms" dur="19ms" fill="remove" from="inline" id="anim_101" to="inline" /></g><g display="none"><use xlink:href="#309" y="0" /><use xlink:href="#310" y="17" /><use xlink:href="#311" y="34" /><use xlink:href="#312" y="51" /><use xlink:href="#94" y="68" /><use xlink:href="#313" y="85" /><use xlink:href="#314" y="102" /><use xlink:href="#315" y="119" /><use xlink:href="#312" y="136" /><use xlink:href="#94" y="153" /><use xlink:href="#316" y="170" /><use xlink:href="#317" y="187" /><use xlink:href="#318" y="204" /><use xlink:href="#264" y="221" /><use xlink:href="#94" y="238" /><use xlink:href="#319" y="255" /><use xlink:href="#320" y="272" /><use xlink:href="#321" y="289" /><use xlink:href="#264" y="306" /><use xlink:href="#94" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="288" y="340" /><use xlink:href="#322" y="340" /><animate attributeName="display" begin="anim_101.end+0ms" dur="18ms" fill="remove" from="inline" id="anim_102" to="inline" /></g><g display="none"><use xlink:href="#323" y="0" /><use xlink:href="#324" y="17" /><use xlink:href="#264" y="34" /><use xlink:href="#94" y="51" /><use xlink:href="#325" y="68" /><use xlink:href="#326" y="85" /><use xlink:href="#327" y="102" /><use xlink:href="#264" y="119" /><use xlink:href="#94" y="136" /><use xlink:href="#328" y="153" /><use xlink:href="#329" y="170" /><use xlink:href="#330" y="187" /><use xlink:href="#264" y="204" /><use xlink:href="#94" y="221" /><use xlink:href="#331" y="238" /><use xlink:href="#332" y="255" /><use xlink:href="#333" y="272" /><use xlink:href="#264" y="289" /><use xlink:href="#94" y="306" /><use xlink:href="#334" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="128" y="340" /><use xlink:href="#335" y="340" /><animate attributeName="display" begin="anim_102.end+0ms" dur="22ms" fill="remove" from="inline" id="anim_103" to="inline" /></g><g display="none"><use xlink:href="#336" y="0" /><use xlink:href="#264" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#337" y="51" /><use xlink:href="#338" y="68" /><use xlink:href="#339" y="85" /><use xlink:href="#264" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#340" y="136" /><use xlink:href="#341" y="153" /><use xlink:href="#342" y="170" /><use xlink:href="#264" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#343" y="221" /><use xlink:href="#344" y="238" /><use xlink:href="#345" y="255" /><use xlink:href="#346" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#347" y="306" /><use xlink:href="#348" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="136" y="340" /><use xlink:href="#262" y="340" /><animate attributeName="display" begin="anim_103.end+0ms" dur="20ms" fill="remove" from="inline" id="anim_104" to="inline" /></g><g display="none"><use xlink:href="#349" y="0" /><use xlink:href="#94" y="17" /><use xlink:href="#350" y="34" /><use xlink:href="#351" y="51" /><use xlink:href="#352" y="68" /><use xlink:href="#353" y="85" /><use xlink:href="#94" y="102" /><use xlink:href="#354" y="119" /><use xlink:href="#355" y="136" /><use xlink:href="#356" y="153" /><use xlink:href="#353" y="170" /><use xlink:href="#94" y="187" /><use xlink:href="#357" y="204" /><use xlink:href="#358" y="221" /><use xlink:href="#359" y="238" /><use xlink:href="#360" y="255" /><use xlink:href="#94" y="272" /><use xlink:href="#361" y="289" /><use xlink:href="#362" y="306" /><use xlink:href="#363" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="56" y="340" /><use xlink:href="#364" y="340" /><animate attributeName="display" begin="anim_104.end+0ms" dur="18ms" fill="remove" from="inline" id="anim_105" to="inline" /></g><g display="none"><use xlink:href="#365" y="0" /><use xlink:href="#366" y="17" /><use xlink:href="#367" y="34" /><use xlink:href="#368" y="51" /><use xlink:href="#94" y="68" /><use xlink:href="#369" y="85" /><use xlink:href="#370" y="102" /><use xlink:href="#371" y="119" /><use xlink:href="#372" y="136" /><use xlink:href="#94" y="153" /><use xlink:href="#373" y="170" /><use xlink:href="#374" y="187" /><use xlink:href="#375" y="204" /><use xlink:href="#372" y="221" /><use xlink:href="#94" y="238" /><use xlink:href="#376" y="255" /><use xlink:href="#377" y="272" /><use xlink:href="#378" y="289" /><use xlink:href="#372" y="306" /><use xlink:href="#94" y="323" /><rect fill="#e5e5e5" height="17" width="8" x="80" y="340" /><use xlink:href="#379" y="340" /><animate attributeName="display" begin="anim_105.end+0ms" dur="32ms" fill="remove" from="inline" id="anim_106" to="inline" /></g><g display="none"><use xlink:href="#380" y="0" /><use xlink:href="#381" y="17" /><use xlink:href="#372" y="34" /><use xlink:href="#94" y="51" /><use xlink:href="#382" y="68" /><use xlink:href="#383" y="85" /><use xlink:href="#384" y="102" /><use xlink:href="#385" y="119" /><use xlink:href="#94" y="136" /><use xlink:href="#386" y="153" /><use xlink:href="#387" y="170" /><use xlink:href="#388" y="187" /><use xlink:href="#389" y="204" /><use xlink:href="#94" y="221" /><use xlink:href="#390" y="238" /><use xlink:href="#391" y="255" /><use xlink:href="#392" y="272" /><use xlink:href="#389" y="289" /><use xlink:href="#94" y="306" /><use xlink:href="#393" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="104" y="340" /><use xlink:href="#394" y="340" /><animate attributeName="display" begin="anim_106.end+0ms" dur="19ms" fill="remove" from="inline" id="anim_107" to="inline" /></g><g display="none"><use xlink:href="#395" y="0" /><use xlink:href="#389" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#396" y="51" /><use xlink:href="#397" y="68" /><use xlink:href="#398" y="85" /><use xlink:href="#389" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#399" y="136" /><use xlink:href="#400" y="153" /><use xlink:href="#401" y="170" /><use xlink:href="#402" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#403" y="221" /><use xlink:href="#404" y="238" /><use xlink:href="#405" y="255" /><use xlink:href="#406" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#407" y="306" /><use xlink:href="#408" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="104" y="340" /><use xlink:href="#409" y="340" /><animate attributeName="display" begin="anim_107.end+0ms" dur="19ms" fill="remove" from="inline" id="anim_108" to="inline" /></g><g display="none"><use xlink:href="#410" y="0" /><use xlink:href="#411" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#412" y="51" /><use xlink:href="#413" y="68" /><use xlink:href="#414" y="85" /><use xlink:href="#411" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#415" y="136" /><use xlink:href="#416" y="153" /><use xlink:href="#417" y="170" /><use xlink:href="#411" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#418" y="221" /><use xlink:href="#419" y="238" /><use xlink:href="#420" y="255" /><use xlink:href="#421" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#422" y="306" /><use xlink:href="#423" y="323" /><rect fill="#ffe755" height="17" width="8" x="224" y="340" /><use xlink:href="#424" y="340" /><animate attributeName="display" begin="anim_108.end+0ms" dur="19ms" fill="remove" from="inline" id="anim_109" to="inline" /></g><g display="none"><use xlink:href="#94" y="0" /><use xlink:href="#425" y="17" /><use xlink:href="#426" y="34" /><use xlink:href="#427" y="51" /><use xlink:href="#428" y="68" /><use xlink:href="#94" y="85" /><use xlink:href="#429" y="102" /><use xlink:href="#430" y="119" /><use xlink:href="#431" y="136" /><use xlink:href="#428" y="153" /><use xlink:href="#94" y="170" /><use xlink:href="#432" y="187" /><use xlink:href="#433" y="204" /><use xlink:href="#434" y="221" /><use xlink:href="#428" y="238" /><use xlink:href="#94" y="255" /><use xlink:href="#435" y="272" /><use xlink:href="#436" y="289" /><use xlink:href="#437" y="306" /><use xlink:href="#438" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="0" y="340" /><use xlink:href="#1" y="340" /><animate attributeName="display" begin="anim_109.end+0ms" dur="22ms" fill="remove" from="inline" id="anim_110" to="inline" /></g><g display="none"><use xlink:href="#439" y="0" /><use xlink:href="#440" y="17" /><use xlink:href="#441" y="34" /><use xlink:href="#442" y="51" /><use xlink:href="#94" y="68" /><use xlink:href="#443" y="85" /><use xlink:href="#444" y="102" /><use xlink:href="#445" y="119" /><use xlink:href="#442" y="136" /><use xlink:href="#94" y="153" /><use xlink:href="#446" y="170" /><use xlink:href="#447" y="187" /><use xlink:href="#448" y="204" /><use xlink:href="#442" y="221" /><use xlink:href="#94" y="238" /><use xlink:href="#449" y="255" /><use xlink:href="#450" y="272" /><use xlink:href="#451" y="289" /><use xlink:href="#442" y="306" /><use xlink:href="#94" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="368" y="340" /><use xlink:href="#452" y="340" /><animate attributeName="display" begin="anim_110.end+0ms" dur="18ms" fill="remove" from="inline" id="anim_111" to="inline" /></g><g display="none"><use xlink:href="#453" y="0" /><use xlink:href="#442" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#454" y="51" /><use xlink:href="#455" y="68" /><use xlink:href="#456" y="85" /><use xlink:href="#442" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#457" y="136" /><use xlink:href="#458" y="153" /><use xlink:href="#459" y="170" /><use xlink:href="#442" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#460" y="221" /><use xlink:href="#461" y="238" /><use xlink:href="#462" y="255" /><use xlink:href="#442" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#463" y="306" /><use xlink:href="#464" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="136" y="340" /><use xlink:href="#262" y="340" /><animate attributeName="display" begin="anim_111.end+0ms" dur="18ms" fill="remove" from="inline" id="anim_112" to="inline" /></g><g display="none"><use xlink:href="#465" y="0" /><use xlink:href="#442" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#466" y="51" /><use xlink:href="#467" y="68" /><use xlink:href="#468" y="85" /><use xlink:href="#442" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#469" y="136" /><use xlink:href="#470" y="153" /><use xlink:href="#471" y="170" /><use xlink:href="#442" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#472" y="221" /><use xlink:href="#473" y="238" /><use xlink:href="#474" y="255" /><use xlink:href="#442" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#475" y="306" /><use xlink:href="#476" y="323" /><rect fill="#ffe755" height="17" width="8" x="288" y="340" /><use xlink:href="#477" y="340" /><animate attributeName="display" begin="anim_112.end+0ms" dur="22ms" fill="remove" from="inline" id="anim_113" to="inline" /></g><g display="none"><use xlink:href="#94" y="0" /><use xlink:href="#478" y="17" /><use xlink:href="#479" y="34" /><use xlink:href="#480" y="51" /><use xlink:href="#442" y="68" /><use xlink:href="#94" y="85" /><use xlink:href="#481" y="102" /><use xlink:href="#482" y="119" /><use xlink:href="#483" y="136" /><use xlink:href="#442" y="153" /><use xlink:href="#94" y="170" /><use xlink:href="#484" y="187" /><use xlink:href="#485" y="204" /><use xlink:href="#486" y="221" /><use xlink:href="#442" y="238" /><use xlink:href="#94" y="255" /><use xlink:href="#487" y="272" /><use xlink:href="#488" y="289" /><use xlink:href="#489" y="306" /><use xlink:href="#442" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="48" y="340" /><use xlink:href="#490" y="340" /><animate attributeName="display" begin="anim_113.end+0ms" dur="20ms" fill="remove" from="inline" id="anim_114" to="inline" /></g><g display="none"><use xlink:href="#491" y="0" /><use xlink:href="#492" y="17" /><use xlink:href="#493" y="34" /><use xlink:href="#442" y="51" /><use xlink:href="#94" y="68" /><use xlink:href="#494" y="85" /><use xlink:href="#495" y="102" /><use xlink:href="#496" y="119" /><use xlink:href="#442" y="136" /><use xlink:href="#94" y="153" /><use xlink:href="#497" y="170" /><use xlink:href="#498" y="187" /><use xlink:href="#499" y="204" /><use xlink:href="#442" y="221" /><use xlink:href="#94" y="238" /><use xlink:href="#500" y="255" /><use xlink:href="#501" y="272" /><use xlink:href="#502" y="289" /><use xlink:href="#442" y="306" /><use xlink:href="#94" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="456" y="340" /><use xlink:href="#503" y="340" /><animate attributeName="display" begin="anim_114.end+0ms" dur="18ms" fill="remove" from="inline" id="anim_115" to="inline" /></g><g display="none"><use xlink:href="#504" y="0" /><use xlink:href="#505" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#506" y="51" /><use xlink:href="#507" y="68" /><use xlink:href="#508" y="85" /><use xlink:href="#509" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#510" y="136" /><use xlink:href="#511" y="153" /><use xlink:href="#512" y="170" /><use xlink:href="#509" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#513" y="221" /><use xlink:href="#514" y="238" /><use xlink:href="#515" y="255" /><use xlink:href="#509" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#516" y="306" /><use xlink:href="#517" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="24" y="340" /><use xlink:href="#518" y="340" /><animate attributeName="display" begin="anim_115.end+0ms" dur="20ms" fill="remove" from="inline" id="anim_116" to="inline" /></g><g display="none"><use xlink:href="#519" y="0" /><use xlink:href="#520" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#521" y="51" /><use xlink:href="#522" y="68" /><use xlink:href="#523" y="85" /><use xlink:href="#524" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#525" y="136" /><use xlink:href="#526" y="153" /><use xlink:href="#527" y="170" /><use xlink:href="#528" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#529" y="221" /><use xlink:href="#530" y="238" /><use xlink:href="#531" y="255" /><use xlink:href="#532" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#533" y="306" /><use xlink:href="#534" y="323" /><rect fill="#ffe755" height="17" width="8" x="264" y="340" /><use xlink:href="#535" y="340" /><animate attributeName="display" begin="anim_116.end+0ms" dur="21ms" fill="remove" from="inline" id="anim_117" to="inline" /></g><g display="none"><use xlink:href="#536" y="0" /><use xlink:href="#94" y="17" /><use xlink:href="#537" y="34" /><use xlink:href="#538" y="51" /><use xlink:href="#539" y="68" /><use xlink:href="#540" y="85" /><use xlink:href="#94" y="102" /><use xlink:href="#541" y="119" /><use xlink:href="#542" y="136" /><use xlink:href="#543" y="153" /><use xlink:href="#544" y="170" /><use xlink:href="#94" y="187" /><use xlink:href="#545" y="204" /><use xlink:href="#546" y="221" /><use xlink:href="#547" y="238" /><use xlink:href="#240" y="255" /><use xlink:href="#94" y="272" /><use xlink:href="#548" y="289" /><use xlink:href="#549" y="306" /><use xlink:href="#550" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="0" y="340" /><use xlink:href="#551" y="340" /><animate attributeName="display" begin="anim_117.end+0ms" dur="19ms" fill="remove" from="inline" id="anim_118" to="inline" /></g><g display="none"><use xlink:href="#552" y="0" /><use xlink:href="#553" y="17" /><use xlink:href="#268" y="34" /><use xlink:href="#94" y="51" /><use xlink:href="#554" y="68" /><use xlink:href="#555" y="85" /><use xlink:href="#556" y="102" /><use xlink:href="#268" y="119" /><use xlink:href="#94" y="136" /><use xlink:href="#557" y="153" /><use xlink:href="#558" y="170" /><use xlink:href="#559" y="187" /><use xlink:href="#268" y="204" /><use xlink:href="#94" y="221" /><use xlink:href="#560" y="238" /><use xlink:href="#561" y="255" /><use xlink:href="#562" y="272" /><use xlink:href="#268" y="289" /><use xlink:href="#94" y="306" /><use xlink:href="#563" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="32" y="340" /><use xlink:href="#564" y="340" /><animate attributeName="display" begin="anim_118.end+0ms" dur="20ms" fill="remove" from="inline" id="anim_119" to="inline" /></g><g display="none"><use xlink:href="#565" y="0" /><use xlink:href="#268" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#566" y="51" /><use xlink:href="#567" y="68" /><use xlink:href="#568" y="85" /><use xlink:href="#268" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#569" y="136" /><use xlink:href="#570" y="153" /><use xlink:href="#571" y="170" /><use xlink:href="#268" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#572" y="221" /><use xlink:href="#573" y="238" /><use xlink:href="#574" y="255" /><use xlink:href="#268" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#575" y="306" /><use xlink:href="#576" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="128" y="340" /><use xlink:href="#577" y="340" /><animate attributeName="display" begin="anim_119.end+0ms" dur="22ms" fill="remove" from="inline" id="anim_120" to="inline" /></g><g display="none"><use xlink:href="#578" y="0" /><use xlink:href="#268" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#579" y="51" /><use xlink:href="#580" y="68" /><use xlink:href="#581" y="85" /><use xlink:href="#268" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#582" y="136" /><use xlink:href="#583" y="153" /><use xlink:href="#584" y="170" /><use xlink:href="#268" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#585" y="221" /><use xlink:href="#586" y="238" /><use xlink:href="#587" y="255" /><use xlink:href="#588" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#589" y="306" /><use xlink:href="#590" y="323" /><rect fill="#e5e5e5" height="17" width="8" x="168" y="340" /><use xlink:href="#133" y="340" /><animate attributeName="display" begin="anim_120.end+0ms" dur="17ms" fill="remove" from="inline" id="anim_121" to="inline" /></g><g display="none"><use xlink:href="#591" y="0" /><use xlink:href="#588" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#592" y="51" /><use xlink:href="#593" y="68" /><use xlink:href="#594" y="85" /><use xlink:href="#595" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#596" y="136" /><use xlink:href="#597" y="153" /><use xlink:href="#598" y="170" /><use xlink:href="#599" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#600" y="221" /><use xlink:href="#601" y="238" /><use xlink:href="#602" y="255" /><use xlink:href="#599" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#603" y="306" /><use xlink:href="#604" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="168" y="340" /><use xlink:href="#133" y="340" /><animate attributeName="display" begin="anim_121.end+0ms" dur="19ms" fill="remove" from="inline" id="anim_122" to="inline" /></g><g display="none"><use xlink:href="#605" y="0" /><use xlink:href="#606" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#607" y="51" /><use xlink:href="#608" y="68" /><use xlink:href="#609" y="85" /><use xlink:href="#610" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#611" y="136" /><use xlink:href="#612" y="153" /><use xlink:href="#613" y="170" /><use xlink:href="#614" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#615" y="221" /><use xlink:href="#616" y="238" /><use xlink:href="#617" y="255" /><use xlink:href="#618" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#619" y="306" /><use xlink:href="#620" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="0" y="340" /><use xlink:href="#621" y="340" /><animate attributeName="display" begin="anim_122.end+0ms" dur="22ms" fill="remove" from="inline" id="anim_123" to="inline" /></g><g display="none"><use xlink:href="#622" y="0" /><use xlink:href="#623" y="17" /><use xlink:href="#624" y="34" /><use xlink:href="#232" y="51" /><use xlink:href="#94" y="68" /><use xlink:href="#625" y="85" /><use xlink:href="#626" y="102" /><use xlink:href="#627" y="119" /><use xlink:href="#232" y="136" /><use xlink:href="#94" y="153" /><use xlink:href="#628" y="170" /><use xlink:href="#629" y="187" /><use xlink:href="#630" y="204" /><use xlink:href="#232" y="221" /><use xlink:href="#94" y="238" /><use xlink:href="#631" y="255" /><use xlink:href="#632" y="272" /><use xlink:href="#633" y="289" /><use xlink:href="#232" y="306" /><use xlink:href="#94" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="88" y="340" /><use xlink:href="#634" y="340" /><animate attributeName="display" begin="anim_123.end+0ms" dur="20ms" fill="remove" from="inline" id="anim_124" to="inline" /></g><g display="none"><use xlink:href="#635" y="0" /><use xlink:href="#636" y="17" /><use xlink:href="#232" y="34" /><use xlink:href="#94" y="51" /><use xlink:href="#637" y="68" /><use xlink:href="#638" y="85" /><use xlink:href="#639" y="102" /><use xlink:href="#232" y="119" /><use xlink:href="#94" y="136" /><use xlink:href="#640" y="153" /><use xlink:href="#641" y="170" /><use xlink:href="#642" y="187" /><use xlink:href="#232" y="204" /><use xlink:href="#94" y="221" /><use xlink:href="#643" y="238" /><use xlink:href="#644" y="255" /><use xlink:href="#645" y="272" /><use xlink:href="#232" y="289" /><use xlink:href="#94" y="306" /><use xlink:href="#646" y="323" /><rect fill="#e5e5e5" height="17" width="8" x="168" y="340" /><use xlink:href="#197" y="340" /><animate attributeName="display" begin="anim_124.end+0ms" dur="21ms" fill="remove" from="inline" id="anim_125" to="inline" /></g><g display="none"><use xlink:href="#647" y="0" /><use xlink:href="#283" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#648" y="51" /><use xlink:href="#649" y="68" /><use xlink:href="#650" y="85" /><use xlink:href="#651" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#652" y="136" /><use xlink:href="#653" y="153" /><use xlink:href="#654" y="170" /><use xlink:href="#651" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#655" y="221" /><use xlink:href="#656" y="238" /><use xlink:href="#657" y="255" /><use xlink:href="#658" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#659" y="306" /><use xlink:href="#660" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="272" y="340" /><use xlink:href="#661" y="340" /><animate attributeName="display" begin="anim_125.end+0ms" dur="24ms" fill="remove" from="inline" id="anim_126" to="inline" /></g><g display="none"><use xlink:href="#662" y="0" /><use xlink:href="#94" y="17" /><use xlink:href="#663" y="34" /><use xlink:href="#664" y="51" /><use xlink:href="#665" y="68" /><use xlink:href="#666" y="85" /><use xlink:href="#94" y="102" /><use xlink:href="#667" y="119" /><use xlink:href="#668" y="136" /><use xlink:href="#669" y="153" /><use xlink:href="#670" y="170" /><use xlink:href="#94" y="187" /><use xlink:href="#671" y="204" /><use xlink:href="#672" y="221" /><use xlink:href="#673" y="238" /><use xlink:href="#670" y="255" /><use xlink:href="#94" y="272" /><use xlink:href="#674" y="289" /><use xlink:href="#675" y="306" /><use xlink:href="#676" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="168" y="340" /><use xlink:href="#149" y="340" /><animate attributeName="display" begin="anim_126.end+0ms" dur="19ms" fill="remove" from="inline" id="anim_127" to="inline" /></g><g display="none"><use xlink:href="#677" y="0" /><use xlink:href="#678" y="17" /><use xlink:href="#679" y="34" /><use xlink:href="#680" y="51" /><use xlink:href="#94" y="68" /><use xlink:href="#681" y="85" /><use xlink:href="#682" y="102" /><use xlink:href="#683" y="119" /><use xlink:href="#684" y="136" /><use xlink:href="#94" y="153" /><use xlink:href="#685" y="170" /><use xlink:href="#686" y="187" /><use xlink:href="#687" y="204" /><use xlink:href="#684" y="221" /><use xlink:href="#94" y="238" /><use xlink:href="#688" y="255" /><use xlink:href="#689" y="272" /><use xlink:href="#690" y="289" /><use xlink:href="#684" y="306" /><use xlink:href="#94" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="312" y="340" /><use xlink:href="#691" y="340" /><animate attributeName="display" begin="anim_127.end+0ms" dur="18ms" fill="remove" from="inline" id="anim_128" to="inline" /></g><g display="none"><use xlink:href="#692" y="0" /><use xlink:href="#693" y="17" /><use xlink:href="#694" y="34" /><use xlink:href="#94" y="51" /><use xlink:href="#695" y="68" /><use xlink:href="#696" y="85" /><use xlink:href="#697" y="102" /><use xlink:href="#694" y="119" /><use xlink:href="#94" y="136" /><use xlink:href="#698" y="153" /><use xlink:href="#699" y="170" /><use xlink:href="#700" y="187" /><use xlink:href="#694" y="204" /><use xlink:href="#94" y="221" /><use xlink:href="#701" y="238" /><use xlink:href="#702" y="255" /><use xlink:href="#703" y="272" /><use xlink:href="#694" y="289" /><use xlink:href="#94" y="306" /><use xlink:href="#704" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="56" y="340" /><use xlink:href="#364" y="340" /><animate attributeName="display" begin="anim_128.end+0ms" dur="19ms" fill="remove" from="inline" id="anim_129" to="inline" /></g><g display="none"><use xlink:href="#705" y="0" /><use xlink:href="#694" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#706" y="51" /><use xlink:href="#707" y="68" /><use xlink:href="#708" y="85" /><use xlink:href="#709" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#710" y="136" /><use xlink:href="#711" y="153" /><use xlink:href="#712" y="170" /><use xlink:href="#713" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#714" y="221" /><use xlink:href="#715" y="238" /><use xlink:href="#716" y="255" /><use xlink:href="#717" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#718" y="306" /><use xlink:href="#719" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="136" y="340" /><use xlink:href="#262" y="340" /><animate attributeName="display" begin="anim_129.end+0ms" dur="22ms" fill="remove" from="inline" id="anim_130" to="inline" /></g><g display="none"><use xlink:href="#94" y="0" /><use xlink:href="#720" y="17" /><use xlink:href="#721" y="34" /><use xlink:href="#722" y="51" /><use xlink:href="#723" y="68" /><use xlink:href="#94" y="85" /><use xlink:href="#724" y="102" /><use xlink:href="#725" y="119" /><use xlink:href="#726" y="136" /><use xlink:href="#723" y="153" /><use xlink:href="#94" y="170" /><use xlink:href="#727" y="187" /><use xlink:href="#728" y="204" /><use xlink:href="#729" y="221" /><use xlink:href="#723" y="238" /><use xlink:href="#94" y="255" /><use xlink:href="#730" y="272" /><use xlink:href="#731" y="289" /><use xlink:href="#732" y="306" /><use xlink:href="#723" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="48" y="340" /><use xlink:href="#490" y="340" /><animate attributeName="display" begin="anim_130.end+0ms" dur="21ms" fill="remove" from="inline" id="anim_131" to="inline" /></g><g display="none"><use xlink:href="#733" y="0" /><use xlink:href="#734" y="17" /><use xlink:href="#735" y="34" /><use xlink:href="#736" y="51" /><use xlink:href="#94" y="68" /><use xlink:href="#737" y="85" /><use xlink:href="#738" y="102" /><use xlink:href="#739" y="119" /><use xlink:href="#740" y="136" /><use xlink:href="#94" y="153" /><use xlink:href="#741" y="170" /><use xlink:href="#742" y="187" /><use xlink:href="#743" y="204" /><use xlink:href="#236" y="221" /><use xlink:href="#94" y="238" /><use xlink:href="#744" y="255" /><use xlink:href="#745" y="272" /><use xlink:href="#746" y="289" /><use xlink:href="#236" y="306" /><use xlink:href="#94" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="184" y="340" /><use xlink:href="#747" y="340" /><animate attributeName="display" begin="anim_131.end+0ms" dur="18ms" fill="remove" from="inline" id="anim_132" to="inline" /></g><g display="none"><use xlink:href="#748" y="0" /><use xlink:href="#749" y="17" /><use xlink:href="#750" y="34" /><use xlink:href="#94" y="51" /><use xlink:href="#751" y="68" /><use xlink:href="#752" y="85" /><use xlink:href="#753" y="102" /><use xlink:href="#754" y="119" /><use xlink:href="#94" y="136" /><use xlink:href="#755" y="153" /><use xlink:href="#756" y="170" /><use xlink:href="#757" y="187" /><use xlink:href="#754" y="204" /><use xlink:href="#94" y="221" /><use xlink:href="#758" y="238" /><use xlink:href="#759" y="255" /><use xlink:href="#760" y="272" /><use xlink:href="#754" y="289" /><use xlink:href="#94" y="306" /><use xlink:href="#761" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="136" y="340" /><use xlink:href="#762" y="340" /><animate attributeName="display" begin="anim_132.end+0ms" dur="22ms" fill="remove" from="inline" id="anim_133" to="inline" /></g><g display="none"><use xlink:href="#763" y="0" /><use xlink:href="#764" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#765" y="51" /><use xlink:href="#766" y="68" /><use xlink:href="#767" y="85" /><use xlink:href="#768" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#769" y="136" /><use xlink:href="#770" y="153" /><use xlink:href="#771" y="170" /><use xlink:href="#772" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#773" y="221" /><use xlink:href="#774" y="238" /><use xlink:href="#775" y="255" /><use xlink:href="#772" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#776" y="306" /><use xlink:href="#777" y="323" /><rect fill="#ffe755" height="17" width="8" x="200" y="340" /><use xlink:href="#778" y="340" /><animate attributeName="display" begin="anim_133.end+0ms" dur="22ms" fill="remove" from="inline" id="anim_134" to="inline" /></g><g display="none"><use xlink:href="#772" y="0" /><use xlink:href="#94" y="17" /><use xlink:href="#779" y="34" /><use xlink:href="#780" y="51" /><use xlink:href="#781" y="68" /><use xlink:href="#782" y="85" /><use xlink:href="#94" y="102" /><use xlink:href="#783" y="119" /><use xlink:href="#784" y="136" /><use xlink:href="#785" y="153" /><use xlink:href="#275" y="170" /><use xlink:href="#94" y="187" /><use xlink:href="#786" y="204" /><use xlink:href="#787" y="221" /><use xlink:href="#788" y="238" /><use xlink:href="#275" y="255" /><use xlink:href="#94" y="272" /><use xlink:href="#789" y="289" /><use xlink:href="#790" y="306" /><use xlink:href="#791" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="168" y="340" /><use xlink:href="#149" y="340" /><animate attributeName="display" begin="anim_134.end+0ms" dur="18ms" fill="remove" from="inline" id="anim_135" to="inline" /></g><g display="none"><use xlink:href="#792" y="0" /><use xlink:href="#793" y="17" /><use xlink:href="#794" y="34" /><use xlink:href="#795" y="51" /><use xlink:href="#94" y="68" /><use xlink:href="#796" y="85" /><use xlink:href="#797" y="102" /><use xlink:href="#798" y="119" /><use xlink:href="#799" y="136" /><use xlink:href="#94" y="153" /><use xlink:href="#800" y="170" /><use xlink:href="#801" y="187" /><use xlink:href="#802" y="204" /><use xlink:href="#799" y="221" /><use xlink:href="#94" y="238" /><use xlink:href="#803" y="255" /><use xlink:href="#804" y="272" /><use xlink:href="#805" y="289" /><use xlink:href="#806" y="306" /><use xlink:href="#94" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="144" y="340" /><use xlink:href="#807" y="340" /><animate attributeName="display" begin="anim_135.end+0ms" dur="24ms" fill="remove" from="inline" id="anim_136" to="inline" /></g><g display="none"><use xlink:href="#808" y="0" /><use xlink:href="#244" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#809" y="51" /><use xlink:href="#810" y="68" /><use xlink:href="#811" y="85" /><use xlink:href="#812" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#813" y="136" /><use xlink:href="#814" y="153" /><use xlink:href="#815" y="170" /><use xlink:href="#816" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#817" y="221" /><use xlink:href="#818" y="238" /><use xlink:href="#819" y="255" /><use xlink:href="#820" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#821" y="306" /><use xlink:href="#822" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="40" y="340" /><use xlink:href="#823" y="340" /><animate attributeName="display" begin="anim_136.end+0ms" dur="18ms" fill="remove" from="inline" id="anim_137" to="inline" /></g><g display="none"><use xlink:href="#824" y="0" /><use xlink:href="#94" y="17" /><use xlink:href="#825" y="34" /><use xlink:href="#826" y="51" /><use xlink:href="#827" y="68" /><use xlink:href="#828" y="85" /><use xlink:href="#94" y="102" /><use xlink:href="#829" y="119" /><use xlink:href="#830" y="136" /><use xlink:href="#831" y="153" /><use xlink:href="#828" y="170" /><use xlink:href="#94" y="187" /><use xlink:href="#832" y="204" /><use xlink:href="#833" y="221" /><use xlink:href="#834" y="238" /><use xlink:href="#835" y="255" /><use xlink:href="#94" y="272" /><use xlink:href="#836" y="289" /><use xlink:href="#837" y="306" /><use xlink:href="#838" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="8" y="340" /><use xlink:href="#228" y="340" /><animate attributeName="display" begin="anim_137.end+0ms" dur="18ms" fill="remove" from="inline" id="anim_138" to="inline" /></g><g display="none"><use xlink:href="#839" y="0" /><use xlink:href="#94" y="17" /><use xlink:href="#840" y="34" /><use xlink:href="#841" y="51" /><use xlink:href="#842" y="68" /><use xlink:href="#843" y="85" /><use xlink:href="#839" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#844" y="136" /><use xlink:href="#845" y="153" /><use xlink:href="#846" y="170" /><use xlink:href="#847" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#848" y="221" /><use xlink:href="#849" y="238" /><use xlink:href="#850" y="255" /><use xlink:href="#851" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#852" y="306" /><use xlink:href="#853" y="323" /><rect fill="#ffe755" height="17" width="8" x="400" y="340" /><use xlink:href="#854" y="340" /><animate attributeName="display" begin="anim_138.end+0ms" dur="20ms" fill="remove" from="inline" id="anim_139" to="inline" /></g><g display="none"><use xlink:href="#855" y="0" /><use xlink:href="#856" y="17" /><use xlink:href="#857" y="34" /><use xlink:href="#858" y="51" /><use xlink:href="#94" y="68" /><use xlink:href="#859" y="85" /><use xlink:href="#860" y="102" /><use xlink:href="#861" y="119" /><use xlink:href="#858" y="136" /><use xlink:href="#94" y="153" /><use xlink:href="#862" y="170" /><use xlink:href="#863" y="187" /><use xlink:href="#864" y="204" /><use xlink:href="#865" y="221" /><use xlink:href="#94" y="238" /><use xlink:href="#866" y="255" /><use xlink:href="#867" y="272" /><use xlink:href="#868" y="289" /><use xlink:href="#865" y="306" /><use xlink:href="#94" y="323" /><rect fill="#e5e5e5" height="17" width="8" x="80" y="340" /><use xlink:href="#869" y="340" /><animate attributeName="display" begin="anim_139.end+0ms" dur="21ms" fill="remove" from="inline" id="anim_140" to="inline" /></g><g display="none"><use xlink:href="#870" y="0" /><use xlink:href="#871" y="17" /><use xlink:href="#872" y="34" /><use xlink:href="#873" y="51" /><use xlink:href="#94" y="68" /><use xlink:href="#874" y="85" /><use xlink:href="#875" y="102" /><use xlink:href="#876" y="119" /><use xlink:href="#877" y="136" /><use xlink:href="#94" y="153" /><use xlink:href="#878" y="170" /><use xlink:href="#879" y="187" /><use xlink:href="#880" y="204" /><use xlink:href="#877" y="221" /><use xlink:href="#94" y="238" /><use xlink:href="#881" y="255" /><use xlink:href="#882" y="272" /><use xlink:href="#883" y="289" /><use xlink:href="#884" y="306" /><use xlink:href="#94" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="296" y="340" /><use xlink:href="#885" y="340" /><animate attributeName="display" begin="anim_140.end+0ms" dur="19ms" fill="remove" from="inline" id="anim_141" to="inline" /></g><g display="none"><use xlink:href="#886" y="0" /><use xlink:href="#887" y="17" /><use xlink:href="#884" y="34" /><use xlink:href="#94" y="51" /><use xlink:href="#888" y="68" /><use xlink:href="#889" y="85" /><use xlink:href="#890" y="102" /><use xlink:href="#891" y="119" /><use xlink:href="#94" y="136" /><use xlink:href="#892" y="153" /><use xlink:href="#893" y="170" /><use xlink:href="#894" y="187" /><use xlink:href="#891" y="204" /><use xlink:href="#94" y="221" /><use xlink:href="#895" y="238" /><use xlink:href="#896" y="255" /><use xlink:href="#897" y="272" /><use xlink:href="#898" y="289" /><use xlink:href="#94" y="306" /><use xlink:href="#899" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="80" y="340" /><use xlink:href="#900" y="340" /><animate attributeName="display" begin="anim_141.end+0ms" dur="20ms" fill="remove" from="inline" id="anim_142" to="inline" /></g><g display="none"><use xlink:href="#901" y="0" /><use xlink:href="#902" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#903" y="51" /><use xlink:href="#904" y="68" /><use xlink:href="#905" y="85" /><use xlink:href="#902" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#906" y="136" /><use xlink:href="#907" y="153" /><use xlink:href="#908" y="170" /><use xlink:href="#902" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#909" y="221" /><use xlink:href="#910" y="238" /><use xlink:href="#911" y="255" /><use xlink:href="#912" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#913" y="306" /><use xlink:href="#914" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="168" y="340" /><use xlink:href="#133" y="340" /><animate attributeName="display" begin="anim_142.end+0ms" dur="21ms" fill="remove" from="inline" id="anim_143" to="inline" /></g><g display="none"><use xlink:href="#912" y="0" /><use xlink:href="#94" y="17" /><use xlink:href="#915" y="34" /><use xlink:href="#916" y="51" /><use xlink:href="#917" y="68" /><use xlink:href="#912" y="85" /><use xlink:href="#94" y="102" /><use xlink:href="#918" y="119" /><use xlink:href="#919" y="136" /><use xlink:href="#920" y="153" /><use xlink:href="#912" y="170" /><use xlink:href="#94" y="187" /><use xlink:href="#921" y="204" /><use xlink:href="#922" y="221" /><use xlink:href="#923" y="238" /><use xlink:href="#912" y="255" /><use xlink:href="#94" y="272" /><use xlink:href="#924" y="289" /><use xlink:href="#925" y="306" /><use xlink:href="#926" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="136" y="340" /><use xlink:href="#927" y="340" /><animate attributeName="display" begin="anim_143.end+0ms" dur="19ms" fill="remove" from="inline" id="anim_144" to="inline" /></g><g display="none"><use xlink:href="#928" y="0" /><use xlink:href="#929" y="17" /><use xlink:href="#930" y="34" /><use xlink:href="#912" y="51" /><use xlink:href="#94" y="68" /><use xlink:href="#931" y="85" /><use xlink:href="#932" y="102" /><use xlink:href="#933" y="119" /><use xlink:href="#912" y="136" /><use xlink:href="#94" y="153" /><use xlink:href="#934" y="170" /><use xlink:href="#935" y="187" /><use xlink:href="#936" y="204" /><use xlink:href="#912" y="221" /><use xlink:href="#94" y="238" /><use xlink:href="#937" y="255" /><use xlink:href="#938" y="272" /><use xlink:href="#939" y="289" /><use xlink:href="#940" y="306" /><use xlink:href="#94" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="120" y="340" /><use xlink:href="#941" y="340" /><animate attributeName="display" begin="anim_144.end+0ms" dur="21ms" fill="remove" from="inline" id="anim_145" to="inline" /></g><g display="none"><use xlink:href="#942" y="0" /><use xlink:href="#943" y="17" /><use xlink:href="#944" y="34" /><use xlink:href="#94" y="51" /><use xlink:href="#945" y="68" /><use xlink:href="#946" y="85" /><use xlink:href="#947" y="102" /><use xlink:href="#944" y="119" /><use xlink:href="#94" y="136" /><use xlink:href="#948" y="153" /><use xlink:href="#949" y="170" /><use xlink:href="#950" y="187" /><use xlink:href="#944" y="204" /><use xlink:href="#94" y="221" /><use xlink:href="#951" y="238" /><use xlink:href="#952" y="255" /><use xlink:href="#953" y="272" /><use xlink:href="#944" y="289" /><use xlink:href="#94" y="306" /><use xlink:href="#954" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="136" y="340" /><use xlink:href="#762" y="340" /><animate attributeName="display" begin="anim_145.end+0ms" dur="22ms" fill="remove" from="inline" id="anim_146" to="inline" /></g><g display="none"><use xlink:href="#955" y="0" /><use xlink:href="#956" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#957" y="51" /><use xlink:href="#958" y="68" /><use xlink:href="#959" y="85" /><use xlink:href="#960" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#961" y="136" /><use xlink:href="#962" y="153" /><use xlink:href="#963" y="170" /><use xlink:href="#964" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#965" y="221" /><use xlink:href="#966" y="238" /><use xlink:href="#967" y="255" /><use xlink:href="#968" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#969" y="306" /><use xlink:href="#970" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="168" y="340" /><use xlink:href="#133" y="340" /><animate attributeName="display" begin="anim_146.end+0ms" dur="20ms" fill="remove" from="inline" id="anim_147" to="inline" /></g><g display="none"><use xlink:href="#968" y="0" /><use xlink:href="#94" y="17" /><use xlink:href="#971" y="34" /><use xlink:href="#972" y="51" /><use xlink:href="#973" y="68" /><use xlink:href="#968" y="85" /><use xlink:href="#94" y="102" /><use xlink:href="#974" y="119" /><use xlink:href="#975" y="136" /><use xlink:href="#976" y="153" /><use xlink:href="#977" y="170" /><use xlink:href="#94" y="187" /><use xlink:href="#978" y="204" /><use xlink:href="#979" y="221" /><use xlink:href="#980" y="238" /><use xlink:href="#981" y="255" /><use xlink:href="#94" y="272" /><use xlink:href="#982" y="289" /><use xlink:href="#983" y="306" /><use xlink:href="#984" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="136" y="340" /><use xlink:href="#927" y="340" /><animate attributeName="display" begin="anim_147.end+0ms" dur="18ms" fill="remove" from="inline" id="anim_148" to="inline" /></g><g display="none"><use xlink:href="#985" y="0" /><use xlink:href="#94" y="17" /><use xlink:href="#986" y="34" /><use xlink:href="#987" y="51" /><use xlink:href="#988" y="68" /><use xlink:href="#912" y="85" /><use xlink:href="#94" y="102" /><use xlink:href="#989" y="119" /><use xlink:href="#990" y="136" /><use xlink:href="#991" y="153" /><use xlink:href="#694" y="170" /><use xlink:href="#94" y="187" /><use xlink:href="#992" y="204" /><use xlink:href="#993" y="221" /><use xlink:href="#994" y="238" /><use xlink:href="#995" y="255" /><use xlink:href="#996" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#997" y="306" /><use xlink:href="#998" y="323" /><rect fill="#ffe755" height="17" width="8" x="216" y="340" /><use xlink:href="#999" y="340" /><animate attributeName="display" begin="anim_148.end+0ms" dur="23ms" fill="remove" from="inline" id="anim_149" to="inline" /></g><g display="none"><use xlink:href="#1000" y="0" /><use xlink:href="#94" y="17" /><use xlink:href="#1001" y="34" /><use xlink:href="#1002" y="51" /><use xlink:href="#1003" y="68" /><use xlink:href="#1004" y="85" /><use xlink:href="#1005" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#1006" y="136" /><use xlink:href="#1007" y="153" /><use xlink:href="#1008" y="170" /><use xlink:href="#1009" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#1010" y="221" /><use xlink:href="#1011" y="238" /><use xlink:href="#1012" y="255" /><use xlink:href="#902" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#1013" y="306" /><use xlink:href="#1014" y="323" /><rect fill="#ffe755" height="17" width="8" x="272" y="340" /><use xlink:href="#1015" y="340" /><animate attributeName="display" begin="anim_149.end+0ms" dur="22ms" fill="remove" from="inline" id="anim_150" to="inline" /></g><g display="none"><use xlink:href="#1016" y="0" /><use xlink:href="#1017" y="17" /><use xlink:href="#1018" y="34" /><use xlink:href="#1019" y="51" /><use xlink:href="#94" y="68" /><use xlink:href="#1020" y="85" /><use xlink:href="#1021" y="102" /><use xlink:href="#1022" y="119" /><use xlink:href="#1023" y="136" /><use xlink:href="#94" y="153" /><use xlink:href="#1024" y="170" /><use xlink:href="#1025" y="187" /><use xlink:href="#1026" y="204" /><use xlink:href="#1027" y="221" /><use xlink:href="#94" y="238" /><use xlink:href="#1028" y="255" /><use xlink:href="#1029" y="272" /><use xlink:href="#1030" y="289" /><use xlink:href="#1031" y="306" /><use xlink:href="#94" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="120" y="340" /><use xlink:href="#1032" y="340" /><animate attributeName="display" begin="anim_150.end+0ms" dur="19ms" fill="remove" from="inline" id="anim_151" to="inline" /></g><g display="none"><use xlink:href="#1033" y="0" /><use xlink:href="#1034" y="17" /><use xlink:href="#1035" y="34" /><use xlink:href="#94" y="51" /><use xlink:href="#1036" y="68" /><use xlink:href="#1037" y="85" /><use xlink:href="#1038" y="102" /><use xlink:href="#1039" y="119" /><use xlink:href="#94" y="136" /><use xlink:href="#1040" y="153" /><use xlink:href="#1041" y="170" /><use xlink:href="#1042" y="187" /><use xlink:href="#1043" y="204" /><use xlink:href="#94" y="221" /><use xlink:href="#1044" y="238" /><use xlink:href="#1045" y="255" /><use xlink:href="#1046" y="272" /><use xlink:href="#1047" y="289" /><use xlink:href="#94" y="306" /><use xlink:href="#1048" y="323" /><rect fill="#e5e5e5" height="17" width="8" x="168" y="340" /><use xlink:href="#197" y="340" /><animate attributeName="display" begin="anim_151.end+0ms" dur="19ms" fill="remove" from="inline" id="anim_152" to="inline" /></g><g display="none"><use xlink:href="#1049" y="0" /><use xlink:href="#138" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#1050" y="51" /><use xlink:href="#1051" y="68" /><use xlink:href="#1052" y="85" /><use xlink:href="#1053" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#1054" y="136" /><use xlink:href="#1055" y="153" /><use xlink:href="#1056" y="170" /><use xlink:href="#1057" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#1058" y="221" /><use xlink:href="#1059" y="238" /><use xlink:href="#1060" y="255" /><use xlink:href="#1061" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#1062" y="306" /><use xlink:href="#1063" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="24" y="340" /><use xlink:href="#518" y="340" /><animate attributeName="display" begin="anim_152.end+0ms" dur="22ms" fill="remove" from="inline" id="anim_153" to="inline" /></g><g display="none"><use xlink:href="#1064" y="0" /><use xlink:href="#1065" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#1066" y="51" /><use xlink:href="#1067" y="68" /><use xlink:href="#1068" y="85" /><use xlink:href="#1069" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#1070" y="136" /><use xlink:href="#1071" y="153" /><use xlink:href="#1072" y="170" /><use xlink:href="#1073" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#1074" y="221" /><use xlink:href="#1075" y="238" /><use xlink:href="#1076" y="255" /><use xlink:href="#1077" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#1078" y="306" /><use xlink:href="#1079" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="168" y="340" /><use xlink:href="#133" y="340" /><animate attributeName="display" begin="anim_153.end+0ms" dur="18ms" fill="remove" from="inline" id="anim_154" to="inline" /></g><g display="none"><use xlink:href="#1080" y="0" /><use xlink:href="#1081" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#1082" y="51" /><use xlink:href="#1083" y="68" /><use xlink:href="#1084" y="85" /><use xlink:href="#1085" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#1086" y="136" /><use xlink:href="#1087" y="153" /><use xlink:href="#1088" y="170" /><use xlink:href="#1089" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#1090" y="221" /><use xlink:href="#1091" y="238" /><use xlink:href="#1092" y="255" /><use xlink:href="#1093" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#1094" y="306" /><use xlink:href="#1095" y="323" /><rect fill="#ffe755" height="17" width="8" x="200" y="340" /><use xlink:href="#1096" y="340" /><animate attributeName="display" begin="anim_154.end+0ms" dur="23ms" fill="remove" from="inline" id="anim_155" to="inline" /></g><g display="none"><use xlink:href="#1097" y="0" /><use xlink:href="#94" y="17" /><use xlink:href="#1098" y="34" /><use xlink:href="#1099" y="51" /><use xlink:href="#1100" y="68" /><use xlink:href="#1101" y="85" /><use xlink:href="#94" y="102" /><use xlink:href="#1102" y="119" /><use xlink:href="#1103" y="136" /><use xlink:href="#1104" y="153" /><use xlink:href="#1105" y="170" /><use xlink:href="#94" y="187" /><use xlink:href="#1106" y="204" /><use xlink:href="#1107" y="221" /><use xlink:href="#1108" y="238" /><use xlink:href="#1109" y="255" /><use xlink:href="#94" y="272" /><use xlink:href="#1110" y="289" /><use xlink:href="#1111" y="306" /><use xlink:href="#1112" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="8" y="340" /><use xlink:href="#228" y="340" /><animate attributeName="display" begin="anim_155.end+0ms" dur="23ms" fill="remove" from="inline" id="anim_156" to="inline" /></g><g display="none"><use xlink:href="#1112" y="0" /><use xlink:href="#1113" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#1114" y="51" /><use xlink:href="#1115" y="68" /><use xlink:href="#1116" y="85" /><use xlink:href="#1117" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#1118" y="136" /><use xlink:href="#1119" y="153" /><use xlink:href="#1120" y="170" /><use xlink:href="#1121" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#1122" y="221" /><use xlink:href="#1123" y="238" /><use xlink:href="#1124" y="255" /><use xlink:href="#1125" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#1126" y="306" /><use xlink:href="#1127" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="496" y="340" /><use xlink:href="#1128" y="340" /><animate attributeName="display" begin="anim_156.end+0ms" dur="21ms" fill="remove" from="inline" id="anim_157" to="inline" /></g><g display="none"><use xlink:href="#1129" y="0" /><use xlink:href="#94" y="17" /><use xlink:href="#1130" y="34" /><use xlink:href="#1131" y="51" /><use xlink:href="#1132" y="68" /><use xlink:href="#1133" y="85" /><use xlink:href="#94" y="102" /><use xlink:href="#1134" y="119" /><use xlink:href="#1135" y="136" /><use xlink:href="#1136" y="153" /><use xlink:href="#1137" y="170" /><use xlink:href="#94" y="187" /><use xlink:href="#1138" y="204" /><use xlink:href="#1139" y="221" /><use xlink:href="#1140" y="238" /><use xlink:href="#1141" y="255" /><use xlink:href="#1142" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#1143" y="306" /><use xlink:href="#1144" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="112" y="340" /><use xlink:href="#1145" y="340" /><animate attributeName="display" begin="anim_157.end+0ms" dur="19ms" fill="remove" from="inline" id="anim_158" to="inline" /></g><g display="none"><use xlink:href="#1146" y="0" /><use xlink:href="#1147" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#1148" y="51" /><use xlink:href="#1149" y="68" /><use xlink:href="#1150" y="85" /><use xlink:href="#1151" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#1152" y="136" /><use xlink:href="#1153" y="153" /><use xlink:href="#1154" y="170" /><use xlink:href="#1155" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#1156" y="221" /><use xlink:href="#1157" y="238" /><use xlink:href="#1158" y="255" /><use xlink:href="#1159" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#1160" y="306" /><use xlink:href="#1161" y="323" /><rect fill="#ffe755" height="17" width="8" x="200" y="340" /><use xlink:href="#1162" y="340" /><animate attributeName="display" begin="anim_158.end+0ms" dur="24ms" fill="remove" from="inline" id="anim_159" to="inline" /></g><g display="none"><use xlink:href="#1163" y="0" /><use xlink:href="#1164" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#1165" y="51" /><use xlink:href="#1166" y="68" /><use xlink:href="#1167" y="85" /><use xlink:href="#1168" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#1169" y="136" /><use xlink:href="#1170" y="153" /><use xlink:href="#1171" y="170" /><use xlink:href="#1172" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#1173" y="221" /><use xlink:href="#1174" y="238" /><use xlink:href="#1175" y="255" /><use xlink:href="#1176" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#1177" y="306" /><use xlink:href="#1178" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="336" y="340" /><use xlink:href="#1179" y="340" /><animate attributeName="display" begin="anim_159.end+0ms" dur="20ms" fill="remove" from="inline" id="anim_160" to="inline" /></g><g display="none"><use xlink:href="#1180" y="0" /><use xlink:href="#1181" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#1182" y="51" /><use xlink:href="#1183" y="68" /><use xlink:href="#1184" y="85" /><use xlink:href="#1185" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#1186" y="136" /><use xlink:href="#1187" y="153" /><use xlink:href="#1188" y="170" /><use xlink:href="#1189" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#1190" y="221" /><use xlink:href="#1191" y="238" /><use xlink:href="#1192" y="255" /><use xlink:href="#1193" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#1194" y="306" /><use xlink:href="#1195" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="104" y="340" /><use xlink:href="#409" y="340" /><animate attributeName="display" begin="anim_160.end+0ms" dur="18ms" fill="remove" from="inline" id="anim_161" to="inline" /></g><g display="none"><use xlink:href="#1195" y="0" /><use xlink:href="#1196" y="17" /><use xlink:href="#1197" y="34" /><use xlink:href="#94" y="51" /><use xlink:href="#1198" y="68" /><use xlink:href="#1199" y="85" /><use xlink:href="#1200" y="102" /><use xlink:href="#1201" y="119" /><use xlink:href="#1202" y="136" /><use xlink:href="#94" y="153" /><use xlink:href="#1203" y="170" /><use xlink:href="#1204" y="187" /><use xlink:href="#1205" y="204" /><use xlink:href="#1206" y="221" /><use xlink:href="#94" y="238" /><use xlink:href="#1207" y="255" /><use xlink:href="#1208" y="272" /><use xlink:href="#1209" y="289" /><use xlink:href="#1133" y="306" /><use xlink:href="#94" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="440" y="340" /><use xlink:href="#1210" y="340" /><animate attributeName="display" begin="anim_161.end+0ms" dur="23ms" fill="remove" from="inline" id="anim_162" to="inline" /></g><g display="none"><use xlink:href="#1211" y="0" /><use xlink:href="#1212" y="17" /><use xlink:href="#1213" y="34" /><use xlink:href="#1214" y="51" /><use xlink:href="#94" y="68" /><use xlink:href="#1215" y="85" /><use xlink:href="#1216" y="102" /><use xlink:href="#1217" y="119" /><use xlink:href="#1218" y="136" /><use xlink:href="#94" y="153" /><use xlink:href="#1219" y="170" /><use xlink:href="#1220" y="187" /><use xlink:href="#1221" y="204" /><use xlink:href="#1061" y="221" /><use xlink:href="#94" y="238" /><use xlink:href="#1222" y="255" /><use xlink:href="#1223" y="272" /><use xlink:href="#1224" y="289" /><use xlink:href="#1225" y="306" /><use xlink:href="#94" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="168" y="340" /><use xlink:href="#1226" y="340" /><animate attributeName="display" begin="anim_162.end+0ms" dur="20ms" fill="remove" from="inline" id="anim_163" to="inline" /></g><g display="none"><use xlink:href="#1227" y="0" /><use xlink:href="#1228" y="17" /><use xlink:href="#1229" y="34" /><use xlink:href="#1230" y="51" /><use xlink:href="#94" y="68" /><use xlink:href="#1231" y="85" /><use xlink:href="#1232" y="102" /><use xlink:href="#1233" y="119" /><use xlink:href="#1234" y="136" /><use xlink:href="#94" y="153" /><use xlink:href="#1235" y="170" /><use xlink:href="#1236" y="187" /><use xlink:href="#1237" y="204" /><use xlink:href="#1238" y="221" /><use xlink:href="#94" y="238" /><use xlink:href="#1239" y="255" /><use xlink:href="#1240" y="272" /><use xlink:href="#1241" y="289" /><use xlink:href="#1225" y="306" /><use xlink:href="#94" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="152" y="340" /><use xlink:href="#1242" y="340" /><animate attributeName="display" begin="anim_163.end+0ms" dur="20ms" fill="remove" from="inline" id="anim_164" to="inline" /></g><g display="none"><use xlink:href="#1243" y="0" /><use xlink:href="#1244" y="17" /><use xlink:href="#1245" y="34" /><use xlink:href="#1246" y="51" /><use xlink:href="#94" y="68" /><use xlink:href="#1247" y="85" /><use xlink:href="#1248" y="102" /><use xlink:href="#1249" y="119" /><use xlink:href="#1246" y="136" /><use xlink:href="#94" y="153" /><use xlink:href="#1250" y="170" /><use xlink:href="#1251" y="187" /><use xlink:href="#1252" y="204" /><use xlink:href="#1253" y="221" /><use xlink:href="#94" y="238" /><use xlink:href="#1254" y="255" /><use xlink:href="#1255" y="272" /><use xlink:href="#1256" y="289" /><use xlink:href="#1257" y="306" /><use xlink:href="#94" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="408" y="340" /><use xlink:href="#1258" y="340" /><animate attributeName="display" begin="anim_164.end+0ms" dur="24ms" fill="remove" from="inline" id="anim_165" to="inline" /></g><g display="none"><use xlink:href="#1259" y="0" /><use xlink:href="#1260" y="17" /><use xlink:href="#1261" y="34" /><use xlink:href="#1262" y="51" /><use xlink:href="#94" y="68" /><use xlink:href="#1263" y="85" /><use xlink:href="#1264" y="102" /><use xlink:href="#1265" y="119" /><use xlink:href="#1266" y="136" /><use xlink:href="#94" y="153" /><use xlink:href="#1267" y="170" /><use xlink:href="#1268" y="187" /><use xlink:href="#1269" y="204" /><use xlink:href="#1270" y="221" /><use xlink:href="#94" y="238" /><use xlink:href="#1271" y="255" /><use xlink:href="#1272" y="272" /><use xlink:href="#1273" y="289" /><use xlink:href="#1274" y="306" /><use xlink:href="#94" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="240" y="340" /><use xlink:href="#1275" y="340" /><animate attributeName="display" begin="anim_165.end+0ms" dur="21ms" fill="remove" from="inline" id="anim_166" to="inline" /></g><g display="none"><use xlink:href="#1276" y="0" /><use xlink:href="#1277" y="17" /><use xlink:href="#1278" y="34" /><use xlink:href="#1279" y="51" /><use xlink:href="#94" y="68" /><use xlink:href="#1280" y="85" /><use xlink:href="#1281" y="102" /><use xlink:href="#1282" y="119" /><use xlink:href="#1283" y="136" /><use xlink:href="#94" y="153" /><use xlink:href="#1284" y="170" /><use xlink:href="#1285" y="187" /><use xlink:href="#1286" y="204" /><use xlink:href="#1287" y="221" /><use xlink:href="#94" y="238" /><use xlink:href="#1288" y="255" /><use xlink:href="#1289" y="272" /><use xlink:href="#1290" y="289" /><use xlink:href="#1291" y="306" /><use xlink:href="#94" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="0" y="340" /><use xlink:href="#1292" y="340" /><animate attributeName="display" begin="anim_166.end+0ms" dur="21ms" fill="remove" from="inline" id="anim_167" to="inline" /></g><g display="none"><use xlink:href="#94" y="0" /><use xlink:href="#1293" y="17" /><use xlink:href="#1294" y="34" /><use xlink:href="#1295" y="51" /><use xlink:href="#1296" y="68" /><use xlink:href="#94" y="85" /><use xlink:href="#1297" y="102" /><use xlink:href="#1298" y="119" /><use xlink:href="#1299" y="136" /><use xlink:href="#1300" y="153" /><use xlink:href="#94" y="170" /><use xlink:href="#1301" y="187" /><use xlink:href="#1302" y="204" /><use xlink:href="#1303" y="221" /><use xlink:href="#1304" y="238" /><use xlink:href="#1305" y="255" /><use xlink:href="#94" y="272" /><use xlink:href="#1306" y="289" /><use xlink:href="#1307" y="306" /><use xlink:href="#1308" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="192" y="340" /><use xlink:href="#1309" y="340" /><animate attributeName="display" begin="anim_167.end+0ms" dur="22ms" fill="remove" from="inline" id="anim_168" to="inline" /></g><g display="none"><use xlink:href="#1225" y="0" /><use xlink:href="#94" y="17" /><use xlink:href="#1310" y="34" /><use xlink:href="#1311" y="51" /><use xlink:href="#1312" y="68" /><use xlink:href="#1313" y="85" /><use xlink:href="#94" y="102" /><use xlink:href="#1314" y="119" /><use xlink:href="#1315" y="136" /><use xlink:href="#1316" y="153" /><use xlink:href="#1317" y="170" /><use xlink:href="#94" y="187" /><use xlink:href="#1318" y="204" /><use xlink:href="#1319" y="221" /><use xlink:href="#1320" y="238" /><use xlink:href="#1321" y="255" /><use xlink:href="#94" y="272" /><use xlink:href="#1322" y="289" /><use xlink:href="#1323" y="306" /><use xlink:href="#1324" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="128" y="340" /><use xlink:href="#1325" y="340" /><animate attributeName="display" begin="anim_168.end+0ms" dur="22ms" fill="remove" from="inline" id="anim_169" to="inline" /></g><g display="none"><use xlink:href="#1326" y="0" /><use xlink:href="#94" y="17" /><use xlink:href="#1327" y="34" /><use xlink:href="#1328" y="51" /><use xlink:href="#1329" y="68" /><use xlink:href="#1330" y="85" /><use xlink:href="#1331" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#1332" y="136" /><use xlink:href="#1333" y="153" /><use xlink:href="#1334" y="170" /><use xlink:href="#1335" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#1336" y="221" /><use xlink:href="#1337" y="238" /><use xlink:href="#1338" y="255" /><use xlink:href="#1133" y="272" /><use xlink:href="#94" y="289" /><use xlink:href="#1339" y="306" /><use xlink:href="#1340" y="323" /><rect fill="#ffe755" height="17" width="8" x="192" y="340" /><use xlink:href="#1341" y="340" /><animate attributeName="display" begin="anim_169.end+0ms" dur="19ms" fill="remove" from="inline" id="anim_170" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="0" y="340" /><use xlink:href="#1" y="340" /><animate attributeName="display" begin="anim_170.end+0ms" dur="24ms" fill="remove" from="inline" id="anim_171" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="104" y="340" /><use xlink:href="#1342" y="340" /><animate attributeName="display" begin="anim_171.end+0ms" dur="4049ms" fill="remove" from="inline" id="anim_172" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="112" y="340" /><use xlink:href="#1343" y="340" /><animate attributeName="display" begin="anim_172.end+0ms" dur="196ms" fill="remove" from="inline" id="anim_173" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="120" y="340" /><use xlink:href="#1344" y="340" /><animate attributeName="display" begin="anim_173.end+0ms" dur="297ms" fill="remove" from="inline" id="anim_174" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="128" y="340" /><use xlink:href="#1345" y="340" /><animate attributeName="display" begin="anim_174.end+0ms" dur="193ms" fill="remove" from="inline" id="anim_175" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="152" y="340" /><use xlink:href="#1346" y="340" /><animate attributeName="display" begin="anim_175.end+0ms" dur="1094ms" fill="remove" from="inline" id="anim_176" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="160" y="340" /><use xlink:href="#1347" y="340" /><animate attributeName="display" begin="anim_176.end+0ms" dur="197ms" fill="remove" from="inline" id="anim_177" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="168" y="340" /><use xlink:href="#1348" y="340" /><animate attributeName="display" begin="anim_177.end+0ms" dur="171ms" fill="remove" from="inline" id="anim_178" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="176" y="340" /><use xlink:href="#1349" y="340" /><animate attributeName="display" begin="anim_178.end+0ms" dur="116ms" fill="remove" from="inline" id="anim_179" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="184" y="340" /><use xlink:href="#1350" y="340" /><animate attributeName="display" begin="anim_179.end+0ms" dur="216ms" fill="remove" from="inline" id="anim_180" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="192" y="340" /><use xlink:href="#1351" y="340" /><animate attributeName="display" begin="anim_180.end+0ms" dur="95ms" fill="remove" from="inline" id="anim_181" to="inline" /></g><g display="none"><use xlink:href="#1340" y="0" /><use xlink:href="#1352" y="17" /><use xlink:href="#1353" y="34" /><use xlink:href="#94" y="51" /><use xlink:href="#1354" y="68" /><use xlink:href="#1355" y="85" /><use xlink:href="#1356" y="102" /><use xlink:href="#1357" y="119" /><use xlink:href="#94" y="136" /><use xlink:href="#1358" y="153" /><use xlink:href="#1359" y="170" /><use xlink:href="#1360" y="187" /><use xlink:href="#1361" y="204" /><use xlink:href="#94" y="221" /><use xlink:href="#1362" y="238" /><use xlink:href="#1363" y="255" /><use xlink:href="#1364" y="272" /><use xlink:href="#1365" y="289" /><use xlink:href="#98" y="306" /><use xlink:href="#99" y="323" /><animate attributeName="display" begin="anim_170.end+0ms" dur="6775ms" fill="remove" from="inline" id="anim_182" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="200" y="340" /><use xlink:href="#1366" y="340" /><animate attributeName="display" begin="anim_181.end+0ms" dur="127ms" fill="remove" from="inline" id="anim_183" to="inline" /></g><g display="none"><use xlink:href="#1352" y="0" /><use xlink:href="#1353" y="17" /><use xlink:href="#94" y="34" /><use xlink:href="#1354" y="51" /><use xlink:href="#1355" y="68" /><use xlink:href="#1356" y="85" /><use xlink:href="#1357" y="102" /><use xlink:href="#94" y="119" /><use xlink:href="#1358" y="136" /><use xlink:href="#1359" y="153" /><use xlink:href="#1360" y="170" /><use xlink:href="#1361" y="187" /><use xlink:href="#94" y="204" /><use xlink:href="#1362" y="221" /><use xlink:href="#1363" y="238" /><use xlink:href="#1364" y="255" /><use xlink:href="#1365" y="272" /><use xlink:href="#98" y="289" /><use xlink:href="#99" y="306" /><use xlink:href="#1367" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="0" y="340" /><use xlink:href="#1" y="340" /><animate attributeName="display" begin="anim_182.end+0ms" dur="3ms" fill="remove" from="inline" id="anim_184" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="0" y="340" /><use xlink:href="#1" y="340" /><animate attributeName="display" begin="anim_184.end+0ms" dur="20ms" fill="remove" from="inline" id="anim_185" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="104" y="340" /><use xlink:href="#1368" y="340" /><animate attributeName="display" begin="anim_185.end+0ms" dur="660ms" fill="remove" from="inline" id="anim_186" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="200" y="340" /><use xlink:href="#1369" y="340" /><animate attributeName="display" begin="anim_186.end+0ms" dur="222ms" fill="remove" from="inline" id="anim_187" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="192" y="340" /><use xlink:href="#1370" y="340" /><animate attributeName="display" begin="anim_187.end+0ms" dur="254ms" fill="remove" from="inline" id="anim_188" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="184" y="340" /><use xlink:href="#1371" y="340" /><animate attributeName="display" begin="anim_188.end+0ms" dur="37ms" fill="remove" from="inline" id="anim_189" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="176" y="340" /><use xlink:href="#1372" y="340" /><animate attributeName="display" begin="anim_189.end+0ms" dur="207ms" fill="remove" from="inline" id="anim_190" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="168" y="340" /><use xlink:href="#1373" y="340" /><animate attributeName="display" begin="anim_190.end+0ms" dur="160ms" fill="remove" from="inline" id="anim_191" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="160" y="340" /><use xlink:href="#1374" y="340" /><animate attributeName="display" begin="anim_191.end+0ms" dur="292ms" fill="remove" from="inline" id="anim_192" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="168" y="340" /><use xlink:href="#1375" y="340" /><animate attributeName="display" begin="anim_192.end+0ms" dur="101ms" fill="remove" from="inline" id="anim_193" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="176" y="340" /><use xlink:href="#1376" y="340" /><animate attributeName="display" begin="anim_193.end+0ms" dur="66ms" fill="remove" from="inline" id="anim_194" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="184" y="340" /><use xlink:href="#1377" y="340" /><animate attributeName="display" begin="anim_194.end+0ms" dur="76ms" fill="remove" from="inline" id="anim_195" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="192" y="340" /><use xlink:href="#1378" y="340" /><animate attributeName="display" begin="anim_195.end+0ms" dur="96ms" fill="remove" from="inline" id="anim_196" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="200" y="340" /><use xlink:href="#1379" y="340" /><animate attributeName="display" begin="anim_196.end+0ms" dur="504ms" fill="remove" from="inline" id="anim_197" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="208" y="340" /><use xlink:href="#1380" y="340" /><animate attributeName="display" begin="anim_197.end+0ms" dur="84ms" fill="remove" from="inline" id="anim_198" to="inline" /></g><g display="none"><use xlink:href="#1353" y="0" /><use xlink:href="#94" y="17" /><use xlink:href="#1354" y="34" /><use xlink:href="#1355" y="51" /><use xlink:href="#1356" y="68" /><use xlink:href="#1357" y="85" /><use xlink:href="#94" y="102" /><use xlink:href="#1358" y="119" /><use xlink:href="#1359" y="136" /><use xlink:href="#1360" y="153" /><use xlink:href="#1361" y="170" /><use xlink:href="#94" y="187" /><use xlink:href="#1362" y="204" /><use xlink:href="#1363" y="221" /><use xlink:href="#1364" y="238" /><use xlink:href="#1365" y="255" /><use xlink:href="#98" y="272" /><use xlink:href="#99" y="289" /><use xlink:href="#1367" y="306" /><use xlink:href="#1381" y="323" /><animate attributeName="display" begin="anim_184.end+0ms" dur="2935ms" fill="remove" from="inline" id="anim_199" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="216" y="340" /><use xlink:href="#1382" y="340" /><animate attributeName="display" begin="anim_198.end+0ms" dur="156ms" fill="remove" from="inline" id="anim_200" to="inline" /></g><g display="none"><use xlink:href="#94" y="0" /><use xlink:href="#1354" y="17" /><use xlink:href="#1355" y="34" /><use xlink:href="#1356" y="51" /><use xlink:href="#1357" y="68" /><use xlink:href="#94" y="85" /><use xlink:href="#1358" y="102" /><use xlink:href="#1359" y="119" /><use xlink:href="#1360" y="136" /><use xlink:href="#1361" y="153" /><use xlink:href="#94" y="170" /><use xlink:href="#1362" y="187" /><use xlink:href="#1363" y="204" /><use xlink:href="#1364" y="221" /><use xlink:href="#1365" y="238" /><use xlink:href="#98" y="255" /><use xlink:href="#99" y="272" /><use xlink:href="#1367" y="289" /><use xlink:href="#1381" y="306" /><use xlink:href="#1383" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="0" y="340" /><use xlink:href="#1" y="340" /><animate attributeName="display" begin="anim_199.end+0ms" dur="5ms" fill="remove" from="inline" id="anim_201" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="0" y="340" /><use xlink:href="#1" y="340" /><animate attributeName="display" begin="anim_201.end+0ms" dur="15ms" fill="remove" from="inline" id="anim_202" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="104" y="340" /><use xlink:href="#1384" y="340" /><animate attributeName="display" begin="anim_202.end+0ms" dur="1226ms" fill="remove" from="inline" id="anim_203" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="216" y="340" /><use xlink:href="#1385" y="340" /><animate attributeName="display" begin="anim_203.end+0ms" dur="633ms" fill="remove" from="inline" id="anim_204" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="200" y="340" /><use xlink:href="#1386" y="340" /><animate attributeName="display" begin="anim_204.end+0ms" dur="567ms" fill="remove" from="inline" id="anim_205" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="192" y="340" /><use xlink:href="#1387" y="340" /><animate attributeName="display" begin="anim_205.end+0ms" dur="254ms" fill="remove" from="inline" id="anim_206" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="184" y="340" /><use xlink:href="#1388" y="340" /><animate attributeName="display" begin="anim_206.end+0ms" dur="39ms" fill="remove" from="inline" id="anim_207" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="176" y="340" /><use xlink:href="#1389" y="340" /><animate attributeName="display" begin="anim_207.end+0ms" dur="34ms" fill="remove" from="inline" id="anim_208" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="168" y="340" /><use xlink:href="#1390" y="340" /><animate attributeName="display" begin="anim_208.end+0ms" dur="252ms" fill="remove" from="inline" id="anim_209" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="160" y="340" /><use xlink:href="#1391" y="340" /><animate attributeName="display" begin="anim_209.end+0ms" dur="302ms" fill="remove" from="inline" id="anim_210" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="168" y="340" /><use xlink:href="#1392" y="340" /><animate attributeName="display" begin="anim_210.end+0ms" dur="104ms" fill="remove" from="inline" id="anim_211" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="176" y="340" /><use xlink:href="#1393" y="340" /><animate attributeName="display" begin="anim_211.end+0ms" dur="104ms" fill="remove" from="inline" id="anim_212" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="184" y="340" /><use xlink:href="#1394" y="340" /><animate attributeName="display" begin="anim_212.end+0ms" dur="175ms" fill="remove" from="inline" id="anim_213" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="192" y="340" /><use xlink:href="#1395" y="340" /><animate attributeName="display" begin="anim_213.end+0ms" dur="48ms" fill="remove" from="inline" id="anim_214" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="200" y="340" /><use xlink:href="#1396" y="340" /><animate attributeName="display" begin="anim_214.end+0ms" dur="311ms" fill="remove" from="inline" id="anim_215" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="208" y="340" /><use xlink:href="#1397" y="340" /><animate attributeName="display" begin="anim_215.end+0ms" dur="208ms" fill="remove" from="inline" id="anim_216" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="216" y="340" /><use xlink:href="#1398" y="340" /><animate attributeName="display" begin="anim_216.end+0ms" dur="262ms" fill="remove" from="inline" id="anim_217" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="208" y="340" /><use xlink:href="#1399" y="340" /><animate attributeName="display" begin="anim_217.end+0ms" dur="1586ms" fill="remove" from="inline" id="anim_218" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="216" y="340" /><use xlink:href="#1400" y="340" /><animate attributeName="display" begin="anim_218.end+0ms" dur="162ms" fill="remove" from="inline" id="anim_219" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="224" y="340" /><use xlink:href="#1401" y="340" /><animate attributeName="display" begin="anim_219.end+0ms" dur="77ms" fill="remove" from="inline" id="anim_220" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="232" y="340" /><use xlink:href="#1402" y="340" /><animate attributeName="display" begin="anim_220.end+0ms" dur="157ms" fill="remove" from="inline" id="anim_221" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="240" y="340" /><use xlink:href="#1403" y="340" /><animate attributeName="display" begin="anim_221.end+0ms" dur="246ms" fill="remove" from="inline" id="anim_222" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="248" y="340" /><use xlink:href="#1404" y="340" /><animate attributeName="display" begin="anim_222.end+0ms" dur="192ms" fill="remove" from="inline" id="anim_223" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="256" y="340" /><use xlink:href="#1405" y="340" /><animate attributeName="display" begin="anim_223.end+0ms" dur="314ms" fill="remove" from="inline" id="anim_224" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="264" y="340" /><use xlink:href="#1406" y="340" /><animate attributeName="display" begin="anim_224.end+0ms" dur="536ms" fill="remove" from="inline" id="anim_225" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="272" y="340" /><use xlink:href="#1407" y="340" /><animate attributeName="display" begin="anim_225.end+0ms" dur="310ms" fill="remove" from="inline" id="anim_226" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="264" y="340" /><use xlink:href="#1408" y="340" /><animate attributeName="display" begin="anim_226.end+0ms" dur="586ms" fill="remove" from="inline" id="anim_227" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="272" y="340" /><use xlink:href="#1409" y="340" /><animate attributeName="display" begin="anim_227.end+0ms" dur="212ms" fill="remove" from="inline" id="anim_228" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="280" y="340" /><use xlink:href="#1410" y="340" /><animate attributeName="display" begin="anim_228.end+0ms" dur="124ms" fill="remove" from="inline" id="anim_229" to="inline" /></g><g display="none"><use xlink:href="#1357" y="0" /><use xlink:href="#94" y="17" /><use xlink:href="#1358" y="34" /><use xlink:href="#1359" y="51" /><use xlink:href="#1360" y="68" /><use xlink:href="#1361" y="85" /><use xlink:href="#94" y="102" /><use xlink:href="#1362" y="119" /><use xlink:href="#1363" y="136" /><use xlink:href="#1364" y="153" /><use xlink:href="#1365" y="170" /><use xlink:href="#98" y="187" /><use xlink:href="#99" y="204" /><use xlink:href="#1367" y="221" /><use xlink:href="#1381" y="238" /><use xlink:href="#1383" y="255" /><use xlink:href="#1411" y="272" /><use xlink:href="#1412" y="289" /><use xlink:href="#1413" y="306" /><use xlink:href="#67" y="323" /><animate attributeName="display" begin="anim_201.end+0ms" dur="9613ms" fill="remove" from="inline" id="anim_230" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="288" y="340" /><use xlink:href="#1414" y="340" /><animate attributeName="display" begin="anim_229.end+0ms" dur="577ms" fill="remove" from="inline" id="anim_231" to="inline" /></g><g display="none"><use xlink:href="#94" y="0" /><use xlink:href="#1358" y="17" /><use xlink:href="#1359" y="34" /><use xlink:href="#1360" y="51" /><use xlink:href="#1361" y="68" /><use xlink:href="#94" y="85" /><use xlink:href="#1362" y="102" /><use xlink:href="#1363" y="119" /><use xlink:href="#1364" y="136" /><use xlink:href="#1365" y="153" /><use xlink:href="#98" y="170" /><use xlink:href="#99" y="187" /><use xlink:href="#1367" y="204" /><use xlink:href="#1381" y="221" /><use xlink:href="#1383" y="238" /><use xlink:href="#1411" y="255" /><use xlink:href="#1412" y="272" /><use xlink:href="#1413" y="289" /><use xlink:href="#67" y="306" /><use xlink:href="#1415" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="0" y="340" /><use xlink:href="#1" y="340" /><animate attributeName="display" begin="anim_230.end+0ms" dur="3ms" fill="remove" from="inline" id="anim_232" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="0" y="340" /><use xlink:href="#1" y="340" /><animate attributeName="display" begin="anim_232.end+0ms" dur="15ms" fill="remove" from="inline" id="anim_233" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="104" y="340" /><use xlink:href="#1416" y="340" /><animate attributeName="display" begin="anim_233.end+0ms" dur="3378ms" fill="remove" from="inline" id="anim_234" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="112" y="340" /><use xlink:href="#1417" y="340" /><animate attributeName="display" begin="anim_234.end+0ms" dur="204ms" fill="remove" from="inline" id="anim_235" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="120" y="340" /><use xlink:href="#1418" y="340" /><animate attributeName="display" begin="anim_235.end+0ms" dur="125ms" fill="remove" from="inline" id="anim_236" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="128" y="340" /><use xlink:href="#1419" y="340" /><animate attributeName="display" begin="anim_236.end+0ms" dur="136ms" fill="remove" from="inline" id="anim_237" to="inline" /></g><g display="none"><use xlink:href="#1362" y="0" /><use xlink:href="#1363" y="17" /><use xlink:href="#1364" y="34" /><use xlink:href="#1365" y="51" /><use xlink:href="#98" y="68" /><use xlink:href="#99" y="85" /><use xlink:href="#1367" y="102" /><use xlink:href="#1381" y="119" /><use xlink:href="#1383" y="136" /><use xlink:href="#1411" y="153" /><use xlink:href="#1412" y="170" /><use xlink:href="#1413" y="187" /><use xlink:href="#67" y="204" /><use xlink:href="#1415" y="221" /><use xlink:href="#89" y="238" /><use xlink:href="#1420" y="255" /><use xlink:href="#1421" y="272" /><use xlink:href="#1422" y="289" /><use xlink:href="#98" y="306" /><use xlink:href="#99" y="323" /><animate attributeName="display" begin="anim_232.end+0ms" dur="3961ms" fill="remove" from="inline" id="anim_238" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="136" y="340" /><use xlink:href="#1423" y="340" /><animate attributeName="display" begin="anim_237.end+0ms" dur="103ms" fill="remove" from="inline" id="anim_239" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="0" y="340" /><use xlink:href="#1" y="340" /><animate attributeName="display" begin="anim_239.end+0ms" dur="35ms" fill="remove" from="inline" id="anim_240" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="0" y="340" /><use xlink:href="#2" y="340" /><animate attributeName="display" begin="anim_240.end+0ms" dur="20ms" fill="remove" from="inline" id="anim_241" to="inline" /></g><g display="none"><use xlink:href="#1363" y="0" /><use xlink:href="#1364" y="17" /><use xlink:href="#1365" y="34" /><use xlink:href="#98" y="51" /><use xlink:href="#99" y="68" /><use xlink:href="#1367" y="85" /><use xlink:href="#1381" y="102" /><use xlink:href="#1383" y="119" /><use xlink:href="#1411" y="136" /><use xlink:href="#1412" y="153" /><use xlink:href="#1413" y="170" /><use xlink:href="#67" y="187" /><use xlink:href="#1415" y="204" /><use xlink:href="#89" y="221" /><use xlink:href="#1420" y="238" /><use xlink:href="#1421" y="255" /><use xlink:href="#1422" y="272" /><use xlink:href="#98" y="289" /><use xlink:href="#99" y="306" /><use xlink:href="#1424" y="323" /><animate attributeName="display" begin="anim_238.end+0ms" dur="83ms" fill="remove" from="inline" id="anim_242" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="0" y="340" /><use xlink:href="#2" y="340" /><animate attributeName="display" begin="anim_241.end+0ms" dur="28ms" fill="remove" from="inline" id="anim_243" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="144" y="340" /><use xlink:href="#4" y="340" /><animate attributeName="display" begin="anim_243.end+0ms" dur="2ms" fill="remove" from="inline" id="anim_244" to="inline" /></g><g display="none"><use xlink:href="#1364" y="0" /><use xlink:href="#1365" y="17" /><use xlink:href="#98" y="34" /><use xlink:href="#99" y="51" /><use xlink:href="#1367" y="68" /><use xlink:href="#1381" y="85" /><use xlink:href="#1383" y="102" /><use xlink:href="#1411" y="119" /><use xlink:href="#1412" y="136" /><use xlink:href="#1413" y="153" /><use xlink:href="#67" y="170" /><use xlink:href="#1415" y="187" /><use xlink:href="#89" y="204" /><use xlink:href="#1420" y="221" /><use xlink:href="#1421" y="238" /><use xlink:href="#1422" y="255" /><use xlink:href="#98" y="272" /><use xlink:href="#99" y="289" /><use xlink:href="#1424" y="306" /><use xlink:href="#58" y="323" /><animate attributeName="display" begin="anim_242.end+0ms" dur="1831ms" fill="remove" from="inline" id="anim_245" to="inline" /></g><g display="none"><rect fill="#c5c5c5" height="17" width="8" x="144" y="340" /><use xlink:href="#4" y="340" /><animate attributeName="display" begin="anim_244.end+0ms" dur="1829ms" fill="remove" from="inline" id="anim_246" to="inline" /></g><g display="none"><use xlink:href="#1365" y="0" /><use xlink:href="#98" y="17" /><use xlink:href="#99" y="34" /><use xlink:href="#1367" y="51" /><use xlink:href="#1381" y="68" /><use xlink:href="#1383" y="85" /><use xlink:href="#1411" y="102" /><use xlink:href="#1412" y="119" /><use xlink:href="#1413" y="136" /><use xlink:href="#67" y="153" /><use xlink:href="#1415" y="170" /><use xlink:href="#89" y="187" /><use xlink:href="#1420" y="204" /><use xlink:href="#1421" y="221" /><use xlink:href="#1422" y="238" /><use xlink:href="#98" y="255" /><use xlink:href="#99" y="272" /><use xlink:href="#1424" y="289" /><use xlink:href="#58" y="306" /><use xlink:href="#1425" y="323" /><rect fill="#c5c5c5" height="17" width="8" x="0" y="340" /><use xlink:href="#1" y="340" /><animate attributeName="display" begin="anim_245.end+0ms" dur="1000ms" fill="remove" from="inline" id="anim_last" to="inline" /></g></svg>
metadata ADDED
@@ -0,0 +1,147 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: punter
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Mohit M
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-07-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.13'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.13'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: activerecord
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: sqlite3
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: awesome_print
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ description: "(cross)db client you always wanted"
98
+ email:
99
+ - mohitcrox@gmail.com
100
+ executables:
101
+ - punter
102
+ extensions: []
103
+ extra_rdoc_files: []
104
+ files:
105
+ - ".gitignore"
106
+ - ".rspec"
107
+ - ".travis.yml"
108
+ - Gemfile
109
+ - LICENSE.txt
110
+ - NOTES
111
+ - README.md
112
+ - Rakefile
113
+ - bin/console
114
+ - bin/punter
115
+ - bin/setup
116
+ - lib/punter.rb
117
+ - lib/punter/method_generator.rb
118
+ - lib/punter/punter_sqlite3.rb
119
+ - lib/punter/version.rb
120
+ - punter.gemspec
121
+ - sample_dbs/sqlite3.db
122
+ - termtosvg_afdv3y8o.svg
123
+ homepage: https://mohitmun.github.io/punter
124
+ licenses:
125
+ - MIT
126
+ metadata: {}
127
+ post_install_message:
128
+ rdoc_options: []
129
+ require_paths:
130
+ - lib
131
+ required_ruby_version: !ruby/object:Gem::Requirement
132
+ requirements:
133
+ - - ">="
134
+ - !ruby/object:Gem::Version
135
+ version: '0'
136
+ required_rubygems_version: !ruby/object:Gem::Requirement
137
+ requirements:
138
+ - - ">="
139
+ - !ruby/object:Gem::Version
140
+ version: '0'
141
+ requirements: []
142
+ rubyforge_project:
143
+ rubygems_version: 2.4.8
144
+ signing_key:
145
+ specification_version: 4
146
+ summary: "(cross)db client you always wanted"
147
+ test_files: []