changeset 4:117fc7414307 draft

planemo upload for repository https://github.com/TGAC/earlham-galaxytools/tree/master/tools/GAFA/ commit 651fae48371f845578753052c6fe173e3bb35670
author earlhaminst
date Wed, 15 Mar 2017 20:20:58 -0400
parents e17a3470c70a
children c388666f58e0
files GAFA.py GAFA.xml schema/gafa.mwb schema/gafa.png schema/gafa.svg test-data/gene.json test-data/gene.sqlite test-data/test.gafa.sqlite
diffstat 8 files changed, 685 insertions(+), 10248 deletions(-) [+]
line wrap: on
line diff
--- a/GAFA.py	Fri Mar 03 07:20:23 2017 -0500
+++ b/GAFA.py	Wed Mar 15 20:20:58 2017 -0400
@@ -1,12 +1,12 @@
 from __future__ import print_function
 
 import collections
-import json
 import optparse
 import re
+import shutil
 import sqlite3
 
-version = "0.2.0"
+version = "0.3.0"
 
 Sequence = collections.namedtuple('Sequence', ['header', 'sequence'])
 
@@ -50,29 +50,19 @@
 
 def create_tables(conn):
     cur = conn.cursor()
-    cur.execute('PRAGMA foreign_keys = ON')
-    cur.execute('''CREATE TABLE meta (
-        version VARCHAR)''')
-
-    cur.execute('INSERT INTO meta (version) VALUES (?)',
+    # Check that the version of the input database is compatible
+    cur.execute('SELECT version FROM meta')
+    result = cur.fetchone()
+    input_meta_version = result[0]
+    if input_meta_version != '0.3.0':
+        raise Exception("Incompatible input meta version '%s'" % input_meta_version)
+    cur.execute('UPDATE meta SET version=?',
                 (version, ))
 
     cur.execute('''CREATE TABLE gene_family (
         gene_family_id INTEGER PRIMARY KEY,
         gene_tree VARCHAR NOT NULL)''')
 
-    cur.execute('''CREATE TABLE gene (
-        gene_id VARCHAR PRIMARY KEY NOT NULL,
-        gene_symbol VARCHAR,
-        gene_json VARCHAR NOT NULL)''')
-    cur.execute('CREATE INDEX gene_symbol_index ON gene (gene_symbol)')
-
-    cur.execute('''CREATE TABLE transcript (
-        transcript_id VARCHAR PRIMARY KEY NOT NULL,
-        protein_id VARCHAR UNIQUE,
-        protein_sequence VARCHAR,
-        gene_id VARCHAR NOT NULL REFERENCES gene(gene_id))''')
-
     cur.execute('''CREATE TABLE gene_family_member (
         gene_family_id INTEGER NOT NULL REFERENCES gene_family(gene_family_id),
         protein_id VARCHAR KEY NOT NULL REFERENCES transcript(protein_id),
@@ -117,44 +107,23 @@
     conn.commit()
 
 
-def gene_json_to_db(conn, fname):
-    with open(fname) as f:
-        all_genes_dict = json.load(f)
-
-    cur = conn.cursor()
-    for gene_dict in all_genes_dict.values():
-        gene_id = gene_dict['id']
-        gene_symbol = gene_dict.get('display_name', None)
-        cur.execute("INSERT INTO gene (gene_id, gene_symbol, gene_json) VALUES (?, ?, ?)",
-                    (gene_id, gene_symbol, json.dumps(gene_dict)))
-
-        if "Transcript" in gene_dict:
-            for transcript in gene_dict["Transcript"]:
-                transcript_id = transcript['id']
-                if 'Translation' in transcript and 'id' in transcript['Translation']:
-                    protein_id = transcript["Translation"]["id"]
-                else:
-                    protein_id = None
-                cur.execute("INSERT INTO transcript (transcript_id, protein_id, gene_id) VALUES (?, ?, ?)",
-                            (transcript_id, protein_id, gene_id))
-    conn.commit()
-
-
 def __main__():
     parser = optparse.OptionParser()
     parser.add_option('-t', '--tree', action='append', help='Gene tree files')
     parser.add_option('-a', '--align', action='append', help='Protein alignments in fasta_aln format')
-    parser.add_option('-g', '--gene', help='Gene features file in JSON format')
+    parser.add_option('-g', '--gene', help='Gene features file in SQLite format')
     parser.add_option('-o', '--output', help='Path of the output file')
     options, args = parser.parse_args()
     if args:
         raise Exception('Use options to provide inputs')
 
+    if options.gene != options.output:
+        shutil.copyfile(options.gene, options.output)
+
     conn = sqlite3.connect(options.output)
+    conn.execute('PRAGMA foreign_keys = ON')
     create_tables(conn)
 
-    gene_json_to_db(conn, options.gene)
-
     for i, (tree, align) in enumerate(zip(options.tree, options.align), start=1):
         newicktree_to_db(conn, i, tree)
         align_to_db(conn, i, align)
--- a/GAFA.xml	Fri Mar 03 07:20:23 2017 -0500
+++ b/GAFA.xml	Wed Mar 15 20:20:58 2017 -0400
@@ -1,4 +1,4 @@
-<tool id="gafa" name="Gene Align and Family Aggregator" version="0.2.0">
+<tool id="gafa" name="Gene Align and Family Aggregator" version="0.3.0">
     <description>generates an SQLite database that can be visualised with Aequatus</description>
     <command>
 <![CDATA[
@@ -16,7 +16,7 @@
     <inputs>
         <param name="treeFile" type="data" format="nhx" multiple="true" label="Gene tree" help="Gene tree in Newick format, e.g. generated from 'TreeBeST best' or 'Get gene tree by Ensembl ID' tool" />
         <param name="alignmentFile" type="data" format="fasta" multiple="true" label="Protein alignments" help="Protein alignments in fasta_aln format generated by T-Coffee" />
-        <param name="genesFile" type="data" format="json" label="Gene features" help="Gene features in JSON format generated by 'GFF3 to JSON' or 'Get features by Ensembl ID' tool" />
+        <param name="genesFile" type="data" format="sqlite" label="Gene features" help="Gene features in SQLite format generated by 'GSTF preparation' tool" />
     </inputs>
     <outputs>
         <data name="outputFile" format="gafa.sqlite" label="${tool.name} on ${on_string}" />
@@ -25,7 +25,7 @@
         <test>
             <param name="treeFile" ftype="nhx" value="tree1.nhx,tree2.nhx,tree3.nhx,tree4.nhx" />
             <param name="alignmentFile" ftype="fasta" value="align1.fasta,align2.fasta,align3.fasta,align4.fasta" />
-            <param name="genesFile" ftype="json" value="gene.json" />
+            <param name="genesFile" ftype="sqlite" value="gene.sqlite" />
             <output name="outputFile" file="test.gafa.sqlite" compare="sim_size" />
         </test>
     </tests>
Binary file schema/gafa.mwb has changed
Binary file schema/gafa.png has changed
--- a/schema/gafa.svg	Fri Mar 03 07:20:23 2017 -0500
+++ b/schema/gafa.svg	Wed Mar 15 20:20:58 2017 -0400
@@ -3,811 +3,865 @@
 <defs>
 <g>
 <symbol overflow="visible" id="glyph0-0">
-<path style="stroke:none;" d="M 2.558594 -1.027344 C 2.710938 -1.195312 2.785156 -1.460938 2.785156 -1.828125 C 2.785156 -2.171875 2.714844 -2.429688 2.570312 -2.609375 C 2.425781 -2.789062 2.230469 -2.878906 1.988281 -2.878906 C 1.65625 -2.878906 1.425781 -2.722656 1.300781 -2.410156 C 1.234375 -2.246094 1.199219 -2.039062 1.199219 -1.796875 C 1.199219 -1.585938 1.234375 -1.398438 1.304688 -1.234375 C 1.433594 -0.929688 1.664062 -0.777344 1.996094 -0.777344 C 2.21875 -0.777344 2.40625 -0.859375 2.558594 -1.027344 Z M 2.234375 -3.625 C 2.464844 -3.527344 2.652344 -3.355469 2.792969 -3.097656 L 2.792969 -3.621094 L 3.714844 -3.621094 L 3.714844 -0.1875 C 3.714844 0.28125 3.636719 0.632812 3.476562 0.871094 C 3.207031 1.277344 2.691406 1.480469 1.921875 1.480469 C 1.460938 1.480469 1.082031 1.390625 0.789062 1.210938 C 0.496094 1.027344 0.335938 0.757812 0.304688 0.394531 L 1.335938 0.394531 C 1.363281 0.503906 1.40625 0.585938 1.464844 0.632812 C 1.566406 0.71875 1.738281 0.765625 1.980469 0.765625 C 2.320312 0.765625 2.550781 0.648438 2.664062 0.421875 C 2.738281 0.277344 2.777344 0.03125 2.777344 -0.316406 L 2.777344 -0.546875 C 2.6875 -0.394531 2.589844 -0.277344 2.484375 -0.199219 C 2.296875 -0.0546875 2.050781 0.015625 1.75 0.015625 C 1.285156 0.015625 0.914062 -0.148438 0.636719 -0.472656 C 0.359375 -0.800781 0.21875 -1.242188 0.21875 -1.800781 C 0.21875 -2.339844 0.351562 -2.789062 0.621094 -3.15625 C 0.890625 -3.523438 1.269531 -3.707031 1.761719 -3.707031 C 1.941406 -3.707031 2.101562 -3.679688 2.234375 -3.625 Z M 2.234375 -3.625 "/>
+<path style="stroke:none;" d=""/>
 </symbol>
 <symbol overflow="visible" id="glyph0-1">
-<path style="stroke:none;" d="M 1.359375 -2.730469 C 1.238281 -2.59375 1.164062 -2.40625 1.132812 -2.171875 L 2.605469 -2.171875 C 2.589844 -2.421875 2.511719 -2.613281 2.375 -2.742188 C 2.238281 -2.871094 2.070312 -2.9375 1.871094 -2.9375 C 1.652344 -2.9375 1.480469 -2.867188 1.359375 -2.730469 Z M 2.683594 -3.546875 C 2.925781 -3.433594 3.125 -3.257812 3.28125 -3.011719 C 3.421875 -2.796875 3.515625 -2.550781 3.558594 -2.265625 C 3.582031 -2.097656 3.59375 -1.859375 3.585938 -1.546875 L 1.109375 -1.546875 C 1.121094 -1.183594 1.238281 -0.929688 1.453125 -0.785156 C 1.582031 -0.695312 1.738281 -0.648438 1.921875 -0.648438 C 2.117188 -0.648438 2.277344 -0.703125 2.398438 -0.8125 C 2.464844 -0.875 2.523438 -0.957031 2.574219 -1.0625 L 3.542969 -1.0625 C 3.515625 -0.847656 3.40625 -0.628906 3.207031 -0.410156 C 2.894531 -0.0585938 2.460938 0.121094 1.902344 0.121094 C 1.441406 0.121094 1.035156 -0.0273438 0.683594 -0.324219 C 0.332031 -0.621094 0.15625 -1.105469 0.15625 -1.773438 C 0.15625 -2.402344 0.316406 -2.882812 0.632812 -3.214844 C 0.949219 -3.550781 1.363281 -3.71875 1.871094 -3.71875 C 2.171875 -3.71875 2.441406 -3.660156 2.683594 -3.546875 Z M 2.683594 -3.546875 "/>
+<path style="stroke:none;" d="M 3.8125 -0.03125 L 3.8125 -3.984375 L 2.640625 -3.984375 L 2.640625 -3.265625 L 2.875 -3.375 C 2.578125 -3.8125 2.171875 -4.046875 1.75 -4.046875 C 0.890625 -4.046875 0.09375 -3.078125 0.09375 -1.953125 C 0.09375 -0.8125 0.828125 0.0625 1.734375 0.0625 C 2.15625 0.0625 2.515625 -0.109375 2.640625 -0.234375 L 2.640625 -0.03125 C 2.640625 0.40625 2.4375 0.546875 1.96875 0.546875 C 1.609375 0.546875 1.5 0.5625 1.375 0.125 L 0.15625 0.125 C 0.1875 0.890625 0.921875 1.484375 1.9375 1.484375 C 3.03125 1.484375 3.8125 0.828125 3.8125 -0.03125 Z M 2.65625 -1.96875 C 2.65625 -1.296875 2.4375 -1.046875 1.9375 -1.046875 C 1.5 -1.046875 1.3125 -1.296875 1.3125 -1.96875 C 1.3125 -2.65625 1.5 -2.9375 1.953125 -2.9375 C 2.4375 -2.9375 2.65625 -2.640625 2.65625 -1.96875 Z M 2.65625 -1.96875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph0-2">
-<path style="stroke:none;" d="M 3.367188 -3.414062 C 3.605469 -3.21875 3.722656 -2.890625 3.722656 -2.4375 L 3.722656 0 L 2.753906 0 L 2.753906 -2.203125 C 2.753906 -2.394531 2.726562 -2.539062 2.675781 -2.640625 C 2.582031 -2.828125 2.40625 -2.917969 2.144531 -2.917969 C 1.824219 -2.917969 1.605469 -2.785156 1.484375 -2.511719 C 1.421875 -2.367188 1.390625 -2.183594 1.390625 -1.960938 L 1.390625 0 L 0.449219 0 L 0.449219 -3.613281 L 1.363281 -3.613281 L 1.363281 -3.085938 C 1.484375 -3.273438 1.597656 -3.40625 1.707031 -3.488281 C 1.902344 -3.632812 2.148438 -3.707031 2.449219 -3.707031 C 2.824219 -3.707031 3.128906 -3.609375 3.367188 -3.414062 Z M 3.367188 -3.414062 "/>
+<path style="stroke:none;" d="M 3.703125 -1.859375 C 3.703125 -3.125 2.921875 -4.046875 1.84375 -4.046875 C 0.796875 -4.046875 0.015625 -3.171875 0.015625 -1.9375 C 0.015625 -0.765625 0.78125 0.0625 1.828125 0.0625 C 2.65625 0.0625 3.453125 -0.46875 3.703125 -1.359375 L 2.515625 -1.359375 C 2.375 -0.90625 2.203125 -0.984375 1.859375 -0.984375 C 1.40625 -0.984375 1.265625 -1.03125 1.234375 -1.578125 L 3.6875 -1.578125 Z M 2.578125 -2.53125 L 1.265625 -2.53125 C 1.3125 -2.875 1.40625 -3 1.828125 -3 C 2.25 -3 2.390625 -2.890625 2.421875 -2.53125 Z M 2.578125 -2.53125 "/>
 </symbol>
 <symbol overflow="visible" id="glyph0-3">
-<path style="stroke:none;" d="M 0.0703125 -2.914062 L 0.0703125 -3.585938 L 0.574219 -3.585938 L 0.574219 -4.597656 L 1.511719 -4.597656 L 1.511719 -3.585938 L 2.097656 -3.585938 L 2.097656 -2.914062 L 1.511719 -2.914062 L 1.511719 -1 C 1.511719 -0.851562 1.53125 -0.757812 1.566406 -0.722656 C 1.605469 -0.6875 1.722656 -0.667969 1.914062 -0.667969 C 1.941406 -0.667969 1.972656 -0.667969 2.003906 -0.667969 C 2.035156 -0.671875 2.070312 -0.671875 2.097656 -0.675781 L 2.097656 0.0351562 L 1.652344 0.0507812 C 1.203125 0.0664062 0.898438 -0.0117188 0.734375 -0.183594 C 0.628906 -0.292969 0.574219 -0.457031 0.574219 -0.683594 L 0.574219 -2.914062 Z M 0.0703125 -2.914062 "/>
+<path style="stroke:none;" d="M 3.84375 -0.15625 L 3.84375 -2.609375 C 3.84375 -3.421875 3.265625 -4.046875 2.484375 -4.046875 C 1.984375 -4.046875 1.5625 -3.8125 1.28125 -3.40625 L 1.515625 -3.296875 L 1.515625 -3.984375 L 0.296875 -3.984375 L 0.296875 0 L 1.515625 0 L 1.515625 -2.359375 C 1.515625 -2.796875 1.6875 -2.921875 2.140625 -2.921875 C 2.5625 -2.921875 2.625 -2.859375 2.625 -2.421875 L 2.625 0 L 3.84375 0 Z M 3.84375 -0.15625 "/>
 </symbol>
 <symbol overflow="visible" id="glyph0-4">
-<path style="stroke:none;" d="M 2.453125 -3.707031 C 2.464844 -3.703125 2.492188 -3.703125 2.535156 -3.699219 L 2.535156 -2.730469 C 2.476562 -2.738281 2.421875 -2.742188 2.375 -2.742188 C 2.328125 -2.746094 2.289062 -2.746094 2.261719 -2.746094 C 1.882812 -2.746094 1.625 -2.625 1.496094 -2.375 C 1.421875 -2.234375 1.386719 -2.019531 1.386719 -1.730469 L 1.386719 0 L 0.433594 0 L 0.433594 -3.621094 L 1.335938 -3.621094 L 1.335938 -2.988281 C 1.480469 -3.230469 1.609375 -3.394531 1.71875 -3.484375 C 1.894531 -3.632812 2.125 -3.707031 2.410156 -3.707031 C 2.425781 -3.707031 2.441406 -3.707031 2.453125 -3.707031 Z M 2.453125 -3.707031 "/>
+<path style="stroke:none;" d="M 2.1875 -0.15625 L 2.1875 -1 C 1.953125 -0.96875 1.890625 -0.96875 1.828125 -0.96875 C 1.578125 -0.96875 1.65625 -0.875 1.65625 -1.203125 L 1.65625 -2.96875 L 2.1875 -2.96875 L 2.1875 -3.921875 L 1.65625 -3.921875 L 1.65625 -4.90625 L 0.421875 -4.90625 L 0.421875 -3.921875 L -0.046875 -3.921875 L -0.046875 -2.96875 L 0.421875 -2.96875 L 0.421875 -0.9375 C 0.421875 -0.359375 0.875 0.03125 1.5 0.03125 C 1.703125 0.03125 1.875 0 2.1875 0 Z M 2.1875 -0.15625 "/>
 </symbol>
 <symbol overflow="visible" id="glyph0-5">
-<path style="stroke:none;" d="M 2.4375 -1.761719 C 2.378906 -1.722656 2.316406 -1.691406 2.257812 -1.667969 C 2.195312 -1.644531 2.113281 -1.625 2.007812 -1.605469 L 1.792969 -1.566406 C 1.59375 -1.53125 1.453125 -1.484375 1.367188 -1.433594 C 1.21875 -1.347656 1.144531 -1.214844 1.144531 -1.03125 C 1.144531 -0.871094 1.191406 -0.753906 1.28125 -0.683594 C 1.371094 -0.609375 1.480469 -0.574219 1.609375 -0.574219 C 1.8125 -0.574219 2 -0.632812 2.171875 -0.753906 C 2.34375 -0.875 2.429688 -1.089844 2.4375 -1.410156 Z M 1.863281 -2.203125 C 2.039062 -2.226562 2.164062 -2.253906 2.238281 -2.285156 C 2.375 -2.34375 2.441406 -2.433594 2.441406 -2.554688 C 2.441406 -2.703125 2.390625 -2.804688 2.285156 -2.863281 C 2.183594 -2.917969 2.03125 -2.945312 1.832031 -2.945312 C 1.609375 -2.945312 1.453125 -2.890625 1.359375 -2.78125 C 1.292969 -2.699219 1.246094 -2.585938 1.226562 -2.449219 L 0.3125 -2.449219 C 0.332031 -2.765625 0.421875 -3.023438 0.578125 -3.230469 C 0.828125 -3.546875 1.257812 -3.707031 1.867188 -3.707031 C 2.261719 -3.707031 2.617188 -3.628906 2.921875 -3.472656 C 3.230469 -3.316406 3.386719 -3.015625 3.386719 -2.582031 L 3.386719 -0.921875 C 3.386719 -0.804688 3.386719 -0.664062 3.390625 -0.5 C 3.398438 -0.378906 3.417969 -0.292969 3.449219 -0.25 C 3.480469 -0.207031 3.527344 -0.167969 3.585938 -0.140625 L 3.585938 0 L 2.558594 0 C 2.527344 -0.0742188 2.507812 -0.140625 2.496094 -0.207031 C 2.484375 -0.269531 2.476562 -0.34375 2.472656 -0.425781 C 2.339844 -0.285156 2.191406 -0.164062 2.019531 -0.0625 C 1.816406 0.0546875 1.585938 0.113281 1.328125 0.113281 C 1 0.113281 0.730469 0.0195312 0.515625 -0.167969 C 0.300781 -0.355469 0.195312 -0.621094 0.195312 -0.964844 C 0.195312 -1.410156 0.367188 -1.730469 0.710938 -1.929688 C 0.898438 -2.039062 1.175781 -2.117188 1.542969 -2.164062 Z M 1.863281 -2.203125 "/>
+<path style="stroke:none;" d="M 2.65625 -2.921875 L 2.65625 -4.03125 C 2.453125 -4.046875 2.421875 -4.046875 2.40625 -4.046875 C 1.96875 -4.046875 1.453125 -3.578125 1.25 -3.078125 L 1.515625 -3.109375 L 1.515625 -3.984375 L 0.296875 -3.984375 L 0.296875 0 L 1.515625 0 L 1.515625 -2.109375 C 1.515625 -2.671875 1.65625 -2.78125 2.21875 -2.78125 C 2.3125 -2.78125 2.390625 -2.78125 2.65625 -2.734375 Z M 2.65625 -2.921875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph0-6">
-<path style="stroke:none;" d="M 1.179688 -1.15625 C 1.199219 -0.988281 1.242188 -0.867188 1.308594 -0.796875 C 1.425781 -0.671875 1.644531 -0.609375 1.960938 -0.609375 C 2.144531 -0.609375 2.292969 -0.636719 2.402344 -0.691406 C 2.511719 -0.746094 2.566406 -0.828125 2.566406 -0.941406 C 2.566406 -1.046875 2.523438 -1.128906 2.433594 -1.183594 C 2.347656 -1.238281 2.015625 -1.332031 1.449219 -1.46875 C 1.039062 -1.570312 0.75 -1.699219 0.582031 -1.851562 C 0.414062 -2 0.328125 -2.21875 0.328125 -2.5 C 0.328125 -2.835938 0.460938 -3.125 0.722656 -3.363281 C 0.984375 -3.605469 1.355469 -3.722656 1.832031 -3.722656 C 2.28125 -3.722656 2.648438 -3.632812 2.933594 -3.453125 C 3.21875 -3.273438 3.382812 -2.960938 3.425781 -2.519531 L 2.476562 -2.519531 C 2.464844 -2.640625 2.429688 -2.734375 2.375 -2.808594 C 2.269531 -2.9375 2.09375 -3 1.84375 -3 C 1.636719 -3 1.492188 -2.96875 1.402344 -2.902344 C 1.316406 -2.839844 1.273438 -2.765625 1.273438 -2.675781 C 1.273438 -2.566406 1.320312 -2.492188 1.410156 -2.441406 C 1.503906 -2.390625 1.832031 -2.304688 2.398438 -2.179688 C 2.773438 -2.089844 3.058594 -1.957031 3.246094 -1.777344 C 3.433594 -1.59375 3.523438 -1.367188 3.523438 -1.097656 C 3.523438 -0.738281 3.390625 -0.445312 3.125 -0.21875 C 2.859375 0.0078125 2.445312 0.121094 1.886719 0.121094 C 1.316406 0.121094 0.898438 0.00390625 0.625 -0.238281 C 0.355469 -0.476562 0.21875 -0.785156 0.21875 -1.15625 Z M 1.179688 -1.15625 "/>
+<path style="stroke:none;" d="M 3.703125 -0.15625 L 3.703125 -0.34375 C 3.484375 -0.546875 3.484375 -0.53125 3.484375 -0.71875 L 3.484375 -2.765625 C 3.484375 -3.5 2.828125 -4.046875 1.84375 -4.046875 C 0.84375 -4.046875 0.203125 -3.453125 0.125 -2.453125 L 1.3125 -2.453125 C 1.375 -3 1.390625 -2.96875 1.859375 -2.96875 C 2.234375 -2.96875 2.28125 -3 2.28125 -2.75 C 2.28125 -2.359375 2.125 -2.5625 1.65625 -2.484375 L 1.265625 -2.421875 C 0.546875 -2.296875 0.046875 -1.8125 0.046875 -1.15625 C 0.046875 -0.4375 0.6875 0.0625 1.3125 0.0625 C 1.71875 0.0625 2.1875 -0.15625 2.28125 -0.265625 C 2.28125 -0.421875 2.34375 -0.15625 2.46875 0 L 3.703125 0 Z M 2.28125 -1.71875 C 2.28125 -1.171875 2.140625 -1.03125 1.65625 -1.03125 C 1.34375 -1.03125 1.28125 -0.984375 1.28125 -1.25 C 1.28125 -1.53125 1.296875 -1.484375 1.6875 -1.5625 L 2.015625 -1.625 C 2.265625 -1.671875 2.40625 -1.71875 2.28125 -1.671875 Z M 2.28125 -1.71875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph0-7">
-<path style="stroke:none;" d="M 2.605469 -2.320312 C 2.585938 -2.457031 2.542969 -2.578125 2.46875 -2.6875 C 2.363281 -2.832031 2.195312 -2.90625 1.972656 -2.90625 C 1.652344 -2.90625 1.4375 -2.75 1.320312 -2.429688 C 1.257812 -2.261719 1.226562 -2.039062 1.226562 -1.761719 C 1.226562 -1.496094 1.257812 -1.28125 1.320312 -1.121094 C 1.433594 -0.820312 1.644531 -0.667969 1.957031 -0.667969 C 2.179688 -0.667969 2.335938 -0.726562 2.429688 -0.847656 C 2.523438 -0.96875 2.578125 -1.121094 2.597656 -1.3125 L 3.5625 -1.3125 C 3.542969 -1.023438 3.4375 -0.75 3.253906 -0.496094 C 2.957031 -0.0820312 2.515625 0.125 1.933594 0.125 C 1.351562 0.125 0.921875 -0.046875 0.648438 -0.390625 C 0.375 -0.738281 0.234375 -1.1875 0.234375 -1.738281 C 0.234375 -2.359375 0.386719 -2.84375 0.691406 -3.1875 C 0.996094 -3.535156 1.414062 -3.707031 1.945312 -3.707031 C 2.398438 -3.707031 2.773438 -3.605469 3.0625 -3.402344 C 3.351562 -3.199219 3.519531 -2.839844 3.574219 -2.320312 Z M 2.605469 -2.320312 "/>
+<path style="stroke:none;" d="M 3.671875 -1.25 L 3.671875 -1.296875 C 3.671875 -1.71875 3.296875 -2.1875 2.8125 -2.328125 L 1.609375 -2.671875 C 1.34375 -2.75 1.40625 -2.65625 1.40625 -2.796875 C 1.40625 -3 1.5 -2.984375 1.828125 -2.984375 C 2.28125 -2.984375 2.375 -2.984375 2.375 -2.484375 L 3.5625 -2.484375 C 3.5625 -3.421875 2.828125 -4.046875 1.828125 -4.046875 C 0.90625 -4.046875 0.1875 -3.421875 0.1875 -2.671875 C 0.1875 -2.21875 0.453125 -1.8125 1.125 -1.609375 L 2.265625 -1.25 C 2.5 -1.171875 2.453125 -1.25 2.453125 -1.15625 C 2.453125 -0.9375 2.3125 -1 1.875 -1 C 1.4375 -1 1.34375 -0.921875 1.234375 -1.484375 L 0.046875 -1.484375 C 0.09375 -0.515625 0.8125 0.0625 1.9375 0.0625 C 2.96875 0.0625 3.671875 -0.5 3.671875 -1.25 Z M 3.671875 -1.25 "/>
 </symbol>
 <symbol overflow="visible" id="glyph0-8">
-<path style="stroke:none;" d="M 1.414062 -4.050781 L 0.457031 -4.050781 L 0.457031 -4.925781 L 1.414062 -4.925781 Z M 0.457031 -3.621094 L 1.414062 -3.621094 L 1.414062 0 L 0.457031 0 Z M 0.457031 -3.621094 "/>
+<path style="stroke:none;" d="M 3.546875 -1.59375 L 2.5625 -1.59375 C 2.375 -1.03125 2.328125 -1.03125 1.953125 -1.03125 C 1.46875 -1.03125 1.3125 -1.25 1.3125 -1.96875 C 1.3125 -2.640625 1.359375 -2.96875 1.953125 -2.96875 C 2.34375 -2.96875 2.390625 -2.9375 2.53125 -2.296875 L 3.6875 -2.296875 C 3.609375 -3.34375 2.875 -4.046875 1.96875 -4.046875 C 0.875 -4.046875 0.09375 -3.21875 0.09375 -1.96875 C 0.09375 -0.75 0.859375 0.0625 1.953125 0.0625 C 2.84375 0.0625 3.59375 -0.640625 3.703125 -1.59375 Z M 3.546875 -1.59375 "/>
 </symbol>
 <symbol overflow="visible" id="glyph0-9">
-<path style="stroke:none;" d="M 2.746094 -2.550781 C 2.617188 -2.765625 2.410156 -2.875 2.125 -2.875 C 1.78125 -2.875 1.546875 -2.710938 1.417969 -2.386719 C 1.351562 -2.214844 1.320312 -1.992188 1.320312 -1.726562 C 1.320312 -1.304688 1.429688 -1.011719 1.652344 -0.839844 C 1.785156 -0.742188 1.945312 -0.691406 2.125 -0.691406 C 2.390625 -0.691406 2.589844 -0.792969 2.730469 -0.996094 C 2.867188 -1.199219 2.9375 -1.472656 2.9375 -1.808594 C 2.9375 -2.089844 2.871094 -2.335938 2.746094 -2.550781 Z M 3.472656 -3.230469 C 3.765625 -2.917969 3.914062 -2.460938 3.914062 -1.855469 C 3.914062 -1.21875 3.769531 -0.734375 3.484375 -0.398438 C 3.195312 -0.0625 2.828125 0.101562 2.375 0.101562 C 2.085938 0.101562 1.847656 0.03125 1.65625 -0.113281 C 1.554688 -0.191406 1.453125 -0.308594 1.351562 -0.460938 L 1.351562 1.425781 L 0.414062 1.425781 L 0.414062 -3.621094 L 1.320312 -3.621094 L 1.320312 -3.085938 C 1.421875 -3.242188 1.53125 -3.367188 1.648438 -3.457031 C 1.859375 -3.621094 2.109375 -3.699219 2.398438 -3.699219 C 2.820312 -3.699219 3.179688 -3.542969 3.472656 -3.230469 Z M 3.472656 -3.230469 "/>
+<path style="stroke:none;" d="M 1.546875 -0.15625 L 1.546875 -3.984375 L 0.3125 -3.984375 L 0.3125 0 L 1.546875 0 Z M 1.5625 -4.265625 L 1.5625 -5.390625 L 0.328125 -5.390625 L 0.328125 -4.109375 L 1.5625 -4.109375 Z M 1.5625 -4.265625 "/>
 </symbol>
 <symbol overflow="visible" id="glyph0-10">
-<path style="stroke:none;" d="M 0 0.851562 L 0 0.515625 L 3.785156 0.515625 L 3.785156 0.851562 Z M 0 0.851562 "/>
+<path style="stroke:none;" d="M 4.03125 -1.984375 C 4.03125 -3.078125 3.328125 -4.046875 2.359375 -4.046875 C 1.90625 -4.046875 1.484375 -3.8125 1.25 -3.390625 L 1.484375 -3.28125 L 1.484375 -3.984375 L 0.265625 -3.984375 L 0.265625 1.484375 L 1.484375 1.484375 L 1.484375 -0.640625 L 1.25 -0.53125 C 1.484375 -0.125 1.90625 0.0625 2.359375 0.0625 C 3.25 0.0625 4.03125 -0.875 4.03125 -1.984375 Z M 2.8125 -1.984375 C 2.8125 -1.3125 2.609375 -1.046875 2.140625 -1.046875 C 1.671875 -1.046875 1.484375 -1.3125 1.484375 -1.984375 C 1.484375 -2.671875 1.671875 -2.9375 2.140625 -2.9375 C 2.625 -2.9375 2.8125 -2.671875 2.8125 -1.984375 Z M 2.8125 -1.984375 "/>
 </symbol>
 <symbol overflow="visible" id="glyph0-11">
-<path style="stroke:none;" d="M 1.941406 -4.941406 C 1.988281 -4.9375 2.054688 -4.933594 2.140625 -4.925781 L 2.140625 -4.15625 C 2.085938 -4.164062 1.996094 -4.167969 1.871094 -4.171875 C 1.746094 -4.175781 1.660156 -4.144531 1.613281 -4.085938 C 1.566406 -4.027344 1.542969 -3.964844 1.542969 -3.894531 C 1.542969 -3.824219 1.542969 -3.71875 1.542969 -3.585938 L 2.164062 -3.585938 L 2.164062 -2.917969 L 1.542969 -2.917969 L 1.542969 0 L 0.597656 0 L 0.597656 -2.917969 L 0.0703125 -2.917969 L 0.0703125 -3.585938 L 0.589844 -3.585938 L 0.589844 -3.820312 C 0.589844 -4.207031 0.652344 -4.472656 0.785156 -4.621094 C 0.921875 -4.835938 1.253906 -4.945312 1.777344 -4.945312 C 1.835938 -4.945312 1.890625 -4.945312 1.941406 -4.941406 Z M 1.941406 -4.941406 "/>
+<path style="stroke:none;" d="M 4.0625 1.125 L 4.0625 0.5 L -0.28125 0.5 L -0.28125 1.28125 L 4.0625 1.28125 Z M 4.0625 1.125 "/>
 </symbol>
 <symbol overflow="visible" id="glyph0-12">
-<path style="stroke:none;" d="M 4.960938 -3.609375 C 5.113281 -3.546875 5.253906 -3.4375 5.382812 -3.28125 C 5.484375 -3.15625 5.550781 -3 5.585938 -2.816406 C 5.609375 -2.695312 5.621094 -2.515625 5.621094 -2.28125 L 5.613281 0 L 4.644531 0 L 4.644531 -2.304688 C 4.644531 -2.441406 4.621094 -2.554688 4.578125 -2.644531 C 4.492188 -2.8125 4.339844 -2.898438 4.113281 -2.898438 C 3.851562 -2.898438 3.671875 -2.789062 3.570312 -2.570312 C 3.519531 -2.457031 3.496094 -2.316406 3.496094 -2.15625 L 3.496094 0 L 2.542969 0 L 2.542969 -2.15625 C 2.542969 -2.371094 2.519531 -2.527344 2.476562 -2.625 C 2.394531 -2.800781 2.238281 -2.886719 2.007812 -2.886719 C 1.738281 -2.886719 1.554688 -2.800781 1.460938 -2.625 C 1.410156 -2.523438 1.386719 -2.375 1.386719 -2.179688 L 1.386719 0 L 0.425781 0 L 0.425781 -3.613281 L 1.34375 -3.613281 L 1.34375 -3.085938 C 1.460938 -3.273438 1.574219 -3.410156 1.675781 -3.488281 C 1.859375 -3.628906 2.097656 -3.699219 2.390625 -3.699219 C 2.667969 -3.699219 2.890625 -3.640625 3.0625 -3.519531 C 3.199219 -3.40625 3.304688 -3.261719 3.375 -3.082031 C 3.5 -3.296875 3.652344 -3.453125 3.835938 -3.550781 C 4.03125 -3.652344 4.25 -3.699219 4.488281 -3.699219 C 4.648438 -3.699219 4.804688 -3.667969 4.960938 -3.609375 Z M 4.960938 -3.609375 "/>
+<path style="stroke:none;" d="M 2.265625 -3.125 L 2.265625 -3.921875 L 1.703125 -3.921875 L 1.703125 -4.109375 C 1.703125 -4.296875 1.640625 -4.234375 1.828125 -4.234375 C 1.90625 -4.234375 2.015625 -4.234375 2.234375 -4.1875 L 2.234375 -5.234375 C 1.921875 -5.265625 1.671875 -5.28125 1.546875 -5.28125 C 0.921875 -5.28125 0.46875 -4.8125 0.46875 -4.1875 L 0.46875 -3.921875 L -0.046875 -3.921875 L -0.046875 -2.96875 L 0.46875 -2.96875 L 0.46875 0 L 1.703125 0 L 1.703125 -2.96875 L 2.265625 -2.96875 Z M 2.265625 -3.125 "/>
 </symbol>
 <symbol overflow="visible" id="glyph0-13">
-<path style="stroke:none;" d="M 1.410156 0 L 0.460938 0 L 0.460938 -4.894531 L 1.410156 -4.894531 Z M 1.410156 0 "/>
+<path style="stroke:none;" d="M 5.734375 -0.15625 L 5.734375 -2.75 C 5.734375 -3.46875 5.171875 -4.046875 4.4375 -4.046875 C 3.96875 -4.046875 3.546875 -3.84375 3.375 -3.609375 C 3.28125 -3.8125 2.8125 -4.046875 2.359375 -4.046875 C 1.9375 -4.046875 1.5625 -3.859375 1.25 -3.484375 L 1.484375 -3.375 L 1.484375 -3.984375 L 0.265625 -3.984375 L 0.265625 0 L 1.5 0 L 1.5 -2.359375 C 1.5 -2.8125 1.609375 -2.921875 2.015625 -2.921875 C 2.328125 -2.921875 2.390625 -2.890625 2.390625 -2.609375 L 2.390625 0 L 3.609375 0 L 3.609375 -2.359375 C 3.609375 -2.8125 3.71875 -2.921875 4.125 -2.921875 C 4.453125 -2.921875 4.515625 -2.890625 4.515625 -2.609375 L 4.515625 0 L 5.734375 0 Z M 5.734375 -0.15625 "/>
 </symbol>
 <symbol overflow="visible" id="glyph0-14">
-<path style="stroke:none;" d="M 0.589844 0.695312 L 0.707031 0.699219 C 0.800781 0.703125 0.890625 0.703125 0.972656 0.691406 C 1.058594 0.679688 1.128906 0.65625 1.1875 0.613281 C 1.242188 0.578125 1.292969 0.5 1.339844 0.378906 C 1.386719 0.257812 1.40625 0.1875 1.398438 0.160156 L 0.0703125 -3.621094 L 1.121094 -3.621094 L 1.914062 -0.949219 L 2.660156 -3.621094 L 3.667969 -3.621094 L 2.425781 -0.0585938 C 2.1875 0.628906 1.996094 1.050781 1.855469 1.21875 C 1.71875 1.382812 1.4375 1.464844 1.019531 1.464844 C 0.9375 1.464844 0.867188 1.464844 0.816406 1.464844 C 0.765625 1.460938 0.691406 1.457031 0.589844 1.453125 Z M 0.589844 0.695312 "/>
+<path style="stroke:none;" d="M 1.546875 -0.15625 L 1.546875 -5.28125 L 0.3125 -5.28125 L 0.3125 0 L 1.546875 0 Z M 1.546875 -0.15625 "/>
 </symbol>
 <symbol overflow="visible" id="glyph0-15">
-<path style="stroke:none;" d="M 3.515625 -3.1875 C 3.785156 -2.84375 3.917969 -2.398438 3.917969 -1.855469 C 3.917969 -1.292969 3.785156 -0.828125 3.519531 -0.457031 C 3.253906 -0.0898438 2.882812 0.0976562 2.410156 0.0976562 C 2.109375 0.0976562 1.867188 0.0351562 1.6875 -0.0820312 C 1.578125 -0.152344 1.460938 -0.277344 1.335938 -0.457031 L 1.335938 0 L 0.410156 0 L 0.410156 -4.890625 L 1.351562 -4.890625 L 1.351562 -3.148438 C 1.472656 -3.316406 1.601562 -3.445312 1.746094 -3.535156 C 1.917969 -3.644531 2.136719 -3.699219 2.398438 -3.699219 C 2.875 -3.699219 3.246094 -3.527344 3.515625 -3.1875 Z M 2.722656 -0.980469 C 2.859375 -1.175781 2.925781 -1.4375 2.925781 -1.757812 C 2.925781 -2.015625 2.894531 -2.226562 2.828125 -2.394531 C 2.699219 -2.714844 2.46875 -2.875 2.128906 -2.875 C 1.785156 -2.875 1.550781 -2.71875 1.421875 -2.40625 C 1.355469 -2.238281 1.320312 -2.023438 1.320312 -1.761719 C 1.320312 -1.449219 1.390625 -1.195312 1.527344 -0.988281 C 1.664062 -0.785156 1.875 -0.683594 2.15625 -0.683594 C 2.398438 -0.683594 2.589844 -0.78125 2.722656 -0.980469 Z M 2.722656 -0.980469 "/>
+<path style="stroke:none;" d="M 3.65625 -3.984375 L 2.59375 -3.984375 L 1.78125 -1.140625 L 2.046875 -1.15625 L 1.1875 -3.984375 L -0.140625 -3.984375 L 1.296875 0 L 1.296875 0.015625 C 1.296875 0.359375 1.171875 0.46875 0.84375 0.46875 C 0.765625 0.46875 0.703125 0.46875 0.453125 0.390625 L 0.453125 1.453125 C 0.734375 1.484375 0.8125 1.484375 0.921875 1.484375 C 1.5625 1.484375 2.03125 1.21875 2.28125 0.515625 L 3.84375 -3.984375 Z M 3.65625 -3.984375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-16">
+<path style="stroke:none;" d="M 4.046875 -1.9375 C 4.046875 -2.984375 3.328125 -4.046875 2.359375 -4.046875 C 1.90625 -4.046875 1.484375 -3.828125 1.25 -3.46875 L 1.484375 -3.34375 L 1.484375 -5.28125 L 0.265625 -5.28125 L 0.265625 0 L 1.484375 0 L 1.484375 -0.578125 L 1.25 -0.46875 C 1.484375 -0.15625 1.90625 0.0625 2.359375 0.0625 C 3.234375 0.0625 4.046875 -0.84375 4.046875 -1.9375 Z M 2.828125 -1.984375 C 2.828125 -1.3125 2.625 -1.046875 2.15625 -1.046875 C 1.671875 -1.046875 1.484375 -1.3125 1.484375 -2 C 1.484375 -2.671875 1.671875 -2.9375 2.15625 -2.9375 C 2.625 -2.9375 2.828125 -2.671875 2.828125 -1.984375 Z M 2.828125 -1.984375 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-0">
-<path style="stroke:none;" d="M 2.222656 -3.128906 C 2.328125 -3.058594 2.433594 -2.957031 2.539062 -2.820312 L 2.539062 -3.230469 L 3.046875 -3.230469 L 3.046875 -0.265625 C 3.046875 0.148438 2.984375 0.476562 2.863281 0.714844 C 2.636719 1.15625 2.207031 1.378906 1.574219 1.378906 C 1.222656 1.378906 0.925781 1.300781 0.6875 1.144531 C 0.449219 0.988281 0.316406 0.738281 0.285156 0.40625 L 0.84375 0.40625 C 0.871094 0.550781 0.921875 0.664062 1 0.742188 C 1.125 0.863281 1.320312 0.925781 1.585938 0.925781 C 2.007812 0.925781 2.28125 0.777344 2.410156 0.480469 C 2.488281 0.304688 2.523438 -0.00390625 2.519531 -0.453125 C 2.410156 -0.285156 2.277344 -0.164062 2.121094 -0.0820312 C 1.96875 0 1.765625 0.0390625 1.511719 0.0390625 C 1.15625 0.0390625 0.847656 -0.0859375 0.582031 -0.335938 C 0.316406 -0.585938 0.1875 -1 0.1875 -1.582031 C 0.1875 -2.128906 0.320312 -2.554688 0.585938 -2.859375 C 0.851562 -3.164062 1.175781 -3.320312 1.554688 -3.320312 C 1.808594 -3.320312 2.03125 -3.257812 2.222656 -3.128906 Z M 2.289062 -2.542969 C 2.125 -2.738281 1.910156 -2.835938 1.652344 -2.835938 C 1.265625 -2.835938 1.003906 -2.652344 0.863281 -2.292969 C 0.789062 -2.101562 0.75 -1.847656 0.75 -1.535156 C 0.75 -1.167969 0.824219 -0.886719 0.972656 -0.695312 C 1.121094 -0.503906 1.324219 -0.40625 1.574219 -0.40625 C 1.96875 -0.40625 2.246094 -0.585938 2.40625 -0.941406 C 2.496094 -1.140625 2.539062 -1.375 2.539062 -1.644531 C 2.539062 -2.046875 2.457031 -2.347656 2.289062 -2.542969 Z M 2.289062 -2.542969 "/>
+<path style="stroke:none;" d=""/>
 </symbol>
 <symbol overflow="visible" id="glyph1-1">
-<path style="stroke:none;" d="M 2.433594 -3.171875 C 2.652344 -3.0625 2.816406 -2.921875 2.929688 -2.75 C 3.039062 -2.585938 3.113281 -2.394531 3.148438 -2.175781 C 3.179688 -2.023438 3.199219 -1.785156 3.199219 -1.457031 L 0.808594 -1.457031 C 0.816406 -1.125 0.894531 -0.859375 1.042969 -0.660156 C 1.1875 -0.460938 1.414062 -0.359375 1.71875 -0.359375 C 2.007812 -0.359375 2.234375 -0.453125 2.40625 -0.640625 C 2.503906 -0.75 2.570312 -0.878906 2.613281 -1.023438 L 3.152344 -1.023438 C 3.136719 -0.902344 3.089844 -0.769531 3.011719 -0.621094 C 2.929688 -0.476562 2.839844 -0.355469 2.742188 -0.261719 C 2.574219 -0.0976562 2.367188 0.0117188 2.121094 0.0664062 C 1.988281 0.0976562 1.839844 0.117188 1.675781 0.117188 C 1.269531 0.117188 0.925781 -0.03125 0.640625 -0.328125 C 0.359375 -0.621094 0.21875 -1.035156 0.21875 -1.566406 C 0.21875 -2.089844 0.363281 -2.515625 0.644531 -2.84375 C 0.929688 -3.171875 1.300781 -3.335938 1.761719 -3.335938 C 1.992188 -3.335938 2.214844 -3.28125 2.433594 -3.171875 Z M 2.632812 -1.890625 C 2.609375 -2.128906 2.558594 -2.316406 2.480469 -2.460938 C 2.328125 -2.722656 2.078125 -2.855469 1.726562 -2.855469 C 1.476562 -2.855469 1.265625 -2.765625 1.09375 -2.582031 C 0.921875 -2.402344 0.832031 -2.171875 0.820312 -1.890625 Z M 2.632812 -1.890625 "/>
+<path style="stroke:none;" d="M 3.25 -0.71875 L 3.25 -3.640625 L 2.359375 -3.640625 L 2.359375 -2.984375 L 2.703125 -3.109375 C 2.4375 -3.5 1.984375 -3.734375 1.578125 -3.734375 C 0.734375 -3.734375 -0.03125 -2.84375 -0.03125 -1.796875 C -0.03125 -0.765625 0.765625 0.09375 1.53125 0.09375 C 1.9375 0.09375 2.359375 -0.140625 2.703125 -0.546875 L 2.359375 -0.671875 L 2.359375 -0.46875 C 2.359375 0.40625 2.21875 0.546875 1.609375 0.546875 C 1.203125 0.546875 1.078125 0.59375 0.984375 0 L 0.0625 0 C 0.140625 0.796875 0.828125 1.359375 1.59375 1.359375 C 2.609375 1.359375 3.25 0.71875 3.25 -0.71875 Z M 2.3125 -1.796875 C 2.3125 -1.015625 2.1875 -0.765625 1.640625 -0.765625 C 1.0625 -0.765625 0.921875 -1.03125 0.921875 -1.828125 C 0.921875 -2.609375 1.078125 -2.875 1.625 -2.875 C 2.1875 -2.875 2.3125 -2.59375 2.3125 -1.796875 Z M 2.3125 -1.796875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-2">
-<path style="stroke:none;" d="M 0.402344 -3.261719 L 0.921875 -3.261719 L 0.921875 -2.796875 C 1.078125 -2.988281 1.242188 -3.125 1.414062 -3.210938 C 1.585938 -3.292969 1.777344 -3.335938 1.988281 -3.335938 C 2.453125 -3.335938 2.765625 -3.171875 2.925781 -2.851562 C 3.015625 -2.675781 3.058594 -2.421875 3.058594 -2.09375 L 3.058594 0 L 2.503906 0 L 2.503906 -2.054688 C 2.503906 -2.253906 2.472656 -2.414062 2.414062 -2.535156 C 2.316406 -2.738281 2.140625 -2.839844 1.886719 -2.839844 C 1.753906 -2.839844 1.648438 -2.828125 1.566406 -2.800781 C 1.414062 -2.757812 1.28125 -2.667969 1.167969 -2.535156 C 1.078125 -2.425781 1.019531 -2.316406 0.992188 -2.199219 C 0.964844 -2.085938 0.949219 -1.921875 0.949219 -1.707031 L 0.949219 0 L 0.402344 0 Z M 0.402344 -3.261719 "/>
+<path style="stroke:none;" d="M 3.390625 -1.671875 C 3.390625 -2.140625 3.359375 -2.4375 3.265625 -2.6875 C 3.0625 -3.21875 2.359375 -3.734375 1.75 -3.734375 C 0.828125 -3.734375 0.046875 -2.875 0.046875 -1.796875 C 0.046875 -0.734375 0.8125 0.09375 1.734375 0.09375 C 2.484375 0.09375 3.203125 -0.515625 3.359375 -1.359375 L 2.46875 -1.359375 C 2.25 -0.765625 2.171875 -0.765625 1.75 -0.765625 C 1.203125 -0.765625 1 -0.921875 0.984375 -1.484375 L 3.390625 -1.484375 Z M 2.78125 -2 C 2.78125 -2 2.5 -2.234375 2.53125 -2.28125 L 1.015625 -2.28125 C 1.046875 -2.671875 1.21875 -2.875 1.734375 -2.875 C 2.25 -2.875 2.4375 -2.640625 2.4375 -2.125 Z M 2.78125 -2 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-3">
-<path style="stroke:none;" d="M 0 0.78125 L 0 0.472656 L 3.46875 0.472656 L 3.46875 0.78125 Z M 0 0.78125 "/>
+<path style="stroke:none;" d="M 3.234375 -0.1875 L 3.234375 -2.65625 C 3.234375 -3.203125 2.625 -3.734375 2 -3.734375 C 1.515625 -3.734375 1.0625 -3.484375 0.765625 -3.03125 L 1.109375 -2.90625 L 1.109375 -3.640625 L 0.234375 -3.640625 L 0.234375 0 L 1.15625 0 L 1.15625 -1.984375 C 1.15625 -2.65625 1.3125 -2.90625 1.84375 -2.90625 C 2.25 -2.90625 2.3125 -2.84375 2.3125 -2.453125 L 2.3125 0 L 3.234375 0 Z M 3.234375 -0.1875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-4">
-<path style="stroke:none;" d="M 0.402344 -3.246094 L 0.960938 -3.246094 L 0.960938 0 L 0.402344 0 Z M 0.402344 -4.472656 L 0.960938 -4.472656 L 0.960938 -3.851562 L 0.402344 -3.851562 Z M 0.402344 -4.472656 "/>
+<path style="stroke:none;" d="M 3.796875 0.921875 L 3.796875 0.421875 L -0.34375 0.421875 L -0.34375 1.109375 L 3.796875 1.109375 Z M 3.796875 0.921875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-5">
-<path style="stroke:none;" d="M 0.972656 -0.714844 C 1.121094 -0.480469 1.355469 -0.363281 1.683594 -0.363281 C 1.9375 -0.363281 2.144531 -0.472656 2.308594 -0.691406 C 2.472656 -0.910156 2.554688 -1.222656 2.554688 -1.628906 C 2.554688 -2.042969 2.46875 -2.347656 2.300781 -2.542969 C 2.132812 -2.742188 1.925781 -2.839844 1.679688 -2.839844 C 1.402344 -2.839844 1.179688 -2.734375 1.007812 -2.523438 C 0.835938 -2.3125 0.75 -2.003906 0.75 -1.59375 C 0.75 -1.242188 0.824219 -0.949219 0.972656 -0.714844 Z M 2.203125 -3.160156 C 2.300781 -3.101562 2.410156 -2.992188 2.535156 -2.839844 L 2.535156 -4.488281 L 3.058594 -4.488281 L 3.058594 0 L 2.566406 0 L 2.566406 -0.453125 C 2.4375 -0.253906 2.289062 -0.109375 2.113281 -0.0195312 C 1.9375 0.0703125 1.738281 0.117188 1.511719 0.117188 C 1.148438 0.117188 0.835938 -0.0351562 0.570312 -0.34375 C 0.304688 -0.648438 0.171875 -1.054688 0.171875 -1.5625 C 0.171875 -2.039062 0.292969 -2.449219 0.535156 -2.796875 C 0.777344 -3.144531 1.125 -3.320312 1.574219 -3.320312 C 1.824219 -3.320312 2.03125 -3.265625 2.203125 -3.160156 Z M 2.203125 -3.160156 "/>
+<path style="stroke:none;" d="M 1.15625 -0.1875 L 1.15625 -3.640625 L 0.234375 -3.640625 L 0.234375 0 L 1.15625 0 Z M 1.21875 -3.953125 L 1.21875 -4.78125 L 0.171875 -4.78125 L 0.171875 -3.765625 L 1.21875 -3.765625 Z M 1.21875 -3.953125 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-6">
+<path style="stroke:none;" d="M 3.28125 -0.1875 L 3.28125 -4.921875 L 2.359375 -4.921875 L 2.359375 -3.046875 L 2.703125 -3.171875 C 2.484375 -3.5 2 -3.734375 1.5625 -3.734375 C 0.71875 -3.734375 -0.046875 -2.890625 -0.046875 -1.859375 C -0.046875 -0.75 0.703125 0.09375 1.578125 0.09375 C 2.03125 0.09375 2.484375 -0.125 2.765625 -0.53125 L 2.421875 -0.671875 L 2.421875 0 L 3.28125 0 Z M 2.359375 -1.8125 C 2.359375 -1.046875 2.203125 -0.765625 1.65625 -0.765625 C 1.078125 -0.765625 0.90625 -1.0625 0.90625 -1.828125 C 0.90625 -2.578125 1.078125 -2.875 1.65625 -2.875 C 2.21875 -2.875 2.359375 -2.5625 2.359375 -1.8125 Z M 2.359375 -1.8125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-7">
 <path style="stroke:none;" d=""/>
 </symbol>
-<symbol overflow="visible" id="glyph1-7">
-<path style="stroke:none;" d="M 0.828125 -4.472656 L 2.113281 -0.664062 L 3.382812 -4.472656 L 4.0625 -4.472656 L 2.429688 0 L 1.789062 0 L 0.160156 -4.472656 Z M 0.828125 -4.472656 "/>
-</symbol>
 <symbol overflow="visible" id="glyph1-8">
-<path style="stroke:none;" d="M 2.769531 -1.832031 L 2.09375 -3.808594 L 1.371094 -1.832031 Z M 1.773438 -4.472656 L 2.460938 -4.472656 L 4.082031 0 L 3.417969 0 L 2.964844 -1.339844 L 1.195312 -1.339844 L 0.710938 0 L 0.0898438 0 Z M 1.773438 -4.472656 "/>
+<path style="stroke:none;" d="M 4.015625 -4.921875 L 3.265625 -4.921875 L 1.9375 -0.890625 L 2.34375 -0.890625 L 0.9375 -4.921875 L -0.078125 -4.921875 L 1.6875 0 L 2.578125 0 L 4.28125 -4.921875 Z M 4.015625 -4.921875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-9">
-<path style="stroke:none;" d="M 2.554688 -2.425781 C 2.839844 -2.425781 3.0625 -2.480469 3.230469 -2.59375 C 3.394531 -2.707031 3.476562 -2.914062 3.476562 -3.210938 C 3.476562 -3.527344 3.363281 -3.746094 3.128906 -3.859375 C 3.007812 -3.921875 2.839844 -3.953125 2.632812 -3.953125 L 1.152344 -3.953125 L 1.152344 -2.425781 Z M 0.546875 -4.472656 L 2.617188 -4.472656 C 2.960938 -4.472656 3.242188 -4.421875 3.460938 -4.324219 C 3.882812 -4.132812 4.09375 -3.78125 4.09375 -3.265625 C 4.09375 -3 4.039062 -2.78125 3.925781 -2.609375 C 3.816406 -2.4375 3.660156 -2.300781 3.460938 -2.199219 C 3.636719 -2.128906 3.769531 -2.035156 3.855469 -1.917969 C 3.945312 -1.800781 3.992188 -1.613281 4.003906 -1.355469 L 4.027344 -0.753906 C 4.03125 -0.585938 4.046875 -0.457031 4.066406 -0.375 C 4.105469 -0.234375 4.167969 -0.140625 4.261719 -0.101562 L 4.261719 0 L 3.519531 0 C 3.5 -0.0390625 3.484375 -0.0898438 3.472656 -0.148438 C 3.460938 -0.210938 3.449219 -0.328125 3.441406 -0.503906 L 3.40625 -1.25 C 3.390625 -1.542969 3.28125 -1.738281 3.078125 -1.835938 C 2.960938 -1.890625 2.78125 -1.917969 2.535156 -1.917969 L 1.152344 -1.917969 L 1.152344 0 L 0.546875 0 Z M 0.546875 -4.472656 "/>
+<path style="stroke:none;" d="M 4.265625 -0.1875 L 2.609375 -4.921875 L 1.578125 -4.921875 L -0.171875 0 L 0.859375 0 L 1.328125 -1.359375 L 2.8125 -1.359375 L 3.28125 0 L 4.328125 0 Z M 2.796875 -2.21875 L 1.609375 -2.21875 L 2.296875 -4.109375 L 1.890625 -4.109375 L 2.53125 -2.21875 Z M 2.796875 -2.21875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-10">
-<path style="stroke:none;" d="M 3.679688 -4.148438 C 3.992188 -3.847656 4.164062 -3.511719 4.199219 -3.128906 L 3.609375 -3.128906 C 3.542969 -3.417969 3.40625 -3.648438 3.207031 -3.816406 C 3.007812 -3.984375 2.726562 -4.066406 2.367188 -4.066406 C 1.925781 -4.066406 1.570312 -3.914062 1.296875 -3.605469 C 1.027344 -3.292969 0.890625 -2.820312 0.890625 -2.179688 C 0.890625 -1.65625 1.015625 -1.230469 1.257812 -0.90625 C 1.503906 -0.582031 1.867188 -0.417969 2.355469 -0.417969 C 2.800781 -0.417969 3.140625 -0.589844 3.375 -0.933594 C 3.5 -1.113281 3.589844 -1.351562 3.652344 -1.644531 L 4.242188 -1.644531 C 4.1875 -1.171875 4.015625 -0.777344 3.71875 -0.460938 C 3.363281 -0.078125 2.882812 0.117188 2.28125 0.117188 C 1.761719 0.117188 1.324219 -0.0429688 0.972656 -0.355469 C 0.507812 -0.773438 0.273438 -1.414062 0.273438 -2.285156 C 0.273438 -2.945312 0.449219 -3.484375 0.796875 -3.90625 C 1.175781 -4.367188 1.695312 -4.59375 2.359375 -4.59375 C 2.925781 -4.59375 3.367188 -4.445312 3.679688 -4.148438 Z M 3.679688 -4.148438 "/>
+<path style="stroke:none;" d="M 4.4375 -0.1875 L 4.4375 -0.421875 C 4.15625 -0.609375 4.171875 -0.640625 4.15625 -1.25 C 4.140625 -2 3.828125 -2.40625 3.34375 -2.625 L 3.34375 -2.25 C 3.859375 -2.5 4.265625 -3 4.265625 -3.515625 C 4.265625 -4.296875 3.5625 -4.921875 2.671875 -4.921875 L 0.375 -4.921875 L 0.375 0 L 1.359375 0 L 1.359375 -1.953125 L 2.65625 -1.953125 C 3.171875 -1.953125 3.203125 -1.90625 3.203125 -1.34375 L 3.1875 -0.9375 C 3.1875 -0.65625 3.234375 -0.375 3.40625 0 L 4.4375 0 Z M 3.25 -3.4375 C 3.25 -2.90625 3.171875 -2.84375 2.5625 -2.84375 L 1.359375 -2.84375 L 1.359375 -4.03125 L 2.5625 -4.03125 C 3.203125 -4.03125 3.25 -3.953125 3.25 -3.4375 Z M 3.25 -3.4375 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-11">
-<path style="stroke:none;" d="M 0.492188 -4.472656 L 1.101562 -4.472656 L 1.101562 -2.625 L 3.429688 -2.625 L 3.429688 -4.472656 L 4.039062 -4.472656 L 4.039062 0 L 3.429688 0 L 3.429688 -2.09375 L 1.101562 -2.09375 L 1.101562 0 L 0.492188 0 Z M 0.492188 -4.472656 "/>
+<path style="stroke:none;" d="M 4.21875 -2.03125 L 3.453125 -2.03125 C 3.28125 -1 3.125 -0.765625 2.359375 -0.765625 C 1.453125 -0.765625 1.078125 -1.28125 1.078125 -2.40625 C 1.078125 -3.578125 1.421875 -4.140625 2.3125 -4.140625 C 3.015625 -4.140625 3.1875 -4.015625 3.375 -3.140625 L 4.359375 -3.140625 C 4.140625 -4.328125 3.375 -5.03125 2.375 -5.03125 C 1 -5.03125 0.09375 -3.734375 0.09375 -2.40625 C 0.09375 -1.078125 1.015625 0.109375 2.34375 0.109375 C 3.453125 0.109375 4.28125 -0.65625 4.4375 -2.03125 Z M 4.21875 -2.03125 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-12">
-<path style="stroke:none;" d="M 1.84375 -4.546875 C 1.527344 -3.925781 1.320312 -3.472656 1.222656 -3.179688 C 1.078125 -2.734375 1.007812 -2.222656 1.007812 -1.636719 C 1.007812 -1.050781 1.089844 -0.511719 1.253906 -0.0234375 C 1.355469 0.277344 1.554688 0.707031 1.855469 1.273438 L 1.484375 1.273438 C 1.1875 0.808594 1.007812 0.515625 0.933594 0.386719 C 0.863281 0.257812 0.785156 0.0859375 0.703125 -0.132812 C 0.589844 -0.433594 0.511719 -0.753906 0.464844 -1.097656 C 0.441406 -1.273438 0.433594 -1.441406 0.433594 -1.601562 C 0.433594 -2.203125 0.527344 -2.738281 0.714844 -3.207031 C 0.835938 -3.503906 1.085938 -3.953125 1.464844 -4.546875 Z M 1.84375 -4.546875 "/>
+<path style="stroke:none;" d="M 4.21875 -0.1875 L 4.21875 -4.921875 L 3.234375 -4.921875 L 3.234375 -2.953125 L 1.296875 -2.953125 L 1.296875 -4.921875 L 0.3125 -4.921875 L 0.3125 0 L 1.296875 0 L 1.296875 -2.0625 L 3.234375 -2.0625 L 3.234375 0 L 4.21875 0 Z M 4.21875 -0.1875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-13">
-<path style="stroke:none;" d="M 0.429688 -0.980469 C 0.5625 -1.257812 0.828125 -1.511719 1.21875 -1.738281 L 1.800781 -2.078125 C 2.0625 -2.230469 2.25 -2.359375 2.355469 -2.464844 C 2.519531 -2.632812 2.601562 -2.828125 2.601562 -3.046875 C 2.601562 -3.300781 2.527344 -3.5 2.375 -3.648438 C 2.222656 -3.796875 2.019531 -3.875 1.765625 -3.875 C 1.390625 -3.875 1.128906 -3.730469 0.988281 -3.445312 C 0.910156 -3.292969 0.867188 -3.082031 0.859375 -2.8125 L 0.300781 -2.8125 C 0.308594 -3.191406 0.378906 -3.503906 0.511719 -3.742188 C 0.75 -4.164062 1.167969 -4.375 1.769531 -4.375 C 2.269531 -4.375 2.632812 -4.242188 2.863281 -3.972656 C 3.09375 -3.703125 3.210938 -3.398438 3.210938 -3.070312 C 3.210938 -2.71875 3.085938 -2.421875 2.839844 -2.175781 C 2.699219 -2.03125 2.445312 -1.855469 2.078125 -1.652344 L 1.660156 -1.417969 C 1.460938 -1.308594 1.304688 -1.203125 1.191406 -1.105469 C 0.988281 -0.929688 0.859375 -0.734375 0.808594 -0.519531 L 3.1875 -0.519531 L 3.1875 0 L 0.195312 0 C 0.214844 -0.375 0.292969 -0.703125 0.429688 -0.980469 Z M 0.429688 -0.980469 "/>
+<path style="stroke:none;" d="M 1.953125 1 C 1.40625 0.109375 1.15625 -0.796875 1.15625 -1.796875 C 1.15625 -2.796875 1.40625 -3.71875 2.15625 -4.921875 L 1.375 -4.921875 C 0.703125 -4.046875 0.25 -2.78125 0.25 -1.796875 C 0.25 -0.8125 0.703125 0.453125 1.375 1.328125 L 2.140625 1.328125 Z M 1.953125 1 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-14">
-<path style="stroke:none;" d="M 0.769531 -1.113281 C 0.808594 -0.800781 0.953125 -0.582031 1.207031 -0.460938 C 1.335938 -0.402344 1.484375 -0.371094 1.65625 -0.371094 C 1.980469 -0.371094 2.222656 -0.476562 2.378906 -0.683594 C 2.535156 -0.890625 2.613281 -1.117188 2.613281 -1.371094 C 2.613281 -1.675781 2.519531 -1.910156 2.335938 -2.078125 C 2.148438 -2.242188 1.925781 -2.328125 1.664062 -2.328125 C 1.476562 -2.328125 1.316406 -2.289062 1.179688 -2.214844 C 1.042969 -2.144531 0.929688 -2.042969 0.835938 -1.914062 L 0.359375 -1.941406 L 0.691406 -4.289062 L 2.957031 -4.289062 L 2.957031 -3.757812 L 1.101562 -3.757812 L 0.917969 -2.546875 C 1.019531 -2.625 1.113281 -2.679688 1.207031 -2.71875 C 1.367188 -2.785156 1.554688 -2.820312 1.769531 -2.820312 C 2.167969 -2.820312 2.507812 -2.691406 2.785156 -2.433594 C 3.0625 -2.175781 3.203125 -1.847656 3.203125 -1.453125 C 3.203125 -1.039062 3.074219 -0.675781 2.820312 -0.363281 C 2.566406 -0.046875 2.160156 0.109375 1.601562 0.109375 C 1.246094 0.109375 0.933594 0.0078125 0.660156 -0.191406 C 0.386719 -0.390625 0.234375 -0.699219 0.199219 -1.113281 Z M 0.769531 -1.113281 "/>
+<path style="stroke:none;" d="M 3.390625 -3.3125 C 3.390625 -4.0625 2.609375 -4.796875 1.765625 -4.796875 C 0.859375 -4.796875 0.140625 -4.15625 0.09375 -2.890625 L 1.046875 -2.890625 C 1.109375 -3.8125 1.203125 -3.9375 1.75 -3.9375 C 2.25 -3.9375 2.421875 -3.765625 2.421875 -3.296875 C 2.421875 -2.953125 2.28125 -2.78125 1.875 -2.5625 L 1.3125 -2.234375 C 0.390625 -1.703125 0.0625 -1.171875 0 0 L 3.359375 0 L 3.359375 -0.921875 L 1.046875 -0.921875 C 1.078125 -1.09375 1.21875 -1.1875 1.765625 -1.515625 L 2.390625 -1.84375 C 3 -2.171875 3.390625 -2.765625 3.390625 -3.3125 Z M 3.390625 -3.3125 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-15">
-<path style="stroke:none;" d="M 0.214844 1.273438 C 0.539062 0.644531 0.746094 0.183594 0.839844 -0.105469 C 0.980469 -0.539062 1.054688 -1.050781 1.054688 -1.636719 C 1.054688 -2.222656 0.972656 -2.761719 0.808594 -3.25 C 0.707031 -3.550781 0.503906 -3.980469 0.207031 -4.546875 L 0.574219 -4.546875 C 0.886719 -4.046875 1.078125 -3.738281 1.144531 -3.621094 C 1.210938 -3.503906 1.28125 -3.34375 1.359375 -3.140625 C 1.457031 -2.886719 1.523438 -2.636719 1.566406 -2.386719 C 1.609375 -2.140625 1.628906 -1.902344 1.628906 -1.671875 C 1.628906 -1.070312 1.535156 -0.535156 1.34375 -0.0625 C 1.222656 0.238281 0.972656 0.683594 0.597656 1.273438 Z M 0.214844 1.273438 "/>
+<path style="stroke:none;" d="M 3.390625 -1.65625 C 3.390625 -2.53125 2.625 -3.28125 1.765625 -3.28125 C 1.453125 -3.28125 1.0625 -3.140625 1.21875 -3.25 L 1.296875 -3.78125 L 3.171875 -3.78125 L 3.171875 -4.703125 L 0.5 -4.703125 L 0.125 -2.015625 L 0.953125 -2.015625 C 1.25 -2.375 1.328125 -2.421875 1.671875 -2.421875 C 2.265625 -2.421875 2.4375 -2.234375 2.4375 -1.578125 C 2.4375 -0.9375 2.265625 -0.765625 1.671875 -0.765625 C 1.1875 -0.765625 1.09375 -0.828125 0.921875 -1.515625 L -0.03125 -1.515625 C 0.1875 -0.4375 0.890625 0.09375 1.6875 0.09375 C 2.578125 0.09375 3.390625 -0.71875 3.390625 -1.65625 Z M 3.390625 -1.65625 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-16">
-<path style="stroke:none;" d="M 0.726562 -1.023438 C 0.742188 -0.839844 0.789062 -0.699219 0.863281 -0.601562 C 1.003906 -0.425781 1.242188 -0.339844 1.582031 -0.339844 C 1.785156 -0.339844 1.964844 -0.382812 2.121094 -0.46875 C 2.273438 -0.558594 2.351562 -0.695312 2.351562 -0.878906 C 2.351562 -1.019531 2.289062 -1.125 2.164062 -1.199219 C 2.085938 -1.246094 1.929688 -1.296875 1.695312 -1.355469 L 1.261719 -1.464844 C 0.984375 -1.535156 0.777344 -1.609375 0.644531 -1.695312 C 0.410156 -1.84375 0.292969 -2.050781 0.292969 -2.3125 C 0.292969 -2.621094 0.402344 -2.871094 0.625 -3.058594 C 0.847656 -3.25 1.148438 -3.347656 1.523438 -3.347656 C 2.015625 -3.347656 2.367188 -3.203125 2.585938 -2.914062 C 2.722656 -2.730469 2.789062 -2.535156 2.78125 -2.324219 L 2.265625 -2.324219 C 2.253906 -2.449219 2.210938 -2.558594 2.132812 -2.660156 C 2.007812 -2.804688 1.789062 -2.878906 1.480469 -2.878906 C 1.273438 -2.878906 1.117188 -2.839844 1.007812 -2.757812 C 0.902344 -2.679688 0.847656 -2.574219 0.847656 -2.445312 C 0.847656 -2.304688 0.917969 -2.1875 1.058594 -2.105469 C 1.140625 -2.054688 1.261719 -2.007812 1.417969 -1.96875 L 1.78125 -1.882812 C 2.175781 -1.785156 2.4375 -1.695312 2.574219 -1.605469 C 2.785156 -1.464844 2.894531 -1.246094 2.894531 -0.945312 C 2.894531 -0.652344 2.78125 -0.402344 2.5625 -0.191406 C 2.34375 0.0195312 2.007812 0.125 1.554688 0.125 C 1.070312 0.125 0.726562 0.015625 0.523438 -0.207031 C 0.324219 -0.425781 0.214844 -0.699219 0.199219 -1.023438 Z M 0.726562 -1.023438 "/>
+<path style="stroke:none;" d="M 1.796875 -1.796875 C 1.796875 -2.78125 1.34375 -4.046875 0.671875 -4.921875 L -0.09375 -4.921875 C 0.640625 -3.703125 0.890625 -2.796875 0.890625 -1.796875 C 0.890625 -0.796875 0.640625 0.125 -0.109375 1.328125 L 0.671875 1.328125 C 1.34375 0.453125 1.796875 -0.8125 1.796875 -1.796875 Z M 1.796875 -1.796875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-17">
-<path style="stroke:none;" d="M 2.4375 -3.261719 L 3.046875 -3.261719 C 2.96875 -3.050781 2.796875 -2.574219 2.53125 -1.828125 C 2.332031 -1.269531 2.164062 -0.8125 2.03125 -0.460938 C 1.714844 0.371094 1.492188 0.878906 1.359375 1.0625 C 1.230469 1.246094 1.007812 1.335938 0.691406 1.335938 C 0.613281 1.335938 0.554688 1.332031 0.511719 1.328125 C 0.472656 1.320312 0.421875 1.308594 0.359375 1.292969 L 0.359375 0.792969 C 0.453125 0.820312 0.523438 0.835938 0.566406 0.84375 C 0.609375 0.851562 0.648438 0.851562 0.679688 0.851562 C 0.78125 0.851562 0.855469 0.835938 0.902344 0.800781 C 0.949219 0.769531 0.992188 0.726562 1.023438 0.679688 C 1.035156 0.664062 1.070312 0.578125 1.132812 0.429688 C 1.195312 0.277344 1.242188 0.167969 1.269531 0.09375 L 0.0625 -3.261719 L 0.683594 -3.261719 L 1.558594 -0.605469 Z M 2.4375 -3.261719 "/>
+<path style="stroke:none;" d="M 3.0625 -1.109375 C 3.0625 -1.59375 2.59375 -2.015625 1.9375 -2.171875 L 1.4375 -2.296875 C 1.015625 -2.390625 1.03125 -2.34375 1.03125 -2.578125 C 1.03125 -2.875 1.109375 -2.875 1.53125 -2.875 C 1.9375 -2.875 1.96875 -2.890625 1.984375 -2.359375 L 2.9375 -2.359375 C 2.921875 -3.1875 2.296875 -3.734375 1.546875 -3.734375 C 0.78125 -3.734375 0.09375 -3.15625 0.09375 -2.546875 C 0.09375 -2.03125 0.5625 -1.609375 1.328125 -1.421875 L 1.8125 -1.296875 C 2.171875 -1.21875 2.109375 -1.296875 2.109375 -1.0625 C 2.109375 -0.75 2.015625 -0.765625 1.5625 -0.765625 C 1.09375 -0.765625 1.03125 -0.6875 0.9375 -1.375 L 0 -1.375 C 0.03125 -0.4375 0.65625 0.09375 1.515625 0.09375 C 2.34375 0.09375 3.0625 -0.46875 3.0625 -1.109375 Z M 3.0625 -1.109375 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-18">
-<path style="stroke:none;" d="M 0.402344 -3.261719 L 0.945312 -3.261719 L 0.945312 -2.796875 C 1.074219 -2.957031 1.191406 -3.074219 1.296875 -3.148438 C 1.476562 -3.273438 1.683594 -3.335938 1.914062 -3.335938 C 2.171875 -3.335938 2.382812 -3.269531 2.539062 -3.140625 C 2.628906 -3.070312 2.710938 -2.960938 2.78125 -2.820312 C 2.90625 -2.996094 3.046875 -3.125 3.210938 -3.207031 C 3.375 -3.292969 3.5625 -3.335938 3.765625 -3.335938 C 4.203125 -3.335938 4.503906 -3.175781 4.660156 -2.859375 C 4.746094 -2.6875 4.789062 -2.460938 4.789062 -2.171875 L 4.789062 0 L 4.21875 0 L 4.21875 -2.265625 C 4.21875 -2.484375 4.167969 -2.632812 4.058594 -2.714844 C 3.949219 -2.792969 3.816406 -2.835938 3.660156 -2.835938 C 3.445312 -2.835938 3.257812 -2.761719 3.105469 -2.617188 C 2.949219 -2.472656 2.871094 -2.234375 2.871094 -1.898438 L 2.871094 0 L 2.3125 0 L 2.3125 -2.128906 C 2.3125 -2.351562 2.289062 -2.511719 2.234375 -2.613281 C 2.152344 -2.765625 1.996094 -2.839844 1.769531 -2.839844 C 1.5625 -2.839844 1.375 -2.761719 1.203125 -2.601562 C 1.035156 -2.441406 0.949219 -2.148438 0.949219 -1.730469 L 0.949219 0 L 0.402344 0 Z M 0.402344 -3.261719 "/>
+<path style="stroke:none;" d="M 2.984375 -3.640625 L 2.28125 -3.640625 L 1.3125 -0.921875 L 1.71875 -0.90625 L 0.8125 -3.640625 L -0.140625 -3.640625 L 1.015625 -0.1875 L 0.828125 0.328125 C 0.734375 0.5625 0.828125 0.46875 0.609375 0.46875 C 0.53125 0.46875 0.453125 0.46875 0.125 0.390625 L 0.125 1.1875 C 0.296875 1.28125 0.546875 1.359375 0.6875 1.359375 C 1.046875 1.359375 1.546875 0.96875 1.734375 0.5 L 3.25 -3.640625 Z M 2.984375 -3.640625 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-19">
-<path style="stroke:none;" d="M 0.359375 -4.488281 L 0.890625 -4.488281 L 0.890625 -2.867188 C 1.011719 -3.023438 1.15625 -3.140625 1.320312 -3.222656 C 1.488281 -3.304688 1.667969 -3.347656 1.863281 -3.347656 C 2.269531 -3.347656 2.597656 -3.207031 2.851562 -2.929688 C 3.105469 -2.648438 3.230469 -2.238281 3.230469 -1.691406 C 3.230469 -1.175781 3.105469 -0.75 2.855469 -0.40625 C 2.605469 -0.0664062 2.261719 0.105469 1.816406 0.105469 C 1.570312 0.105469 1.359375 0.0429688 1.191406 -0.0742188 C 1.089844 -0.148438 0.980469 -0.261719 0.863281 -0.417969 L 0.863281 0 L 0.359375 0 Z M 2.449219 -0.734375 C 2.597656 -0.96875 2.671875 -1.28125 2.671875 -1.664062 C 2.671875 -2.007812 2.597656 -2.292969 2.449219 -2.519531 C 2.300781 -2.742188 2.085938 -2.855469 1.800781 -2.855469 C 1.550781 -2.855469 1.332031 -2.765625 1.144531 -2.578125 C 0.957031 -2.394531 0.863281 -2.089844 0.863281 -1.664062 C 0.863281 -1.359375 0.898438 -1.109375 0.976562 -0.917969 C 1.121094 -0.558594 1.390625 -0.378906 1.785156 -0.378906 C 2.082031 -0.378906 2.300781 -0.5 2.449219 -0.734375 Z M 2.449219 -0.734375 "/>
+<path style="stroke:none;" d="M 4.9375 -0.1875 L 4.9375 -2.640625 C 4.9375 -3.21875 4.40625 -3.734375 3.796875 -3.734375 C 3.359375 -3.734375 2.96875 -3.546875 2.828125 -3.375 C 2.75 -3.53125 2.34375 -3.734375 1.921875 -3.734375 C 1.484375 -3.734375 1.046875 -3.515625 0.765625 -3.125 L 1.109375 -3 L 1.109375 -3.640625 L 0.234375 -3.640625 L 0.234375 0 L 1.15625 0 L 1.15625 -2.234375 C 1.15625 -2.71875 1.296875 -2.90625 1.734375 -2.90625 C 2.109375 -2.90625 2.125 -2.859375 2.125 -2.4375 L 2.125 0 L 3.046875 0 L 3.046875 -2.234375 C 3.046875 -2.71875 3.203125 -2.90625 3.625 -2.90625 C 4 -2.90625 4.015625 -2.84375 4.015625 -2.4375 L 4.015625 0 L 4.9375 0 Z M 4.9375 -0.1875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-20">
-<path style="stroke:none;" d="M 2.445312 -0.765625 C 2.578125 -1.039062 2.644531 -1.347656 2.644531 -1.683594 C 2.644531 -1.988281 2.597656 -2.234375 2.5 -2.425781 C 2.34375 -2.726562 2.078125 -2.878906 1.703125 -2.878906 C 1.367188 -2.878906 1.125 -2.75 0.972656 -2.492188 C 0.820312 -2.238281 0.742188 -1.929688 0.742188 -1.566406 C 0.742188 -1.21875 0.820312 -0.933594 0.972656 -0.699219 C 1.125 -0.46875 1.363281 -0.351562 1.695312 -0.351562 C 2.058594 -0.351562 2.308594 -0.492188 2.445312 -0.765625 Z M 2.78125 -2.933594 C 3.074219 -2.65625 3.21875 -2.242188 3.21875 -1.699219 C 3.21875 -1.171875 3.089844 -0.738281 2.835938 -0.394531 C 2.578125 -0.0507812 2.183594 0.117188 1.644531 0.117188 C 1.195312 0.117188 0.839844 -0.03125 0.574219 -0.335938 C 0.3125 -0.640625 0.179688 -1.046875 0.179688 -1.558594 C 0.179688 -2.105469 0.320312 -2.542969 0.597656 -2.867188 C 0.875 -3.191406 1.25 -3.355469 1.71875 -3.355469 C 2.136719 -3.355469 2.492188 -3.214844 2.78125 -2.933594 Z M 2.78125 -2.933594 "/>
+<path style="stroke:none;" d="M 3.453125 -1.859375 C 3.453125 -2.921875 2.71875 -3.734375 1.859375 -3.734375 C 1.421875 -3.734375 0.953125 -3.515625 0.703125 -3.140625 L 1.046875 -3.015625 L 1.046875 -4.921875 L 0.125 -4.921875 L 0.125 0 L 1 0 L 1 -0.65625 L 0.65625 -0.53125 C 0.90625 -0.140625 1.390625 0.09375 1.84375 0.09375 C 2.703125 0.09375 3.453125 -0.796875 3.453125 -1.859375 Z M 2.515625 -1.828125 C 2.515625 -1.078125 2.328125 -0.765625 1.765625 -0.765625 C 1.21875 -0.765625 1.046875 -1.078125 1.046875 -1.828125 C 1.046875 -2.59375 1.21875 -2.90625 1.765625 -2.875 C 2.34375 -2.875 2.515625 -2.5625 2.515625 -1.828125 Z M 2.515625 -1.828125 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-21">
-<path style="stroke:none;" d="M 0.417969 -4.472656 L 0.964844 -4.472656 L 0.964844 0 L 0.417969 0 Z M 0.417969 -4.472656 "/>
+<path style="stroke:none;" d="M 3.375 -1.796875 C 3.375 -2.921875 2.640625 -3.734375 1.703125 -3.734375 C 0.78125 -3.734375 0.015625 -2.921875 0.015625 -1.828125 C 0.015625 -0.71875 0.765625 0.09375 1.703125 0.09375 C 2.625 0.09375 3.375 -0.71875 3.375 -1.796875 Z M 2.4375 -1.796875 C 2.4375 -1.03125 2.28125 -0.765625 1.703125 -0.765625 C 1.125 -0.765625 0.96875 -1.03125 0.96875 -1.828125 C 0.96875 -2.609375 1.125 -2.875 1.703125 -2.875 C 2.28125 -2.875 2.4375 -2.609375 2.4375 -1.796875 Z M 2.4375 -1.796875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-22">
-<path style="stroke:none;" d="M 0.949219 -3.839844 L 0.402344 -3.839844 L 0.402344 -4.472656 L 0.949219 -4.472656 Z M -0.117188 0.824219 C 0.128906 0.816406 0.277344 0.796875 0.328125 0.757812 C 0.378906 0.722656 0.402344 0.613281 0.402344 0.425781 L 0.402344 -3.246094 L 0.949219 -3.246094 L 0.949219 0.484375 C 0.949219 0.722656 0.910156 0.898438 0.835938 1.015625 C 0.707031 1.214844 0.464844 1.316406 0.105469 1.316406 C 0.078125 1.316406 0.0507812 1.3125 0.0234375 1.3125 C -0.0078125 1.308594 -0.0546875 1.304688 -0.117188 1.300781 Z M -0.117188 0.824219 "/>
+<path style="stroke:none;" d="M 1.140625 -0.1875 L 1.140625 -4.921875 L 0.21875 -4.921875 L 0.21875 0 L 1.140625 0 Z M 1.140625 -0.1875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-23">
-<path style="stroke:none;" d="M 0.53125 -4.472656 L 2.546875 -4.472656 C 2.945312 -4.472656 3.265625 -4.359375 3.507812 -4.136719 C 3.75 -3.914062 3.875 -3.597656 3.875 -3.191406 C 3.875 -2.84375 3.765625 -2.539062 3.546875 -2.277344 C 3.328125 -2.019531 2.996094 -1.890625 2.546875 -1.890625 L 1.140625 -1.890625 L 1.140625 0 L 0.53125 0 Z M 2.894531 -3.859375 C 2.761719 -3.921875 2.578125 -3.953125 2.34375 -3.953125 L 1.140625 -3.953125 L 1.140625 -2.402344 L 2.34375 -2.402344 C 2.617188 -2.402344 2.835938 -2.460938 3.007812 -2.574219 C 3.175781 -2.691406 3.261719 -2.894531 3.261719 -3.1875 C 3.261719 -3.515625 3.140625 -3.742188 2.894531 -3.859375 Z M 2.894531 -3.859375 "/>
+<path style="stroke:none;" d="M 3.453125 -1.796875 C 3.453125 -2.890625 2.71875 -3.734375 1.859375 -3.734375 C 1.421875 -3.734375 0.921875 -3.484375 0.671875 -3.09375 L 1.015625 -2.96875 L 1.015625 -3.640625 L 0.140625 -3.640625 L 0.140625 1.359375 L 1.0625 1.359375 L 1.0625 -0.578125 L 0.71875 -0.453125 C 0.984375 -0.109375 1.4375 0.09375 1.859375 0.09375 C 2.703125 0.09375 3.453125 -0.75 3.453125 -1.796875 Z M 2.515625 -1.796875 C 2.515625 -1.0625 2.34375 -0.765625 1.765625 -0.765625 C 1.21875 -0.765625 1.0625 -1.03125 1.0625 -1.796875 C 1.0625 -2.5625 1.21875 -2.875 1.765625 -2.875 C 2.34375 -2.875 2.515625 -2.578125 2.515625 -1.796875 Z M 2.515625 -1.796875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-24">
-<path style="stroke:none;" d="M 0.613281 -4.472656 L 1.222656 -4.472656 L 1.222656 0 L 0.613281 0 Z M 0.613281 -4.472656 "/>
+<path style="stroke:none;" d="M 2.96875 -1.5 L 2.28125 -1.5 C 2.15625 -0.796875 2.09375 -0.765625 1.65625 -0.765625 C 1.078125 -0.765625 0.9375 -1.015625 0.9375 -1.796875 C 0.9375 -2.609375 1.078125 -2.875 1.640625 -2.875 C 2.078125 -2.875 2.140625 -2.8125 2.234375 -2.171875 L 3.140625 -2.171875 C 3.078125 -3.15625 2.375 -3.734375 1.640625 -3.734375 C 0.765625 -3.734375 -0.015625 -2.875 -0.015625 -1.796875 C -0.015625 -0.734375 0.75 0.09375 1.640625 0.09375 C 2.421875 0.09375 3.109375 -0.5625 3.1875 -1.5 Z M 2.96875 -1.5 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-25">
-<path style="stroke:none;" d="M 0.460938 -4.472656 L 1.328125 -4.472656 L 2.613281 -0.691406 L 3.886719 -4.472656 L 4.746094 -4.472656 L 4.746094 0 L 4.171875 0 L 4.171875 -2.640625 C 4.171875 -2.730469 4.171875 -2.882812 4.179688 -3.09375 C 4.183594 -3.304688 4.183594 -3.53125 4.183594 -3.773438 L 2.90625 0 L 2.308594 0 L 1.023438 -3.773438 L 1.023438 -3.636719 C 1.023438 -3.527344 1.027344 -3.359375 1.03125 -3.136719 C 1.035156 -2.910156 1.039062 -2.746094 1.039062 -2.640625 L 1.039062 0 L 0.460938 0 Z M 0.460938 -4.472656 "/>
+<path style="stroke:none;" d="M 3.4375 -1.25 L 3.4375 -1.921875 L 2.78125 -1.921875 L 2.78125 -4.796875 L 2.078125 -4.796875 L -0.03125 -1.875 L -0.03125 -1.0625 L 1.828125 -1.0625 L 1.828125 0 L 2.78125 0 L 2.78125 -1.0625 L 3.4375 -1.0625 Z M 2.03125 -1.921875 L 1.015625 -1.921875 L 2.171875 -3.546875 L 1.828125 -3.671875 L 1.828125 -1.921875 Z M 2.03125 -1.921875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-26">
-<path style="stroke:none;" d="M 0.128906 -4.472656 L 0.835938 -4.472656 L 2.121094 -2.324219 L 3.40625 -4.472656 L 4.113281 -4.472656 L 2.425781 -1.800781 L 2.425781 0 L 1.816406 0 L 1.816406 -1.800781 Z M 0.128906 -4.472656 "/>
+<path style="stroke:none;" d="M 1.15625 0.5 L 1.15625 -3.640625 L 0.234375 -3.640625 L 0.234375 0.28125 C 0.234375 0.59375 0.328125 0.546875 0.015625 0.53125 L -0.3125 0.515625 L -0.3125 1.296875 C -0.046875 1.359375 -0.015625 1.359375 0.0625 1.359375 C 0.640625 1.359375 1.15625 0.9375 1.15625 0.5 Z M 1.21875 -3.953125 L 1.21875 -4.78125 L 0.171875 -4.78125 L 0.171875 -3.765625 L 1.21875 -3.765625 Z M 1.21875 -3.953125 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-27">
-<path style="stroke:none;" d="M 0.0898438 -3.261719 L 0.800781 -3.261719 L 1.550781 -2.113281 L 2.308594 -3.261719 L 2.976562 -3.246094 L 1.875 -1.671875 L 3.023438 0 L 2.324219 0 L 1.511719 -1.222656 L 0.726562 0 L 0.0351562 0 L 1.179688 -1.671875 Z M 0.0898438 -3.261719 "/>
+<path style="stroke:none;" d="M 4.046875 -3.390625 C 4.046875 -4.25 3.34375 -4.921875 2.4375 -4.921875 L 0.359375 -4.921875 L 0.359375 0 L 1.34375 0 L 1.34375 -1.921875 L 2.578125 -1.921875 C 3.328125 -1.921875 4.046875 -2.640625 4.046875 -3.390625 Z M 3.03125 -3.421875 C 3.03125 -2.921875 2.90625 -2.8125 2.359375 -2.8125 L 1.34375 -2.8125 L 1.34375 -4.03125 L 2.359375 -4.03125 C 2.90625 -4.03125 3.03125 -3.921875 3.03125 -3.421875 Z M 3.03125 -3.421875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-28">
-<path style="stroke:none;" d="M 0.511719 -4.171875 L 1.066406 -4.171875 L 1.066406 -3.261719 L 1.585938 -3.261719 L 1.585938 -2.8125 L 1.066406 -2.8125 L 1.066406 -0.683594 C 1.066406 -0.570312 1.105469 -0.496094 1.179688 -0.457031 C 1.222656 -0.433594 1.296875 -0.421875 1.394531 -0.421875 C 1.421875 -0.421875 1.449219 -0.421875 1.480469 -0.425781 C 1.511719 -0.425781 1.546875 -0.429688 1.585938 -0.433594 L 1.585938 0 C 1.523438 0.0195312 1.457031 0.03125 1.390625 0.0390625 C 1.320312 0.046875 1.25 0.0507812 1.167969 0.0507812 C 0.914062 0.0507812 0.738281 -0.015625 0.648438 -0.144531 C 0.558594 -0.277344 0.511719 -0.445312 0.511719 -0.65625 L 0.511719 -2.8125 L 0.0703125 -2.8125 L 0.0703125 -3.261719 L 0.511719 -3.261719 Z M 0.511719 -4.171875 "/>
+<path style="stroke:none;" d="M 1.40625 -0.1875 L 1.40625 -4.921875 L 0.421875 -4.921875 L 0.421875 0 L 1.40625 0 Z M 1.40625 -0.1875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-29">
-<path style="stroke:none;" d="M 0.417969 -3.261719 L 0.9375 -3.261719 L 0.9375 -2.699219 C 0.980469 -2.808594 1.085938 -2.941406 1.25 -3.097656 C 1.417969 -3.253906 1.609375 -3.335938 1.828125 -3.335938 C 1.835938 -3.335938 1.855469 -3.332031 1.878906 -3.332031 C 1.902344 -3.328125 1.945312 -3.324219 2.003906 -3.320312 L 2.003906 -2.742188 C 1.972656 -2.746094 1.941406 -2.75 1.914062 -2.753906 C 1.886719 -2.753906 1.855469 -2.753906 1.824219 -2.753906 C 1.546875 -2.753906 1.335938 -2.667969 1.1875 -2.488281 C 1.039062 -2.3125 0.964844 -2.105469 0.964844 -1.875 L 0.964844 0 L 0.417969 0 Z M 0.417969 -3.261719 "/>
+<path style="stroke:none;" d="M 4.9375 -0.1875 L 4.9375 -4.921875 L 3.796875 -4.921875 L 2.40625 -0.78125 L 2.8125 -0.765625 L 1.40625 -4.921875 L 0.265625 -4.921875 L 0.265625 0 L 1.21875 0 L 1.21875 -4 L 0.8125 -4 L 2.171875 0 L 3.0625 0 L 4.390625 -4 L 3.984375 -4 L 3.984375 0 L 4.9375 0 Z M 4.9375 -0.1875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-30">
-<path style="stroke:none;" d="M 0.996094 -0.492188 C 1.113281 -0.402344 1.25 -0.355469 1.40625 -0.355469 C 1.597656 -0.355469 1.785156 -0.402344 1.96875 -0.492188 C 2.273438 -0.640625 2.425781 -0.882812 2.425781 -1.21875 L 2.425781 -1.660156 C 2.359375 -1.617188 2.269531 -1.582031 2.164062 -1.554688 C 2.058594 -1.523438 1.957031 -1.503906 1.855469 -1.492188 L 1.523438 -1.449219 C 1.324219 -1.421875 1.175781 -1.382812 1.074219 -1.324219 C 0.90625 -1.230469 0.820312 -1.078125 0.820312 -0.867188 C 0.820312 -0.710938 0.878906 -0.585938 0.996094 -0.492188 Z M 2.148438 -1.976562 C 2.273438 -1.992188 2.359375 -2.046875 2.402344 -2.132812 C 2.425781 -2.183594 2.4375 -2.253906 2.4375 -2.34375 C 2.4375 -2.53125 2.371094 -2.667969 2.238281 -2.75 C 2.105469 -2.835938 1.917969 -2.878906 1.667969 -2.878906 C 1.382812 -2.878906 1.179688 -2.800781 1.058594 -2.644531 C 0.992188 -2.558594 0.949219 -2.433594 0.929688 -2.265625 L 0.417969 -2.265625 C 0.425781 -2.667969 0.558594 -2.945312 0.808594 -3.105469 C 1.058594 -3.261719 1.351562 -3.339844 1.679688 -3.339844 C 2.0625 -3.339844 2.375 -3.265625 2.617188 -3.121094 C 2.855469 -2.976562 2.972656 -2.746094 2.972656 -2.4375 L 2.972656 -0.558594 C 2.972656 -0.503906 2.984375 -0.457031 3.007812 -0.421875 C 3.03125 -0.386719 3.078125 -0.371094 3.15625 -0.371094 C 3.179688 -0.371094 3.207031 -0.371094 3.238281 -0.375 C 3.269531 -0.378906 3.300781 -0.382812 3.335938 -0.390625 L 3.335938 0.015625 C 3.25 0.0390625 3.183594 0.0546875 3.140625 0.0625 C 3.09375 0.0664062 3.035156 0.0703125 2.957031 0.0703125 C 2.769531 0.0703125 2.632812 0.00390625 2.546875 -0.132812 C 2.5 -0.203125 2.46875 -0.300781 2.453125 -0.433594 C 2.339844 -0.285156 2.179688 -0.160156 1.96875 -0.0507812 C 1.761719 0.0546875 1.53125 0.109375 1.277344 0.109375 C 0.976562 0.109375 0.730469 0.0195312 0.539062 -0.164062 C 0.347656 -0.347656 0.25 -0.578125 0.25 -0.855469 C 0.25 -1.15625 0.34375 -1.394531 0.53125 -1.558594 C 0.722656 -1.726562 0.96875 -1.828125 1.277344 -1.867188 Z M 2.148438 -1.976562 "/>
+<path style="stroke:none;" d="M 4.125 -4.921875 L 3.3125 -4.921875 L 2.125 -2.875 L 0.90625 -4.921875 L -0.265625 -4.921875 L 1.625 -1.9375 L 1.625 0 L 2.609375 0 L 2.609375 -1.9375 L 4.453125 -4.921875 Z M 4.125 -4.921875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-31">
-<path style="stroke:none;" d="M 2.554688 -3.085938 C 2.785156 -2.910156 2.925781 -2.601562 2.972656 -2.164062 L 2.4375 -2.164062 C 2.40625 -2.367188 2.332031 -2.53125 2.214844 -2.664062 C 2.101562 -2.796875 1.914062 -2.867188 1.660156 -2.867188 C 1.3125 -2.867188 1.0625 -2.695312 0.910156 -2.355469 C 0.8125 -2.132812 0.765625 -1.859375 0.765625 -1.535156 C 0.765625 -1.207031 0.832031 -0.933594 0.972656 -0.710938 C 1.109375 -0.488281 1.328125 -0.375 1.621094 -0.375 C 1.851562 -0.375 2.03125 -0.445312 2.164062 -0.582031 C 2.296875 -0.722656 2.386719 -0.914062 2.4375 -1.152344 L 2.972656 -1.152344 C 2.910156 -0.722656 2.757812 -0.40625 2.515625 -0.207031 C 2.273438 -0.0078125 1.960938 0.09375 1.582031 0.09375 C 1.15625 0.09375 0.8125 -0.0625 0.558594 -0.371094 C 0.304688 -0.683594 0.179688 -1.074219 0.179688 -1.539062 C 0.179688 -2.113281 0.320312 -2.558594 0.597656 -2.878906 C 0.875 -3.195312 1.230469 -3.355469 1.660156 -3.355469 C 2.027344 -3.355469 2.324219 -3.265625 2.554688 -3.085938 Z M 2.554688 -3.085938 "/>
+<path style="stroke:none;" d="M 3.09375 -0.3125 L 2.046875 -1.875 L 3.265625 -3.640625 L 2.21875 -3.640625 L 1.546875 -2.609375 L 0.859375 -3.640625 L -0.1875 -3.640625 L 1.03125 -1.859375 L -0.25 0 L 0.796875 0 L 1.515625 -1.09375 L 2.234375 0 L 3.296875 0 Z M 3.09375 -0.3125 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-32">
-<path style="stroke:none;" d="M 2.417969 -0.691406 C 2.585938 -0.90625 2.671875 -1.222656 2.671875 -1.652344 C 2.671875 -1.910156 2.632812 -2.132812 2.558594 -2.320312 C 2.414062 -2.679688 2.15625 -2.859375 1.777344 -2.859375 C 1.398438 -2.859375 1.140625 -2.667969 1 -2.289062 C 0.925781 -2.085938 0.886719 -1.828125 0.886719 -1.515625 C 0.886719 -1.265625 0.921875 -1.050781 1 -0.875 C 1.140625 -0.539062 1.402344 -0.367188 1.777344 -0.367188 C 2.035156 -0.367188 2.246094 -0.476562 2.417969 -0.691406 Z M 0.359375 -3.246094 L 0.890625 -3.246094 L 0.890625 -2.8125 C 1 -2.960938 1.121094 -3.078125 1.25 -3.15625 C 1.4375 -3.277344 1.652344 -3.339844 1.902344 -3.339844 C 2.273438 -3.339844 2.585938 -3.199219 2.84375 -2.914062 C 3.101562 -2.632812 3.230469 -2.226562 3.230469 -1.703125 C 3.230469 -0.992188 3.046875 -0.484375 2.671875 -0.179688 C 2.4375 0.0117188 2.164062 0.109375 1.851562 0.109375 C 1.605469 0.109375 1.398438 0.0546875 1.234375 -0.0507812 C 1.136719 -0.113281 1.027344 -0.21875 0.90625 -0.367188 L 0.90625 1.300781 L 0.359375 1.300781 Z M 0.359375 -3.246094 "/>
+<path style="stroke:none;" d="M 1.78125 -0.1875 L 1.78125 -0.859375 C 1.515625 -0.796875 1.4375 -0.78125 1.328125 -0.78125 C 1.109375 -0.78125 1.25 -0.65625 1.25 -0.890625 L 1.25 -2.84375 L 1.78125 -2.84375 L 1.78125 -3.640625 L 1.25 -3.640625 L 1.25 -4.53125 L 0.328125 -4.53125 L 0.328125 -3.640625 L -0.125 -3.640625 L -0.125 -2.84375 L 0.328125 -2.84375 L 0.328125 -0.65625 C 0.328125 -0.328125 0.75 0.046875 1.15625 0.046875 C 1.28125 0.046875 1.40625 0.03125 1.78125 -0.03125 Z M 1.78125 -0.1875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-33">
-<path style="stroke:none;" d="M 0.875 -0.878906 C 1.015625 -0.539062 1.265625 -0.367188 1.625 -0.367188 C 2.007812 -0.367188 2.269531 -0.546875 2.414062 -0.90625 C 2.492188 -1.101562 2.535156 -1.351562 2.535156 -1.660156 C 2.535156 -1.941406 2.488281 -2.175781 2.402344 -2.367188 C 2.253906 -2.6875 1.992188 -2.851562 1.621094 -2.851562 C 1.382812 -2.851562 1.179688 -2.746094 1.007812 -2.542969 C 0.839844 -2.335938 0.753906 -2.015625 0.753906 -1.585938 C 0.753906 -1.304688 0.792969 -1.066406 0.875 -0.878906 Z M 2.246094 -3.128906 C 2.347656 -3.058594 2.445312 -2.949219 2.539062 -2.808594 L 2.539062 -3.261719 L 3.058594 -3.261719 L 3.058594 1.300781 L 2.507812 1.300781 L 2.507812 -0.375 C 2.417969 -0.230469 2.292969 -0.113281 2.128906 -0.0273438 C 1.96875 0.0585938 1.765625 0.105469 1.527344 0.105469 C 1.179688 0.105469 0.867188 -0.03125 0.59375 -0.304688 C 0.320312 -0.578125 0.183594 -0.992188 0.183594 -1.546875 C 0.183594 -2.070312 0.3125 -2.496094 0.566406 -2.832031 C 0.824219 -3.167969 1.15625 -3.335938 1.566406 -3.335938 C 1.835938 -3.335938 2.0625 -3.265625 2.246094 -3.128906 Z M 2.246094 -3.128906 "/>
+<path style="stroke:none;" d="M 2.203125 -3 L 2.203125 -3.6875 C 1.90625 -3.734375 1.875 -3.734375 1.796875 -3.734375 C 1.46875 -3.734375 1.0625 -3.484375 0.765625 -3 L 1.109375 -2.859375 L 1.109375 -3.640625 L 0.234375 -3.640625 L 0.234375 0 L 1.15625 0 L 1.15625 -1.875 C 1.15625 -2.625 1.203125 -2.796875 2.203125 -2.8125 Z M 2.203125 -3 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-34">
-<path style="stroke:none;" d="M 0.949219 -3.261719 L 0.949219 -1.097656 C 0.949219 -0.929688 0.976562 -0.792969 1.027344 -0.6875 C 1.125 -0.492188 1.308594 -0.394531 1.574219 -0.394531 C 1.957031 -0.394531 2.214844 -0.566406 2.355469 -0.90625 C 2.429688 -1.089844 2.464844 -1.339844 2.464844 -1.660156 L 2.464844 -3.261719 L 3.015625 -3.261719 L 3.015625 0 L 2.496094 0 L 2.503906 -0.480469 C 2.433594 -0.355469 2.34375 -0.253906 2.238281 -0.167969 C 2.027344 0.00390625 1.773438 0.0898438 1.476562 0.0898438 C 1.011719 0.0898438 0.695312 -0.0664062 0.527344 -0.378906 C 0.4375 -0.542969 0.390625 -0.765625 0.390625 -1.042969 L 0.390625 -3.261719 Z M 0.949219 -3.261719 "/>
+<path style="stroke:none;" d="M 3.53125 -0.203125 L 3.53125 -0.828125 C 3.28125 -0.765625 3.25 -0.765625 3.21875 -0.765625 C 3.046875 -0.765625 3.140625 -0.671875 3.140625 -0.828125 L 3.140625 -2.65625 C 3.140625 -3.234375 2.515625 -3.734375 1.71875 -3.734375 C 0.921875 -3.734375 0.234375 -3.25 0.1875 -2.296875 L 1.109375 -2.296875 C 1.171875 -2.890625 1.203125 -2.875 1.703125 -2.875 C 2.15625 -2.875 2.21875 -2.890625 2.21875 -2.578125 L 2.21875 -2.4375 C 2.21875 -2.21875 2.296875 -2.3125 1.875 -2.265625 C 1.140625 -2.171875 1.03125 -2.15625 0.828125 -2.0625 C 0.453125 -1.90625 0.0625 -1.4375 0.0625 -1.03125 C 0.0625 -0.4375 0.671875 0.09375 1.328125 0.09375 C 1.75 0.09375 2.296875 -0.140625 2.328125 -0.171875 C 2.296875 -0.328125 2.71875 0.046875 2.984375 0.046875 C 3.09375 0.046875 3.171875 0.03125 3.53125 -0.0625 Z M 2.21875 -1.3125 C 2.21875 -0.84375 1.953125 -0.734375 1.453125 -0.734375 C 1.046875 -0.734375 1 -0.6875 1 -1.046875 C 1 -1.390625 1.03125 -1.359375 1.59375 -1.4375 C 2.140625 -1.515625 2.25 -1.53125 2.21875 -1.515625 Z M 2.21875 -1.3125 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-35">
-<path style="stroke:none;" d="M 1.132812 -4.472656 L 1.132812 -1.707031 C 1.132812 -1.382812 1.195312 -1.113281 1.316406 -0.898438 C 1.496094 -0.574219 1.800781 -0.410156 2.230469 -0.410156 C 2.742188 -0.410156 3.089844 -0.585938 3.277344 -0.9375 C 3.375 -1.128906 3.425781 -1.386719 3.425781 -1.707031 L 3.425781 -4.472656 L 4.039062 -4.472656 L 4.039062 -1.960938 C 4.039062 -1.410156 3.964844 -0.988281 3.820312 -0.691406 C 3.546875 -0.152344 3.03125 0.117188 2.277344 0.117188 C 1.523438 0.117188 1.011719 -0.152344 0.738281 -0.691406 C 0.589844 -0.988281 0.519531 -1.410156 0.519531 -1.960938 L 0.519531 -4.472656 Z M 1.132812 -4.472656 "/>
+<path style="stroke:none;" d="M 3.28125 1.171875 L 3.28125 -3.640625 L 2.421875 -3.640625 L 2.421875 -3.015625 L 2.765625 -3.140625 C 2.515625 -3.484375 2.015625 -3.734375 1.578125 -3.734375 C 0.71875 -3.734375 -0.046875 -2.875 -0.046875 -1.78125 C -0.046875 -0.71875 0.703125 0.09375 1.5625 0.09375 C 2.015625 0.09375 2.46875 -0.125 2.703125 -0.484375 L 2.359375 -0.609375 L 2.359375 1.359375 L 3.28125 1.359375 Z M 2.359375 -1.796875 C 2.359375 -1.046875 2.203125 -0.765625 1.65625 -0.765625 C 1.078125 -0.765625 0.90625 -1.0625 0.90625 -1.828125 C 0.90625 -2.578125 1.078125 -2.875 1.65625 -2.875 C 2.21875 -2.875 2.359375 -2.5625 2.359375 -1.796875 Z M 2.359375 -1.796875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-36">
-<path style="stroke:none;" d="M 0.476562 -4.472656 L 1.191406 -4.472656 L 3.449219 -0.847656 L 3.449219 -4.472656 L 4.027344 -4.472656 L 4.027344 0 L 3.347656 0 L 1.054688 -3.621094 L 1.054688 0 L 0.476562 0 Z M 0.476562 -4.472656 "/>
+<path style="stroke:none;" d="M 3.203125 -0.1875 L 3.203125 -3.640625 L 2.28125 -3.640625 L 2.28125 -1.65625 C 2.28125 -0.984375 2.140625 -0.734375 1.59375 -0.734375 C 1.1875 -0.734375 1.125 -0.796875 1.125 -1.1875 L 1.125 -3.640625 L 0.203125 -3.640625 L 0.203125 -0.984375 C 0.203125 -0.4375 0.8125 0.09375 1.453125 0.09375 C 1.921875 0.09375 2.375 -0.125 2.671875 -0.5625 L 2.328125 -0.6875 L 2.328125 0 L 3.203125 0 Z M 3.203125 -0.1875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-37">
-<path style="stroke:none;" d="M 4.566406 -0.0117188 L 4.261719 0.355469 L 3.570312 -0.171875 C 3.40625 -0.078125 3.226562 -0.0078125 3.03125 0.046875 C 2.835938 0.101562 2.625 0.132812 2.394531 0.132812 C 1.703125 0.132812 1.15625 -0.0976562 0.765625 -0.550781 C 0.417969 -0.992188 0.242188 -1.546875 0.242188 -2.214844 C 0.242188 -2.820312 0.394531 -3.335938 0.695312 -3.765625 C 1.082031 -4.320312 1.652344 -4.59375 2.40625 -4.59375 C 3.195312 -4.59375 3.78125 -4.339844 4.160156 -3.832031 C 4.457031 -3.4375 4.605469 -2.929688 4.605469 -2.3125 C 4.605469 -2.023438 4.570312 -1.75 4.496094 -1.484375 C 4.390625 -1.078125 4.207031 -0.746094 3.953125 -0.492188 Z M 2.824219 -0.4375 C 2.933594 -0.453125 3.027344 -0.488281 3.109375 -0.539062 L 2.617188 -0.921875 L 2.921875 -1.296875 L 3.507812 -0.84375 C 3.691406 -1.054688 3.816406 -1.292969 3.882812 -1.554688 C 3.949219 -1.816406 3.984375 -2.066406 3.984375 -2.304688 C 3.984375 -2.832031 3.84375 -3.253906 3.570312 -3.574219 C 3.296875 -3.894531 2.917969 -4.054688 2.441406 -4.054688 C 1.957031 -4.054688 1.578125 -3.902344 1.292969 -3.59375 C 1.011719 -3.285156 0.871094 -2.8125 0.871094 -2.175781 C 0.871094 -1.636719 1.007812 -1.207031 1.277344 -0.890625 C 1.546875 -0.570312 1.945312 -0.410156 2.46875 -0.410156 C 2.59375 -0.410156 2.714844 -0.417969 2.824219 -0.4375 Z M 2.824219 -0.4375 "/>
+<path style="stroke:none;" d="M 4.21875 -1.578125 L 4.21875 -4.921875 L 3.234375 -4.921875 L 3.234375 -1.578125 C 3.234375 -0.953125 3 -0.765625 2.265625 -0.765625 C 1.59375 -0.765625 1.3125 -0.90625 1.3125 -1.578125 L 1.3125 -4.921875 L 0.328125 -4.921875 L 0.328125 -1.578125 C 0.328125 -0.640625 1.1875 0.109375 2.265625 0.109375 C 3.328125 0.109375 4.21875 -0.65625 4.21875 -1.578125 Z M 4.21875 -1.578125 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-38">
-<path style="stroke:none;" d="M 0.53125 -4.472656 L 3.792969 -4.472656 L 3.792969 -3.925781 L 1.125 -3.925781 L 1.125 -2.566406 L 3.59375 -2.566406 L 3.59375 -2.050781 L 1.125 -2.050781 L 1.125 -0.53125 L 3.839844 -0.53125 L 3.839844 0 L 0.53125 0 Z M 0.53125 -4.472656 "/>
+<path style="stroke:none;" d="M 4.234375 -0.1875 L 4.234375 -4.921875 L 3.265625 -4.921875 L 3.265625 -1.015625 L 3.609375 -1.140625 L 1.203125 -4.921875 L 0.265625 -4.921875 L 0.265625 0 L 1.21875 0 L 1.21875 -3.875 L 0.875 -3.734375 L 3.265625 0 L 4.234375 0 Z M 4.234375 -0.1875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-39">
-<path style="stroke:none;" d="M 0.65625 -4.257812 C 0.785156 -4.445312 1.03125 -4.535156 1.398438 -4.535156 C 1.433594 -4.535156 1.46875 -4.535156 1.503906 -4.535156 C 1.539062 -4.53125 1.582031 -4.527344 1.628906 -4.523438 L 1.628906 -4.027344 C 1.570312 -4.03125 1.53125 -4.03125 1.503906 -4.03125 C 1.480469 -4.035156 1.457031 -4.035156 1.433594 -4.035156 C 1.265625 -4.035156 1.167969 -3.992188 1.136719 -3.90625 C 1.105469 -3.820312 1.085938 -3.597656 1.085938 -3.246094 L 1.628906 -3.246094 L 1.628906 -2.8125 L 1.082031 -2.8125 L 1.082031 0 L 0.539062 0 L 0.539062 -2.8125 L 0.0859375 -2.8125 L 0.0859375 -3.246094 L 0.539062 -3.246094 L 0.539062 -3.757812 C 0.546875 -3.984375 0.585938 -4.152344 0.65625 -4.257812 Z M 0.65625 -4.257812 "/>
+<path style="stroke:none;" d="M 4.828125 -2.4375 C 4.828125 -3.84375 3.734375 -5.03125 2.4375 -5.03125 C 1.125 -5.03125 0.03125 -3.84375 0.03125 -2.421875 C 0.03125 -1 1.125 0.109375 2.4375 0.109375 C 2.875 0.109375 3.390625 -0.046875 3.59375 -0.15625 L 4.296875 0.421875 L 4.828125 -0.234375 L 4.265625 -0.703125 C 4.546875 -1.03125 4.828125 -1.71875 4.828125 -2.4375 Z M 3.84375 -2.4375 C 3.84375 -1.84375 3.75 -1.546875 3.53125 -1.296875 L 2.96875 -1.765625 L 2.4375 -1.125 L 2.84375 -0.796875 C 2.90625 -0.828125 2.703125 -0.765625 2.421875 -0.765625 C 1.453125 -0.765625 1.015625 -1.296875 1.015625 -2.421875 C 1.015625 -3.546875 1.46875 -4.140625 2.4375 -4.140625 C 3.390625 -4.140625 3.84375 -3.546875 3.84375 -2.4375 Z M 3.84375 -2.4375 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-40">
-<path style="stroke:none;" d="M 0.390625 -4.472656 L 0.917969 -4.472656 L 0.917969 -1.875 L 2.324219 -3.261719 L 3.023438 -3.261719 L 1.773438 -2.039062 L 3.09375 0 L 2.394531 0 L 1.375 -1.644531 L 0.917969 -1.222656 L 0.917969 0 L 0.390625 0 Z M 0.390625 -4.472656 "/>
+<path style="stroke:none;" d="M 4.015625 -0.1875 L 4.015625 -0.890625 L 1.34375 -0.890625 L 1.34375 -2.0625 L 3.8125 -2.0625 L 3.8125 -2.953125 L 1.34375 -2.953125 L 1.34375 -4.03125 L 3.90625 -4.03125 L 3.90625 -4.921875 L 0.359375 -4.921875 L 0.359375 0 L 4.015625 0 Z M 4.015625 -0.1875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-41">
-<path style="stroke:none;" d="M 3.730469 -4.472656 L 3.730469 -3.941406 L 2.222656 -3.941406 L 2.222656 0 L 1.609375 0 L 1.609375 -3.941406 L 0.101562 -3.941406 L 0.101562 -4.472656 Z M 3.730469 -4.472656 "/>
+<path style="stroke:none;" d="M 1.8125 -3.03125 L 1.8125 -3.640625 L 1.265625 -3.640625 L 1.265625 -3.96875 C 1.265625 -4.1875 1.1875 -4.109375 1.421875 -4.109375 C 1.46875 -4.109375 1.484375 -4.109375 1.8125 -4.09375 L 1.8125 -4.859375 C 1.484375 -4.9375 1.421875 -4.9375 1.3125 -4.9375 C 0.828125 -4.9375 0.34375 -4.46875 0.34375 -4.015625 L 0.34375 -3.640625 L -0.09375 -3.640625 L -0.09375 -2.84375 L 0.34375 -2.84375 L 0.34375 0 L 1.265625 0 L 1.265625 -2.84375 L 1.8125 -2.84375 Z M 1.8125 -3.03125 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-42">
-<path style="stroke:none;" d="M 3.5 -4.34375 C 3.945312 -4.109375 4.214844 -3.703125 4.316406 -3.117188 L 3.714844 -3.117188 C 3.640625 -3.445312 3.492188 -3.683594 3.261719 -3.832031 C 3.03125 -3.980469 2.742188 -4.054688 2.394531 -4.054688 C 1.980469 -4.054688 1.628906 -3.902344 1.347656 -3.589844 C 1.0625 -3.28125 0.921875 -2.816406 0.921875 -2.203125 C 0.921875 -1.671875 1.039062 -1.238281 1.273438 -0.902344 C 1.507812 -0.570312 1.886719 -0.402344 2.414062 -0.402344 C 2.820312 -0.402344 3.152344 -0.519531 3.417969 -0.753906 C 3.683594 -0.988281 3.820312 -1.367188 3.824219 -1.890625 L 2.425781 -1.890625 L 2.425781 -2.394531 L 4.386719 -2.394531 L 4.386719 0 L 4 0 L 3.851562 -0.574219 C 3.648438 -0.351562 3.464844 -0.195312 3.308594 -0.105469 C 3.042969 0.0429688 2.703125 0.117188 2.292969 0.117188 C 1.761719 0.117188 1.308594 -0.0546875 0.925781 -0.394531 C 0.507812 -0.824219 0.300781 -1.417969 0.300781 -2.167969 C 0.300781 -2.917969 0.503906 -3.511719 0.910156 -3.957031 C 1.296875 -4.378906 1.796875 -4.589844 2.410156 -4.589844 C 2.828125 -4.589844 3.191406 -4.507812 3.5 -4.34375 Z M 3.5 -4.34375 "/>
+<path style="stroke:none;" d="M 3.265625 -0.3125 L 2.03125 -2.296875 L 3.390625 -3.640625 L 2.171875 -3.640625 L 0.734375 -2.203125 L 1.078125 -2.0625 L 1.078125 -4.921875 L 0.15625 -4.921875 L 0.15625 0 L 1.078125 0 L 1.078125 -1.390625 L 1.34375 -1.65625 L 2.375 0 L 3.46875 0 Z M 3.265625 -0.3125 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-43">
-<path style="stroke:none;" d="M 0.667969 -3.261719 L 1.539062 -0.605469 L 2.453125 -3.261719 L 3.050781 -3.261719 L 1.820312 0 L 1.234375 0 L 0.0351562 -3.261719 Z M 0.667969 -3.261719 "/>
+<path style="stroke:none;" d="M 3.890625 -4.21875 L 3.890625 -4.921875 L -0.078125 -4.921875 L -0.078125 -4.03125 L 1.421875 -4.03125 L 1.421875 0 L 2.40625 0 L 2.40625 -4.03125 L 3.890625 -4.03125 Z M 3.890625 -4.21875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph1-44">
-<path style="stroke:none;" d="M 2.0625 -1.542969 L 2.0625 -3.519531 L 0.664062 -1.542969 Z M 2.070312 0 L 2.070312 -1.066406 L 0.160156 -1.066406 L 0.160156 -1.601562 L 2.15625 -4.371094 L 2.617188 -4.371094 L 2.617188 -1.542969 L 3.261719 -1.542969 L 3.261719 -1.066406 L 2.617188 -1.066406 L 2.617188 0 Z M 2.070312 0 "/>
+<path style="stroke:none;" d="M 4.625 -0.1875 L 4.625 -2.78125 L 2.3125 -2.78125 L 2.3125 -1.890625 L 3.703125 -1.890625 L 3.703125 -1.953125 C 3.703125 -1.140625 3.3125 -0.765625 2.484375 -0.765625 C 1.453125 -0.765625 1.046875 -1.328125 1.046875 -2.4375 C 1.046875 -3.5625 1.484375 -4.140625 2.453125 -4.140625 C 3.140625 -4.140625 3.4375 -3.9375 3.609375 -3.171875 L 4.59375 -3.171875 C 4.390625 -4.28125 3.5 -5.03125 2.453125 -5.03125 C 1.0625 -5.03125 0.0625 -3.765625 0.0625 -2.40625 C 0.0625 -1.015625 1.125 0.109375 2.359375 0.109375 C 2.96875 0.109375 3.609375 -0.15625 3.796875 -0.375 L 3.890625 0 L 4.625 0 Z M 4.625 -0.1875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-45">
+<path style="stroke:none;" d="M 3.03125 -3.640625 L 2.296875 -3.640625 L 1.3125 -0.8125 L 1.71875 -0.796875 L 0.78125 -3.640625 L -0.203125 -3.640625 L 1.078125 0 L 1.90625 0 L 3.296875 -3.640625 Z M 3.03125 -3.640625 "/>
 </symbol>
 <symbol overflow="visible" id="glyph2-0">
-<path style="stroke:none;" d="M 1.332031 0 L 0.402344 0 L 0.402344 -4.488281 L 1.332031 -4.488281 Z M 1.332031 0 "/>
+<path style="stroke:none;" d=""/>
 </symbol>
 <symbol overflow="visible" id="glyph2-1">
-<path style="stroke:none;" d="M 3.085938 -3.128906 C 3.304688 -2.949219 3.414062 -2.652344 3.414062 -2.234375 L 3.414062 0 L 2.523438 0 L 2.523438 -2.019531 C 2.523438 -2.195312 2.5 -2.328125 2.453125 -2.421875 C 2.367188 -2.589844 2.207031 -2.675781 1.96875 -2.675781 C 1.671875 -2.675781 1.472656 -2.550781 1.359375 -2.300781 C 1.304688 -2.167969 1.277344 -2 1.277344 -1.796875 L 1.277344 0 L 0.410156 0 L 0.410156 -3.3125 L 1.25 -3.3125 L 1.25 -2.828125 C 1.359375 -3 1.464844 -3.121094 1.566406 -3.199219 C 1.746094 -3.332031 1.96875 -3.398438 2.246094 -3.398438 C 2.589844 -3.398438 2.867188 -3.308594 3.085938 -3.128906 Z M 3.085938 -3.128906 "/>
+<path style="stroke:none;" d="M 1.484375 -0.1875 L 1.484375 -4.921875 L 0.21875 -4.921875 L 0.21875 0 L 1.484375 0 Z M 1.484375 -0.1875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph2-2">
-<path style="stroke:none;" d="M 2.164062 -3.265625 C 2.320312 -3.175781 2.449219 -3.054688 2.546875 -2.898438 L 2.546875 -4.480469 L 3.425781 -4.480469 L 3.425781 0 L 2.582031 0 L 2.582031 -0.460938 C 2.457031 -0.261719 2.316406 -0.121094 2.160156 -0.03125 C 2 0.0585938 1.804688 0.105469 1.566406 0.105469 C 1.179688 0.105469 0.855469 -0.0546875 0.589844 -0.367188 C 0.324219 -0.679688 0.191406 -1.082031 0.191406 -1.574219 C 0.191406 -2.140625 0.324219 -2.585938 0.582031 -2.910156 C 0.84375 -3.234375 1.191406 -3.398438 1.628906 -3.398438 C 1.828125 -3.398438 2.007812 -3.355469 2.164062 -3.265625 Z M 2.378906 -0.902344 C 2.507812 -1.085938 2.570312 -1.320312 2.570312 -1.609375 C 2.570312 -2.015625 2.46875 -2.308594 2.261719 -2.480469 C 2.136719 -2.585938 1.992188 -2.640625 1.824219 -2.640625 C 1.570312 -2.640625 1.382812 -2.542969 1.265625 -2.351562 C 1.148438 -2.160156 1.085938 -1.921875 1.085938 -1.636719 C 1.085938 -1.332031 1.148438 -1.085938 1.269531 -0.902344 C 1.390625 -0.71875 1.570312 -0.628906 1.816406 -0.628906 C 2.0625 -0.628906 2.25 -0.71875 2.378906 -0.902344 Z M 2.378906 -0.902344 "/>
+<path style="stroke:none;" d="M 3.5625 -0.1875 L 3.5625 -2.4375 C 3.5625 -3.1875 3 -3.796875 2.28125 -3.796875 C 1.828125 -3.796875 1.390625 -3.578125 1.140625 -3.203125 L 1.421875 -3.0625 L 1.421875 -3.734375 L 0.21875 -3.734375 L 0.21875 0 L 1.421875 0 L 1.421875 -2.203125 C 1.421875 -2.609375 1.546875 -2.6875 1.96875 -2.6875 C 2.34375 -2.6875 2.359375 -2.65625 2.359375 -2.265625 L 2.359375 0 L 3.5625 0 Z M 3.5625 -0.1875 "/>
 </symbol>
 <symbol overflow="visible" id="glyph2-3">
-<path style="stroke:none;" d="M 1.246094 -2.503906 C 1.136719 -2.378906 1.066406 -2.207031 1.039062 -1.992188 L 2.386719 -1.992188 C 2.371094 -2.222656 2.304688 -2.394531 2.179688 -2.515625 C 2.054688 -2.632812 1.898438 -2.691406 1.714844 -2.691406 C 1.511719 -2.691406 1.359375 -2.628906 1.246094 -2.503906 Z M 2.460938 -3.253906 C 2.683594 -3.148438 2.863281 -2.984375 3.007812 -2.761719 C 3.136719 -2.566406 3.222656 -2.335938 3.261719 -2.078125 C 3.285156 -1.925781 3.292969 -1.707031 3.289062 -1.417969 L 1.015625 -1.417969 C 1.027344 -1.085938 1.132812 -0.851562 1.332031 -0.71875 C 1.449219 -0.636719 1.59375 -0.59375 1.761719 -0.59375 C 1.941406 -0.59375 2.085938 -0.644531 2.199219 -0.746094 C 2.257812 -0.800781 2.3125 -0.878906 2.359375 -0.972656 L 3.246094 -0.972656 C 3.222656 -0.777344 3.121094 -0.578125 2.9375 -0.375 C 2.652344 -0.0507812 2.257812 0.109375 1.746094 0.109375 C 1.324219 0.109375 0.949219 -0.0273438 0.628906 -0.296875 C 0.304688 -0.570312 0.144531 -1.011719 0.144531 -1.625 C 0.144531 -2.199219 0.289062 -2.640625 0.582031 -2.949219 C 0.871094 -3.253906 1.25 -3.40625 1.714844 -3.40625 C 1.992188 -3.40625 2.238281 -3.355469 2.460938 -3.253906 Z M 2.460938 -3.253906 "/>
+<path style="stroke:none;" d="M 3.5625 -0.1875 L 3.5625 -4.921875 L 2.359375 -4.921875 L 2.359375 -3.125 L 2.640625 -3.25 C 2.421875 -3.578125 2.015625 -3.796875 1.59375 -3.796875 C 0.796875 -3.796875 0.015625 -2.875 0.015625 -1.859375 C 0.015625 -0.90625 0.703125 0.0625 1.59375 0.0625 C 2.015625 0.0625 2.421875 -0.15625 2.640625 -0.4375 L 2.359375 -0.578125 L 2.359375 0 L 3.5625 0 Z M 2.359375 -1.859375 C 2.359375 -1.234375 2.21875 -1.046875 1.796875 -1.046875 C 1.359375 -1.046875 1.21875 -1.25 1.21875 -1.859375 C 1.21875 -2.484375 1.359375 -2.6875 1.796875 -2.6875 C 2.234375 -2.6875 2.359375 -2.5 2.359375 -1.859375 Z M 2.359375 -1.859375 "/>
 </symbol>
 <symbol overflow="visible" id="glyph2-4">
-<path style="stroke:none;" d="M 0.078125 0 L 1.210938 -1.679688 L 0.128906 -3.3125 L 1.191406 -3.3125 L 1.746094 -2.351562 L 2.285156 -3.3125 L 3.320312 -3.3125 L 2.230469 -1.695312 L 3.363281 0 L 2.28125 0 L 1.707031 -0.996094 L 1.132812 0 Z M 0.078125 0 "/>
+<path style="stroke:none;" d="M 3.4375 -1.75 C 3.4375 -2.90625 2.6875 -3.796875 1.703125 -3.796875 C 0.734375 -3.796875 -0.03125 -2.953125 -0.03125 -1.828125 C -0.03125 -0.75 0.71875 0.0625 1.671875 0.0625 C 2.4375 0.0625 3.203125 -0.46875 3.453125 -1.328125 L 2.28125 -1.328125 C 2.125 -0.859375 2.03125 -0.984375 1.703125 -0.984375 C 1.296875 -0.984375 1.203125 -0.984375 1.171875 -1.453125 L 3.421875 -1.453125 Z M 2.359375 -2.40625 L 1.203125 -2.40625 C 1.234375 -2.6875 1.296875 -2.75 1.6875 -2.75 C 2.0625 -2.75 2.15625 -2.703125 2.1875 -2.40625 Z M 2.359375 -2.40625 "/>
 </symbol>
 <symbol overflow="visible" id="glyph2-5">
-<path style="stroke:none;" d="M 1.082031 -1.058594 C 1.097656 -0.90625 1.140625 -0.796875 1.199219 -0.730469 C 1.308594 -0.613281 1.507812 -0.558594 1.796875 -0.558594 C 1.96875 -0.558594 2.101562 -0.582031 2.203125 -0.632812 C 2.304688 -0.683594 2.355469 -0.761719 2.355469 -0.863281 C 2.355469 -0.960938 2.3125 -1.035156 2.230469 -1.085938 C 2.148438 -1.136719 1.847656 -1.222656 1.328125 -1.347656 C 0.953125 -1.441406 0.6875 -1.554688 0.53125 -1.695312 C 0.378906 -1.832031 0.300781 -2.03125 0.300781 -2.292969 C 0.300781 -2.597656 0.421875 -2.863281 0.664062 -3.082031 C 0.902344 -3.304688 1.242188 -3.414062 1.679688 -3.414062 C 2.09375 -3.414062 2.429688 -3.332031 2.691406 -3.164062 C 2.953125 -3 3.101562 -2.714844 3.140625 -2.308594 L 2.273438 -2.308594 C 2.261719 -2.421875 2.226562 -2.507812 2.175781 -2.574219 C 2.082031 -2.691406 1.917969 -2.75 1.691406 -2.75 C 1.5 -2.75 1.367188 -2.71875 1.285156 -2.660156 C 1.207031 -2.601562 1.167969 -2.535156 1.167969 -2.453125 C 1.167969 -2.355469 1.207031 -2.28125 1.292969 -2.238281 C 1.378906 -2.191406 1.679688 -2.109375 2.199219 -1.996094 C 2.542969 -1.914062 2.800781 -1.792969 2.976562 -1.628906 C 3.144531 -1.460938 3.230469 -1.253906 3.230469 -1.003906 C 3.230469 -0.675781 3.109375 -0.40625 2.863281 -0.199219 C 2.617188 0.0078125 2.242188 0.113281 1.730469 0.113281 C 1.207031 0.113281 0.824219 0.00390625 0.574219 -0.21875 C 0.324219 -0.4375 0.199219 -0.71875 0.199219 -1.058594 Z M 1.082031 -1.058594 "/>
+<path style="stroke:none;" d="M 3.453125 -0.3125 L 2.40625 -1.875 L 3.625 -3.734375 L 2.171875 -3.734375 L 1.71875 -2.875 L 1.25 -3.734375 L -0.203125 -3.734375 L 1.015625 -1.875 L -0.234375 0 L 1.234375 0 L 1.71875 -0.890625 L 2.203125 0 L 3.65625 0 Z M 3.453125 -0.3125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-6">
+<path style="stroke:none;" d="M 3.40625 -1.1875 L 3.40625 -1.234375 C 3.40625 -1.609375 3.03125 -2.09375 2.578125 -2.21875 L 1.484375 -2.53125 C 1.234375 -2.609375 1.328125 -2.46875 1.328125 -2.609375 C 1.328125 -2.796875 1.375 -2.734375 1.671875 -2.734375 C 2.09375 -2.734375 2.125 -2.78125 2.140625 -2.28125 L 3.3125 -2.28125 C 3.296875 -3.171875 2.59375 -3.796875 1.6875 -3.796875 C 0.828125 -3.796875 0.125 -3.171875 0.125 -2.484375 C 0.125 -2.078125 0.40625 -1.671875 1.03125 -1.46875 L 2.078125 -1.140625 C 2.296875 -1.078125 2.203125 -1.203125 2.203125 -1.109375 C 2.203125 -0.890625 2.125 -1 1.71875 -1 C 1.328125 -1 1.265625 -0.890625 1.15625 -1.4375 L 0 -1.4375 C 0.03125 -0.515625 0.75 0.0625 1.765625 0.0625 C 2.71875 0.0625 3.40625 -0.5 3.40625 -1.1875 Z M 3.40625 -1.1875 "/>
 </symbol>
 </g>
-<image id="image519" width="16" height="16" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAHSSURBVHjapJNLbhRBDIb/6u7JBBgRBAiNxHayZ8OSNZfgDFyFA7DgAKzYRMkFcoPsWPCQEhRBEAxMdT1c5nd1T5JmRUSp3VXttj+XXS7gP4ez19NnJ3oTp/vLHRy93d/n8kunqnjx8hRNQ5pzg4Vew+vVXGjLB4t7rf19TjmiQt27k6TbIbSKWbWn6nco+tMXvdgUPV8XPf0h+uGb6JvjtWFfUZ50NRCx603Gp/MNkijatsHenRnOvvdIWfFg7xbOLjxCUqwe34WkfJlOBdjW6Ic+FYQo6LoWuzsdfOA3AQvquRvEkLD2HinGS0BTASKQAkYbHCIjRBItYoi56kIkIEX0IUNymu5A6M3cK8TEapmFQp3Nqa5HsbW9JjvIeXBWjBAFazhCrkBbiNlPayC5RhlE6lGZTTQnEiO9bM6MYEWWvwGZnqwTPPONISA3Dr7v6zoxX+9b5h9q9QeATABqOZnMW0ZvS22czIJ1DQ1bHdcFbtbUFFWuAaz7Xh9+xIw/lw8X6Pt5zVm0waP5bgVndZjfdkOBmxm0lGkKX9kkB8efeRrCehTrThqhzkW3347dPPS434TpZeJYjb29usGdem93YQtYUJbj/K/jl93GPwIMALKlc/N8m1J8AAAAAElFTkSuQmCC"/>
-<image id="image520" width="11" height="11" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAARtJREFUeNpi+v//PwMIw8Cb47yT3p7kX7hnDisXkMsIEwerQVb8+brpp193LP7+fGDx5+tZyX89JSyqQGEWmGImmM7Xh9kyOMUNeRg4ORkZ2XQZOVh5GX0c2KYDpfhgNsAVA8H3//8+MDAzMzIyfz3FxPDnD8P3H/9BCvlh6uCKRW1/Lfz85OTTfz+/Mvz/8pnh8/f3f2Irf8wCuQCmBtlkhrfPnrcxMrP9//759d+9p7/suXL7/3Wg8Ecg/oehmJeb4RfIdX/+//sVXPB7MlDoIcjfMNNRFDMzQQSZGRk4hQUYvkAV/sHqDHiYMvz/+/YDQhFWxUBPzvv+/um/Fx//nwaFDhD/RZZnQdfNq3NPGEgJQxX/QpYDCDAA5ux50WRpjnwAAAAASUVORK5CYII="/>
-<image id="image521" width="11" height="11" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAARdJREFUeNpi/P//PwOxgAVE2JWXwwVc7ez0333+vPzH58/BM9LS7tiWlf2GyTEh63S1tTXh5ODYWx0aqikoIXHYISND/3BXFxuGYpBCLk7OHdnOzsIizMwMlV5ewnoeHjst0tP14BpAbm7cvNmke8+eN9/+o4K3f/78T9q48Y1xWpoJUCkbWHH+smU3XgMlsIFDL1789546dTdQsShYcfKkSao1W7a8+oSm4cqbN//DZs++ClToBMRyDNCgY3HMyjLOA1r5FqoBpDB01qxrQDlvINYHYkGwYmDwgDSwAT1jAnIjyGqoiTCFQkDMDFcM0wDyjNeUKTugVuvBFILkGUGKkSMFGkz8QMwBxF+A+BNQ4V+QHECAAQCC17lBwBoXhgAAAABJRU5ErkJggg=="/>
-<image id="image522" width="11" height="11" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAUZJREFUeNpi+v//PwOxmIUBCBgZGRlgoGnePNU/DAyzHz9+nDS/vv4xUOg3TI6JAQm0zp+vISYjs9ctNtZeWlNzr1lgoCZQmA0mz4KsUERaepeRi4vsZyDfIDBQ4e3//1u+///vc3nDhhtAoV/MDQ0NDCwKCmCFxkCF34CiIMXvmZgYWNXV+X+ysnr9+/Vr99ubN9+DnfHz379ZOo6OYBM/APEbIH4F9BCIL21uLi+mq1sOZPKDFd+/cydm16ZN9979/cvwFqrw058/DF9evGC4tGDB4cMtLXOBwpzgIAG53Tw4WDdz1aoHHb9+/a8G4vxHj/7b1dcfAsp5A7E+EAvCFIMAm25AgF4wUEPew4f/HRobkRUKATEzsmKwBnV/fz3bmppFQLYTEOvBFYLiA6QYOVKg4coPxBxA/AWIPwHxX5AEQIABAE3UoaJ0ooBMAAAAAElFTkSuQmCC"/>
-<image id="image523" width="11" height="11" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAVhJREFUeNpi+v//PwOxmIUBCBgZGRlgYFZzvSrD79+znzx5ktQ0b9FjoNBvmBwTAxKY09asIS0mujfK3dVeTVpyr6+5sSZQmA0mz4KsUFJEeJeTkYHs/y+fGHwMdRX+vn295f/3bz5bLl2/AVTyi7mhoYFBlpUJqFBol5OxoSxQkuHf548M/9+/Y1BiY+Zn/vnD6/e/f7tvv3n/HuyMPz9/zLLX0Qab+O/DOwagiQx/X78AazKRkZDXFBMpByrjByu+e/9+zOZdu+79evcGovDVc4Zfnz4yvPrylWH5hWuHew+dnAtUxskIChJgaLD4W5hqBhvpbfZUlJYHmQhSuOTclcOdB050AhU+AeJH4PCDAjYfPU29eaHeDy4VJv+vdLQ8BBTzBmJ9IBYCYmZkxWANXhrKeiV25ouAbCcg1oMrBMUH1BkoGkCeAWIOIP4CxJ+A+C9IAiDAAFvMsadx023XAAAAAElFTkSuQmCC"/>
+<image id="image19033" width="16" height="16" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAHSSURBVHjapJNLbhRBDIb/6u7JBBgRBAiNxHayZ8OSNZfgDFyFA7DgAKzYRMkFcoPsWPCQEhRBEAxMdT1c5nd1T5JmRUSp3VXttj+XXS7gP4ez19NnJ3oTp/vLHRy93d/n8kunqnjx8hRNQ5pzg4Vew+vVXGjLB4t7rf19TjmiQt27k6TbIbSKWbWn6nco+tMXvdgUPV8XPf0h+uGb6JvjtWFfUZ50NRCx603Gp/MNkijatsHenRnOvvdIWfFg7xbOLjxCUqwe34WkfJlOBdjW6Ic+FYQo6LoWuzsdfOA3AQvquRvEkLD2HinGS0BTASKQAkYbHCIjRBItYoi56kIkIEX0IUNymu5A6M3cK8TEapmFQp3Nqa5HsbW9JjvIeXBWjBAFazhCrkBbiNlPayC5RhlE6lGZTTQnEiO9bM6MYEWWvwGZnqwTPPONISA3Dr7v6zoxX+9b5h9q9QeATABqOZnMW0ZvS22czIJ1DQ1bHdcFbtbUFFWuAaz7Xh9+xIw/lw8X6Pt5zVm0waP5bgVndZjfdkOBmxm0lGkKX9kkB8efeRrCehTrThqhzkW3347dPPS434TpZeJYjb29usGdem93YQtYUJbj/K/jl93GPwIMALKlc/N8m1J8AAAAAElFTkSuQmCC"/>
+<image id="image19034" width="11" height="11" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAABBUlEQVR4AWP4//8/GMPAm+O8k96e5F+4Zw4rF5DLCBUGq0FR/Pm66adfdyz+/nxg8efrWcl/PSUsqkBhFgzFrw+zZfx5l/bv11PHf7+epf79e0nt/40tXHuA6oRANqArjv/9Juzf3xdO///e1v//95zS//NrOE8BFSoCMTOGM95dkH/8+6H5/z/nlf5/OCr4W0eVMQUorIBV8e1tbJl/ntj++3yI98/aCazbgULWQCyI4QwQeHGQLfnPU9t/7w9yfwNyvYBYBqsHgQDk7iSQ4k+HuP8LCzDYAYX4QeJ4FX88xPUHyLXCpxgS1leU/tzczHkcyDQEYh68iqGmKQGxJBCzISsGAB64zOpThBZfAAAAAElFTkSuQmCC"/>
+<image id="image19035" width="11" height="11" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAA7klEQVR4AWP4//8/0RhM2JaVwXHTli36BcuXX8uYNUuTgYGBFUkOVXHT5s0m3Xv2vHn958//yk2b3jhkZJgANbAhK4Yr7AEq/PYfAj4BNeRt2PDWIj0drAGuuBFkIlwhArwFakjauPGNcVoaWANYcf6yZTdAVmMDh168+O89depuoGJRsOLkSZNUa7ZsefUJTcOVN2/+h82efRWo0AmI5cCKgYDFMSvLOA9oJdBquMLQWbOuAeW8gVgfiAXhHgS5CeQZkBuBVkNMRCgUAmJmmGK4BpBnvKZM2QG1Wg+mEC2cERpAngFiWZDVMIUgDABBUvhPNlwV6gAAAABJRU5ErkJggg=="/>
+<image id="image19036" width="11" height="11" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAMAAACecocUAAAAmVBMVEUAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABbeXlhgYGCnp6Dn5+Fn583U1MAAAAnT08tUFA2UVEAAAAAAAAAAAA9fHw9fHx+np4+f39AgYF8nZ1+ra18qqpTqqppqqppqamYurqZurpu4eFv4uJ6+fl7+vqI+vqI/f2e/v6s+/ux/v6y/v6+/v7B/v7E+/vL/v5aMf+rAAAAJXRSTlMAAAMEBQYREhUdHh4iJSgoLS4uLi4vQkuipcDCwsLd3+Dg4uLiJz/vdQAAAG1JREFUeNpFxtsCQlAQRuF/ykglREjkGGErh/d/OKOb1s36QP9AAC4PU5Nttqs5u/HP9msZh9JjsVUt01d1ucug5zx+VN/WkQE6p4Pq300SnEB7p+jaJg59HQT28joJ/cNODHbvwVW4GWwcdeEK/aoH8TGuk90AAAAASUVORK5CYII="/>
+<image id="image19037" width="11" height="11" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAMAAACecocUAAAAnFBMVEUAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1XFh+Yl6ag3+chIGchoNPODUAAABKKCNMLilNNzMAAAAAAAAAAAB0PjdzPjeafnp3QDh5QTmYfXmnf3mkfXeeVUuiamOhamK1mZS1mpbScWPTcmTofW7pfm/ri37ui33wrqTxoJXxoZb0s6r0tKv0xb/2wLj2w7z3zMZIKLcbAAAAJXRSTlMAAAMEBQYREhUdHh4iJSgoLS4uLi4vQkuipcDCwsLd3+Dg4uLiJz/vdQAAAG1JREFUeNpFxtkCgVAURuF/Y6dQh0YUTUqz0vu/m1031s36QP9AAMz7aSdbrPIxdnm1es1TmzkstvL5++nqxGbQY5yGvqmKmw46PtuueZeRfwBtz2ldlWHgaSCwkxRR4O03YrB99S/CxWDd0IQ/AJsH+0iBDdwAAAAASUVORK5CYII="/>
+<image id="image19038" width="16" height="16" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAB3RJTUUH1wkODjgazkP7/gAAAfBJREFUeNqtk01rFEEQhp+ZnY3sZ8IajxE1N0HiQUWiiwcvggfx6q/x5yjegzfBiEQQP4irB2MkRliQJGTNzmSmu6vKQ8e4m5toXaqpph6q3qqCf7QE4Gp/YH+b+GP4pL+18fBFBnDpRo/WTBJ/bMrF94lYFYzVlc/ngAi4drfHnQsp6x8K1GJC9IalCUuXW4iCqBEU3n0rebNWtQEygKxuBDGero4500oQNUQhKOzkgeXlNiLgNSGoUcuUBOUYoKJ05ma492CeKwsZlYdDbxTeeD7YJ0iEeYkViAh21FcGYCqIKglCLavjKuXxox02vpTs/nS8XckxgySF/u05pHMCoCKIKM55CneKMsDCUpf+zS71WoILRhVgOPI0uzV28xJTnQZ4UarSkTuj8NDppVxcrFOvJTHmDB0KhVd0FDCbAEgIBDG2hyO2vu+hoszO9yjPnsYJFM4YV0ZZBXwACRrHdFxBCLSbM9y/dZ6g4IIx2DqgcEqapowrI3dQOonjPCmihIAXjtQ2nBh5UfLxqwegdIoLyv6ooDPbRsMfQDoJ8GIRpNCbbVAEGFdRwCDQbDVoNBuIKkxq4CvHs9fbmBpqhqphUz5upRrs7R0wPsinW3j/cuX65mBtsTrMu2BHu28TB2HH9/A7vvnp1Qb/w34BGGFzK0DQRJQAAAAASUVORK5CYII="/>
 </defs>
-<g id="surface516">
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:10,4;stroke-miterlimit:10;" d="M 319.499457 0.499349 L 0.497396 0.499349 " transform="matrix(0.566929,0,0,0.566929,155.905512,281.76378)"/>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.999023 -0.00336372 L 0.00325521 10.001194 L 4.998644 -0.00336372 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,336.755906,281.76378)"/>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.999023 11.999349 L 4.998644 11.999349 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,336.755906,281.76378)"/>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.999566 6.002658 L 3.999946 6.002658 " transform="matrix(-0.000000000000000104,-0.566929,0.566929,-0.000000000000000104,155.905512,281.76378)"/>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.999566 9.998969 L 3.999946 9.998969 " transform="matrix(-0.000000000000000104,-0.566929,0.566929,-0.000000000000000104,155.905512,281.76378)"/>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.501736 0.497776 L 0.50293 0.497776 " transform="matrix(0.566929,0,0,0.566929,152.503937,96.377953)"/>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.000597 0.00124783 L 0.00168186 9.998915 L 4.99707 0.00124783 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,339.590551,96.377953)"/>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.000597 11.99707 L 4.99707 11.99707 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,339.590551,96.377953)"/>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.997993 6.001302 L 4.001519 6.001302 " transform="matrix(-0.000000000000000104,-0.566929,0.566929,-0.000000000000000104,152.503937,96.377953)"/>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -3.997993 9.997613 L 4.001519 9.997613 " transform="matrix(-0.000000000000000104,-0.566929,0.566929,-0.000000000000000104,152.503937,96.377953)"/>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.502767 0.498427 L 0.502767 151.496962 " transform="matrix(0.566929,0,0,0.566929,394.015748,138.330709)"/>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.002496 0.0023329 L -0.000217014 10 L 5.002062 0.0023329 " transform="matrix(0.566929,0,0,0.566929,394.015748,138.330709)"/>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -5.002496 11.998155 L 5.002062 11.998155 " transform="matrix(0.566929,0,0,0.566929,394.015748,138.330709)"/>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.002984 6.000488 L 4.003418 6.000488 " transform="matrix(-0.566929,0.000000000000000069,-0.000000000000000069,-0.566929,394.015748,223.937008)"/>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.002984 9.996799 L 4.003418 9.996799 " transform="matrix(-0.566929,0.000000000000000069,-0.000000000000000069,-0.566929,394.015748,223.937008)"/>
-<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(50%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;" d="M 106.501682 431.49821 C 106.501682 427.081597 110.084581 423.498698 114.501194 423.498698 L 267.497884 423.498698 C 271.921387 423.498698 275.497396 427.081597 275.497396 431.49821 L 275.497396 563.500488 C 275.497396 567.917101 271.921387 571.5 267.497884 571.5 L 114.501194 571.5 C 110.084581 571.5 106.501682 567.917101 106.501682 563.500488 Z M 106.501682 431.49821 " transform="matrix(0.566929,0,0,0.566929,0,0)"/>
-<path style="fill-rule:nonzero;fill:rgb(59.607843%,74.901961%,85.490196%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.501682 8.49821 C 0.501682 4.081597 4.084581 0.498698 8.501194 0.498698 L 161.497884 0.498698 C 165.921387 0.498698 169.497396 4.081597 169.497396 8.49821 L 169.497396 24.497233 L 0.501682 24.497233 Z M 0.501682 8.49821 " transform="matrix(0.566929,0,0,0.566929,60.094488,239.811024)"/>
-<use xlink:href="#image519" transform="matrix(0.566929,0,0,0.566929,63.496063,242.07874)"/>
+<g id="surface19030">
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:10,4;stroke-miterlimit:10;" d="M 313.498101 0.500163 L 0.497396 0.500163 " transform="matrix(0.566929,0,0,0.566929,155.905512,298.204724)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.99821 -0.00200738 L -0.00282118 10.00255 L 4.999457 -0.00200738 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,333.354331,298.204724)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.99821 12.000705 L 4.999457 12.000705 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,333.354331,298.204724)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.00038 6.002658 L 3.999132 6.002658 " transform="matrix(-0.000000000000000104,-0.566929,0.566929,-0.000000000000000104,155.905512,298.204724)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.00038 9.998969 L 3.999132 9.998969 " transform="matrix(-0.000000000000000104,-0.566929,0.566929,-0.000000000000000104,155.905512,298.204724)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 324.50038 0.501411 L 0.50293 0.501411 " transform="matrix(0.566929,0,0,0.566929,152.503937,102.614173)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.996962 0.00260417 L -0.00157335 10.000271 L 5.000705 0.00260417 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,336.188976,102.614173)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.996962 11.998427 L 5.000705 11.998427 " transform="matrix(0.000000000000000035,0.566929,-0.566929,0.000000000000000035,336.188976,102.614173)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.001628 6.001302 L 3.997884 6.001302 " transform="matrix(-0.000000000000000104,-0.566929,0.566929,-0.000000000000000104,152.503937,102.614173)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.001628 9.997613 L 3.997884 9.997613 " transform="matrix(-0.000000000000000104,-0.566929,0.566929,-0.000000000000000104,152.503937,102.614173)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.501411 0.501085 L 0.501411 138.49783 " transform="matrix(0.566929,0,0,0.566929,390.614173,153.637795)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.996962 -0.00189887 L -0.00157335 10.002658 L 5.000705 -0.00189887 " transform="matrix(0.566929,0,0,0.566929,390.614173,153.637795)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.996962 12.000814 L 5.000705 12.000814 " transform="matrix(0.566929,0,0,0.566929,390.614173,153.637795)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.001628 5.99962 L 3.997884 5.99962 " transform="matrix(-0.566929,0.000000000000000069,-0.000000000000000069,-0.566929,390.614173,231.874016)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.001628 10.002821 L 3.997884 10.002821 " transform="matrix(-0.566929,0.000000000000000069,-0.000000000000000069,-0.566929,390.614173,231.874016)"/>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(50%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;" d="M 106.501682 431.49821 C 106.501682 427.081597 110.084581 423.498698 114.501194 423.498698 L 267.497884 423.498698 C 271.921387 423.498698 275.497396 427.081597 275.497396 431.49821 L 275.497396 620.503038 C 275.497396 624.919651 271.921387 628.50255 267.497884 628.50255 L 114.501194 628.50255 C 110.084581 628.50255 106.501682 624.919651 106.501682 620.503038 Z M 106.501682 431.49821 " transform="matrix(0.566929,0,0,0.566929,0,0)"/>
+<path style="fill-rule:nonzero;fill:rgb(59.607843%,74.901961%,85.490196%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.501682 8.49821 C 0.501682 4.081597 4.084581 0.498698 8.501194 0.498698 L 161.497884 0.498698 C 165.921387 0.498698 169.497396 4.081597 169.497396 8.49821 L 169.497396 26.502279 L 0.501682 26.502279 Z M 0.501682 8.49821 " transform="matrix(0.566929,0,0,0.566929,60.094488,239.811024)"/>
+<use xlink:href="#image19033" transform="matrix(0.566929,0,0,0.566929,63.496063,242.645669)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-0" x="75.402344" y="248.84375"/>
-  <use xlink:href="#glyph0-1" x="79.557979" y="248.84375"/>
-  <use xlink:href="#glyph0-2" x="83.341566" y="248.84375"/>
-  <use xlink:href="#glyph0-1" x="87.497201" y="248.84375"/>
+  <use xlink:href="#glyph0-1" x="75.402344" y="249.964844"/>
+  <use xlink:href="#glyph0-2" x="79.555206" y="249.964844"/>
+  <use xlink:href="#glyph0-3" x="83.334244" y="249.964844"/>
+  <use xlink:href="#glyph0-2" x="87.487106" y="249.964844"/>
 </g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40%,40%,40%);fill-opacity:1;" d="M 147.117188 244.628906 L 152.21875 244.628906 L 149.667969 249.164062 Z M 147.117188 244.628906 "/>
-<use xlink:href="#image520" transform="matrix(0.566929,0,0,0.566929,62.362205,255.685039)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40%,40%,40%);fill-opacity:1;" d="M 147.117188 245.195312 L 152.21875 245.195312 L 149.667969 249.730469 Z M 147.117188 245.195312 "/>
+<use xlink:href="#image19034" transform="matrix(0.566929,0,0,0.566929,62.362205,258.23622)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-0" x="69.730469" y="260.84375"/>
-  <use xlink:href="#glyph1-1" x="73.198757" y="260.84375"/>
-  <use xlink:href="#glyph1-2" x="76.667046" y="260.84375"/>
-  <use xlink:href="#glyph1-1" x="80.135335" y="260.84375"/>
-  <use xlink:href="#glyph1-3" x="83.603623" y="260.84375"/>
-  <use xlink:href="#glyph1-4" x="87.071912" y="260.84375"/>
-  <use xlink:href="#glyph1-5" x="88.4574" y="260.84375"/>
-  <use xlink:href="#glyph1-6" x="91.925689" y="260.84375"/>
-  <use xlink:href="#glyph1-7" x="93.658311" y="260.84375"/>
-  <use xlink:href="#glyph1-8" x="97.817821" y="260.84375"/>
-  <use xlink:href="#glyph1-9" x="101.977331" y="260.84375"/>
-  <use xlink:href="#glyph1-10" x="106.48093" y="260.84375"/>
-  <use xlink:href="#glyph1-11" x="110.984529" y="260.84375"/>
-  <use xlink:href="#glyph1-8" x="115.488127" y="260.84375"/>
-  <use xlink:href="#glyph1-9" x="119.647638" y="260.84375"/>
-  <use xlink:href="#glyph1-12" x="124.151236" y="260.84375"/>
-  <use xlink:href="#glyph1-13" x="126.227947" y="260.84375"/>
-  <use xlink:href="#glyph1-14" x="129.696235" y="260.84375"/>
-  <use xlink:href="#glyph1-14" x="133.164524" y="260.84375"/>
-  <use xlink:href="#glyph1-15" x="136.632812" y="260.84375"/>
+  <use xlink:href="#glyph1-1" x="69.730469" y="264.492188"/>
+  <use xlink:href="#glyph1-2" x="73.196793" y="264.492188"/>
+  <use xlink:href="#glyph1-3" x="76.663116" y="264.492188"/>
+  <use xlink:href="#glyph1-2" x="80.12944" y="264.492188"/>
+  <use xlink:href="#glyph1-4" x="83.595764" y="264.492188"/>
+  <use xlink:href="#glyph1-5" x="87.062088" y="264.492188"/>
+  <use xlink:href="#glyph1-6" x="88.446121" y="264.492188"/>
+  <use xlink:href="#glyph1-7" x="91.912445" y="264.492188"/>
+  <use xlink:href="#glyph1-8" x="93.645615" y="264.492188"/>
+  <use xlink:href="#glyph1-9" x="97.80397" y="264.492188"/>
+  <use xlink:href="#glyph1-10" x="101.962326" y="264.492188"/>
+  <use xlink:href="#glyph1-11" x="106.463562" y="264.492188"/>
+  <use xlink:href="#glyph1-12" x="110.964798" y="264.492188"/>
+  <use xlink:href="#glyph1-9" x="115.466034" y="264.492188"/>
+  <use xlink:href="#glyph1-10" x="119.62439" y="264.492188"/>
+  <use xlink:href="#glyph1-13" x="124.125626" y="264.492188"/>
+  <use xlink:href="#glyph1-14" x="126.201691" y="264.492188"/>
+  <use xlink:href="#glyph1-15" x="129.668015" y="264.492188"/>
+  <use xlink:href="#glyph1-15" x="133.134338" y="264.492188"/>
+  <use xlink:href="#glyph1-16" x="136.600662" y="264.492188"/>
 </g>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.670681 13.099392 " transform="matrix(0.566929,0,0,0.566929,67.464567,253.417323)"/>
-<use xlink:href="#image521" transform="matrix(0.566929,0,0,0.566929,62.362205,267.023622)"/>
+<use xlink:href="#image19035" transform="matrix(0.566929,0,0,0.566929,62.362205,272.409449)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-0" x="69.730469" y="272.183594"/>
-  <use xlink:href="#glyph1-1" x="73.198757" y="272.183594"/>
-  <use xlink:href="#glyph1-2" x="76.667046" y="272.183594"/>
-  <use xlink:href="#glyph1-1" x="80.135335" y="272.183594"/>
-  <use xlink:href="#glyph1-3" x="83.603623" y="272.183594"/>
-  <use xlink:href="#glyph1-16" x="87.071912" y="272.183594"/>
-  <use xlink:href="#glyph1-17" x="90.190022" y="272.183594"/>
-  <use xlink:href="#glyph1-18" x="93.308132" y="272.183594"/>
-  <use xlink:href="#glyph1-19" x="98.502953" y="272.183594"/>
-  <use xlink:href="#glyph1-20" x="101.971241" y="272.183594"/>
-  <use xlink:href="#glyph1-21" x="105.43953" y="272.183594"/>
-  <use xlink:href="#glyph1-6" x="106.825018" y="272.183594"/>
-  <use xlink:href="#glyph1-7" x="108.55764" y="272.183594"/>
-  <use xlink:href="#glyph1-8" x="112.717151" y="272.183594"/>
-  <use xlink:href="#glyph1-9" x="116.876661" y="272.183594"/>
-  <use xlink:href="#glyph1-10" x="121.38026" y="272.183594"/>
-  <use xlink:href="#glyph1-11" x="125.883858" y="272.183594"/>
-  <use xlink:href="#glyph1-8" x="130.387457" y="272.183594"/>
-  <use xlink:href="#glyph1-9" x="134.546967" y="272.183594"/>
-  <use xlink:href="#glyph1-12" x="139.050566" y="272.183594"/>
-  <use xlink:href="#glyph1-13" x="141.127276" y="272.183594"/>
-  <use xlink:href="#glyph1-14" x="144.595565" y="272.183594"/>
-  <use xlink:href="#glyph1-14" x="148.063853" y="272.183594"/>
-  <use xlink:href="#glyph1-15" x="151.532142" y="272.183594"/>
+  <use xlink:href="#glyph1-1" x="69.730469" y="278.664062"/>
+  <use xlink:href="#glyph1-2" x="73.196793" y="278.664062"/>
+  <use xlink:href="#glyph1-3" x="76.663116" y="278.664062"/>
+  <use xlink:href="#glyph1-2" x="80.12944" y="278.664062"/>
+  <use xlink:href="#glyph1-4" x="83.595764" y="278.664062"/>
+  <use xlink:href="#glyph1-17" x="87.062088" y="278.664062"/>
+  <use xlink:href="#glyph1-18" x="90.179291" y="278.664062"/>
+  <use xlink:href="#glyph1-19" x="93.296494" y="278.664062"/>
+  <use xlink:href="#glyph1-20" x="98.489761" y="278.664062"/>
+  <use xlink:href="#glyph1-21" x="101.956085" y="278.664062"/>
+  <use xlink:href="#glyph1-22" x="105.422409" y="278.664062"/>
+  <use xlink:href="#glyph1-7" x="106.806442" y="278.664062"/>
+  <use xlink:href="#glyph1-8" x="108.539612" y="278.664062"/>
+  <use xlink:href="#glyph1-9" x="112.697968" y="278.664062"/>
+  <use xlink:href="#glyph1-10" x="116.856323" y="278.664062"/>
+  <use xlink:href="#glyph1-11" x="121.357559" y="278.664062"/>
+  <use xlink:href="#glyph1-12" x="125.858795" y="278.664062"/>
+  <use xlink:href="#glyph1-9" x="130.360031" y="278.664062"/>
+  <use xlink:href="#glyph1-10" x="134.518387" y="278.664062"/>
+  <use xlink:href="#glyph1-13" x="139.019623" y="278.664062"/>
+  <use xlink:href="#glyph1-14" x="141.095688" y="278.664062"/>
+  <use xlink:href="#glyph1-15" x="144.562012" y="278.664062"/>
+  <use xlink:href="#glyph1-15" x="148.028336" y="278.664062"/>
+  <use xlink:href="#glyph1-16" x="151.494659" y="278.664062"/>
 </g>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.94987 33.101617 " transform="matrix(0.566929,0,0,0.566929,67.464567,253.417323)"/>
-<use xlink:href="#image522" transform="matrix(0.566929,0,0,0.566929,62.362205,278.362205)"/>
+<use xlink:href="#image19036" transform="matrix(0.566929,0,0,0.566929,62.362205,286.582677)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-0" x="69.730469" y="283.523438"/>
-  <use xlink:href="#glyph1-1" x="73.198757" y="283.523438"/>
-  <use xlink:href="#glyph1-2" x="76.667046" y="283.523438"/>
-  <use xlink:href="#glyph1-1" x="80.135335" y="283.523438"/>
-  <use xlink:href="#glyph1-3" x="83.603623" y="283.523438"/>
-  <use xlink:href="#glyph1-22" x="87.071912" y="283.523438"/>
-  <use xlink:href="#glyph1-16" x="88.4574" y="283.523438"/>
-  <use xlink:href="#glyph1-20" x="91.575511" y="283.523438"/>
-  <use xlink:href="#glyph1-2" x="95.043799" y="283.523438"/>
-  <use xlink:href="#glyph1-6" x="98.512088" y="283.523438"/>
-  <use xlink:href="#glyph1-7" x="100.24471" y="283.523438"/>
-  <use xlink:href="#glyph1-8" x="104.40422" y="283.523438"/>
-  <use xlink:href="#glyph1-9" x="108.56373" y="283.523438"/>
-  <use xlink:href="#glyph1-10" x="113.067329" y="283.523438"/>
-  <use xlink:href="#glyph1-11" x="117.570928" y="283.523438"/>
-  <use xlink:href="#glyph1-8" x="122.074526" y="283.523438"/>
-  <use xlink:href="#glyph1-9" x="126.234037" y="283.523438"/>
-  <use xlink:href="#glyph1-12" x="130.737635" y="283.523438"/>
-  <use xlink:href="#glyph1-13" x="132.814345" y="283.523438"/>
-  <use xlink:href="#glyph1-14" x="136.282634" y="283.523438"/>
-  <use xlink:href="#glyph1-14" x="139.750923" y="283.523438"/>
-  <use xlink:href="#glyph1-15" x="143.219211" y="283.523438"/>
+  <use xlink:href="#glyph1-17" x="69.730469" y="292.835938"/>
+  <use xlink:href="#glyph1-23" x="72.847672" y="292.835938"/>
+  <use xlink:href="#glyph1-2" x="76.313995" y="292.835938"/>
+  <use xlink:href="#glyph1-24" x="79.780319" y="292.835938"/>
+  <use xlink:href="#glyph1-5" x="82.897522" y="292.835938"/>
+  <use xlink:href="#glyph1-2" x="84.281555" y="292.835938"/>
+  <use xlink:href="#glyph1-17" x="87.747879" y="292.835938"/>
+  <use xlink:href="#glyph1-7" x="90.865082" y="292.835938"/>
+  <use xlink:href="#glyph1-8" x="92.598251" y="292.835938"/>
+  <use xlink:href="#glyph1-9" x="96.756607" y="292.835938"/>
+  <use xlink:href="#glyph1-10" x="100.914963" y="292.835938"/>
+  <use xlink:href="#glyph1-11" x="105.416199" y="292.835938"/>
+  <use xlink:href="#glyph1-12" x="109.917435" y="292.835938"/>
+  <use xlink:href="#glyph1-9" x="114.418671" y="292.835938"/>
+  <use xlink:href="#glyph1-10" x="118.577026" y="292.835938"/>
+  <use xlink:href="#glyph1-13" x="123.078262" y="292.835938"/>
+  <use xlink:href="#glyph1-25" x="125.154327" y="292.835938"/>
+  <use xlink:href="#glyph1-15" x="128.620651" y="292.835938"/>
+  <use xlink:href="#glyph1-16" x="132.086975" y="292.835938"/>
 </g>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.287543 53.103841 " transform="matrix(0.566929,0,0,0.566929,67.464567,253.417323)"/>
-<path style="fill-rule:nonzero;fill:rgb(77%,77%,77%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.501682 59.497938 L 169.504286 59.497938 L 169.504286 78.501085 L 0.501682 78.501085 Z M 0.501682 59.497938 " transform="matrix(0.566929,0,0,0.566929,60.094488,253.417323)"/>
+<use xlink:href="#image19036" transform="matrix(0.566929,0,0,0.566929,62.362205,300.755906)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="69.730469" y="307.011719"/>
+  <use xlink:href="#glyph1-2" x="73.196793" y="307.011719"/>
+  <use xlink:href="#glyph1-3" x="76.663116" y="307.011719"/>
+  <use xlink:href="#glyph1-2" x="80.12944" y="307.011719"/>
+  <use xlink:href="#glyph1-4" x="83.595764" y="307.011719"/>
+  <use xlink:href="#glyph1-26" x="87.062088" y="307.011719"/>
+  <use xlink:href="#glyph1-17" x="88.446121" y="307.011719"/>
+  <use xlink:href="#glyph1-21" x="91.563324" y="307.011719"/>
+  <use xlink:href="#glyph1-3" x="95.029648" y="307.011719"/>
+  <use xlink:href="#glyph1-7" x="98.495972" y="307.011719"/>
+  <use xlink:href="#glyph1-8" x="100.229141" y="307.011719"/>
+  <use xlink:href="#glyph1-9" x="104.387497" y="307.011719"/>
+  <use xlink:href="#glyph1-10" x="108.545853" y="307.011719"/>
+  <use xlink:href="#glyph1-11" x="113.047089" y="307.011719"/>
+  <use xlink:href="#glyph1-12" x="117.548325" y="307.011719"/>
+  <use xlink:href="#glyph1-9" x="122.049561" y="307.011719"/>
+  <use xlink:href="#glyph1-10" x="126.207916" y="307.011719"/>
+  <use xlink:href="#glyph1-13" x="130.709152" y="307.011719"/>
+  <use xlink:href="#glyph1-14" x="132.785217" y="307.011719"/>
+  <use xlink:href="#glyph1-15" x="136.251541" y="307.011719"/>
+  <use xlink:href="#glyph1-15" x="139.717865" y="307.011719"/>
+  <use xlink:href="#glyph1-16" x="143.184189" y="307.011719"/>
+</g>
+<path style="fill-rule:nonzero;fill:rgb(77%,77%,77%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.501682 99.500543 L 169.504286 99.500543 L 169.504286 123.499078 L 0.501682 123.499078 Z M 0.501682 99.500543 " transform="matrix(0.566929,0,0,0.566929,60.094488,254.551181)"/>
 <g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
-  <use xlink:href="#glyph2-0" x="63.496094" y="293.9375"/>
-  <use xlink:href="#glyph2-1" x="65.228716" y="293.9375"/>
-  <use xlink:href="#glyph2-2" x="69.038047" y="293.9375"/>
-  <use xlink:href="#glyph2-3" x="72.847379" y="293.9375"/>
-  <use xlink:href="#glyph2-4" x="76.315668" y="293.9375"/>
-  <use xlink:href="#glyph2-3" x="79.783957" y="293.9375"/>
-  <use xlink:href="#glyph2-5" x="83.252245" y="293.9375"/>
+  <use xlink:href="#glyph2-1" x="63.496094" y="320.03125"/>
+  <use xlink:href="#glyph2-2" x="65.229263" y="320.03125"/>
+  <use xlink:href="#glyph2-3" x="69.038483" y="320.03125"/>
+  <use xlink:href="#glyph2-4" x="72.847702" y="320.03125"/>
+  <use xlink:href="#glyph2-5" x="76.314026" y="320.03125"/>
+  <use xlink:href="#glyph2-4" x="79.78035" y="320.03125"/>
+  <use xlink:href="#glyph2-6" x="83.246674" y="320.03125"/>
 </g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40%,40%,40%);fill-opacity:1;" d="M 147.117188 290.269531 L 152.21875 290.269531 L 149.667969 294.804688 Z M 147.117188 290.269531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40%,40%,40%);fill-opacity:1;" d="M 147.117188 315.496094 L 152.21875 315.496094 L 149.667969 320.03125 Z M 147.117188 315.496094 "/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-23" x="62.363281" y="305.066406"/>
-  <use xlink:href="#glyph1-9" x="66.522792" y="305.066406"/>
-  <use xlink:href="#glyph1-24" x="71.02639" y="305.066406"/>
-  <use xlink:href="#glyph1-25" x="72.759012" y="305.066406"/>
-  <use xlink:href="#glyph1-8" x="77.953832" y="305.066406"/>
-  <use xlink:href="#glyph1-9" x="82.113343" y="305.066406"/>
-  <use xlink:href="#glyph1-26" x="86.616941" y="305.066406"/>
+  <use xlink:href="#glyph1-27" x="62.363281" y="334.222656"/>
+  <use xlink:href="#glyph1-10" x="66.521637" y="334.222656"/>
+  <use xlink:href="#glyph1-28" x="71.022873" y="334.222656"/>
+  <use xlink:href="#glyph1-29" x="72.756042" y="334.222656"/>
+  <use xlink:href="#glyph1-9" x="77.94931" y="334.222656"/>
+  <use xlink:href="#glyph1-10" x="82.107666" y="334.222656"/>
+  <use xlink:href="#glyph1-30" x="86.608902" y="334.222656"/>
 </g>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-0" x="62.363281" y="315.835938"/>
-  <use xlink:href="#glyph1-1" x="65.83157" y="315.835938"/>
-  <use xlink:href="#glyph1-2" x="69.299859" y="315.835938"/>
-  <use xlink:href="#glyph1-1" x="72.768147" y="315.835938"/>
-  <use xlink:href="#glyph1-3" x="76.236436" y="315.835938"/>
-  <use xlink:href="#glyph1-16" x="79.704724" y="315.835938"/>
-  <use xlink:href="#glyph1-17" x="82.822835" y="315.835938"/>
-  <use xlink:href="#glyph1-18" x="85.940945" y="315.835938"/>
-  <use xlink:href="#glyph1-19" x="91.135765" y="315.835938"/>
-  <use xlink:href="#glyph1-20" x="94.604054" y="315.835938"/>
-  <use xlink:href="#glyph1-21" x="98.072343" y="315.835938"/>
-  <use xlink:href="#glyph1-3" x="99.457831" y="315.835938"/>
-  <use xlink:href="#glyph1-4" x="102.92612" y="315.835938"/>
-  <use xlink:href="#glyph1-2" x="104.311608" y="315.835938"/>
-  <use xlink:href="#glyph1-5" x="107.779897" y="315.835938"/>
-  <use xlink:href="#glyph1-1" x="111.248185" y="315.835938"/>
-  <use xlink:href="#glyph1-27" x="114.716474" y="315.835938"/>
+  <use xlink:href="#glyph1-1" x="62.363281" y="347.828125"/>
+  <use xlink:href="#glyph1-2" x="65.829605" y="347.828125"/>
+  <use xlink:href="#glyph1-3" x="69.295929" y="347.828125"/>
+  <use xlink:href="#glyph1-2" x="72.762253" y="347.828125"/>
+  <use xlink:href="#glyph1-4" x="76.228577" y="347.828125"/>
+  <use xlink:href="#glyph1-17" x="79.694901" y="347.828125"/>
+  <use xlink:href="#glyph1-18" x="82.812103" y="347.828125"/>
+  <use xlink:href="#glyph1-19" x="85.929306" y="347.828125"/>
+  <use xlink:href="#glyph1-20" x="91.122574" y="347.828125"/>
+  <use xlink:href="#glyph1-21" x="94.588898" y="347.828125"/>
+  <use xlink:href="#glyph1-22" x="98.055222" y="347.828125"/>
+  <use xlink:href="#glyph1-4" x="99.439255" y="347.828125"/>
+  <use xlink:href="#glyph1-5" x="102.905579" y="347.828125"/>
+  <use xlink:href="#glyph1-3" x="104.289612" y="347.828125"/>
+  <use xlink:href="#glyph1-6" x="107.755936" y="347.828125"/>
+  <use xlink:href="#glyph1-2" x="111.22226" y="347.828125"/>
+  <use xlink:href="#glyph1-31" x="114.688583" y="347.828125"/>
 </g>
-<path style="fill-rule:nonzero;fill:rgb(59.607843%,74.901961%,85.490196%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.497396 116.500488 L 169.497396 116.500488 C 169.497396 120.917101 165.921387 124.5 161.497884 124.5 L 8.501194 124.5 C 4.084581 124.5 0.501682 120.917101 0.501682 116.500488 Z M 169.497396 116.500488 " transform="matrix(0.566929,0,0,0.566929,60.094488,253.417323)"/>
-<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(50%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;" d="M 594.499457 403.503364 C 594.499457 399.079861 598.082357 395.496962 602.498969 395.496962 L 788.499674 395.496962 C 792.916287 395.496962 796.499186 399.079861 796.499186 403.503364 L 796.499186 591.502224 C 796.499186 595.918837 792.916287 599.501736 788.499674 599.501736 L 602.498969 599.501736 C 598.082357 599.501736 594.499457 595.918837 594.499457 591.502224 Z M 594.499457 403.503364 " transform="matrix(0.566929,0,0,0.566929,0,0)"/>
-<path style="fill-rule:nonzero;fill:rgb(59.607843%,74.901961%,85.490196%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.499457 8.503364 C 0.499457 4.079861 4.082357 0.496962 8.498969 0.496962 L 194.499674 0.496962 C 198.916287 0.496962 202.499186 4.079861 202.499186 8.503364 L 202.499186 24.502387 L 0.499457 24.502387 Z M 0.499457 8.503364 " transform="matrix(0.566929,0,0,0.566929,336.755906,223.937008)"/>
-<use xlink:href="#image519" transform="matrix(0.566929,0,0,0.566929,340.15748,226.204724)"/>
+<path style="fill-rule:nonzero;fill:rgb(59.607843%,74.901961%,85.490196%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.497396 171.503038 C 169.497396 175.919651 165.921387 179.50255 161.497884 179.50255 L 8.501194 179.50255 C 4.084581 179.50255 0.501682 175.919651 0.501682 171.503038 Z M 169.497396 171.503038 " transform="matrix(0.566929,0,0,0.566929,60.094488,254.551181)"/>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(50%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;" d="M 588.498101 417.497342 C 588.498101 413.080729 592.081 409.49783 596.497613 409.49783 L 782.498318 409.49783 C 786.914931 409.49783 790.49783 413.080729 790.49783 417.497342 L 790.49783 634.497016 C 790.49783 638.920519 786.914931 642.503418 782.498318 642.503418 L 596.497613 642.503418 C 592.081 642.503418 588.498101 638.920519 588.498101 634.497016 Z M 588.498101 417.497342 " transform="matrix(0.566929,0,0,0.566929,0,0)"/>
+<path style="fill-rule:nonzero;fill:rgb(59.607843%,74.901961%,85.490196%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.498101 8.497342 C 0.498101 4.080729 4.081 0.49783 8.497613 0.49783 L 194.498318 0.49783 C 198.914931 0.49783 202.49783 4.080729 202.49783 8.497342 L 202.49783 26.501411 L 0.498101 26.501411 Z M 0.498101 8.497342 " transform="matrix(0.566929,0,0,0.566929,333.354331,231.874016)"/>
+<use xlink:href="#image19033" transform="matrix(0.566929,0,0,0.566929,336.755906,234.708661)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-3" x="352.0625" y="232.96875"/>
-  <use xlink:href="#glyph0-4" x="354.328002" y="232.96875"/>
-  <use xlink:href="#glyph0-5" x="356.975517" y="232.96875"/>
-  <use xlink:href="#glyph0-2" x="360.759104" y="232.96875"/>
-  <use xlink:href="#glyph0-6" x="364.914739" y="232.96875"/>
-  <use xlink:href="#glyph0-7" x="368.698327" y="232.96875"/>
-  <use xlink:href="#glyph0-4" x="372.481914" y="232.96875"/>
-  <use xlink:href="#glyph0-8" x="375.129429" y="232.96875"/>
-  <use xlink:href="#glyph0-9" x="377.019562" y="232.96875"/>
-  <use xlink:href="#glyph0-3" x="381.175197" y="232.96875"/>
+  <use xlink:href="#glyph0-4" x="348.660156" y="242.027344"/>
+  <use xlink:href="#glyph0-5" x="350.923508" y="242.027344"/>
+  <use xlink:href="#glyph0-6" x="353.567474" y="242.027344"/>
+  <use xlink:href="#glyph0-3" x="357.346512" y="242.027344"/>
+  <use xlink:href="#glyph0-7" x="361.499374" y="242.027344"/>
+  <use xlink:href="#glyph0-8" x="365.278412" y="242.027344"/>
+  <use xlink:href="#glyph0-5" x="369.057449" y="242.027344"/>
+  <use xlink:href="#glyph0-9" x="371.701416" y="242.027344"/>
+  <use xlink:href="#glyph0-10" x="373.590942" y="242.027344"/>
+  <use xlink:href="#glyph0-4" x="377.743805" y="242.027344"/>
 </g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40%,40%,40%);fill-opacity:1;" d="M 442.488281 228.757812 L 447.589844 228.757812 L 445.039062 233.292969 Z M 442.488281 228.757812 "/>
-<use xlink:href="#image520" transform="matrix(0.566929,0,0,0.566929,339.023622,239.811024)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40%,40%,40%);fill-opacity:1;" d="M 439.085938 237.261719 L 444.1875 237.261719 L 441.636719 241.796875 Z M 439.085938 237.261719 "/>
+<use xlink:href="#image19034" transform="matrix(0.566929,0,0,0.566929,335.622047,250.299213)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-28" x="346.394531" y="244.972656"/>
-  <use xlink:href="#glyph1-29" x="348.127153" y="244.972656"/>
-  <use xlink:href="#glyph1-30" x="350.203863" y="244.972656"/>
-  <use xlink:href="#glyph1-2" x="353.672152" y="244.972656"/>
-  <use xlink:href="#glyph1-16" x="357.14044" y="244.972656"/>
-  <use xlink:href="#glyph1-31" x="360.258551" y="244.972656"/>
-  <use xlink:href="#glyph1-29" x="363.376661" y="244.972656"/>
-  <use xlink:href="#glyph1-4" x="365.453371" y="244.972656"/>
-  <use xlink:href="#glyph1-32" x="366.838859" y="244.972656"/>
-  <use xlink:href="#glyph1-28" x="370.307148" y="244.972656"/>
-  <use xlink:href="#glyph1-3" x="372.03977" y="244.972656"/>
-  <use xlink:href="#glyph1-4" x="375.508059" y="244.972656"/>
-  <use xlink:href="#glyph1-5" x="376.893547" y="244.972656"/>
-  <use xlink:href="#glyph1-6" x="380.361836" y="244.972656"/>
-  <use xlink:href="#glyph1-7" x="382.094457" y="244.972656"/>
-  <use xlink:href="#glyph1-8" x="386.253968" y="244.972656"/>
-  <use xlink:href="#glyph1-9" x="390.413478" y="244.972656"/>
-  <use xlink:href="#glyph1-10" x="394.917077" y="244.972656"/>
-  <use xlink:href="#glyph1-11" x="399.420675" y="244.972656"/>
-  <use xlink:href="#glyph1-8" x="403.924274" y="244.972656"/>
-  <use xlink:href="#glyph1-9" x="408.083784" y="244.972656"/>
-  <use xlink:href="#glyph1-12" x="412.587383" y="244.972656"/>
-  <use xlink:href="#glyph1-13" x="414.664093" y="244.972656"/>
-  <use xlink:href="#glyph1-14" x="418.132382" y="244.972656"/>
-  <use xlink:href="#glyph1-14" x="421.600671" y="244.972656"/>
-  <use xlink:href="#glyph1-15" x="425.068959" y="244.972656"/>
+  <use xlink:href="#glyph1-32" x="342.992188" y="256.554688"/>
+  <use xlink:href="#glyph1-33" x="344.725357" y="256.554688"/>
+  <use xlink:href="#glyph1-34" x="346.801422" y="256.554688"/>
+  <use xlink:href="#glyph1-3" x="350.267746" y="256.554688"/>
+  <use xlink:href="#glyph1-17" x="353.73407" y="256.554688"/>
+  <use xlink:href="#glyph1-24" x="356.851273" y="256.554688"/>
+  <use xlink:href="#glyph1-33" x="359.968475" y="256.554688"/>
+  <use xlink:href="#glyph1-5" x="362.04454" y="256.554688"/>
+  <use xlink:href="#glyph1-23" x="363.428574" y="256.554688"/>
+  <use xlink:href="#glyph1-32" x="366.894897" y="256.554688"/>
+  <use xlink:href="#glyph1-4" x="368.628067" y="256.554688"/>
+  <use xlink:href="#glyph1-5" x="372.094391" y="256.554688"/>
+  <use xlink:href="#glyph1-6" x="373.478424" y="256.554688"/>
+  <use xlink:href="#glyph1-7" x="376.944748" y="256.554688"/>
+  <use xlink:href="#glyph1-8" x="378.677917" y="256.554688"/>
+  <use xlink:href="#glyph1-9" x="382.836273" y="256.554688"/>
+  <use xlink:href="#glyph1-10" x="386.994629" y="256.554688"/>
+  <use xlink:href="#glyph1-11" x="391.495865" y="256.554688"/>
+  <use xlink:href="#glyph1-12" x="395.997101" y="256.554688"/>
+  <use xlink:href="#glyph1-9" x="400.498337" y="256.554688"/>
+  <use xlink:href="#glyph1-10" x="404.656693" y="256.554688"/>
+  <use xlink:href="#glyph1-13" x="409.157928" y="256.554688"/>
+  <use xlink:href="#glyph1-14" x="411.233994" y="256.554688"/>
+  <use xlink:href="#glyph1-15" x="414.700317" y="256.554688"/>
+  <use xlink:href="#glyph1-15" x="418.166641" y="256.554688"/>
+  <use xlink:href="#glyph1-16" x="421.632965" y="256.554688"/>
 </g>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.435493 13.104546 " transform="matrix(0.566929,0,0,0.566929,344.125984,237.543307)"/>
-<use xlink:href="#image521" transform="matrix(0.566929,0,0,0.566929,339.023622,251.149606)"/>
+<use xlink:href="#image19035" transform="matrix(0.566929,0,0,0.566929,335.622047,264.472441)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-32" x="346.394531" y="256.308594"/>
-  <use xlink:href="#glyph1-29" x="349.86282" y="256.308594"/>
-  <use xlink:href="#glyph1-20" x="351.93953" y="256.308594"/>
-  <use xlink:href="#glyph1-28" x="355.407819" y="256.308594"/>
-  <use xlink:href="#glyph1-1" x="357.14044" y="256.308594"/>
-  <use xlink:href="#glyph1-4" x="360.608729" y="256.308594"/>
-  <use xlink:href="#glyph1-2" x="361.994218" y="256.308594"/>
-  <use xlink:href="#glyph1-3" x="365.462506" y="256.308594"/>
-  <use xlink:href="#glyph1-4" x="368.930795" y="256.308594"/>
-  <use xlink:href="#glyph1-5" x="370.316283" y="256.308594"/>
-  <use xlink:href="#glyph1-6" x="373.784572" y="256.308594"/>
-  <use xlink:href="#glyph1-7" x="375.517194" y="256.308594"/>
-  <use xlink:href="#glyph1-8" x="379.676704" y="256.308594"/>
-  <use xlink:href="#glyph1-9" x="383.836214" y="256.308594"/>
-  <use xlink:href="#glyph1-10" x="388.339813" y="256.308594"/>
-  <use xlink:href="#glyph1-11" x="392.843412" y="256.308594"/>
-  <use xlink:href="#glyph1-8" x="397.34701" y="256.308594"/>
-  <use xlink:href="#glyph1-9" x="401.506521" y="256.308594"/>
-  <use xlink:href="#glyph1-12" x="406.010119" y="256.308594"/>
-  <use xlink:href="#glyph1-13" x="408.086829" y="256.308594"/>
-  <use xlink:href="#glyph1-14" x="411.555118" y="256.308594"/>
-  <use xlink:href="#glyph1-14" x="415.023407" y="256.308594"/>
-  <use xlink:href="#glyph1-15" x="418.491695" y="256.308594"/>
+  <use xlink:href="#glyph1-23" x="342.992188" y="270.726562"/>
+  <use xlink:href="#glyph1-33" x="346.458511" y="270.726562"/>
+  <use xlink:href="#glyph1-21" x="348.534576" y="270.726562"/>
+  <use xlink:href="#glyph1-32" x="352.0009" y="270.726562"/>
+  <use xlink:href="#glyph1-2" x="353.73407" y="270.726562"/>
+  <use xlink:href="#glyph1-5" x="357.200394" y="270.726562"/>
+  <use xlink:href="#glyph1-3" x="358.584427" y="270.726562"/>
+  <use xlink:href="#glyph1-4" x="362.050751" y="270.726562"/>
+  <use xlink:href="#glyph1-5" x="365.517075" y="270.726562"/>
+  <use xlink:href="#glyph1-6" x="366.901108" y="270.726562"/>
+  <use xlink:href="#glyph1-7" x="370.367432" y="270.726562"/>
+  <use xlink:href="#glyph1-8" x="372.100601" y="270.726562"/>
+  <use xlink:href="#glyph1-9" x="376.258957" y="270.726562"/>
+  <use xlink:href="#glyph1-10" x="380.417313" y="270.726562"/>
+  <use xlink:href="#glyph1-11" x="384.918549" y="270.726562"/>
+  <use xlink:href="#glyph1-12" x="389.419785" y="270.726562"/>
+  <use xlink:href="#glyph1-9" x="393.921021" y="270.726562"/>
+  <use xlink:href="#glyph1-10" x="398.079376" y="270.726562"/>
+  <use xlink:href="#glyph1-13" x="402.580612" y="270.726562"/>
+  <use xlink:href="#glyph1-14" x="404.656677" y="270.726562"/>
+  <use xlink:href="#glyph1-15" x="408.123001" y="270.726562"/>
+  <use xlink:href="#glyph1-15" x="411.589325" y="270.726562"/>
+  <use xlink:href="#glyph1-16" x="415.055649" y="270.726562"/>
 </g>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 134.839301 33.099881 " transform="matrix(0.566929,0,0,0.566929,344.125984,237.543307)"/>
-<use xlink:href="#image523" transform="matrix(0.566929,0,0,0.566929,339.023622,262.488189)"/>
-<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-0" x="346.394531" y="267.648438"/>
-  <use xlink:href="#glyph1-1" x="349.86282" y="267.648438"/>
-  <use xlink:href="#glyph1-2" x="353.331109" y="267.648438"/>
-  <use xlink:href="#glyph1-1" x="356.799397" y="267.648438"/>
-  <use xlink:href="#glyph1-3" x="360.267686" y="267.648438"/>
-  <use xlink:href="#glyph1-4" x="363.735974" y="267.648438"/>
-  <use xlink:href="#glyph1-5" x="365.121463" y="267.648438"/>
-  <use xlink:href="#glyph1-6" x="368.589751" y="267.648438"/>
-  <use xlink:href="#glyph1-7" x="370.322373" y="267.648438"/>
-  <use xlink:href="#glyph1-8" x="374.481884" y="267.648438"/>
-  <use xlink:href="#glyph1-9" x="378.641394" y="267.648438"/>
-  <use xlink:href="#glyph1-10" x="383.144993" y="267.648438"/>
-  <use xlink:href="#glyph1-11" x="387.648591" y="267.648438"/>
-  <use xlink:href="#glyph1-8" x="392.15219" y="267.648438"/>
-  <use xlink:href="#glyph1-9" x="396.3117" y="267.648438"/>
-  <use xlink:href="#glyph1-12" x="400.815299" y="267.648438"/>
-  <use xlink:href="#glyph1-13" x="402.892009" y="267.648438"/>
-  <use xlink:href="#glyph1-14" x="406.360298" y="267.648438"/>
-  <use xlink:href="#glyph1-14" x="409.828586" y="267.648438"/>
-  <use xlink:href="#glyph1-15" x="413.296875" y="267.648438"/>
-</g>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.675347 53.102105 " transform="matrix(0.566929,0,0,0.566929,344.125984,237.543307)"/>
-<use xlink:href="#image522" transform="matrix(0.566929,0,0,0.566929,339.023622,273.826772)"/>
+<use xlink:href="#image19035" transform="matrix(0.566929,0,0,0.566929,335.622047,278.645669)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-32" x="346.394531" y="278.988281"/>
-  <use xlink:href="#glyph1-29" x="349.86282" y="278.988281"/>
-  <use xlink:href="#glyph1-20" x="351.93953" y="278.988281"/>
-  <use xlink:href="#glyph1-28" x="355.407819" y="278.988281"/>
-  <use xlink:href="#glyph1-1" x="357.14044" y="278.988281"/>
-  <use xlink:href="#glyph1-4" x="360.608729" y="278.988281"/>
-  <use xlink:href="#glyph1-2" x="361.994218" y="278.988281"/>
-  <use xlink:href="#glyph1-3" x="365.462506" y="278.988281"/>
-  <use xlink:href="#glyph1-16" x="368.930795" y="278.988281"/>
-  <use xlink:href="#glyph1-1" x="372.048905" y="278.988281"/>
-  <use xlink:href="#glyph1-33" x="375.517194" y="278.988281"/>
-  <use xlink:href="#glyph1-34" x="378.985482" y="278.988281"/>
-  <use xlink:href="#glyph1-1" x="382.453771" y="278.988281"/>
-  <use xlink:href="#glyph1-2" x="385.92206" y="278.988281"/>
-  <use xlink:href="#glyph1-31" x="389.390348" y="278.988281"/>
-  <use xlink:href="#glyph1-1" x="392.508458" y="278.988281"/>
-  <use xlink:href="#glyph1-6" x="395.976747" y="278.988281"/>
-  <use xlink:href="#glyph1-7" x="397.709369" y="278.988281"/>
-  <use xlink:href="#glyph1-8" x="401.868879" y="278.988281"/>
-  <use xlink:href="#glyph1-9" x="406.02839" y="278.988281"/>
-  <use xlink:href="#glyph1-10" x="410.531988" y="278.988281"/>
-  <use xlink:href="#glyph1-11" x="415.035587" y="278.988281"/>
-  <use xlink:href="#glyph1-8" x="419.539186" y="278.988281"/>
-  <use xlink:href="#glyph1-9" x="423.698696" y="278.988281"/>
-  <use xlink:href="#glyph1-12" x="428.202295" y="278.988281"/>
-  <use xlink:href="#glyph1-13" x="430.279005" y="278.988281"/>
-  <use xlink:href="#glyph1-14" x="433.747293" y="278.988281"/>
-  <use xlink:href="#glyph1-14" x="437.215582" y="278.988281"/>
-  <use xlink:href="#glyph1-15" x="440.683871" y="278.988281"/>
+  <use xlink:href="#glyph1-23" x="342.992188" y="284.902344"/>
+  <use xlink:href="#glyph1-33" x="346.458511" y="284.902344"/>
+  <use xlink:href="#glyph1-21" x="348.534576" y="284.902344"/>
+  <use xlink:href="#glyph1-32" x="352.0009" y="284.902344"/>
+  <use xlink:href="#glyph1-2" x="353.73407" y="284.902344"/>
+  <use xlink:href="#glyph1-5" x="357.200394" y="284.902344"/>
+  <use xlink:href="#glyph1-3" x="358.584427" y="284.902344"/>
+  <use xlink:href="#glyph1-4" x="362.050751" y="284.902344"/>
+  <use xlink:href="#glyph1-17" x="365.517075" y="284.902344"/>
+  <use xlink:href="#glyph1-2" x="368.634277" y="284.902344"/>
+  <use xlink:href="#glyph1-35" x="372.100601" y="284.902344"/>
+  <use xlink:href="#glyph1-36" x="375.566925" y="284.902344"/>
+  <use xlink:href="#glyph1-2" x="379.033249" y="284.902344"/>
+  <use xlink:href="#glyph1-3" x="382.499573" y="284.902344"/>
+  <use xlink:href="#glyph1-24" x="385.965897" y="284.902344"/>
+  <use xlink:href="#glyph1-2" x="389.083099" y="284.902344"/>
+  <use xlink:href="#glyph1-7" x="392.549423" y="284.902344"/>
+  <use xlink:href="#glyph1-8" x="394.282593" y="284.902344"/>
+  <use xlink:href="#glyph1-9" x="398.440948" y="284.902344"/>
+  <use xlink:href="#glyph1-10" x="402.599304" y="284.902344"/>
+  <use xlink:href="#glyph1-11" x="407.10054" y="284.902344"/>
+  <use xlink:href="#glyph1-12" x="411.601776" y="284.902344"/>
+  <use xlink:href="#glyph1-9" x="416.103012" y="284.902344"/>
+  <use xlink:href="#glyph1-10" x="420.261368" y="284.902344"/>
+  <use xlink:href="#glyph1-13" x="424.762604" y="284.902344"/>
+  <use xlink:href="#glyph1-14" x="426.838669" y="284.902344"/>
+  <use xlink:href="#glyph1-15" x="430.304993" y="284.902344"/>
+  <use xlink:href="#glyph1-15" x="433.771317" y="284.902344"/>
+  <use xlink:href="#glyph1-16" x="437.23764" y="284.902344"/>
 </g>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.982476 73.104329 " transform="matrix(0.566929,0,0,0.566929,344.125984,237.543307)"/>
-<path style="fill-rule:nonzero;fill:rgb(77%,77%,77%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.499457 96.503418 L 202.499186 96.503418 L 202.499186 115.506565 L 0.499457 115.506565 Z M 0.499457 96.503418 " transform="matrix(0.566929,0,0,0.566929,336.755906,237.543307)"/>
+<use xlink:href="#image19037" transform="matrix(0.566929,0,0,0.566929,335.622047,292.818898)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="342.992188" y="299.074219"/>
+  <use xlink:href="#glyph1-2" x="346.458511" y="299.074219"/>
+  <use xlink:href="#glyph1-3" x="349.924835" y="299.074219"/>
+  <use xlink:href="#glyph1-2" x="353.391159" y="299.074219"/>
+  <use xlink:href="#glyph1-4" x="356.857483" y="299.074219"/>
+  <use xlink:href="#glyph1-5" x="360.323807" y="299.074219"/>
+  <use xlink:href="#glyph1-6" x="361.70784" y="299.074219"/>
+  <use xlink:href="#glyph1-7" x="365.174164" y="299.074219"/>
+  <use xlink:href="#glyph1-8" x="366.907333" y="299.074219"/>
+  <use xlink:href="#glyph1-9" x="371.065689" y="299.074219"/>
+  <use xlink:href="#glyph1-10" x="375.224045" y="299.074219"/>
+  <use xlink:href="#glyph1-11" x="379.725281" y="299.074219"/>
+  <use xlink:href="#glyph1-12" x="384.226517" y="299.074219"/>
+  <use xlink:href="#glyph1-9" x="388.727753" y="299.074219"/>
+  <use xlink:href="#glyph1-10" x="392.886108" y="299.074219"/>
+  <use xlink:href="#glyph1-13" x="397.387344" y="299.074219"/>
+  <use xlink:href="#glyph1-14" x="399.463409" y="299.074219"/>
+  <use xlink:href="#glyph1-15" x="402.929733" y="299.074219"/>
+  <use xlink:href="#glyph1-15" x="406.396057" y="299.074219"/>
+  <use xlink:href="#glyph1-16" x="409.862381" y="299.074219"/>
+</g>
+<path style="fill-rule:nonzero;fill:rgb(77%,77%,77%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.498101 103.502875 L 202.49783 103.502875 L 202.49783 127.501411 L 0.498101 127.501411 Z M 0.498101 103.502875 " transform="matrix(0.566929,0,0,0.566929,333.354331,246.614173)"/>
 <g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
-  <use xlink:href="#glyph2-0" x="340.15625" y="299.039062"/>
-  <use xlink:href="#glyph2-1" x="341.888872" y="299.039062"/>
-  <use xlink:href="#glyph2-2" x="345.698204" y="299.039062"/>
-  <use xlink:href="#glyph2-3" x="349.507536" y="299.039062"/>
-  <use xlink:href="#glyph2-4" x="352.975824" y="299.039062"/>
-  <use xlink:href="#glyph2-3" x="356.444113" y="299.039062"/>
-  <use xlink:href="#glyph2-5" x="359.912402" y="299.039062"/>
+  <use xlink:href="#glyph2-1" x="336.757812" y="314.363281"/>
+  <use xlink:href="#glyph2-2" x="338.490982" y="314.363281"/>
+  <use xlink:href="#glyph2-3" x="342.300201" y="314.363281"/>
+  <use xlink:href="#glyph2-4" x="346.109421" y="314.363281"/>
+  <use xlink:href="#glyph2-5" x="349.575745" y="314.363281"/>
+  <use xlink:href="#glyph2-4" x="353.042068" y="314.363281"/>
+  <use xlink:href="#glyph2-6" x="356.508392" y="314.363281"/>
 </g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40%,40%,40%);fill-opacity:1;" d="M 442.488281 295.371094 L 447.589844 295.371094 L 445.039062 299.90625 Z M 442.488281 295.371094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40%,40%,40%);fill-opacity:1;" d="M 439.085938 309.828125 L 444.1875 309.828125 L 441.636719 314.363281 Z M 439.085938 309.828125 "/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-23" x="339.023438" y="310.167969"/>
-  <use xlink:href="#glyph1-9" x="343.182948" y="310.167969"/>
-  <use xlink:href="#glyph1-24" x="347.686547" y="310.167969"/>
-  <use xlink:href="#glyph1-25" x="349.419168" y="310.167969"/>
-  <use xlink:href="#glyph1-8" x="354.613989" y="310.167969"/>
-  <use xlink:href="#glyph1-9" x="358.773499" y="310.167969"/>
-  <use xlink:href="#glyph1-26" x="363.277098" y="310.167969"/>
+  <use xlink:href="#glyph1-27" x="335.621094" y="328.554687"/>
+  <use xlink:href="#glyph1-10" x="339.779449" y="328.554687"/>
+  <use xlink:href="#glyph1-28" x="344.280685" y="328.554687"/>
+  <use xlink:href="#glyph1-29" x="346.013855" y="328.554687"/>
+  <use xlink:href="#glyph1-9" x="351.207123" y="328.554687"/>
+  <use xlink:href="#glyph1-10" x="355.365479" y="328.554687"/>
+  <use xlink:href="#glyph1-30" x="359.866714" y="328.554687"/>
 </g>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-32" x="339.023438" y="320.941406"/>
-  <use xlink:href="#glyph1-29" x="342.491726" y="320.941406"/>
-  <use xlink:href="#glyph1-20" x="344.568436" y="320.941406"/>
-  <use xlink:href="#glyph1-28" x="348.036725" y="320.941406"/>
-  <use xlink:href="#glyph1-1" x="349.769347" y="320.941406"/>
-  <use xlink:href="#glyph1-4" x="353.237635" y="320.941406"/>
-  <use xlink:href="#glyph1-2" x="354.623124" y="320.941406"/>
-  <use xlink:href="#glyph1-3" x="358.091412" y="320.941406"/>
-  <use xlink:href="#glyph1-4" x="361.559701" y="320.941406"/>
-  <use xlink:href="#glyph1-5" x="362.945189" y="320.941406"/>
-  <use xlink:href="#glyph1-3" x="366.413478" y="320.941406"/>
-  <use xlink:href="#glyph1-35" x="369.881767" y="320.941406"/>
-  <use xlink:href="#glyph1-36" x="374.385365" y="320.941406"/>
-  <use xlink:href="#glyph1-24" x="378.888964" y="320.941406"/>
-  <use xlink:href="#glyph1-37" x="380.621586" y="320.941406"/>
-  <use xlink:href="#glyph1-35" x="385.472318" y="320.941406"/>
-  <use xlink:href="#glyph1-38" x="389.975917" y="320.941406"/>
+  <use xlink:href="#glyph1-23" x="335.621094" y="342.160156"/>
+  <use xlink:href="#glyph1-33" x="339.087418" y="342.160156"/>
+  <use xlink:href="#glyph1-21" x="341.163483" y="342.160156"/>
+  <use xlink:href="#glyph1-32" x="344.629807" y="342.160156"/>
+  <use xlink:href="#glyph1-2" x="346.362976" y="342.160156"/>
+  <use xlink:href="#glyph1-5" x="349.8293" y="342.160156"/>
+  <use xlink:href="#glyph1-3" x="351.213333" y="342.160156"/>
+  <use xlink:href="#glyph1-4" x="354.679657" y="342.160156"/>
+  <use xlink:href="#glyph1-5" x="358.145981" y="342.160156"/>
+  <use xlink:href="#glyph1-6" x="359.530014" y="342.160156"/>
+  <use xlink:href="#glyph1-4" x="362.996338" y="342.160156"/>
+  <use xlink:href="#glyph1-37" x="366.462662" y="342.160156"/>
+  <use xlink:href="#glyph1-38" x="370.963898" y="342.160156"/>
+  <use xlink:href="#glyph1-28" x="375.465134" y="342.160156"/>
+  <use xlink:href="#glyph1-39" x="377.198303" y="342.160156"/>
+  <use xlink:href="#glyph1-37" x="382.048676" y="342.160156"/>
+  <use xlink:href="#glyph1-40" x="386.549911" y="342.160156"/>
 </g>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-0" x="339.023438" y="331.710938"/>
-  <use xlink:href="#glyph1-1" x="342.491726" y="331.710938"/>
-  <use xlink:href="#glyph1-2" x="345.960015" y="331.710938"/>
-  <use xlink:href="#glyph1-1" x="349.428303" y="331.710938"/>
-  <use xlink:href="#glyph1-3" x="352.896592" y="331.710938"/>
-  <use xlink:href="#glyph1-4" x="356.364881" y="331.710938"/>
-  <use xlink:href="#glyph1-5" x="357.750369" y="331.710938"/>
-  <use xlink:href="#glyph1-3" x="361.218658" y="331.710938"/>
-  <use xlink:href="#glyph1-39" x="364.686946" y="331.710938"/>
-  <use xlink:href="#glyph1-40" x="366.419568" y="331.710938"/>
-  <use xlink:href="#glyph1-3" x="369.537678" y="331.710938"/>
-  <use xlink:href="#glyph1-4" x="373.005967" y="331.710938"/>
-  <use xlink:href="#glyph1-5" x="374.391455" y="331.710938"/>
-  <use xlink:href="#glyph1-27" x="377.859744" y="331.710938"/>
+  <use xlink:href="#glyph1-1" x="335.621094" y="355.765625"/>
+  <use xlink:href="#glyph1-2" x="339.087418" y="355.765625"/>
+  <use xlink:href="#glyph1-3" x="342.553741" y="355.765625"/>
+  <use xlink:href="#glyph1-2" x="346.020065" y="355.765625"/>
+  <use xlink:href="#glyph1-4" x="349.486389" y="355.765625"/>
+  <use xlink:href="#glyph1-5" x="352.952713" y="355.765625"/>
+  <use xlink:href="#glyph1-6" x="354.336746" y="355.765625"/>
+  <use xlink:href="#glyph1-4" x="357.80307" y="355.765625"/>
+  <use xlink:href="#glyph1-41" x="361.269394" y="355.765625"/>
+  <use xlink:href="#glyph1-42" x="363.002563" y="355.765625"/>
+  <use xlink:href="#glyph1-4" x="366.119766" y="355.765625"/>
+  <use xlink:href="#glyph1-5" x="369.58609" y="355.765625"/>
+  <use xlink:href="#glyph1-6" x="370.970123" y="355.765625"/>
+  <use xlink:href="#glyph1-31" x="374.436447" y="355.765625"/>
 </g>
-<path style="fill-rule:nonzero;fill:rgb(59.607843%,74.901961%,85.490196%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.499186 172.502224 L 202.499186 172.502224 C 202.499186 176.918837 198.916287 180.501736 194.499674 180.501736 L 8.498969 180.501736 C 4.082357 180.501736 0.499457 176.918837 0.499457 172.502224 Z M 202.499186 172.502224 " transform="matrix(0.566929,0,0,0.566929,336.755906,237.543307)"/>
-<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(50%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.500271 123.499783 C 115.500271 119.083171 119.083171 115.500271 123.499783 115.500271 L 261.503418 115.500271 C 265.92003 115.500271 269.50293 119.083171 269.50293 123.499783 L 269.50293 216.496691 C 269.50293 220.920193 265.92003 224.503092 261.503418 224.503092 L 123.499783 224.503092 C 119.083171 224.503092 115.500271 220.920193 115.500271 216.496691 Z M 115.500271 123.499783 " transform="matrix(0.566929,0,0,0.566929,0,0)"/>
-<path style="fill-rule:nonzero;fill:rgb(59.607843%,74.901961%,85.490196%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.500271 8.499783 C 0.500271 4.083171 4.083171 0.500271 8.499783 0.500271 L 146.503418 0.500271 C 150.92003 0.500271 154.50293 4.083171 154.50293 8.499783 L 154.50293 24.498806 L 0.500271 24.498806 Z M 0.500271 8.499783 " transform="matrix(0.566929,0,0,0.566929,65.19685,65.19685)"/>
-<use xlink:href="#image519" transform="matrix(0.566929,0,0,0.566929,68.598425,67.464567)"/>
+<path style="fill-rule:nonzero;fill:rgb(59.607843%,74.901961%,85.490196%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.49783 199.497016 C 202.49783 203.920519 198.914931 207.503418 194.498318 207.503418 L 8.497613 207.503418 C 4.081 207.503418 0.498101 203.920519 0.498101 199.497016 Z M 202.49783 199.497016 " transform="matrix(0.566929,0,0,0.566929,333.354331,246.614173)"/>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(50%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.500271 123.499783 C 115.500271 119.083171 119.083171 115.500271 123.499783 115.500271 L 261.503418 115.500271 C 265.92003 115.500271 269.50293 119.083171 269.50293 123.499783 L 269.50293 238.49707 C 269.50293 242.920573 265.92003 246.496582 261.503418 246.496582 L 123.499783 246.496582 C 119.083171 246.496582 115.500271 242.920573 115.500271 238.49707 Z M 115.500271 123.499783 " transform="matrix(0.566929,0,0,0.566929,0,0)"/>
+<path style="fill-rule:nonzero;fill:rgb(59.607843%,74.901961%,85.490196%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.500271 8.499783 C 0.500271 4.083171 4.083171 0.500271 8.499783 0.500271 L 146.503418 0.500271 C 150.92003 0.500271 154.50293 4.083171 154.50293 8.499783 L 154.50293 26.496962 L 0.500271 26.496962 Z M 0.500271 8.499783 " transform="matrix(0.566929,0,0,0.566929,65.19685,65.19685)"/>
+<use xlink:href="#image19033" transform="matrix(0.566929,0,0,0.566929,68.598425,68.031496)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-0" x="80.503906" y="74.226563"/>
-  <use xlink:href="#glyph0-1" x="84.659541" y="74.226563"/>
-  <use xlink:href="#glyph0-2" x="88.443129" y="74.226563"/>
-  <use xlink:href="#glyph0-1" x="92.598764" y="74.226563"/>
-  <use xlink:href="#glyph0-10" x="96.382351" y="74.226563"/>
-  <use xlink:href="#glyph0-11" x="100.165939" y="74.226563"/>
-  <use xlink:href="#glyph0-5" x="102.431441" y="74.226563"/>
-  <use xlink:href="#glyph0-12" x="106.215028" y="74.226563"/>
-  <use xlink:href="#glyph0-8" x="112.264118" y="74.226563"/>
-  <use xlink:href="#glyph0-13" x="114.154251" y="74.226563"/>
-  <use xlink:href="#glyph0-14" x="116.044384" y="74.226563"/>
+  <use xlink:href="#glyph0-1" x="80.503906" y="75.347656"/>
+  <use xlink:href="#glyph0-2" x="84.656769" y="75.347656"/>
+  <use xlink:href="#glyph0-3" x="88.435806" y="75.347656"/>
+  <use xlink:href="#glyph0-2" x="92.588669" y="75.347656"/>
+  <use xlink:href="#glyph0-11" x="96.367706" y="75.347656"/>
+  <use xlink:href="#glyph0-12" x="100.146744" y="75.347656"/>
+  <use xlink:href="#glyph0-6" x="102.410095" y="75.347656"/>
+  <use xlink:href="#glyph0-13" x="106.189133" y="75.347656"/>
+  <use xlink:href="#glyph0-9" x="112.231522" y="75.347656"/>
+  <use xlink:href="#glyph0-14" x="114.121048" y="75.347656"/>
+  <use xlink:href="#glyph0-15" x="116.010574" y="75.347656"/>
 </g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40%,40%,40%);fill-opacity:1;" d="M 143.714844 70.015625 L 148.820312 70.015625 L 146.269531 74.550781 Z M 143.714844 70.015625 "/>
-<use xlink:href="#image520" transform="matrix(0.566929,0,0,0.566929,67.464567,81.070866)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40%,40%,40%);fill-opacity:1;" d="M 143.714844 70.582031 L 148.820312 70.582031 L 146.269531 75.117188 Z M 143.714844 70.582031 "/>
+<use xlink:href="#image19034" transform="matrix(0.566929,0,0,0.566929,67.464567,83.622047)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-0" x="74.835938" y="86.230469"/>
-  <use xlink:href="#glyph1-1" x="78.304226" y="86.230469"/>
-  <use xlink:href="#glyph1-2" x="81.772515" y="86.230469"/>
-  <use xlink:href="#glyph1-1" x="85.240803" y="86.230469"/>
-  <use xlink:href="#glyph1-3" x="88.709092" y="86.230469"/>
-  <use xlink:href="#glyph1-39" x="92.177381" y="86.230469"/>
-  <use xlink:href="#glyph1-30" x="93.910002" y="86.230469"/>
-  <use xlink:href="#glyph1-18" x="97.378291" y="86.230469"/>
-  <use xlink:href="#glyph1-4" x="102.573111" y="86.230469"/>
-  <use xlink:href="#glyph1-21" x="103.9586" y="86.230469"/>
-  <use xlink:href="#glyph1-17" x="105.344088" y="86.230469"/>
-  <use xlink:href="#glyph1-3" x="108.462199" y="86.230469"/>
-  <use xlink:href="#glyph1-4" x="111.930487" y="86.230469"/>
-  <use xlink:href="#glyph1-5" x="113.315976" y="86.230469"/>
-  <use xlink:href="#glyph1-6" x="116.784264" y="86.230469"/>
-  <use xlink:href="#glyph1-24" x="118.516886" y="86.230469"/>
-  <use xlink:href="#glyph1-36" x="120.249508" y="86.230469"/>
-  <use xlink:href="#glyph1-41" x="124.753107" y="86.230469"/>
-  <use xlink:href="#glyph1-38" x="128.562438" y="86.230469"/>
-  <use xlink:href="#glyph1-42" x="132.721949" y="86.230469"/>
-  <use xlink:href="#glyph1-38" x="137.572681" y="86.230469"/>
-  <use xlink:href="#glyph1-9" x="141.732191" y="86.230469"/>
+  <use xlink:href="#glyph1-1" x="74.835938" y="89.878906"/>
+  <use xlink:href="#glyph1-2" x="78.302261" y="89.878906"/>
+  <use xlink:href="#glyph1-3" x="81.768585" y="89.878906"/>
+  <use xlink:href="#glyph1-2" x="85.234909" y="89.878906"/>
+  <use xlink:href="#glyph1-4" x="88.701233" y="89.878906"/>
+  <use xlink:href="#glyph1-41" x="92.167557" y="89.878906"/>
+  <use xlink:href="#glyph1-34" x="93.900726" y="89.878906"/>
+  <use xlink:href="#glyph1-19" x="97.36705" y="89.878906"/>
+  <use xlink:href="#glyph1-5" x="102.560318" y="89.878906"/>
+  <use xlink:href="#glyph1-22" x="103.944351" y="89.878906"/>
+  <use xlink:href="#glyph1-18" x="105.328384" y="89.878906"/>
+  <use xlink:href="#glyph1-4" x="108.445587" y="89.878906"/>
+  <use xlink:href="#glyph1-5" x="111.911911" y="89.878906"/>
+  <use xlink:href="#glyph1-6" x="113.295944" y="89.878906"/>
+  <use xlink:href="#glyph1-7" x="116.762268" y="89.878906"/>
+  <use xlink:href="#glyph1-28" x="118.495438" y="89.878906"/>
+  <use xlink:href="#glyph1-38" x="120.228607" y="89.878906"/>
+  <use xlink:href="#glyph1-43" x="124.729843" y="89.878906"/>
+  <use xlink:href="#glyph1-40" x="128.539062" y="89.878906"/>
+  <use xlink:href="#glyph1-44" x="132.697418" y="89.878906"/>
+  <use xlink:href="#glyph1-40" x="137.547791" y="89.878906"/>
+  <use xlink:href="#glyph1-10" x="141.706146" y="89.878906"/>
 </g>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.941189 13.100966 " transform="matrix(0.566929,0,0,0.566929,72.566929,78.80315)"/>
-<use xlink:href="#image522" transform="matrix(0.566929,0,0,0.566929,67.464567,92.409449)"/>
+<use xlink:href="#image19036" transform="matrix(0.566929,0,0,0.566929,67.464567,97.795276)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-0" x="74.835938" y="97.570312"/>
-  <use xlink:href="#glyph1-1" x="78.304226" y="97.570312"/>
-  <use xlink:href="#glyph1-2" x="81.772515" y="97.570312"/>
-  <use xlink:href="#glyph1-1" x="85.240803" y="97.570312"/>
-  <use xlink:href="#glyph1-3" x="88.709092" y="97.570312"/>
-  <use xlink:href="#glyph1-28" x="92.177381" y="97.570312"/>
-  <use xlink:href="#glyph1-29" x="93.910002" y="97.570312"/>
-  <use xlink:href="#glyph1-1" x="95.986713" y="97.570312"/>
-  <use xlink:href="#glyph1-1" x="99.455001" y="97.570312"/>
-  <use xlink:href="#glyph1-6" x="102.92329" y="97.570312"/>
-  <use xlink:href="#glyph1-7" x="104.655912" y="97.570312"/>
-  <use xlink:href="#glyph1-8" x="108.815422" y="97.570312"/>
-  <use xlink:href="#glyph1-9" x="112.974932" y="97.570312"/>
-  <use xlink:href="#glyph1-10" x="117.478531" y="97.570312"/>
-  <use xlink:href="#glyph1-11" x="121.98213" y="97.570312"/>
-  <use xlink:href="#glyph1-8" x="126.485728" y="97.570312"/>
-  <use xlink:href="#glyph1-9" x="130.645239" y="97.570312"/>
-  <use xlink:href="#glyph1-12" x="135.148837" y="97.570312"/>
-  <use xlink:href="#glyph1-13" x="137.225547" y="97.570312"/>
-  <use xlink:href="#glyph1-14" x="140.693836" y="97.570312"/>
-  <use xlink:href="#glyph1-14" x="144.162125" y="97.570312"/>
-  <use xlink:href="#glyph1-15" x="147.630413" y="97.570312"/>
+  <use xlink:href="#glyph1-1" x="74.835938" y="104.050781"/>
+  <use xlink:href="#glyph1-2" x="78.302261" y="104.050781"/>
+  <use xlink:href="#glyph1-3" x="81.768585" y="104.050781"/>
+  <use xlink:href="#glyph1-2" x="85.234909" y="104.050781"/>
+  <use xlink:href="#glyph1-4" x="88.701233" y="104.050781"/>
+  <use xlink:href="#glyph1-32" x="92.167557" y="104.050781"/>
+  <use xlink:href="#glyph1-33" x="93.900726" y="104.050781"/>
+  <use xlink:href="#glyph1-2" x="95.976791" y="104.050781"/>
+  <use xlink:href="#glyph1-2" x="99.443115" y="104.050781"/>
+  <use xlink:href="#glyph1-7" x="102.909439" y="104.050781"/>
+  <use xlink:href="#glyph1-8" x="104.642609" y="104.050781"/>
+  <use xlink:href="#glyph1-9" x="108.800964" y="104.050781"/>
+  <use xlink:href="#glyph1-10" x="112.95932" y="104.050781"/>
+  <use xlink:href="#glyph1-11" x="117.460556" y="104.050781"/>
+  <use xlink:href="#glyph1-12" x="121.961792" y="104.050781"/>
+  <use xlink:href="#glyph1-9" x="126.463028" y="104.050781"/>
+  <use xlink:href="#glyph1-10" x="130.621384" y="104.050781"/>
+  <use xlink:href="#glyph1-13" x="135.12262" y="104.050781"/>
+  <use xlink:href="#glyph1-14" x="137.198685" y="104.050781"/>
+  <use xlink:href="#glyph1-15" x="140.665009" y="104.050781"/>
+  <use xlink:href="#glyph1-15" x="144.131332" y="104.050781"/>
+  <use xlink:href="#glyph1-16" x="147.597656" y="104.050781"/>
 </g>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 136.066569 33.10319 " transform="matrix(0.566929,0,0,0.566929,72.566929,78.80315)"/>
-<path style="fill-rule:nonzero;fill:rgb(77%,77%,77%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.500271 39.497287 L 154.50293 39.497287 L 154.50293 58.500434 L 0.500271 58.500434 Z M 0.500271 39.497287 " transform="matrix(0.566929,0,0,0.566929,65.19685,78.80315)"/>
+<path style="fill-rule:nonzero;fill:rgb(77%,77%,77%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.500271 49.5 L 154.50293 49.5 L 154.50293 73.498535 L 0.500271 73.498535 Z M 0.500271 49.5 " transform="matrix(0.566929,0,0,0.566929,65.19685,79.937008)"/>
 <g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
-  <use xlink:href="#glyph2-0" x="68.597656" y="107.984375"/>
-  <use xlink:href="#glyph2-1" x="70.330278" y="107.984375"/>
-  <use xlink:href="#glyph2-2" x="74.13961" y="107.984375"/>
-  <use xlink:href="#glyph2-3" x="77.948942" y="107.984375"/>
-  <use xlink:href="#glyph2-4" x="81.417231" y="107.984375"/>
-  <use xlink:href="#glyph2-3" x="84.885519" y="107.984375"/>
-  <use xlink:href="#glyph2-5" x="88.353808" y="107.984375"/>
+  <use xlink:href="#glyph2-1" x="68.597656" y="117.070312"/>
+  <use xlink:href="#glyph2-2" x="70.330826" y="117.070312"/>
+  <use xlink:href="#glyph2-3" x="74.140045" y="117.070312"/>
+  <use xlink:href="#glyph2-4" x="77.949265" y="117.070312"/>
+  <use xlink:href="#glyph2-5" x="81.415588" y="117.070312"/>
+  <use xlink:href="#glyph2-4" x="84.881912" y="117.070312"/>
+  <use xlink:href="#glyph2-6" x="88.348236" y="117.070312"/>
 </g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40%,40%,40%);fill-opacity:1;" d="M 143.714844 104.316406 L 148.820312 104.316406 L 146.269531 108.851562 Z M 143.714844 104.316406 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40%,40%,40%);fill-opacity:1;" d="M 143.714844 112.535156 L 148.820312 112.535156 L 146.269531 117.070312 Z M 143.714844 112.535156 "/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-23" x="67.464844" y="119.113281"/>
-  <use xlink:href="#glyph1-9" x="71.624354" y="119.113281"/>
-  <use xlink:href="#glyph1-24" x="76.127953" y="119.113281"/>
-  <use xlink:href="#glyph1-25" x="77.860575" y="119.113281"/>
-  <use xlink:href="#glyph1-8" x="83.055395" y="119.113281"/>
-  <use xlink:href="#glyph1-9" x="87.214905" y="119.113281"/>
-  <use xlink:href="#glyph1-26" x="91.718504" y="119.113281"/>
+  <use xlink:href="#glyph1-27" x="67.464844" y="131.261719"/>
+  <use xlink:href="#glyph1-10" x="71.623199" y="131.261719"/>
+  <use xlink:href="#glyph1-28" x="76.124435" y="131.261719"/>
+  <use xlink:href="#glyph1-29" x="77.857605" y="131.261719"/>
+  <use xlink:href="#glyph1-9" x="83.050873" y="131.261719"/>
+  <use xlink:href="#glyph1-10" x="87.209229" y="131.261719"/>
+  <use xlink:href="#glyph1-30" x="91.710464" y="131.261719"/>
 </g>
-<path style="fill-rule:nonzero;fill:rgb(59.607843%,74.901961%,85.490196%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.50293 77.496691 L 154.50293 77.496691 C 154.50293 81.920193 150.92003 85.503092 146.503418 85.503092 L 8.499783 85.503092 C 4.083171 85.503092 0.500271 81.920193 0.500271 77.496691 Z M 154.50293 77.496691 " transform="matrix(0.566929,0,0,0.566929,65.19685,78.80315)"/>
-<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(50%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;" d="M 599.501736 104.496636 C 599.501736 100.080024 603.084635 96.497125 607.501248 96.497125 L 782.498318 96.497125 C 786.914931 96.497125 790.49783 100.080024 790.49783 104.496636 L 790.49783 236.498915 C 790.49783 240.915527 786.914931 244.498427 782.498318 244.498427 L 607.501248 244.498427 C 603.084635 244.498427 599.501736 240.915527 599.501736 236.498915 Z M 599.501736 104.496636 " transform="matrix(0.566929,0,0,0.566929,0,0)"/>
-<path style="fill-rule:nonzero;fill:rgb(59.607843%,74.901961%,85.490196%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.501736 8.496636 C 0.501736 4.080024 4.084635 0.497125 8.501248 0.497125 L 183.498318 0.497125 C 187.914931 0.497125 191.49783 4.080024 191.49783 8.496636 L 191.49783 24.50255 L 0.501736 24.50255 Z M 0.501736 8.496636 " transform="matrix(0.566929,0,0,0.566929,339.590551,54.425197)"/>
-<use xlink:href="#image519" transform="matrix(0.566929,0,0,0.566929,342.992126,56.692913)"/>
+<path style="fill-rule:nonzero;fill:rgb(59.607843%,74.901961%,85.490196%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.50293 97.49707 C 154.50293 101.920573 150.92003 105.496582 146.503418 105.496582 L 8.499783 105.496582 C 4.083171 105.496582 0.500271 101.920573 0.500271 97.49707 Z M 154.50293 97.49707 " transform="matrix(0.566929,0,0,0.566929,65.19685,79.937008)"/>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(50%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;" d="M 593.50038 99.501248 C 593.50038 95.084635 597.083279 91.501736 601.499891 91.501736 L 776.496962 91.501736 C 780.920464 91.501736 784.503364 95.084635 784.503364 99.501248 L 784.503364 263.501573 C 784.503364 267.918186 780.920464 271.501085 776.496962 271.501085 L 601.499891 271.501085 C 597.083279 271.501085 593.50038 267.918186 593.50038 263.501573 Z M 593.50038 99.501248 " transform="matrix(0.566929,0,0,0.566929,0,0)"/>
+<path style="fill-rule:nonzero;fill:rgb(59.607843%,74.901961%,85.490196%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.50038 8.501248 C 0.50038 4.084635 4.083279 0.501736 8.499891 0.501736 L 183.496962 0.501736 C 187.920464 0.501736 191.503364 4.084635 191.503364 8.501248 L 191.503364 26.498427 L 0.50038 26.498427 Z M 0.50038 8.501248 " transform="matrix(0.566929,0,0,0.566929,336.188976,51.590551)"/>
+<use xlink:href="#image19033" transform="matrix(0.566929,0,0,0.566929,339.590551,54.425197)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-0" x="354.898438" y="63.457031"/>
-  <use xlink:href="#glyph0-1" x="359.054072" y="63.457031"/>
-  <use xlink:href="#glyph0-2" x="362.83766" y="63.457031"/>
-  <use xlink:href="#glyph0-1" x="366.993295" y="63.457031"/>
-  <use xlink:href="#glyph0-10" x="370.776882" y="63.457031"/>
-  <use xlink:href="#glyph0-11" x="374.56047" y="63.457031"/>
-  <use xlink:href="#glyph0-5" x="376.825972" y="63.457031"/>
-  <use xlink:href="#glyph0-12" x="380.60956" y="63.457031"/>
-  <use xlink:href="#glyph0-8" x="386.658649" y="63.457031"/>
-  <use xlink:href="#glyph0-13" x="388.548782" y="63.457031"/>
-  <use xlink:href="#glyph0-14" x="390.438915" y="63.457031"/>
-  <use xlink:href="#glyph0-10" x="394.222502" y="63.457031"/>
-  <use xlink:href="#glyph0-12" x="398.00609" y="63.457031"/>
-  <use xlink:href="#glyph0-1" x="404.05518" y="63.457031"/>
-  <use xlink:href="#glyph0-12" x="407.838767" y="63.457031"/>
-  <use xlink:href="#glyph0-15" x="413.887857" y="63.457031"/>
-  <use xlink:href="#glyph0-1" x="418.043492" y="63.457031"/>
-  <use xlink:href="#glyph0-4" x="421.827079" y="63.457031"/>
+  <use xlink:href="#glyph0-1" x="351.496094" y="61.742188"/>
+  <use xlink:href="#glyph0-2" x="355.648956" y="61.742188"/>
+  <use xlink:href="#glyph0-3" x="359.427994" y="61.742188"/>
+  <use xlink:href="#glyph0-2" x="363.580856" y="61.742188"/>
+  <use xlink:href="#glyph0-11" x="367.359894" y="61.742188"/>
+  <use xlink:href="#glyph0-12" x="371.138931" y="61.742188"/>
+  <use xlink:href="#glyph0-6" x="373.402283" y="61.742188"/>
+  <use xlink:href="#glyph0-13" x="377.18132" y="61.742188"/>
+  <use xlink:href="#glyph0-9" x="383.223709" y="61.742188"/>
+  <use xlink:href="#glyph0-14" x="385.113235" y="61.742188"/>
+  <use xlink:href="#glyph0-15" x="387.002762" y="61.742188"/>
+  <use xlink:href="#glyph0-11" x="390.781799" y="61.742188"/>
+  <use xlink:href="#glyph0-13" x="394.560837" y="61.742188"/>
+  <use xlink:href="#glyph0-2" x="400.603226" y="61.742188"/>
+  <use xlink:href="#glyph0-13" x="404.382263" y="61.742188"/>
+  <use xlink:href="#glyph0-16" x="410.424652" y="61.742188"/>
+  <use xlink:href="#glyph0-2" x="414.577515" y="61.742188"/>
+  <use xlink:href="#glyph0-5" x="418.356552" y="61.742188"/>
 </g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40%,40%,40%);fill-opacity:1;" d="M 439.085938 59.242188 L 444.1875 59.242188 L 441.636719 63.78125 Z M 439.085938 59.242188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40%,40%,40%);fill-opacity:1;" d="M 435.683594 56.976562 L 440.789062 56.976562 L 438.234375 61.511719 Z M 435.683594 56.976562 "/>
+<use xlink:href="#image19034" transform="matrix(0.566929,0,0,0.566929,338.456693,70.015748)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-0" x="341.859375" y="75.460937"/>
-  <use xlink:href="#glyph1-1" x="345.327664" y="75.460937"/>
-  <use xlink:href="#glyph1-2" x="348.795952" y="75.460937"/>
-  <use xlink:href="#glyph1-1" x="352.264241" y="75.460937"/>
-  <use xlink:href="#glyph1-3" x="355.73253" y="75.460937"/>
-  <use xlink:href="#glyph1-39" x="359.200818" y="75.460937"/>
-  <use xlink:href="#glyph1-30" x="360.93344" y="75.460937"/>
-  <use xlink:href="#glyph1-18" x="364.401729" y="75.460937"/>
-  <use xlink:href="#glyph1-4" x="369.596549" y="75.460937"/>
-  <use xlink:href="#glyph1-21" x="370.982037" y="75.460937"/>
-  <use xlink:href="#glyph1-17" x="372.367526" y="75.460937"/>
-  <use xlink:href="#glyph1-3" x="375.485636" y="75.460937"/>
-  <use xlink:href="#glyph1-4" x="378.953925" y="75.460937"/>
-  <use xlink:href="#glyph1-5" x="380.339413" y="75.460937"/>
-  <use xlink:href="#glyph1-6" x="383.807702" y="75.460937"/>
-  <use xlink:href="#glyph1-24" x="385.540324" y="75.460937"/>
-  <use xlink:href="#glyph1-36" x="387.272945" y="75.460937"/>
-  <use xlink:href="#glyph1-41" x="391.776544" y="75.460937"/>
+  <use xlink:href="#glyph1-1" x="345.828125" y="76.269531"/>
+  <use xlink:href="#glyph1-2" x="349.294449" y="76.269531"/>
+  <use xlink:href="#glyph1-3" x="352.760773" y="76.269531"/>
+  <use xlink:href="#glyph1-2" x="356.227097" y="76.269531"/>
+  <use xlink:href="#glyph1-4" x="359.69342" y="76.269531"/>
+  <use xlink:href="#glyph1-41" x="363.159744" y="76.269531"/>
+  <use xlink:href="#glyph1-34" x="364.892914" y="76.269531"/>
+  <use xlink:href="#glyph1-19" x="368.359238" y="76.269531"/>
+  <use xlink:href="#glyph1-5" x="373.552505" y="76.269531"/>
+  <use xlink:href="#glyph1-22" x="374.936539" y="76.269531"/>
+  <use xlink:href="#glyph1-18" x="376.320572" y="76.269531"/>
+  <use xlink:href="#glyph1-4" x="379.437775" y="76.269531"/>
+  <use xlink:href="#glyph1-5" x="382.904099" y="76.269531"/>
+  <use xlink:href="#glyph1-6" x="384.288132" y="76.269531"/>
+  <use xlink:href="#glyph1-7" x="387.754456" y="76.269531"/>
+  <use xlink:href="#glyph1-28" x="389.487625" y="76.269531"/>
+  <use xlink:href="#glyph1-38" x="391.220795" y="76.269531"/>
+  <use xlink:href="#glyph1-43" x="395.722031" y="76.269531"/>
 </g>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 98.76964 13.104709 " transform="matrix(0.566929,0,0,0.566929,339.590551,68.031496)"/>
+<use xlink:href="#image19034" transform="matrix(0.566929,0,0,0.566929,338.456693,84.188976)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-32" x="341.859375" y="86.796875"/>
-  <use xlink:href="#glyph1-29" x="345.327664" y="86.796875"/>
-  <use xlink:href="#glyph1-20" x="347.404374" y="86.796875"/>
-  <use xlink:href="#glyph1-28" x="350.872662" y="86.796875"/>
-  <use xlink:href="#glyph1-1" x="352.605284" y="86.796875"/>
-  <use xlink:href="#glyph1-4" x="356.073573" y="86.796875"/>
-  <use xlink:href="#glyph1-2" x="357.459061" y="86.796875"/>
-  <use xlink:href="#glyph1-3" x="360.92735" y="86.796875"/>
-  <use xlink:href="#glyph1-4" x="364.395639" y="86.796875"/>
-  <use xlink:href="#glyph1-5" x="365.781127" y="86.796875"/>
-  <use xlink:href="#glyph1-6" x="369.249416" y="86.796875"/>
-  <use xlink:href="#glyph1-7" x="370.982037" y="86.796875"/>
-  <use xlink:href="#glyph1-8" x="375.141548" y="86.796875"/>
-  <use xlink:href="#glyph1-9" x="379.301058" y="86.796875"/>
-  <use xlink:href="#glyph1-10" x="383.804657" y="86.796875"/>
-  <use xlink:href="#glyph1-11" x="388.308255" y="86.796875"/>
-  <use xlink:href="#glyph1-8" x="392.811854" y="86.796875"/>
-  <use xlink:href="#glyph1-9" x="396.971364" y="86.796875"/>
-  <use xlink:href="#glyph1-12" x="401.474963" y="86.796875"/>
-  <use xlink:href="#glyph1-13" x="403.551673" y="86.796875"/>
-  <use xlink:href="#glyph1-14" x="407.019962" y="86.796875"/>
-  <use xlink:href="#glyph1-14" x="410.48825" y="86.796875"/>
-  <use xlink:href="#glyph1-15" x="413.956539" y="86.796875"/>
+  <use xlink:href="#glyph1-23" x="345.828125" y="90.445312"/>
+  <use xlink:href="#glyph1-33" x="349.294449" y="90.445312"/>
+  <use xlink:href="#glyph1-21" x="351.370514" y="90.445312"/>
+  <use xlink:href="#glyph1-32" x="354.836838" y="90.445312"/>
+  <use xlink:href="#glyph1-2" x="356.570007" y="90.445312"/>
+  <use xlink:href="#glyph1-5" x="360.036331" y="90.445312"/>
+  <use xlink:href="#glyph1-3" x="361.420364" y="90.445312"/>
+  <use xlink:href="#glyph1-4" x="364.886688" y="90.445312"/>
+  <use xlink:href="#glyph1-5" x="368.353012" y="90.445312"/>
+  <use xlink:href="#glyph1-6" x="369.737045" y="90.445312"/>
+  <use xlink:href="#glyph1-7" x="373.203369" y="90.445312"/>
+  <use xlink:href="#glyph1-8" x="374.936539" y="90.445312"/>
+  <use xlink:href="#glyph1-9" x="379.094894" y="90.445312"/>
+  <use xlink:href="#glyph1-10" x="383.25325" y="90.445312"/>
+  <use xlink:href="#glyph1-11" x="387.754486" y="90.445312"/>
+  <use xlink:href="#glyph1-12" x="392.255722" y="90.445312"/>
+  <use xlink:href="#glyph1-9" x="396.756958" y="90.445312"/>
+  <use xlink:href="#glyph1-10" x="400.915314" y="90.445312"/>
+  <use xlink:href="#glyph1-13" x="405.41655" y="90.445312"/>
+  <use xlink:href="#glyph1-14" x="407.492615" y="90.445312"/>
+  <use xlink:href="#glyph1-15" x="410.958939" y="90.445312"/>
+  <use xlink:href="#glyph1-15" x="414.425262" y="90.445312"/>
+  <use xlink:href="#glyph1-16" x="417.891586" y="90.445312"/>
 </g>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 134.839789 33.100043 " transform="matrix(0.566929,0,0,0.566929,339.590551,68.031496)"/>
-<use xlink:href="#image521" transform="matrix(0.566929,0,0,0.566929,341.858268,92.976378)"/>
+<use xlink:href="#image19036" transform="matrix(0.566929,0,0,0.566929,338.456693,98.362205)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-32" x="349.226562" y="98.136719"/>
-  <use xlink:href="#glyph1-29" x="352.694851" y="98.136719"/>
-  <use xlink:href="#glyph1-20" x="354.771561" y="98.136719"/>
-  <use xlink:href="#glyph1-28" x="358.23985" y="98.136719"/>
-  <use xlink:href="#glyph1-1" x="359.972472" y="98.136719"/>
-  <use xlink:href="#glyph1-4" x="363.44076" y="98.136719"/>
-  <use xlink:href="#glyph1-2" x="364.826249" y="98.136719"/>
-  <use xlink:href="#glyph1-3" x="368.294537" y="98.136719"/>
-  <use xlink:href="#glyph1-30" x="371.762826" y="98.136719"/>
-  <use xlink:href="#glyph1-21" x="375.231115" y="98.136719"/>
-  <use xlink:href="#glyph1-4" x="376.616603" y="98.136719"/>
-  <use xlink:href="#glyph1-0" x="378.002092" y="98.136719"/>
-  <use xlink:href="#glyph1-2" x="381.47038" y="98.136719"/>
-  <use xlink:href="#glyph1-18" x="384.938669" y="98.136719"/>
-  <use xlink:href="#glyph1-1" x="390.133489" y="98.136719"/>
-  <use xlink:href="#glyph1-2" x="393.601778" y="98.136719"/>
-  <use xlink:href="#glyph1-28" x="397.070066" y="98.136719"/>
-  <use xlink:href="#glyph1-6" x="398.802688" y="98.136719"/>
-  <use xlink:href="#glyph1-7" x="400.53531" y="98.136719"/>
-  <use xlink:href="#glyph1-8" x="404.69482" y="98.136719"/>
-  <use xlink:href="#glyph1-9" x="408.854331" y="98.136719"/>
-  <use xlink:href="#glyph1-10" x="413.357929" y="98.136719"/>
-  <use xlink:href="#glyph1-11" x="417.861528" y="98.136719"/>
-  <use xlink:href="#glyph1-8" x="422.365127" y="98.136719"/>
-  <use xlink:href="#glyph1-9" x="426.524637" y="98.136719"/>
-  <use xlink:href="#glyph1-12" x="431.028236" y="98.136719"/>
-  <use xlink:href="#glyph1-13" x="433.104946" y="98.136719"/>
-  <use xlink:href="#glyph1-14" x="436.573234" y="98.136719"/>
-  <use xlink:href="#glyph1-14" x="440.041523" y="98.136719"/>
-  <use xlink:href="#glyph1-15" x="443.509812" y="98.136719"/>
+  <use xlink:href="#glyph1-23" x="345.828125" y="104.617188"/>
+  <use xlink:href="#glyph1-33" x="349.294449" y="104.617188"/>
+  <use xlink:href="#glyph1-21" x="351.370514" y="104.617188"/>
+  <use xlink:href="#glyph1-32" x="354.836838" y="104.617188"/>
+  <use xlink:href="#glyph1-2" x="356.570007" y="104.617188"/>
+  <use xlink:href="#glyph1-5" x="360.036331" y="104.617188"/>
+  <use xlink:href="#glyph1-3" x="361.420364" y="104.617188"/>
+  <use xlink:href="#glyph1-4" x="364.886688" y="104.617188"/>
+  <use xlink:href="#glyph1-34" x="368.353012" y="104.617188"/>
+  <use xlink:href="#glyph1-22" x="371.819336" y="104.617188"/>
+  <use xlink:href="#glyph1-5" x="373.203369" y="104.617188"/>
+  <use xlink:href="#glyph1-1" x="374.587402" y="104.617188"/>
+  <use xlink:href="#glyph1-3" x="378.053726" y="104.617188"/>
+  <use xlink:href="#glyph1-19" x="381.52005" y="104.617188"/>
+  <use xlink:href="#glyph1-2" x="386.713318" y="104.617188"/>
+  <use xlink:href="#glyph1-3" x="390.179642" y="104.617188"/>
+  <use xlink:href="#glyph1-32" x="393.645966" y="104.617188"/>
+  <use xlink:href="#glyph1-7" x="395.379135" y="104.617188"/>
+  <use xlink:href="#glyph1-8" x="397.112305" y="104.617188"/>
+  <use xlink:href="#glyph1-9" x="401.27066" y="104.617188"/>
+  <use xlink:href="#glyph1-10" x="405.429016" y="104.617188"/>
+  <use xlink:href="#glyph1-11" x="409.930252" y="104.617188"/>
+  <use xlink:href="#glyph1-12" x="414.431488" y="104.617188"/>
+  <use xlink:href="#glyph1-9" x="418.932724" y="104.617188"/>
+  <use xlink:href="#glyph1-10" x="423.09108" y="104.617188"/>
+  <use xlink:href="#glyph1-13" x="427.592316" y="104.617188"/>
+  <use xlink:href="#glyph1-14" x="429.668381" y="104.617188"/>
+  <use xlink:href="#glyph1-15" x="433.134705" y="104.617188"/>
+  <use xlink:href="#glyph1-15" x="436.601028" y="104.617188"/>
+  <use xlink:href="#glyph1-16" x="440.067352" y="104.617188"/>
 </g>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.964084 53.102268 " transform="matrix(0.566929,0,0,0.566929,346.96063,68.031496)"/>
-<path style="fill-rule:nonzero;fill:rgb(77%,77%,77%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.501736 59.503255 L 191.50472 59.503255 L 191.50472 78.506402 L 0.501736 78.506402 Z M 0.501736 59.503255 " transform="matrix(0.566929,0,0,0.566929,339.590551,68.031496)"/>
+<path style="fill-rule:nonzero;fill:rgb(77%,77%,77%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.50038 74.499078 L 191.503364 74.499078 L 191.503364 98.497613 L 0.50038 98.497613 Z M 0.50038 74.499078 " transform="matrix(0.566929,0,0,0.566929,336.188976,66.330709)"/>
 <g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
-  <use xlink:href="#glyph2-0" x="342.992188" y="108.550781"/>
-  <use xlink:href="#glyph2-1" x="344.724809" y="108.550781"/>
-  <use xlink:href="#glyph2-2" x="348.534141" y="108.550781"/>
-  <use xlink:href="#glyph2-3" x="352.343473" y="108.550781"/>
-  <use xlink:href="#glyph2-4" x="355.811762" y="108.550781"/>
-  <use xlink:href="#glyph2-3" x="359.28005" y="108.550781"/>
-  <use xlink:href="#glyph2-5" x="362.748339" y="108.550781"/>
+  <use xlink:href="#glyph2-1" x="339.589844" y="117.636719"/>
+  <use xlink:href="#glyph2-2" x="341.323013" y="117.636719"/>
+  <use xlink:href="#glyph2-3" x="345.132233" y="117.636719"/>
+  <use xlink:href="#glyph2-4" x="348.941452" y="117.636719"/>
+  <use xlink:href="#glyph2-5" x="352.407776" y="117.636719"/>
+  <use xlink:href="#glyph2-4" x="355.8741" y="117.636719"/>
+  <use xlink:href="#glyph2-6" x="359.340424" y="117.636719"/>
 </g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40%,40%,40%);fill-opacity:1;" d="M 439.085938 104.882812 L 444.1875 104.882812 L 441.636719 109.417969 Z M 439.085938 104.882812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40%,40%,40%);fill-opacity:1;" d="M 435.683594 113.101562 L 440.789062 113.101562 L 438.234375 117.636719 Z M 435.683594 113.101562 "/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-23" x="341.859375" y="119.679687"/>
-  <use xlink:href="#glyph1-9" x="346.018885" y="119.679687"/>
-  <use xlink:href="#glyph1-24" x="350.522484" y="119.679687"/>
-  <use xlink:href="#glyph1-25" x="352.255106" y="119.679687"/>
-  <use xlink:href="#glyph1-8" x="357.449926" y="119.679687"/>
-  <use xlink:href="#glyph1-9" x="361.609437" y="119.679687"/>
-  <use xlink:href="#glyph1-26" x="366.113035" y="119.679687"/>
+  <use xlink:href="#glyph1-27" x="338.457031" y="131.828125"/>
+  <use xlink:href="#glyph1-10" x="342.615387" y="131.828125"/>
+  <use xlink:href="#glyph1-28" x="347.116623" y="131.828125"/>
+  <use xlink:href="#glyph1-29" x="348.849792" y="131.828125"/>
+  <use xlink:href="#glyph1-9" x="354.04306" y="131.828125"/>
+  <use xlink:href="#glyph1-10" x="358.201416" y="131.828125"/>
+  <use xlink:href="#glyph1-30" x="362.702652" y="131.828125"/>
 </g>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-32" x="341.859375" y="130.453125"/>
-  <use xlink:href="#glyph1-29" x="345.327664" y="130.453125"/>
-  <use xlink:href="#glyph1-20" x="347.404374" y="130.453125"/>
-  <use xlink:href="#glyph1-28" x="350.872662" y="130.453125"/>
-  <use xlink:href="#glyph1-1" x="352.605284" y="130.453125"/>
-  <use xlink:href="#glyph1-4" x="356.073573" y="130.453125"/>
-  <use xlink:href="#glyph1-2" x="357.459061" y="130.453125"/>
-  <use xlink:href="#glyph1-3" x="360.92735" y="130.453125"/>
-  <use xlink:href="#glyph1-4" x="364.395639" y="130.453125"/>
-  <use xlink:href="#glyph1-5" x="365.781127" y="130.453125"/>
-  <use xlink:href="#glyph1-3" x="369.249416" y="130.453125"/>
-  <use xlink:href="#glyph1-39" x="372.717704" y="130.453125"/>
-  <use xlink:href="#glyph1-40" x="374.450326" y="130.453125"/>
-  <use xlink:href="#glyph1-3" x="377.568436" y="130.453125"/>
-  <use xlink:href="#glyph1-4" x="381.036725" y="130.453125"/>
-  <use xlink:href="#glyph1-5" x="382.422213" y="130.453125"/>
-  <use xlink:href="#glyph1-27" x="385.890502" y="130.453125"/>
+  <use xlink:href="#glyph1-23" x="338.457031" y="145.4375"/>
+  <use xlink:href="#glyph1-33" x="341.923355" y="145.4375"/>
+  <use xlink:href="#glyph1-21" x="343.99942" y="145.4375"/>
+  <use xlink:href="#glyph1-32" x="347.465744" y="145.4375"/>
+  <use xlink:href="#glyph1-2" x="349.198914" y="145.4375"/>
+  <use xlink:href="#glyph1-5" x="352.665237" y="145.4375"/>
+  <use xlink:href="#glyph1-3" x="354.049271" y="145.4375"/>
+  <use xlink:href="#glyph1-4" x="357.515594" y="145.4375"/>
+  <use xlink:href="#glyph1-5" x="360.981918" y="145.4375"/>
+  <use xlink:href="#glyph1-6" x="362.365952" y="145.4375"/>
+  <use xlink:href="#glyph1-4" x="365.832275" y="145.4375"/>
+  <use xlink:href="#glyph1-41" x="369.298599" y="145.4375"/>
+  <use xlink:href="#glyph1-42" x="371.031769" y="145.4375"/>
+  <use xlink:href="#glyph1-4" x="374.148972" y="145.4375"/>
+  <use xlink:href="#glyph1-5" x="377.615295" y="145.4375"/>
+  <use xlink:href="#glyph1-6" x="378.999329" y="145.4375"/>
+  <use xlink:href="#glyph1-31" x="382.465652" y="145.4375"/>
 </g>
-<path style="fill-rule:nonzero;fill:rgb(59.607843%,74.901961%,85.490196%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 191.49783 116.498915 L 191.49783 116.498915 C 191.49783 120.915527 187.914931 124.498427 183.498318 124.498427 L 8.501248 124.498427 C 4.084635 124.498427 0.501736 120.915527 0.501736 116.498915 Z M 191.49783 116.498915 " transform="matrix(0.566929,0,0,0.566929,339.590551,68.031496)"/>
-<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(50%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;" d="M 108.499837 315.501845 C 108.499837 311.078342 112.082737 307.502333 116.499349 307.502333 L 233.501682 307.502333 C 237.918294 307.502333 241.501194 311.078342 241.501194 315.501845 L 241.501194 350.497125 C 241.501194 354.920627 237.918294 358.496636 233.501682 358.496636 L 116.499349 358.496636 C 112.082737 358.496636 108.499837 354.920627 108.499837 350.497125 Z M 108.499837 315.501845 " transform="matrix(0.566929,0,0,0.566929,0,0)"/>
-<path style="fill-rule:nonzero;fill:rgb(59.607843%,74.901961%,85.490196%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.499837 8.501845 C 0.499837 4.078342 4.082737 0.502333 8.499349 0.502333 L 125.501682 0.502333 C 129.918294 0.502333 133.501194 4.078342 133.501194 8.501845 L 133.501194 24.500868 L 0.499837 24.500868 Z M 0.499837 8.501845 " transform="matrix(0.566929,0,0,0.566929,61.228346,174.047244)"/>
-<use xlink:href="#image519" transform="matrix(0.566929,0,0,0.566929,64.629921,176.314961)"/>
+<path style="fill-rule:nonzero;fill:rgb(59.607843%,74.901961%,85.490196%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 191.503364 146.501573 C 191.503364 150.918186 187.920464 154.501085 183.496962 154.501085 L 8.499891 154.501085 C 4.083279 154.501085 0.50038 150.918186 0.50038 146.501573 Z M 191.503364 146.501573 " transform="matrix(0.566929,0,0,0.566929,336.188976,66.330709)"/>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(50%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;" d="M 108.499837 315.501845 C 108.499837 311.078342 112.082737 307.502333 116.499349 307.502333 L 233.501682 307.502333 C 237.918294 307.502333 241.501194 311.078342 241.501194 315.501845 L 241.501194 381.502984 C 241.501194 385.919596 237.918294 389.502496 233.501682 389.502496 L 116.499349 389.502496 C 112.082737 389.502496 108.499837 385.919596 108.499837 381.502984 Z M 108.499837 315.501845 " transform="matrix(0.566929,0,0,0.566929,0,0)"/>
+<path style="fill-rule:nonzero;fill:rgb(59.607843%,74.901961%,85.490196%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.499837 8.501845 C 0.499837 4.078342 4.082737 0.502333 8.499349 0.502333 L 125.501682 0.502333 C 129.918294 0.502333 133.501194 4.078342 133.501194 8.501845 L 133.501194 26.499023 L 0.499837 26.499023 Z M 0.499837 8.501845 " transform="matrix(0.566929,0,0,0.566929,61.228346,174.047244)"/>
+<use xlink:href="#image19033" transform="matrix(0.566929,0,0,0.566929,64.629921,176.88189)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-13" x="76.535156" y="184.199219"/>
+  <use xlink:href="#glyph0-2" x="82.577545" y="184.199219"/>
+  <use xlink:href="#glyph0-4" x="86.356583" y="184.199219"/>
+  <use xlink:href="#glyph0-6" x="88.619934" y="184.199219"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40%,40%,40%);fill-opacity:1;" d="M 127.84375 179.433594 L 132.945312 179.433594 L 130.394531 183.96875 Z M 127.84375 179.433594 "/>
+<use xlink:href="#image19034" transform="matrix(0.566929,0,0,0.566929,63.496063,192.472441)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph0-12" x="76.535156" y="183.078125"/>
-  <use xlink:href="#glyph0-1" x="82.584246" y="183.078125"/>
-  <use xlink:href="#glyph0-3" x="86.367833" y="183.078125"/>
-  <use xlink:href="#glyph0-5" x="88.633335" y="183.078125"/>
+  <use xlink:href="#glyph1-45" x="70.867188" y="198.726562"/>
+  <use xlink:href="#glyph1-2" x="73.98439" y="198.726562"/>
+  <use xlink:href="#glyph1-33" x="77.450714" y="198.726562"/>
+  <use xlink:href="#glyph1-17" x="79.526779" y="198.726562"/>
+  <use xlink:href="#glyph1-5" x="82.643982" y="198.726562"/>
+  <use xlink:href="#glyph1-21" x="84.028015" y="198.726562"/>
+  <use xlink:href="#glyph1-3" x="87.494339" y="198.726562"/>
+  <use xlink:href="#glyph1-7" x="90.960663" y="198.726562"/>
+  <use xlink:href="#glyph1-8" x="92.693832" y="198.726562"/>
+  <use xlink:href="#glyph1-9" x="96.852188" y="198.726562"/>
+  <use xlink:href="#glyph1-10" x="101.010544" y="198.726562"/>
+  <use xlink:href="#glyph1-11" x="105.51178" y="198.726562"/>
+  <use xlink:href="#glyph1-12" x="110.013016" y="198.726562"/>
+  <use xlink:href="#glyph1-9" x="114.514252" y="198.726562"/>
+  <use xlink:href="#glyph1-10" x="118.672607" y="198.726562"/>
+  <use xlink:href="#glyph1-13" x="123.173843" y="198.726562"/>
+  <use xlink:href="#glyph1-25" x="125.249908" y="198.726562"/>
+  <use xlink:href="#glyph1-15" x="128.716232" y="198.726562"/>
+  <use xlink:href="#glyph1-16" x="132.182556" y="198.726562"/>
 </g>
-<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40%,40%,40%);fill-opacity:1;" d="M 127.84375 178.867188 L 132.945312 178.867188 L 130.394531 183.402344 Z M 127.84375 178.867188 "/>
-<use xlink:href="#image522" transform="matrix(0.566929,0,0,0.566929,63.496063,189.92126)"/>
+<path style="fill-rule:nonzero;fill:rgb(77%,77%,77%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.499837 24.497559 L 133.501194 24.497559 L 133.501194 48.496094 L 0.499837 48.496094 Z M 0.499837 24.497559 " transform="matrix(0.566929,0,0,0.566929,61.228346,188.787402)"/>
+<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
+  <use xlink:href="#glyph2-1" x="64.628906" y="211.746094"/>
+  <use xlink:href="#glyph2-2" x="66.362076" y="211.746094"/>
+  <use xlink:href="#glyph2-3" x="70.171295" y="211.746094"/>
+  <use xlink:href="#glyph2-4" x="73.980515" y="211.746094"/>
+  <use xlink:href="#glyph2-5" x="77.446838" y="211.746094"/>
+  <use xlink:href="#glyph2-4" x="80.913162" y="211.746094"/>
+  <use xlink:href="#glyph2-6" x="84.379486" y="211.746094"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40%,40%,40%);fill-opacity:1;" d="M 127.84375 206.644531 L 132.378906 209.195312 L 127.84375 211.746094 Z M 127.84375 206.644531 "/>
+<path style="fill-rule:nonzero;fill:rgb(59.607843%,74.901961%,85.490196%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.501194 48.502984 C 133.501194 52.919596 129.918294 56.502496 125.501682 56.502496 L 8.499349 56.502496 C 4.082737 56.502496 0.499837 52.919596 0.499837 48.502984 Z M 133.501194 48.502984 " transform="matrix(0.566929,0,0,0.566929,61.228346,188.787402)"/>
+<path style="fill-rule:nonzero;fill:rgb(99.607843%,87.058824%,34.509804%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.502604 8.499023 C 0.502604 4.082411 4.078613 0.499512 8.502116 0.499512 L 132.497993 0.499512 C 136.921495 0.499512 140.497504 4.082411 140.497504 8.499023 L 140.497504 18.496691 C 140.497504 22.920193 136.921495 26.503092 132.497993 26.503092 L 8.502116 26.503092 C 4.078613 26.503092 0.502604 22.920193 0.502604 18.496691 Z M 0.502604 8.499023 " transform="matrix(0.566929,0,0,0.566929,203.527559,184.251969)"/>
+<use xlink:href="#image19038" transform="matrix(0.566929,0,0,0.566929,206.929134,187.086614)"/>
 <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
-  <use xlink:href="#glyph1-43" x="70.867188" y="195.082031"/>
-  <use xlink:href="#glyph1-1" x="73.985298" y="195.082031"/>
-  <use xlink:href="#glyph1-29" x="77.453586" y="195.082031"/>
-  <use xlink:href="#glyph1-16" x="79.530297" y="195.082031"/>
-  <use xlink:href="#glyph1-4" x="82.648407" y="195.082031"/>
-  <use xlink:href="#glyph1-20" x="84.033895" y="195.082031"/>
-  <use xlink:href="#glyph1-2" x="87.502184" y="195.082031"/>
-  <use xlink:href="#glyph1-6" x="90.970472" y="195.082031"/>
-  <use xlink:href="#glyph1-7" x="92.703094" y="195.082031"/>
-  <use xlink:href="#glyph1-8" x="96.862605" y="195.082031"/>
-  <use xlink:href="#glyph1-9" x="101.022115" y="195.082031"/>
-  <use xlink:href="#glyph1-10" x="105.525714" y="195.082031"/>
-  <use xlink:href="#glyph1-11" x="110.029312" y="195.082031"/>
-  <use xlink:href="#glyph1-8" x="114.532911" y="195.082031"/>
-  <use xlink:href="#glyph1-9" x="118.692421" y="195.082031"/>
-  <use xlink:href="#glyph1-12" x="123.19602" y="195.082031"/>
-  <use xlink:href="#glyph1-44" x="125.27273" y="195.082031"/>
-  <use xlink:href="#glyph1-14" x="128.741019" y="195.082031"/>
-  <use xlink:href="#glyph1-15" x="132.209307" y="195.082031"/>
+  <use xlink:href="#glyph0-4" x="218.835938" y="194.40625"/>
+  <use xlink:href="#glyph0-5" x="221.099289" y="194.40625"/>
+  <use xlink:href="#glyph0-6" x="223.743256" y="194.40625"/>
+  <use xlink:href="#glyph0-3" x="227.522293" y="194.40625"/>
+  <use xlink:href="#glyph0-7" x="231.675156" y="194.40625"/>
+  <use xlink:href="#glyph0-8" x="235.454193" y="194.40625"/>
+  <use xlink:href="#glyph0-5" x="239.233231" y="194.40625"/>
+  <use xlink:href="#glyph0-9" x="241.877197" y="194.40625"/>
+  <use xlink:href="#glyph0-10" x="243.766724" y="194.40625"/>
+  <use xlink:href="#glyph0-4" x="247.919586" y="194.40625"/>
+  <use xlink:href="#glyph0-11" x="250.182938" y="194.40625"/>
+  <use xlink:href="#glyph0-7" x="253.961975" y="194.40625"/>
+  <use xlink:href="#glyph0-10" x="257.741013" y="194.40625"/>
+  <use xlink:href="#glyph0-2" x="261.893875" y="194.40625"/>
+  <use xlink:href="#glyph0-8" x="265.672913" y="194.40625"/>
+  <use xlink:href="#glyph0-9" x="269.45195" y="194.40625"/>
+  <use xlink:href="#glyph0-2" x="271.341476" y="194.40625"/>
+  <use xlink:href="#glyph0-7" x="275.120514" y="194.40625"/>
 </g>
-<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.864095 13.103027 " transform="matrix(0.566929,0,0,0.566929,68.598425,187.653543)"/>
-<path style="fill-rule:nonzero;fill:rgb(59.607843%,74.901961%,85.490196%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(70%,70%,70%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.501194 19.497125 L 133.501194 19.497125 C 133.501194 23.920627 129.918294 27.496636 125.501682 27.496636 L 8.499349 27.496636 C 4.082737 27.496636 0.499837 23.920627 0.499837 19.497125 Z M 133.501194 19.497125 " transform="matrix(0.566929,0,0,0.566929,61.228346,187.653543)"/>
 </g>
 </svg>
--- a/test-data/gene.json	Fri Mar 03 07:20:23 2017 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,9586 +0,0 @@
-{
-   "ENSG00000171105": {
-      "assembly_name": "GRCh38", 
-      "display_name": "INSR", 
-      "description": "insulin receptor [Source:HGNC Symbol;Acc:HGNC:6091]", 
-      "seq_region_name": "19", 
-      "logic_name": "ensembl_havana_gene", 
-      "object_type": "Gene", 
-      "start": 7112255, 
-      "id": "ENSG00000171105", 
-      "source": "ensembl_havana", 
-      "db_type": "core", 
-      "version": 13, 
-      "biotype": "protein_coding", 
-      "end": 7294034, 
-      "Transcript": [
-         {
-            "assembly_name": "GRCh38", 
-            "display_name": "INSR-002", 
-            "Parent": "ENSG00000171105", 
-            "seq_region_name": "19", 
-            "logic_name": "ensembl_havana_transcript", 
-            "object_type": "Transcript", 
-            "start": 7112255, 
-            "id": "ENST00000341500", 
-            "source": "ensembl_havana", 
-            "version": 9, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7293931, 
-                  "start": 7293792, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003071904", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7267896, 
-                  "start": 7267345, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003664284", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7184637, 
-                  "start": 7184316, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003682994", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7174731, 
-                  "start": 7174583, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003659630", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7172434, 
-                  "start": 7172290, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003580729", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7170751, 
-                  "start": 7170537, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003536394", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7168094, 
-                  "start": 7167968, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003613738", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7166404, 
-                  "start": 7166154, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003683391", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7163199, 
-                  "start": 7163032, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003658215", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7152927, 
-                  "start": 7152726, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001157582", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7143090, 
-                  "start": 7142816, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001157577", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7141816, 
-                  "start": 7141677, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001157569", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7132317, 
-                  "start": 7132158, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001157563", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7128954, 
-                  "start": 7128852, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001157555", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7126651, 
-                  "start": 7126584, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001157546", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7125527, 
-                  "start": 7125283, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001157539", 
-                  "seq_region_name": "19", 
-                  "version": 2, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7122989, 
-                  "start": 7122879, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003469979", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7122773, 
-                  "start": 7122614, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003645740", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7120749, 
-                  "start": 7120620, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003491310", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7119583, 
-                  "start": 7119449, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001157513", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7117410, 
-                  "start": 7112255, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001383357", 
-                  "seq_region_name": "19", 
-                  "version": 3, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "homosapiens", 
-            "end": 7293931, 
-            "Translation": {
-               "end": 7293891, 
-               "Parent": "ENST00000341500", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSP00000342838", 
-               "start": 7117056, 
-               "length": 1370, 
-               "species": "homosapiens"
-            }, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": -1
-         }, 
-         {
-            "assembly_name": "GRCh38", 
-            "display_name": "INSR-001", 
-            "Parent": "ENSG00000171105", 
-            "seq_region_name": "19", 
-            "logic_name": "ensembl_havana_transcript", 
-            "object_type": "Transcript", 
-            "start": 7116627, 
-            "id": "ENST00000302850", 
-            "source": "ensembl_havana", 
-            "version": 9, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7294034, 
-                  "start": 7293792, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001283493", 
-                  "seq_region_name": "19", 
-                  "version": 6, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7267896, 
-                  "start": 7267345, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003664284", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7184637, 
-                  "start": 7184316, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003682994", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7174731, 
-                  "start": 7174583, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003659630", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7172434, 
-                  "start": 7172290, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003580729", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7170751, 
-                  "start": 7170537, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003536394", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7168094, 
-                  "start": 7167968, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003613738", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7166404, 
-                  "start": 7166154, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003683391", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7163199, 
-                  "start": 7163032, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003658215", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7152927, 
-                  "start": 7152726, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001157582", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7150532, 
-                  "start": 7150497, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001157509", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7143090, 
-                  "start": 7142816, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001157577", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7141816, 
-                  "start": 7141677, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001157569", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7132317, 
-                  "start": 7132158, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001157563", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7128954, 
-                  "start": 7128852, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001157555", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7126651, 
-                  "start": 7126584, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001157546", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7125527, 
-                  "start": 7125283, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001157539", 
-                  "seq_region_name": "19", 
-                  "version": 2, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7122989, 
-                  "start": 7122879, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003469979", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7122773, 
-                  "start": 7122614, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003645740", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7120749, 
-                  "start": 7120620, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003491310", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7119583, 
-                  "start": 7119449, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001157513", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7117410, 
-                  "start": 7116627, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003059467", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "homosapiens", 
-            "end": 7294034, 
-            "Translation": {
-               "end": 7293891, 
-               "Parent": "ENST00000302850", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSP00000303830", 
-               "start": 7117056, 
-               "length": 1382, 
-               "species": "homosapiens"
-            }, 
-            "is_canonical": "1", 
-            "db_type": "core", 
-            "strand": -1
-         }, 
-         {
-            "assembly_name": "GRCh38", 
-            "display_name": "INSR-005", 
-            "Parent": "ENSG00000171105", 
-            "seq_region_name": "19", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 7120620, 
-            "id": "ENST00000601099", 
-            "source": "havana", 
-            "version": 1, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7123158, 
-                  "start": 7122879, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003026579", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7122773, 
-                  "start": 7122614, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003480425", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7120749, 
-                  "start": 7120620, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003639038", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "retained_intron", 
-            "species": "homosapiens", 
-            "end": 7123158, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": -1
-         }, 
-         {
-            "assembly_name": "GRCh38", 
-            "display_name": "INSR-007", 
-            "Parent": "ENSG00000171105", 
-            "seq_region_name": "19", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 7122570, 
-            "id": "ENST00000593970", 
-            "source": "havana", 
-            "version": 1, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7125386, 
-                  "start": 7125283, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003094231", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7122989, 
-                  "start": 7122879, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003569272", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7122773, 
-                  "start": 7122570, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003144739", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "retained_intron", 
-            "species": "homosapiens", 
-            "end": 7125386, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": -1
-         }, 
-         {
-            "assembly_name": "GRCh38", 
-            "display_name": "INSR-006", 
-            "Parent": "ENSG00000171105", 
-            "seq_region_name": "19", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 7141510, 
-            "id": "ENST00000597211", 
-            "source": "havana", 
-            "version": 1, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7143040, 
-                  "start": 7142816, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003185190", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7141816, 
-                  "start": 7141510, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003013397", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "retained_intron", 
-            "species": "homosapiens", 
-            "end": 7143040, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": -1
-         }, 
-         {
-            "assembly_name": "GRCh38", 
-            "display_name": "INSR-003", 
-            "Parent": "ENSG00000171105", 
-            "seq_region_name": "19", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 7151971, 
-            "id": "ENST00000598216", 
-            "source": "havana", 
-            "version": 1, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7293866, 
-                  "start": 7293792, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003109584", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7267896, 
-                  "start": 7267345, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003494319", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7184637, 
-                  "start": 7184316, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003531052", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7174731, 
-                  "start": 7174583, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003568797", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7172434, 
-                  "start": 7172290, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003675943", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7170751, 
-                  "start": 7170537, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003466053", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7168094, 
-                  "start": 7167968, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003497280", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7166404, 
-                  "start": 7166154, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003609270", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7163199, 
-                  "start": 7163032, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003664020", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7152927, 
-                  "start": 7151971, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003195115", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "retained_intron", 
-            "species": "homosapiens", 
-            "end": 7293866, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": -1
-         }, 
-         {
-            "assembly_name": "GRCh38", 
-            "display_name": "INSR-004", 
-            "Parent": "ENSG00000171105", 
-            "seq_region_name": "19", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 7159423, 
-            "id": "ENST00000600492", 
-            "source": "havana", 
-            "version": 1, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7167978, 
-                  "start": 7167968, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003006977", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7166404, 
-                  "start": 7166154, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003683391", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7163199, 
-                  "start": 7163032, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003658215", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 7159645, 
-                  "start": 7159423, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003028300", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "homosapiens", 
-            "end": 7167978, 
-            "Translation": {
-               "end": 7167978, 
-               "Parent": "ENST00000600492", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSP00000473170", 
-               "start": 7159617, 
-               "length": 152, 
-               "species": "homosapiens"
-            }, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": -1
-         }
-      ], 
-      "species": "homosapiens", 
-      "strand": -1
-   }, 
-   "ENSRNOG00000001236": {
-      "assembly_name": "Rnor_6.0", 
-      "display_name": "Brat1", 
-      "description": "BRCA1-associated ATM activator 1 [Source:RGD Symbol;Acc:1565146]", 
-      "seq_region_name": "12", 
-      "logic_name": "ensembl", 
-      "object_type": "Gene", 
-      "start": 16015771, 
-      "id": "ENSRNOG00000001236", 
-      "source": "ensembl", 
-      "db_type": "core", 
-      "version": 7, 
-      "biotype": "protein_coding", 
-      "end": 16027881, 
-      "Transcript": [
-         {
-            "assembly_name": "Rnor_6.0", 
-            "display_name": "Brat1-201", 
-            "Parent": "ENSRNOG00000001236", 
-            "seq_region_name": "12", 
-            "logic_name": "ensembl", 
-            "object_type": "Transcript", 
-            "start": 16015771, 
-            "id": "ENSRNOT00000064726", 
-            "source": "ensembl", 
-            "version": 3, 
-            "Exon": [
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 16027881, 
-                  "start": 16027741, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000011188", 
-                  "seq_region_name": "12", 
-                  "version": 5, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 16025193, 
-                  "start": 16025039, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000233929", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 16023784, 
-                  "start": 16023637, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000011253", 
-                  "seq_region_name": "12", 
-                  "version": 3, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 16022862, 
-                  "start": 16022490, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000011254", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 16022329, 
-                  "start": 16022210, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000011256", 
-                  "seq_region_name": "12", 
-                  "version": 2, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 16021075, 
-                  "start": 16020984, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000011193", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 16020800, 
-                  "start": 16020682, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000011194", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 16020608, 
-                  "start": 16020422, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000011195", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 16020231, 
-                  "start": 16020158, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000011196", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 16018757, 
-                  "start": 16018655, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000011197", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 16018522, 
-                  "start": 16018424, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000011185", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 16018308, 
-                  "start": 16018151, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000011186", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 16017533, 
-                  "start": 16015771, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000435062", 
-                  "seq_region_name": "12", 
-                  "version": 2, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "rattusnorvegicus", 
-            "end": 16027881, 
-            "Translation": {
-               "end": 16027867, 
-               "Parent": "ENSRNOT00000064726", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSRNOP00000059762", 
-               "start": 16016838, 
-               "length": 816, 
-               "species": "rattusnorvegicus"
-            }, 
-            "is_canonical": "1", 
-            "db_type": "core", 
-            "strand": -1
-         }
-      ], 
-      "species": "rattusnorvegicus", 
-      "strand": -1
-   }, 
-   "ENSPTRG00000018865": {
-      "assembly_name": "CHIMP2.1.4", 
-      "display_name": "BRAT1", 
-      "description": "BRCA1 associated ATM activator 1 [Source:VGNC Symbol;Acc:VGNC:7351]", 
-      "seq_region_name": "7", 
-      "logic_name": "ensembl", 
-      "object_type": "Gene", 
-      "start": 1236510, 
-      "id": "ENSPTRG00000018865", 
-      "source": "ensembl", 
-      "db_type": "core", 
-      "version": 6, 
-      "biotype": "protein_coding", 
-      "end": 1254466, 
-      "Transcript": [
-         {
-            "assembly_name": "CHIMP2.1.4", 
-            "display_name": "BRAT1-201", 
-            "Parent": "ENSPTRG00000018865", 
-            "seq_region_name": "7", 
-            "logic_name": "ensembl", 
-            "object_type": "Transcript", 
-            "start": 1236510, 
-            "id": "ENSPTRT00000034846", 
-            "source": "ensembl", 
-            "version": 3, 
-            "Exon": [
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 1254466, 
-                  "start": 1254195, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000316044", 
-                  "seq_region_name": "7", 
-                  "version": 2, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 1253148, 
-                  "start": 1253006, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000186883", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 1246227, 
-                  "start": 1246073, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000265603", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 1243767, 
-                  "start": 1243620, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000316041", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 1242678, 
-                  "start": 1242306, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000186885", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 1242039, 
-                  "start": 1241920, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000186888", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 1240909, 
-                  "start": 1240818, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000186889", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 1240534, 
-                  "start": 1240416, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000186880", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 1240182, 
-                  "start": 1239996, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000186891", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 1239751, 
-                  "start": 1239678, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000186886", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 1238587, 
-                  "start": 1238485, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000186879", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 1238341, 
-                  "start": 1238243, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000426386", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 1238050, 
-                  "start": 1237878, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000186884", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 1237464, 
-                  "start": 1236510, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000186877", 
-                  "seq_region_name": "7", 
-                  "version": 3, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "pantroglodytes", 
-            "end": 1254466, 
-            "Translation": {
-               "end": 1253132, 
-               "Parent": "ENSPTRT00000034846", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSPTRP00000032210", 
-               "start": 1236769, 
-               "length": 821, 
-               "species": "pantroglodytes"
-            }, 
-            "is_canonical": "1", 
-            "db_type": "core", 
-            "strand": -1
-         }
-      ], 
-      "species": "pantroglodytes", 
-      "strand": -1
-   }, 
-   "ENSRNOG00000029778": {
-      "assembly_name": "Rnor_6.0", 
-      "display_name": "Maob", 
-      "description": "monoamine oxidase B [Source:RGD Symbol;Acc:3041]", 
-      "seq_region_name": "X", 
-      "logic_name": "ensembl", 
-      "object_type": "Gene", 
-      "start": 6430594, 
-      "id": "ENSRNOG00000029778", 
-      "source": "ensembl", 
-      "db_type": "core", 
-      "version": 5, 
-      "biotype": "protein_coding", 
-      "end": 6533534, 
-      "Transcript": [
-         {
-            "assembly_name": "Rnor_6.0", 
-            "display_name": "Maob-201", 
-            "Parent": "ENSRNOG00000029778", 
-            "seq_region_name": "X", 
-            "logic_name": "ensembl", 
-            "object_type": "Transcript", 
-            "start": 6430594, 
-            "id": "ENSRNOT00000044009", 
-            "source": "ensembl", 
-            "version": 5, 
-            "Exon": [
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6430802, 
-                  "start": 6430594, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000435692", 
-                  "seq_region_name": "X", 
-                  "version": 3, 
-                  "species": "rattusnorvegicus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6473999, 
-                  "start": 6473905, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000258067", 
-                  "seq_region_name": "X", 
-                  "version": 4, 
-                  "species": "rattusnorvegicus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6475426, 
-                  "start": 6475289, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000464923", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6502842, 
-                  "start": 6502738, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000507682", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6503828, 
-                  "start": 6503737, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000027809", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6506862, 
-                  "start": 6506721, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000257983", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6508141, 
-                  "start": 6507992, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000027844", 
-                  "seq_region_name": "X", 
-                  "version": 2, 
-                  "species": "rattusnorvegicus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6509261, 
-                  "start": 6509102, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000027859", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6518091, 
-                  "start": 6517995, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000027878", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6519612, 
-                  "start": 6519559, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000027893", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6523444, 
-                  "start": 6523387, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000314895", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6525674, 
-                  "start": 6525577, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000472693", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6530471, 
-                  "start": 6530360, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000492223", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6531563, 
-                  "start": 6531501, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000027953", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6533534, 
-                  "start": 6532605, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000027971", 
-                  "seq_region_name": "X", 
-                  "version": 5, 
-                  "species": "rattusnorvegicus", 
-                  "strand": 1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "rattusnorvegicus", 
-            "end": 6533534, 
-            "Translation": {
-               "end": 6532757, 
-               "Parent": "ENSRNOT00000044009", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSRNOP00000043466", 
-               "start": 6430757, 
-               "length": 520, 
-               "species": "rattusnorvegicus"
-            }, 
-            "is_canonical": "1", 
-            "db_type": "core", 
-            "strand": 1
-         }
-      ], 
-      "species": "rattusnorvegicus", 
-      "strand": 1
-   }, 
-   "ENSPTRG00000021817": {
-      "assembly_name": "CHIMP2.1.4", 
-      "display_name": "MAOB", 
-      "description": "monoamine oxidase B [Source:VGNC Symbol;Acc:VGNC:1362]", 
-      "seq_region_name": "X", 
-      "logic_name": "ensembl", 
-      "object_type": "Gene", 
-      "start": 44214435, 
-      "id": "ENSPTRG00000021817", 
-      "source": "ensembl", 
-      "db_type": "core", 
-      "version": 5, 
-      "biotype": "protein_coding", 
-      "end": 44329971, 
-      "Transcript": [
-         {
-            "assembly_name": "CHIMP2.1.4", 
-            "display_name": "MAOB-201", 
-            "Parent": "ENSPTRG00000021817", 
-            "seq_region_name": "X", 
-            "logic_name": "ensembl", 
-            "object_type": "Transcript", 
-            "start": 44214435, 
-            "id": "ENSPTRT00000040521", 
-            "source": "ensembl", 
-            "version": 5, 
-            "Exon": [
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44329971, 
-                  "start": 44329750, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000309710", 
-                  "seq_region_name": "X", 
-                  "version": 3, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44291236, 
-                  "start": 44291142, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000215278", 
-                  "seq_region_name": "X", 
-                  "version": 2, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44286486, 
-                  "start": 44286349, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000215279", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44251232, 
-                  "start": 44251128, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000215269", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44250091, 
-                  "start": 44250000, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000215280", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44245091, 
-                  "start": 44244950, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000215271", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44243721, 
-                  "start": 44243572, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000215273", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44241412, 
-                  "start": 44241253, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000215277", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44229376, 
-                  "start": 44229280, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000215276", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44228227, 
-                  "start": 44228174, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000215272", 
-                  "seq_region_name": "X", 
-                  "version": 3, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44226572, 
-                  "start": 44226515, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000425626", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44223102, 
-                  "start": 44223005, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000434798", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44217242, 
-                  "start": 44217131, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000432705", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44216540, 
-                  "start": 44216478, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000215267", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44215442, 
-                  "start": 44214435, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000215275", 
-                  "seq_region_name": "X", 
-                  "version": 4, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "pantroglodytes", 
-            "end": 44329971, 
-            "Translation": {
-               "end": 44329795, 
-               "Parent": "ENSPTRT00000040521", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSPTRP00000037441", 
-               "start": 44215290, 
-               "length": 520, 
-               "species": "pantroglodytes"
-            }, 
-            "is_canonical": "1", 
-            "db_type": "core", 
-            "strand": -1
-         }
-      ], 
-      "species": "pantroglodytes", 
-      "strand": -1
-   }, 
-   "ENSPTRG00000021816": {
-      "assembly_name": "CHIMP2.1.4", 
-      "display_name": "MAOA", 
-      "description": "monoamine oxidase A [Source:HGNC Symbol;Acc:HGNC:6833]", 
-      "seq_region_name": "X", 
-      "logic_name": "ensembl", 
-      "object_type": "Gene", 
-      "start": 44101789, 
-      "id": "ENSPTRG00000021816", 
-      "source": "ensembl", 
-      "db_type": "core", 
-      "version": 6, 
-      "biotype": "protein_coding", 
-      "end": 44194623, 
-      "Transcript": [
-         {
-            "assembly_name": "CHIMP2.1.4", 
-            "display_name": "MAOA-201", 
-            "Parent": "ENSPTRG00000021816", 
-            "seq_region_name": "X", 
-            "logic_name": "ensembl", 
-            "object_type": "Transcript", 
-            "start": 44101789, 
-            "id": "ENSPTRT00000040520", 
-            "source": "ensembl", 
-            "version": 3, 
-            "Exon": [
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44102042, 
-                  "start": 44101789, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000309720", 
-                  "seq_region_name": "X", 
-                  "version": 2, 
-                  "species": "pantroglodytes", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44129517, 
-                  "start": 44129423, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000298870", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44139293, 
-                  "start": 44139156, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000309719", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44158700, 
-                  "start": 44158596, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000301787", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44159519, 
-                  "start": 44159428, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000303326", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44175985, 
-                  "start": 44175844, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000309718", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44179128, 
-                  "start": 44178979, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000429811", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44179591, 
-                  "start": 44179432, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000215264", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44180539, 
-                  "start": 44180443, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000215266", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44184064, 
-                  "start": 44184011, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000215265", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44188535, 
-                  "start": 44188478, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000215262", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44189845, 
-                  "start": 44189748, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000412985", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44191706, 
-                  "start": 44191595, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000405149", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44191972, 
-                  "start": 44191910, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000426930", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 44194623, 
-                  "start": 44192168, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000370149", 
-                  "seq_region_name": "X", 
-                  "version": 3, 
-                  "species": "pantroglodytes", 
-                  "strand": 1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "pantroglodytes", 
-            "end": 44194623, 
-            "Translation": {
-               "end": 44192314, 
-               "Parent": "ENSPTRT00000040520", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSPTRP00000037440", 
-               "start": 44101970, 
-               "length": 527, 
-               "species": "pantroglodytes"
-            }, 
-            "is_canonical": "1", 
-            "db_type": "core", 
-            "strand": 1
-         }
-      ], 
-      "species": "pantroglodytes", 
-      "strand": 1
-   }, 
-   "ENSG00000106009": {
-      "assembly_name": "GRCh38", 
-      "display_name": "BRAT1", 
-      "description": "BRCA1 associated ATM activator 1 [Source:HGNC Symbol;Acc:HGNC:21701]", 
-      "seq_region_name": "7", 
-      "logic_name": "ensembl_havana_gene", 
-      "object_type": "Gene", 
-      "start": 2537877, 
-      "id": "ENSG00000106009", 
-      "source": "ensembl_havana", 
-      "db_type": "core", 
-      "version": 15, 
-      "biotype": "protein_coding", 
-      "end": 2555727, 
-      "Transcript": [
-         {
-            "assembly_name": "GRCh38", 
-            "display_name": "BRAT1-001", 
-            "Parent": "ENSG00000106009", 
-            "seq_region_name": "7", 
-            "logic_name": "ensembl_havana_transcript", 
-            "object_type": "Transcript", 
-            "start": 2537877, 
-            "id": "ENST00000340611", 
-            "source": "ensembl_havana", 
-            "version": 8, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2555727, 
-                  "start": 2555487, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001848191", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2554447, 
-                  "start": 2554305, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003589382", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2547478, 
-                  "start": 2547324, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003705394", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2545056, 
-                  "start": 2544909, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003612441", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2543962, 
-                  "start": 2543590, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003693120", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2543323, 
-                  "start": 2543204, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003710814", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2542211, 
-                  "start": 2542120, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003493759", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2541836, 
-                  "start": 2541718, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003690059", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2541484, 
-                  "start": 2541298, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003640341", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2541052, 
-                  "start": 2540979, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00000976228", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2539888, 
-                  "start": 2539786, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003666106", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2539642, 
-                  "start": 2539544, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003635847", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2539351, 
-                  "start": 2539179, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003604869", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2538764, 
-                  "start": 2537877, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001687632", 
-                  "seq_region_name": "7", 
-                  "version": 2, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "homosapiens", 
-            "end": 2555727, 
-            "Translation": {
-               "end": 2554431, 
-               "Parent": "ENST00000340611", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSP00000339637", 
-               "start": 2538069, 
-               "length": 821, 
-               "species": "homosapiens"
-            }, 
-            "is_canonical": "1", 
-            "db_type": "core", 
-            "strand": -1
-         }, 
-         {
-            "assembly_name": "GRCh38", 
-            "display_name": "BRAT1-004", 
-            "Parent": "ENSG00000106009", 
-            "seq_region_name": "7", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 2537881, 
-            "id": "ENST00000493232", 
-            "source": "havana", 
-            "version": 5, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2544252, 
-                  "start": 2541718, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00002080970", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2541484, 
-                  "start": 2539544, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001943246", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2538764, 
-                  "start": 2537881, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001624351", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "retained_intron", 
-            "species": "homosapiens", 
-            "end": 2544252, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": -1
-         }, 
-         {
-            "assembly_name": "GRCh38", 
-            "display_name": "BRAT1-003", 
-            "Parent": "ENSG00000106009", 
-            "seq_region_name": "7", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 2537881, 
-            "id": "ENST00000467558", 
-            "source": "havana", 
-            "version": 5, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2554447, 
-                  "start": 2554305, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003568932", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2547478, 
-                  "start": 2547324, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003710532", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2545056, 
-                  "start": 2544909, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003567928", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2543962, 
-                  "start": 2543204, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001655947", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2542211, 
-                  "start": 2542120, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003638828", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2541836, 
-                  "start": 2541718, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003570107", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2541484, 
-                  "start": 2541298, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003471100", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2541052, 
-                  "start": 2539786, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001730635", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2539642, 
-                  "start": 2539544, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003600875", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2539351, 
-                  "start": 2537881, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00002246430", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "retained_intron", 
-            "species": "homosapiens", 
-            "end": 2554447, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": -1
-         }, 
-         {
-            "assembly_name": "GRCh38", 
-            "display_name": "BRAT1-002", 
-            "Parent": "ENSG00000106009", 
-            "seq_region_name": "7", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 2537881, 
-            "id": "ENST00000469750", 
-            "source": "havana", 
-            "version": 5, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2555694, 
-                  "start": 2555487, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001526979", 
-                  "seq_region_name": "7", 
-                  "version": 2, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2554447, 
-                  "start": 2554305, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003568932", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2547478, 
-                  "start": 2547324, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003710532", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2545056, 
-                  "start": 2544909, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003567928", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2543962, 
-                  "start": 2542120, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001838224", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2541836, 
-                  "start": 2541718, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003570107", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2541484, 
-                  "start": 2541298, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003471100", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2541052, 
-                  "start": 2539786, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001730635", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2539642, 
-                  "start": 2539544, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003600875", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2539351, 
-                  "start": 2539179, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003693143", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2538764, 
-                  "start": 2537881, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001624351", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "retained_intron", 
-            "species": "homosapiens", 
-            "end": 2555694, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": -1
-         }, 
-         {
-            "assembly_name": "GRCh38", 
-            "display_name": "BRAT1-006", 
-            "Parent": "ENSG00000106009", 
-            "seq_region_name": "7", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 2538412, 
-            "id": "ENST00000473879", 
-            "source": "havana", 
-            "version": 1, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2541024, 
-                  "start": 2540979, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001817430", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2540894, 
-                  "start": 2540830, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001905721", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2539888, 
-                  "start": 2539786, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003661071", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2539642, 
-                  "start": 2539544, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003600875", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2538764, 
-                  "start": 2538412, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001957071", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "processed_transcript", 
-            "species": "homosapiens", 
-            "end": 2541024, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": -1
-         }, 
-         {
-            "assembly_name": "GRCh38", 
-            "display_name": "BRAT1-005", 
-            "Parent": "ENSG00000106009", 
-            "seq_region_name": "7", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 2542181, 
-            "id": "ENST00000421712", 
-            "source": "havana", 
-            "version": 1, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2554448, 
-                  "start": 2554305, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001705885", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2547478, 
-                  "start": 2547324, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003705394", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2543962, 
-                  "start": 2543590, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003585162", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2543323, 
-                  "start": 2543204, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003707912", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 2542211, 
-                  "start": 2542181, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001687081", 
-                  "seq_region_name": "7", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "nonsense_mediated_decay", 
-            "species": "homosapiens", 
-            "end": 2554448, 
-            "Translation": {
-               "end": 2554431, 
-               "Parent": "ENST00000421712", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSP00000409209", 
-               "start": 2543738, 
-               "length": 168, 
-               "species": "homosapiens"
-            }, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": -1
-         }
-      ], 
-      "species": "homosapiens", 
-      "strand": -1
-   }, 
-   "ENSG00000189221": {
-      "assembly_name": "GRCh38", 
-      "display_name": "MAOA", 
-      "description": "monoamine oxidase A [Source:HGNC Symbol;Acc:HGNC:6833]", 
-      "seq_region_name": "X", 
-      "logic_name": "ensembl_havana_gene", 
-      "object_type": "Gene", 
-      "start": 43654907, 
-      "id": "ENSG00000189221", 
-      "source": "ensembl_havana", 
-      "db_type": "core", 
-      "version": 9, 
-      "biotype": "protein_coding", 
-      "end": 43746824, 
-      "Transcript": [
-         {
-            "assembly_name": "GRCh38", 
-            "display_name": "MAOA-001", 
-            "Parent": "ENSG00000189221", 
-            "seq_region_name": "X", 
-            "logic_name": "ensembl_havana_transcript", 
-            "object_type": "Transcript", 
-            "start": 43656219, 
-            "id": "ENST00000338702", 
-            "source": "ensembl_havana", 
-            "version": 3, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43656414, 
-                  "start": 43656219, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001415055", 
-                  "seq_region_name": "X", 
-                  "version": 2, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43683607, 
-                  "start": 43683513, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003501661", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43693428, 
-                  "start": 43693291, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003691177", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43711976, 
-                  "start": 43711872, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003487993", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43712796, 
-                  "start": 43712705, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003495252", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43728314, 
-                  "start": 43728173, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003526715", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43731390, 
-                  "start": 43731241, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001383783", 
-                  "seq_region_name": "X", 
-                  "version": 2, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43731853, 
-                  "start": 43731694, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001382812", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43732795, 
-                  "start": 43732699, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001377890", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43736280, 
-                  "start": 43736227, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001373498", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43740738, 
-                  "start": 43740681, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001369566", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43742047, 
-                  "start": 43741950, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001677475", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43743905, 
-                  "start": 43743794, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001614970", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43744171, 
-                  "start": 43744109, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003583432", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43746821, 
-                  "start": 43744367, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001389556", 
-                  "seq_region_name": "X", 
-                  "version": 3, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "homosapiens", 
-            "end": 43746821, 
-            "Translation": {
-               "end": 43744513, 
-               "Parent": "ENST00000338702", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSP00000340684", 
-               "start": 43656342, 
-               "length": 527, 
-               "species": "homosapiens"
-            }, 
-            "is_canonical": "1", 
-            "db_type": "core", 
-            "strand": 1
-         }, 
-         {
-            "assembly_name": "GRCh38", 
-            "display_name": "MAOA-002", 
-            "Parent": "ENSG00000189221", 
-            "seq_region_name": "X", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 43656302, 
-            "id": "ENST00000497485", 
-            "source": "havana", 
-            "version": 1, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43656414, 
-                  "start": 43656302, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001834008", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43657969, 
-                  "start": 43657862, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001836223", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43683607, 
-                  "start": 43683513, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003656032", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43693428, 
-                  "start": 43693291, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003550793", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43711976, 
-                  "start": 43711872, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003590154", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43712796, 
-                  "start": 43712705, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003524833", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43728314, 
-                  "start": 43728173, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003672501", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43731382, 
-                  "start": 43731241, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001811266", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }
-            ], 
-            "biotype": "processed_transcript", 
-            "species": "homosapiens", 
-            "end": 43731382, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": 1
-         }, 
-         {
-            "assembly_name": "GRCh38", 
-            "display_name": "MAOA-003", 
-            "Parent": "ENSG00000189221", 
-            "seq_region_name": "X", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 43743704, 
-            "id": "ENST00000490604", 
-            "source": "havana", 
-            "version": 1, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43743905, 
-                  "start": 43743704, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001816354", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43744171, 
-                  "start": 43744109, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003609031", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43744658, 
-                  "start": 43744367, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001875207", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }
-            ], 
-            "biotype": "processed_transcript", 
-            "species": "homosapiens", 
-            "end": 43744658, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": 1
-         }, 
-         {
-            "assembly_name": "GRCh38", 
-            "display_name": "MAOA-201", 
-            "Parent": "ENSG00000189221", 
-            "seq_region_name": "X", 
-            "logic_name": "ensembl", 
-            "object_type": "Transcript", 
-            "start": 43654907, 
-            "id": "ENST00000542639", 
-            "source": "ensembl", 
-            "version": 5, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43656414, 
-                  "start": 43654907, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00002218265", 
-                  "seq_region_name": "X", 
-                  "version": 2, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43657969, 
-                  "start": 43657862, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001836223", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43683607, 
-                  "start": 43683513, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003656032", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43693428, 
-                  "start": 43693291, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003550793", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43711976, 
-                  "start": 43711872, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003504764", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43712796, 
-                  "start": 43712705, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003495252", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43728314, 
-                  "start": 43728173, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003526715", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43731390, 
-                  "start": 43731241, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001383783", 
-                  "seq_region_name": "X", 
-                  "version": 2, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43731853, 
-                  "start": 43731694, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001382812", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43732795, 
-                  "start": 43732699, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001377890", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43736280, 
-                  "start": 43736227, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001373498", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43740738, 
-                  "start": 43740681, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001369566", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43742047, 
-                  "start": 43741950, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001677475", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43743905, 
-                  "start": 43743794, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001614970", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43744171, 
-                  "start": 43744109, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003583432", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43746824, 
-                  "start": 43744367, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00002311052", 
-                  "seq_region_name": "X", 
-                  "version": 2, 
-                  "species": "homosapiens", 
-                  "strand": 1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "homosapiens", 
-            "end": 43746824, 
-            "Translation": {
-               "end": 43744513, 
-               "Parent": "ENST00000542639", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSP00000440846", 
-               "start": 43711965, 
-               "length": 394, 
-               "species": "homosapiens"
-            }, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": 1
-         }
-      ], 
-      "species": "homosapiens", 
-      "strand": 1
-   }, 
-   "ENSPTRG00000010386": {
-      "assembly_name": "CHIMP2.1.4", 
-      "display_name": "INSR", 
-      "description": "insulin receptor [Source:HGNC Symbol;Acc:HGNC:6091]", 
-      "seq_region_name": "19", 
-      "logic_name": "ensembl", 
-      "object_type": "Gene", 
-      "start": 7158137, 
-      "id": "ENSPTRG00000010386", 
-      "source": "ensembl", 
-      "db_type": "core", 
-      "version": 5, 
-      "biotype": "protein_coding", 
-      "end": 7347282, 
-      "Transcript": [
-         {
-            "assembly_name": "CHIMP2.1.4", 
-            "display_name": "INSR-201", 
-            "Parent": "ENSPTRG00000010386", 
-            "seq_region_name": "19", 
-            "logic_name": "ensembl", 
-            "object_type": "Transcript", 
-            "start": 7158137, 
-            "id": "ENSPTRT00000019089", 
-            "source": "ensembl", 
-            "version": 5, 
-            "Exon": [
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 7347282, 
-                  "start": 7347183, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000324210", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 7320708, 
-                  "start": 7320157, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000103337", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 7232773, 
-                  "start": 7232452, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000245564", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 7222268, 
-                  "start": 7222120, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000245565", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 7219977, 
-                  "start": 7219833, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000245566", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 7218291, 
-                  "start": 7218077, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000245568", 
-                  "seq_region_name": "19", 
-                  "version": 2, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 7215646, 
-                  "start": 7215520, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000245569", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 7213951, 
-                  "start": 7213701, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000245570", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 7210765, 
-                  "start": 7210599, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000245571", 
-                  "seq_region_name": "19", 
-                  "version": 2, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 7198114, 
-                  "start": 7197936, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000324206", 
-                  "seq_region_name": "19", 
-                  "version": 2, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 7195769, 
-                  "start": 7195734, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000103321", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 7188330, 
-                  "start": 7188056, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000245572", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 7186735, 
-                  "start": 7186596, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000245573", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 7176870, 
-                  "start": 7176711, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000245574", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 7171122, 
-                  "start": 7171020, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000245575", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 7168827, 
-                  "start": 7168760, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000245576", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 7167703, 
-                  "start": 7167459, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000245577", 
-                  "seq_region_name": "19", 
-                  "version": 2, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 7165211, 
-                  "start": 7165101, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000245578", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 7164995, 
-                  "start": 7164836, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000245579", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 7162908, 
-                  "start": 7162779, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000420985", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 7161716, 
-                  "start": 7161582, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000245581", 
-                  "seq_region_name": "19", 
-                  "version": 1, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CHIMP2.1.4", 
-                  "end": 7159078, 
-                  "start": 7158137, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSPTRE00000103329", 
-                  "seq_region_name": "19", 
-                  "version": 2, 
-                  "species": "pantroglodytes", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "pantroglodytes", 
-            "end": 7347282, 
-            "Translation": {
-               "end": 7347282, 
-               "Parent": "ENSPTRT00000019089", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSPTRP00000017670", 
-               "start": 7158724, 
-               "length": 1374, 
-               "species": "pantroglodytes"
-            }, 
-            "is_canonical": "1", 
-            "db_type": "core", 
-            "strand": -1
-         }
-      ], 
-      "species": "pantroglodytes", 
-      "strand": -1
-   }, 
-   "ENSMUSG00000025037": {
-      "assembly_name": "GRCm38", 
-      "display_name": "Maoa", 
-      "description": "monoamine oxidase A [Source:MGI Symbol;Acc:MGI:96915]", 
-      "seq_region_name": "X", 
-      "logic_name": "ensembl_havana_gene", 
-      "object_type": "Gene", 
-      "start": 16619698, 
-      "id": "ENSMUSG00000025037", 
-      "source": "ensembl_havana", 
-      "db_type": "core", 
-      "version": 6, 
-      "biotype": "protein_coding", 
-      "end": 16687818, 
-      "Transcript": [
-         {
-            "assembly_name": "GRCm38", 
-            "display_name": "Maoa-001", 
-            "Parent": "ENSMUSG00000025037", 
-            "seq_region_name": "X", 
-            "logic_name": "ensembl_havana_transcript", 
-            "object_type": "Transcript", 
-            "start": 16619698, 
-            "id": "ENSMUST00000026013", 
-            "source": "ensembl_havana", 
-            "version": 5, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16619913, 
-                  "start": 16619698, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000392186", 
-                  "seq_region_name": "X", 
-                  "version": 3, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16634276, 
-                  "start": 16634182, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000458779", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16639201, 
-                  "start": 16639064, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001022903", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16658672, 
-                  "start": 16658568, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001008827", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16659536, 
-                  "start": 16659445, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000147429", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16662458, 
-                  "start": 16662317, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000147425", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16664800, 
-                  "start": 16664651, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000254896", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16665811, 
-                  "start": 16665652, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000147422", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16672943, 
-                  "start": 16672847, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000147435", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16677608, 
-                  "start": 16677555, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000147433", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16680871, 
-                  "start": 16680814, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000147447", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16682298, 
-                  "start": 16682201, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001054929", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16684075, 
-                  "start": 16683964, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000988609", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16685044, 
-                  "start": 16684982, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000147431", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16687818, 
-                  "start": 16685232, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000147443", 
-                  "seq_region_name": "X", 
-                  "version": 6, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "musmusculus", 
-            "end": 16687818, 
-            "Translation": {
-               "end": 16685375, 
-               "Parent": "ENSMUST00000026013", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSMUSP00000026013", 
-               "start": 16619841, 
-               "length": 526, 
-               "species": "musmusculus"
-            }, 
-            "is_canonical": "1", 
-            "db_type": "core", 
-            "strand": 1
-         }
-      ], 
-      "species": "musmusculus", 
-      "strand": 1
-   }, 
-   "ENSSSCG00000012257": {
-      "assembly_name": "Sscrofa10.2", 
-      "display_name": "MAOA", 
-      "description": "monoamine oxidase A [Source:HGNC Symbol;Acc:HGNC:6833]", 
-      "seq_region_name": "X", 
-      "logic_name": "ensembl_havana_gene", 
-      "object_type": "Gene", 
-      "start": 43132739, 
-      "id": "ENSSSCG00000012257", 
-      "source": "ensembl_havana", 
-      "db_type": "core", 
-      "version": 3, 
-      "biotype": "protein_coding", 
-      "end": 43209051, 
-      "Transcript": [
-         {
-            "assembly_name": "Sscrofa10.2", 
-            "display_name": "MAOA-001", 
-            "Parent": "ENSSSCG00000012257", 
-            "seq_region_name": "X", 
-            "logic_name": "ensembl_havana_transcript", 
-            "object_type": "Transcript", 
-            "start": 43132739, 
-            "id": "ENSSSCT00000013404", 
-            "source": "ensembl_havana", 
-            "version": 3, 
-            "Exon": [
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43209051, 
-                  "start": 43208580, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000253366", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43189968, 
-                  "start": 43189874, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000256152", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43179405, 
-                  "start": 43179268, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000251395", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43161209, 
-                  "start": 43161105, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000255769", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43160068, 
-                  "start": 43159977, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000108039", 
-                  "seq_region_name": "X", 
-                  "version": 2, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43155057, 
-                  "start": 43154916, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000108051", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43151715, 
-                  "start": 43151566, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000198047", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43151271, 
-                  "start": 43151112, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000108042", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43149487, 
-                  "start": 43149391, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000108043", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43144966, 
-                  "start": 43144913, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000108044", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43139851, 
-                  "start": 43139794, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000108045", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43138092, 
-                  "start": 43137995, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000185275", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43134262, 
-                  "start": 43134151, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000108052", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43133522, 
-                  "start": 43133460, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000108053", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43133148, 
-                  "start": 43132739, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000108054", 
-                  "seq_region_name": "X", 
-                  "version": 3, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "susscrofa", 
-            "end": 43209051, 
-            "Translation": {
-               "end": 43208652, 
-               "Parent": "ENSSSCT00000013404", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSSSCP00000013044", 
-               "start": 43133002, 
-               "length": 527, 
-               "species": "susscrofa"
-            }, 
-            "is_canonical": "1", 
-            "db_type": "core", 
-            "strand": -1
-         }, 
-         {
-            "assembly_name": "Sscrofa10.2", 
-            "display_name": "MAOA-002", 
-            "Parent": "ENSSSCG00000012257", 
-            "seq_region_name": "X", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 43133061, 
-            "id": "ENSSSCT00000035258", 
-            "source": "havana", 
-            "version": 1, 
-            "Exon": [
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43149410, 
-                  "start": 43149391, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000255786", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43144966, 
-                  "start": 43144913, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000108044", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43139851, 
-                  "start": 43139794, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000108045", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43138092, 
-                  "start": 43137995, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000185275", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43134262, 
-                  "start": 43134151, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000108052", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43133148, 
-                  "start": 43133061, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000249137", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "susscrofa", 
-            "end": 43149410, 
-            "Translation": {
-               "end": 43149410, 
-               "Parent": "ENSSSCT00000035258", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSSSCP00000029326", 
-               "start": 43133061, 
-               "length": 143, 
-               "species": "susscrofa"
-            }, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": -1
-         }, 
-         {
-            "assembly_name": "Sscrofa10.2", 
-            "display_name": "MAOA-003", 
-            "Parent": "ENSSSCG00000012257", 
-            "seq_region_name": "X", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 43151237, 
-            "id": "ENSSSCT00000032764", 
-            "source": "havana", 
-            "version": 1, 
-            "Exon": [
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43208694, 
-                  "start": 43208580, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000108049", 
-                  "seq_region_name": "X", 
-                  "version": 3, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43179405, 
-                  "start": 43179268, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000256684", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43161209, 
-                  "start": 43161105, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000259261", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43160068, 
-                  "start": 43159977, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000108039", 
-                  "seq_region_name": "X", 
-                  "version": 2, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43155057, 
-                  "start": 43154916, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000108051", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43151715, 
-                  "start": 43151566, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000198047", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43151271, 
-                  "start": 43151237, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000254629", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "susscrofa", 
-            "end": 43208694, 
-            "Translation": {
-               "end": 43161125, 
-               "Parent": "ENSSSCT00000032764", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSSSCP00000029700", 
-               "start": 43151237, 
-               "length": 146, 
-               "species": "susscrofa"
-            }, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": -1
-         }, 
-         {
-            "assembly_name": "Sscrofa10.2", 
-            "display_name": "MAOA-004", 
-            "Parent": "ENSSSCG00000012257", 
-            "seq_region_name": "X", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 43178683, 
-            "id": "ENSSSCT00000033354", 
-            "source": "havana", 
-            "version": 1, 
-            "Exon": [
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43208677, 
-                  "start": 43208580, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000252950", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43189968, 
-                  "start": 43189874, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000260080", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43179405, 
-                  "start": 43178683, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000262164", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "retained_intron", 
-            "species": "susscrofa", 
-            "end": 43208677, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": -1
-         }
-      ], 
-      "species": "susscrofa", 
-      "strand": -1
-   }, 
-   "ENSMUSG00000005534": {
-      "assembly_name": "GRCm38", 
-      "display_name": "Insr", 
-      "description": "insulin receptor [Source:MGI Symbol;Acc:MGI:96575]", 
-      "seq_region_name": "8", 
-      "logic_name": "ensembl_havana_gene", 
-      "object_type": "Gene", 
-      "start": 3122061, 
-      "id": "ENSMUSG00000005534", 
-      "source": "ensembl_havana", 
-      "db_type": "core", 
-      "version": 10, 
-      "biotype": "protein_coding", 
-      "end": 3279617, 
-      "Transcript": [
-         {
-            "assembly_name": "GRCm38", 
-            "display_name": "Insr-004", 
-            "Parent": "ENSMUSG00000005534", 
-            "seq_region_name": "8", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 3122061, 
-            "id": "ENSMUST00000208839", 
-            "source": "havana", 
-            "version": 1, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3159555, 
-                  "start": 3159453, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001378253", 
-                  "seq_region_name": "8", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3158830, 
-                  "start": 3158696, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000611272", 
-                  "seq_region_name": "8", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3153679, 
-                  "start": 3153461, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001381754", 
-                  "seq_region_name": "8", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3122154, 
-                  "start": 3122061, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001381517", 
-                  "seq_region_name": "8", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "nonsense_mediated_decay", 
-            "species": "musmusculus", 
-            "end": 3159555, 
-            "Translation": {
-               "end": 3159555, 
-               "Parent": "ENSMUST00000208839", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSMUSP00000146651", 
-               "start": 3153646, 
-               "length": 90, 
-               "species": "musmusculus"
-            }, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": -1
-         }, 
-         {
-            "assembly_name": "GRCm38", 
-            "display_name": "Insr-001", 
-            "Parent": "ENSMUSG00000005534", 
-            "seq_region_name": "8", 
-            "logic_name": "ensembl_havana_transcript", 
-            "object_type": "Transcript", 
-            "start": 3150922, 
-            "id": "ENSMUST00000091291", 
-            "source": "ensembl_havana", 
-            "version": 4, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3279617, 
-                  "start": 3279029, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000771349", 
-                  "seq_region_name": "8", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3258934, 
-                  "start": 3258383, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001230539", 
-                  "seq_region_name": "8", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3211700, 
-                  "start": 3211379, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000611294", 
-                  "seq_region_name": "8", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3204778, 
-                  "start": 3204630, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000611293", 
-                  "seq_region_name": "8", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3203034, 
-                  "start": 3202890, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000611267", 
-                  "seq_region_name": "8", 
-                  "version": 2, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3198275, 
-                  "start": 3198061, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000638453", 
-                  "seq_region_name": "8", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3194921, 
-                  "start": 3194795, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000611287", 
-                  "seq_region_name": "8", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3192802, 
-                  "start": 3192546, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000611286", 
-                  "seq_region_name": "8", 
-                  "version": 2, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3189292, 
-                  "start": 3189125, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000611285", 
-                  "seq_region_name": "8", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3185152, 
-                  "start": 3184951, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000611282", 
-                  "seq_region_name": "8", 
-                  "version": 2, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3174888, 
-                  "start": 3174614, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000233977", 
-                  "seq_region_name": "8", 
-                  "version": 3, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3173619, 
-                  "start": 3173480, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000233970", 
-                  "seq_region_name": "8", 
-                  "version": 3, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3169868, 
-                  "start": 3169709, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000611280", 
-                  "seq_region_name": "8", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3167604, 
-                  "start": 3167502, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000611279", 
-                  "seq_region_name": "8", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3165585, 
-                  "start": 3165518, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000611278", 
-                  "seq_region_name": "8", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3163481, 
-                  "start": 3163237, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000611277", 
-                  "seq_region_name": "8", 
-                  "version": 2, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3161791, 
-                  "start": 3161681, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000611276", 
-                  "seq_region_name": "8", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3161498, 
-                  "start": 3161339, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000611274", 
-                  "seq_region_name": "8", 
-                  "version": 2, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3159582, 
-                  "start": 3159453, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000611273", 
-                  "seq_region_name": "8", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3158830, 
-                  "start": 3158696, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000611272", 
-                  "seq_region_name": "8", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3156023, 
-                  "start": 3150922, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000569243", 
-                  "seq_region_name": "8", 
-                  "version": 4, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "musmusculus", 
-            "end": 3279617, 
-            "Translation": {
-               "end": 3279128, 
-               "Parent": "ENSMUST00000091291", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSMUSP00000088837", 
-               "start": 3155669, 
-               "length": 1372, 
-               "species": "musmusculus"
-            }, 
-            "is_canonical": "1", 
-            "db_type": "core", 
-            "strand": -1
-         }, 
-         {
-            "assembly_name": "GRCm38", 
-            "display_name": "Insr-003", 
-            "Parent": "ENSMUSG00000005534", 
-            "seq_region_name": "8", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 3174795, 
-            "id": "ENSMUST00000207100", 
-            "source": "havana", 
-            "version": 1, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3192717, 
-                  "start": 3192546, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001377863", 
-                  "seq_region_name": "8", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3189292, 
-                  "start": 3189125, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000611285", 
-                  "seq_region_name": "8", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3185152, 
-                  "start": 3184951, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000611282", 
-                  "seq_region_name": "8", 
-                  "version": 2, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3181737, 
-                  "start": 3181702, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001381444", 
-                  "seq_region_name": "8", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3174888, 
-                  "start": 3174795, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001376696", 
-                  "seq_region_name": "8", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "musmusculus", 
-            "end": 3192717, 
-            "Translation": {
-               "end": 3192717, 
-               "Parent": "ENSMUST00000207100", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSMUSP00000146818", 
-               "start": 3174795, 
-               "length": 224, 
-               "species": "musmusculus"
-            }, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": -1
-         }, 
-         {
-            "assembly_name": "GRCm38", 
-            "display_name": "Insr-005", 
-            "Parent": "ENSMUSG00000005534", 
-            "seq_region_name": "8", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 3177833, 
-            "id": "ENSMUST00000207295", 
-            "source": "havana", 
-            "version": 1, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3181851, 
-                  "start": 3177833, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001377977", 
-                  "seq_region_name": "8", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "retained_intron", 
-            "species": "musmusculus", 
-            "end": 3181851, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": -1
-         }, 
-         {
-            "assembly_name": "GRCm38", 
-            "display_name": "Insr-002", 
-            "Parent": "ENSMUSG00000005534", 
-            "seq_region_name": "8", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 3211101, 
-            "id": "ENSMUST00000139504", 
-            "source": "havana", 
-            "version": 1, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3279551, 
-                  "start": 3279029, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000638456", 
-                  "seq_region_name": "8", 
-                  "version": 2, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3258934, 
-                  "start": 3258383, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001309988", 
-                  "seq_region_name": "8", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 3211700, 
-                  "start": 3211101, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000773972", 
-                  "seq_region_name": "8", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "retained_intron", 
-            "species": "musmusculus", 
-            "end": 3279551, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": -1
-         }
-      ], 
-      "species": "musmusculus", 
-      "strand": -1
-   }, 
-   "ENSCAFG00000014435": {
-      "assembly_name": "CanFam3.1", 
-      "display_name": "MAOA", 
-      "description": "Amine oxidase [flavin-containing] A  [Source:UniProtKB/Swiss-Prot;Acc:P58027]", 
-      "seq_region_name": "X", 
-      "logic_name": "ensembl", 
-      "object_type": "Gene", 
-      "start": 37677493, 
-      "id": "ENSCAFG00000014435", 
-      "source": "ensembl", 
-      "db_type": "core", 
-      "version": 3, 
-      "biotype": "protein_coding", 
-      "end": 37747466, 
-      "Transcript": [
-         {
-            "assembly_name": "CanFam3.1", 
-            "display_name": "MAOA-201", 
-            "Parent": "ENSCAFG00000014435", 
-            "seq_region_name": "X", 
-            "logic_name": "ensembl", 
-            "object_type": "Transcript", 
-            "start": 37677493, 
-            "id": "ENSCAFT00000022939", 
-            "source": "ensembl", 
-            "version": 3, 
-            "Exon": [
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37679005, 
-                  "start": 37677493, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000312243", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37698198, 
-                  "start": 37698104, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000157754", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37710159, 
-                  "start": 37710022, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000157761", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37725823, 
-                  "start": 37725719, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000157767", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37726673, 
-                  "start": 37726582, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000288971", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37731557, 
-                  "start": 37731416, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000157776", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37732363, 
-                  "start": 37732214, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000330596", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37732809, 
-                  "start": 37732650, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000157785", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37733823, 
-                  "start": 37733727, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000157787", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37736930, 
-                  "start": 37736877, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000157792", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37741046, 
-                  "start": 37740989, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000157794", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37742242, 
-                  "start": 37742145, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000296284", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37744020, 
-                  "start": 37743909, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000157802", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37744288, 
-                  "start": 37744226, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000157806", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37747466, 
-                  "start": 37744482, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000282043", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": 1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "canisfamiliaris", 
-            "end": 37747466, 
-            "Translation": {
-               "end": 37744628, 
-               "Parent": "ENSCAFT00000022939", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSCAFP00000021307", 
-               "start": 37678933, 
-               "length": 527, 
-               "species": "canisfamiliaris"
-            }, 
-            "is_canonical": "1", 
-            "db_type": "core", 
-            "strand": 1
-         }
-      ], 
-      "species": "canisfamiliaris", 
-      "strand": 1
-   }, 
-   "ENSRNOG00000029986": {
-      "assembly_name": "Rnor_6.0", 
-      "display_name": "Insr", 
-      "description": "insulin receptor [Source:RGD Symbol;Acc:2917]", 
-      "seq_region_name": "12", 
-      "logic_name": "ensembl_havana_gene", 
-      "object_type": "Gene", 
-      "start": 1680957, 
-      "id": "ENSRNOG00000029986", 
-      "source": "ensembl_havana", 
-      "db_type": "core", 
-      "version": 6, 
-      "biotype": "protein_coding", 
-      "end": 1816414, 
-      "Transcript": [
-         {
-            "assembly_name": "Rnor_6.0", 
-            "display_name": "Insr-001", 
-            "Parent": "ENSRNOG00000029986", 
-            "seq_region_name": "12", 
-            "logic_name": "ensembl_havana_transcript", 
-            "object_type": "Transcript", 
-            "start": 1680957, 
-            "id": "ENSRNOT00000041155", 
-            "source": "ensembl_havana", 
-            "version": 3, 
-            "Exon": [
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1816414, 
-                  "start": 1815967, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000447224", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1793869, 
-                  "start": 1793318, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009270", 
-                  "seq_region_name": "12", 
-                  "version": 3, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1743734, 
-                  "start": 1743413, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009284", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1731115, 
-                  "start": 1730967, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009287", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1729656, 
-                  "start": 1729512, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009288", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1725246, 
-                  "start": 1725032, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009331", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1722353, 
-                  "start": 1722227, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009332", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1720545, 
-                  "start": 1720289, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009335", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1717045, 
-                  "start": 1716878, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009336", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1711789, 
-                  "start": 1711588, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009293", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1708235, 
-                  "start": 1708200, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009353", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1703259, 
-                  "start": 1702985, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009294", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1701973, 
-                  "start": 1701834, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009295", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1697515, 
-                  "start": 1697356, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009296", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1695633, 
-                  "start": 1695531, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009339", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1693581, 
-                  "start": 1693514, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009340", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1691556, 
-                  "start": 1691312, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009343", 
-                  "seq_region_name": "12", 
-                  "version": 2, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1689842, 
-                  "start": 1689732, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000327869", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1689557, 
-                  "start": 1689398, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000336674", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1687460, 
-                  "start": 1687331, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000361221", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1686678, 
-                  "start": 1686544, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000285850", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1683777, 
-                  "start": 1680957, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000517094", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "rattusnorvegicus", 
-            "end": 1816414, 
-            "Translation": {
-               "end": 1816066, 
-               "Parent": "ENSRNOT00000041155", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSRNOP00000049655", 
-               "start": 1683423, 
-               "length": 1384, 
-               "species": "rattusnorvegicus"
-            }, 
-            "is_canonical": "1", 
-            "db_type": "core", 
-            "strand": -1
-         }, 
-         {
-            "assembly_name": "Rnor_6.0", 
-            "display_name": "Insr-201", 
-            "Parent": "ENSRNOG00000029986", 
-            "seq_region_name": "12", 
-            "logic_name": "ensembl", 
-            "object_type": "Transcript", 
-            "start": 1682527, 
-            "id": "ENSRNOT00000067448", 
-            "source": "ensembl", 
-            "version": 3, 
-            "Exon": [
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1816414, 
-                  "start": 1816010, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000524443", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1816007, 
-                  "start": 1815999, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000563207", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1815997, 
-                  "start": 1815967, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000543309", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1793869, 
-                  "start": 1793318, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009270", 
-                  "seq_region_name": "12", 
-                  "version": 3, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1743734, 
-                  "start": 1743413, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009284", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1731115, 
-                  "start": 1730967, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009287", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1729656, 
-                  "start": 1729512, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009288", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1725246, 
-                  "start": 1725032, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009331", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1722353, 
-                  "start": 1722227, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009332", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1720545, 
-                  "start": 1720289, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009335", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1717045, 
-                  "start": 1716878, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009336", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1711789, 
-                  "start": 1711588, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009293", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1708235, 
-                  "start": 1708200, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009353", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1703259, 
-                  "start": 1702985, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009294", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1701973, 
-                  "start": 1701834, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009295", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1697515, 
-                  "start": 1697356, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009296", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1695633, 
-                  "start": 1695531, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009339", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1693581, 
-                  "start": 1693514, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009340", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1691556, 
-                  "start": 1691312, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000009343", 
-                  "seq_region_name": "12", 
-                  "version": 2, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1689842, 
-                  "start": 1689732, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000327869", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1689557, 
-                  "start": 1689398, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000336674", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1687460, 
-                  "start": 1687331, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000361221", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1686678, 
-                  "start": 1686544, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000285850", 
-                  "seq_region_name": "12", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 1683777, 
-                  "start": 1682527, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000320164", 
-                  "seq_region_name": "12", 
-                  "version": 2, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "rattusnorvegicus", 
-            "end": 1816414, 
-            "Translation": {
-               "end": 1816066, 
-               "Parent": "ENSRNOT00000067448", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSRNOP00000060141", 
-               "start": 1683423, 
-               "length": 1383, 
-               "species": "rattusnorvegicus"
-            }, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": -1
-         }
-      ], 
-      "species": "rattusnorvegicus", 
-      "strand": -1
-   }, 
-   "ENSRNOG00000002848": {
-      "assembly_name": "Rnor_6.0", 
-      "display_name": "Maoa", 
-      "description": "monoamine oxidase A [Source:RGD Symbol;Acc:61898]", 
-      "seq_region_name": "X", 
-      "logic_name": "ensembl", 
-      "object_type": "Gene", 
-      "start": 6554698, 
-      "id": "ENSRNOG00000002848", 
-      "source": "ensembl", 
-      "db_type": "core", 
-      "version": 7, 
-      "biotype": "protein_coding", 
-      "end": 6620722, 
-      "Transcript": [
-         {
-            "assembly_name": "Rnor_6.0", 
-            "display_name": "Maoa-201", 
-            "Parent": "ENSRNOG00000002848", 
-            "seq_region_name": "X", 
-            "logic_name": "ensembl", 
-            "object_type": "Transcript", 
-            "start": 6554698, 
-            "id": "ENSRNOT00000066674", 
-            "source": "ensembl", 
-            "version": 2, 
-            "Exon": [
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6620722, 
-                  "start": 6620650, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000430606", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6606723, 
-                  "start": 6606629, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000026930", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6601525, 
-                  "start": 6601388, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000500308", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6576133, 
-                  "start": 6576029, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000503934", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6575332, 
-                  "start": 6575241, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000026960", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6571341, 
-                  "start": 6571200, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000026967", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6569033, 
-                  "start": 6568884, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000026978", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6568124, 
-                  "start": 6567965, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000027334", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6567175, 
-                  "start": 6567079, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000027356", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6562712, 
-                  "start": 6562659, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000027380", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6559427, 
-                  "start": 6559370, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000027408", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6558090, 
-                  "start": 6557993, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000467155", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6556542, 
-                  "start": 6556431, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000473471", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6555576, 
-                  "start": 6555514, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000027492", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Rnor_6.0", 
-                  "end": 6555343, 
-                  "start": 6554698, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSRNOE00000326230", 
-                  "seq_region_name": "X", 
-                  "version": 4, 
-                  "species": "rattusnorvegicus", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "rattusnorvegicus", 
-            "end": 6620722, 
-            "Translation": {
-               "end": 6620722, 
-               "Parent": "ENSRNOT00000066674", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSRNOP00000063784", 
-               "start": 6555200, 
-               "length": 526, 
-               "species": "rattusnorvegicus"
-            }, 
-            "is_canonical": "1", 
-            "db_type": "core", 
-            "strand": -1
-         }
-      ], 
-      "species": "rattusnorvegicus", 
-      "strand": -1
-   }, 
-   "ENSSSCG00000013566": {
-      "assembly_name": "Sscrofa10.2", 
-      "end": 72357630, 
-      "db_type": "core", 
-      "seq_region_name": "2", 
-      "logic_name": "ensembl", 
-      "object_type": "Gene", 
-      "start": 72275693, 
-      "id": "ENSSSCG00000013566", 
-      "source": "ensembl", 
-      "version": 2, 
-      "biotype": "protein_coding", 
-      "Transcript": [
-         {
-            "assembly_name": "Sscrofa10.2", 
-            "end": 72357630, 
-            "Parent": "ENSSSCG00000013566", 
-            "seq_region_name": "2", 
-            "logic_name": "ensembl", 
-            "object_type": "Transcript", 
-            "start": 72275693, 
-            "id": "ENSSSCT00000014817", 
-            "source": "ensembl", 
-            "version": 2, 
-            "Exon": [
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 72357630, 
-                  "start": 72357058, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000118823", 
-                  "seq_region_name": "2", 
-                  "version": 2, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 72290109, 
-                  "start": 72289788, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000118824", 
-                  "seq_region_name": "2", 
-                  "version": 2, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 72281790, 
-                  "start": 72281642, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000118825", 
-                  "seq_region_name": "2", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 72280766, 
-                  "start": 72280622, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000118826", 
-                  "seq_region_name": "2", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 72279196, 
-                  "start": 72278982, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000118827", 
-                  "seq_region_name": "2", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 72277547, 
-                  "start": 72277421, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000118828", 
-                  "seq_region_name": "2", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 72275954, 
-                  "start": 72275693, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000118829", 
-                  "seq_region_name": "2", 
-                  "version": 2, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "susscrofa", 
-            "Translation": {
-               "end": 72357610, 
-               "Parent": "ENSSSCT00000014817", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSSSCP00000014416", 
-               "start": 72275693, 
-               "length": 591, 
-               "species": "susscrofa"
-            }, 
-            "is_canonical": "1", 
-            "db_type": "core", 
-            "strand": -1
-         }
-      ], 
-      "species": "susscrofa", 
-      "strand": -1
-   }, 
-   "ENSSSCG00000007563": {
-      "assembly_name": "Sscrofa10.2", 
-      "display_name": "BRAT1", 
-      "description": "BRCA1 associated ATM activator 1 [Source:HGNC Symbol;Acc:HGNC:21701]", 
-      "seq_region_name": "3", 
-      "logic_name": "ensembl", 
-      "object_type": "Gene", 
-      "start": 2109137, 
-      "id": "ENSSSCG00000007563", 
-      "source": "ensembl", 
-      "db_type": "core", 
-      "version": 2, 
-      "biotype": "protein_coding", 
-      "end": 2121143, 
-      "Transcript": [
-         {
-            "assembly_name": "Sscrofa10.2", 
-            "display_name": "BRAT1-201", 
-            "Parent": "ENSSSCG00000007563", 
-            "seq_region_name": "3", 
-            "logic_name": "ensembl", 
-            "object_type": "Transcript", 
-            "start": 2109137, 
-            "id": "ENSSSCT00000008295", 
-            "source": "ensembl", 
-            "version": 2, 
-            "Exon": [
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 2121143, 
-                  "start": 2121017, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000175882", 
-                  "seq_region_name": "3", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 2117944, 
-                  "start": 2117790, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000244655", 
-                  "seq_region_name": "3", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 2115860, 
-                  "start": 2115713, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000064688", 
-                  "seq_region_name": "3", 
-                  "version": 2, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 2115267, 
-                  "start": 2114895, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000064689", 
-                  "seq_region_name": "3", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 2114646, 
-                  "start": 2114530, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000064690", 
-                  "seq_region_name": "3", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 2113541, 
-                  "start": 2113372, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000064691", 
-                  "seq_region_name": "3", 
-                  "version": 2, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 2113310, 
-                  "start": 2113266, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000238316", 
-                  "seq_region_name": "3", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 2113163, 
-                  "start": 2113108, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000201914", 
-                  "seq_region_name": "3", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 2113090, 
-                  "start": 2112985, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000233250", 
-                  "seq_region_name": "3", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 2112773, 
-                  "start": 2112700, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000208084", 
-                  "seq_region_name": "3", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 2112009, 
-                  "start": 2111907, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000224350", 
-                  "seq_region_name": "3", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 2111805, 
-                  "start": 2111707, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000173794", 
-                  "seq_region_name": "3", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 2111547, 
-                  "start": 2111372, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000173250", 
-                  "seq_region_name": "3", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 2111015, 
-                  "start": 2109137, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000064713", 
-                  "seq_region_name": "3", 
-                  "version": 2, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "susscrofa", 
-            "end": 2121143, 
-            "Translation": {
-               "end": 2121143, 
-               "Parent": "ENSSSCT00000008295", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSSSCP00000008076", 
-               "start": 2110317, 
-               "length": 815, 
-               "species": "susscrofa"
-            }, 
-            "is_canonical": "1", 
-            "db_type": "core", 
-            "strand": -1
-         }
-      ], 
-      "species": "susscrofa", 
-      "strand": -1
-   }, 
-   "ENSMUSG00000040147": {
-      "assembly_name": "GRCm38", 
-      "display_name": "Maob", 
-      "description": "monoamine oxidase B [Source:MGI Symbol;Acc:MGI:96916]", 
-      "seq_region_name": "X", 
-      "logic_name": "ensembl_havana_gene", 
-      "object_type": "Gene", 
-      "start": 16709282, 
-      "id": "ENSMUSG00000040147", 
-      "source": "ensembl_havana", 
-      "db_type": "core", 
-      "version": 14, 
-      "biotype": "protein_coding", 
-      "end": 16817366, 
-      "Transcript": [
-         {
-            "assembly_name": "GRCm38", 
-            "display_name": "Maob-001", 
-            "Parent": "ENSMUSG00000040147", 
-            "seq_region_name": "X", 
-            "logic_name": "ensembl_havana_transcript", 
-            "object_type": "Transcript", 
-            "start": 16709282, 
-            "id": "ENSMUST00000040820", 
-            "source": "ensembl_havana", 
-            "version": 12, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16817366, 
-                  "start": 16817230, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000702796", 
-                  "seq_region_name": "X", 
-                  "version": 2, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16771019, 
-                  "start": 16770925, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001227308", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16768515, 
-                  "start": 16768378, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001260701", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16740175, 
-                  "start": 16740071, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001011042", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16739185, 
-                  "start": 16739094, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000254690", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16736113, 
-                  "start": 16735972, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001249809", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16734223, 
-                  "start": 16734074, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001294876", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16732178, 
-                  "start": 16732019, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001229951", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16724756, 
-                  "start": 16724660, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001295743", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16722989, 
-                  "start": 16722936, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001232912", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16718313, 
-                  "start": 16718256, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001216125", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16716483, 
-                  "start": 16716386, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001232129", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16712677, 
-                  "start": 16712566, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001301395", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16711310, 
-                  "start": 16711248, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001207887", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16710191, 
-                  "start": 16709282, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000656623", 
-                  "seq_region_name": "X", 
-                  "version": 2, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "musmusculus", 
-            "end": 16817366, 
-            "Translation": {
-               "end": 16817275, 
-               "Parent": "ENSMUST00000040820", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSMUSP00000040550", 
-               "start": 16710039, 
-               "length": 520, 
-               "species": "musmusculus"
-            }, 
-            "is_canonical": "1", 
-            "db_type": "core", 
-            "strand": -1
-         }, 
-         {
-            "assembly_name": "GRCm38", 
-            "display_name": "Maob-003", 
-            "Parent": "ENSMUSG00000040147", 
-            "seq_region_name": "X", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 16710039, 
-            "id": "ENSMUST00000168613", 
-            "source": "havana", 
-            "version": 7, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16817275, 
-                  "start": 16817230, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000881199", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16771019, 
-                  "start": 16770925, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001227308", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16768515, 
-                  "start": 16768378, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001260701", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16740175, 
-                  "start": 16740071, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001011042", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16739185, 
-                  "start": 16739094, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000254690", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16736113, 
-                  "start": 16735972, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001249809", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16734117, 
-                  "start": 16734074, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000896189", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16732178, 
-                  "start": 16732019, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001289392", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16724756, 
-                  "start": 16724660, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001301494", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16722989, 
-                  "start": 16722936, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001213639", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16718313, 
-                  "start": 16718256, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001247524", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16716483, 
-                  "start": 16716386, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001214982", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16712677, 
-                  "start": 16712566, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001228667", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16711310, 
-                  "start": 16711248, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001219816", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16710191, 
-                  "start": 16710039, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000872312", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "nonsense_mediated_decay", 
-            "species": "musmusculus", 
-            "end": 16817275, 
-            "Translation": {
-               "end": 16817275, 
-               "Parent": "ENSMUST00000168613", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSMUSP00000127235", 
-               "start": 16734100, 
-               "length": 211, 
-               "species": "musmusculus"
-            }, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": -1
-         }, 
-         {
-            "assembly_name": "GRCm38", 
-            "display_name": "Maob-002", 
-            "Parent": "ENSMUSG00000040147", 
-            "seq_region_name": "X", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 16718256, 
-            "id": "ENSMUST00000163344", 
-            "source": "havana", 
-            "version": 1, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16817275, 
-                  "start": 16817230, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000881199", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16771019, 
-                  "start": 16770925, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001227308", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16768515, 
-                  "start": 16768378, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001260701", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16736113, 
-                  "start": 16735972, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001283944", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16734223, 
-                  "start": 16734074, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001205943", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16732178, 
-                  "start": 16732019, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001289392", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16724756, 
-                  "start": 16724660, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001301494", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16722989, 
-                  "start": 16722936, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001213639", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16718313, 
-                  "start": 16718256, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001247524", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "nonsense_mediated_decay", 
-            "species": "musmusculus", 
-            "end": 16817275, 
-            "Translation": {
-               "end": 16817275, 
-               "Parent": "ENSMUST00000163344", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSMUSP00000131743", 
-               "start": 16736054, 
-               "length": 112, 
-               "species": "musmusculus"
-            }, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": -1
-         }, 
-         {
-            "assembly_name": "GRCm38", 
-            "display_name": "Maob-004", 
-            "Parent": "ENSMUSG00000040147", 
-            "seq_region_name": "X", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 16740130, 
-            "id": "ENSMUST00000173143", 
-            "source": "havana", 
-            "version": 1, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16817320, 
-                  "start": 16817230, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000927233", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16815446, 
-                  "start": 16815251, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000933543", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16807716, 
-                  "start": 16807535, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000944226", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16771019, 
-                  "start": 16770925, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001247507", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16768515, 
-                  "start": 16768378, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001269518", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 16740175, 
-                  "start": 16740130, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000934731", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "nonsense_mediated_decay", 
-            "species": "musmusculus", 
-            "end": 16817320, 
-            "Translation": {
-               "end": 16817275, 
-               "Parent": "ENSMUST00000173143", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSMUSP00000134555", 
-               "start": 16815385, 
-               "length": 35, 
-               "species": "musmusculus"
-            }, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": -1
-         }
-      ], 
-      "species": "musmusculus", 
-      "strand": -1
-   }, 
-   "ENSCAFG00000014451": {
-      "assembly_name": "CanFam3.1", 
-      "display_name": "MAOB", 
-      "description": "monoamine oxidase B [Source:HGNC Symbol;Acc:HGNC:6834]", 
-      "seq_region_name": "X", 
-      "logic_name": "ensembl", 
-      "object_type": "Gene", 
-      "start": 37765761, 
-      "id": "ENSCAFG00000014451", 
-      "source": "ensembl", 
-      "db_type": "core", 
-      "version": 3, 
-      "biotype": "protein_coding", 
-      "end": 37884192, 
-      "Transcript": [
-         {
-            "assembly_name": "CanFam3.1", 
-            "display_name": "MAOB-201", 
-            "Parent": "ENSCAFG00000014451", 
-            "seq_region_name": "X", 
-            "logic_name": "ensembl", 
-            "object_type": "Transcript", 
-            "start": 37765761, 
-            "id": "ENSCAFT00000022963", 
-            "source": "ensembl", 
-            "version": 3, 
-            "Exon": [
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37884192, 
-                  "start": 37883861, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000322174", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37842862, 
-                  "start": 37842768, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000157874", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37841407, 
-                  "start": 37841270, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000157880", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37801754, 
-                  "start": 37801650, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000157881", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37800921, 
-                  "start": 37800830, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000293118", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37794714, 
-                  "start": 37794573, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000157889", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37788799, 
-                  "start": 37788650, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000302702", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37787554, 
-                  "start": 37787395, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000157896", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37781095, 
-                  "start": 37780999, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000157897", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37780062, 
-                  "start": 37780009, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000157902", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37778677, 
-                  "start": 37778620, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000157907", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37775538, 
-                  "start": 37775441, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000307306", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37769035, 
-                  "start": 37768924, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000157913", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37768358, 
-                  "start": 37768296, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000157917", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 37766801, 
-                  "start": 37765761, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000157921", 
-                  "seq_region_name": "X", 
-                  "version": 2, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "canisfamiliaris", 
-            "end": 37884192, 
-            "Translation": {
-               "end": 37883906, 
-               "Parent": "ENSCAFT00000022963", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSCAFP00000021330", 
-               "start": 37766649, 
-               "length": 520, 
-               "species": "canisfamiliaris"
-            }, 
-            "is_canonical": "1", 
-            "db_type": "core", 
-            "strand": -1
-         }
-      ], 
-      "species": "canisfamiliaris", 
-      "strand": -1
-   }, 
-   "ENSSSCG00000023215": {
-      "assembly_name": "Sscrofa10.2", 
-      "display_name": "MAOB", 
-      "description": "monoamine oxidase B [Source:HGNC Symbol;Acc:HGNC:6834]", 
-      "seq_region_name": "X", 
-      "logic_name": "ensembl_havana_gene", 
-      "object_type": "Gene", 
-      "start": 43355507, 
-      "id": "ENSSSCG00000023215", 
-      "source": "ensembl_havana", 
-      "db_type": "core", 
-      "version": 2, 
-      "biotype": "protein_coding", 
-      "end": 43474320, 
-      "Transcript": [
-         {
-            "assembly_name": "Sscrofa10.2", 
-            "display_name": "MAOB-001", 
-            "Parent": "ENSSSCG00000023215", 
-            "seq_region_name": "X", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 43355507, 
-            "id": "ENSSSCT00000033745", 
-            "source": "havana", 
-            "version": 1, 
-            "Exon": [
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43451676, 
-                  "start": 43451448, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000248075", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43425811, 
-                  "start": 43425717, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000248782", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43423778, 
-                  "start": 43423641, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000263124", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43386463, 
-                  "start": 43386359, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000237917", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43385299, 
-                  "start": 43385208, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000189645", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43379319, 
-                  "start": 43379178, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000263612", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43377117, 
-                  "start": 43376968, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000254189", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43374571, 
-                  "start": 43374412, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000258091", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43367932, 
-                  "start": 43367836, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000263693", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43366611, 
-                  "start": 43366558, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000261918", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43365591, 
-                  "start": 43365534, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000242630", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43362956, 
-                  "start": 43362859, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000176665", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43358792, 
-                  "start": 43358681, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000184189", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43358006, 
-                  "start": 43357944, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000212786", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43356515, 
-                  "start": 43355507, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000253924", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "susscrofa", 
-            "end": 43451676, 
-            "Translation": {
-               "end": 43425809, 
-               "Parent": "ENSSSCT00000033745", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSSSCP00000028353", 
-               "start": 43356363, 
-               "length": 504, 
-               "species": "susscrofa"
-            }, 
-            "is_canonical": "1", 
-            "db_type": "core", 
-            "strand": -1
-         }, 
-         {
-            "assembly_name": "Sscrofa10.2", 
-            "display_name": "MAOB-002", 
-            "Parent": "ENSSSCG00000023215", 
-            "seq_region_name": "X", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 43365057, 
-            "id": "ENSSSCT00000033416", 
-            "source": "havana", 
-            "version": 1, 
-            "Exon": [
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43425811, 
-                  "start": 43425717, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000249705", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43423778, 
-                  "start": 43423641, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000251881", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43379319, 
-                  "start": 43379178, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000251716", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43377117, 
-                  "start": 43376968, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000254970", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43374571, 
-                  "start": 43374412, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000253229", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43367932, 
-                  "start": 43367836, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000254111", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43366611, 
-                  "start": 43366558, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000262330", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43365591, 
-                  "start": 43365057, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000257553", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "retained_intron", 
-            "species": "susscrofa", 
-            "end": 43425811, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": -1
-         }, 
-         {
-            "assembly_name": "Sscrofa10.2", 
-            "display_name": "MAOB-201", 
-            "Parent": "ENSSSCG00000023215", 
-            "seq_region_name": "X", 
-            "logic_name": "ensembl", 
-            "object_type": "Transcript", 
-            "start": 43355512, 
-            "id": "ENSSSCT00000023183", 
-            "source": "ensembl", 
-            "version": 1, 
-            "Exon": [
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43474320, 
-                  "start": 43474147, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000234732", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43425811, 
-                  "start": 43425717, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000248782", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43423778, 
-                  "start": 43423647, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000235779", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43416964, 
-                  "start": 43416959, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000223463", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43386463, 
-                  "start": 43386359, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000237917", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43385299, 
-                  "start": 43385208, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000189645", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43379319, 
-                  "start": 43379178, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000263612", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43377117, 
-                  "start": 43376968, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000254189", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43374571, 
-                  "start": 43374412, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000258091", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43367932, 
-                  "start": 43367836, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000263693", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43366611, 
-                  "start": 43366558, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000261918", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43365591, 
-                  "start": 43365534, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000242630", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43362956, 
-                  "start": 43362859, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000176665", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43358792, 
-                  "start": 43358681, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000184189", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43358006, 
-                  "start": 43357944, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000212786", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "Sscrofa10.2", 
-                  "end": 43356515, 
-                  "start": 43355512, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSSSCE00000180179", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "susscrofa", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "susscrofa", 
-            "end": 43474320, 
-            "Translation": {
-               "end": 43425809, 
-               "Parent": "ENSSSCT00000023183", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSSSCP00000022462", 
-               "start": 43356363, 
-               "length": 504, 
-               "species": "susscrofa"
-            }, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": -1
-         }
-      ], 
-      "species": "susscrofa", 
-      "strand": -1
-   }, 
-   "ENSG00000069535": {
-      "assembly_name": "GRCh38", 
-      "display_name": "MAOB", 
-      "description": "monoamine oxidase B [Source:HGNC Symbol;Acc:HGNC:6834]", 
-      "seq_region_name": "X", 
-      "logic_name": "ensembl_havana_gene", 
-      "object_type": "Gene", 
-      "start": 43766611, 
-      "id": "ENSG00000069535", 
-      "source": "ensembl_havana", 
-      "db_type": "core", 
-      "version": 13, 
-      "biotype": "protein_coding", 
-      "end": 43882447, 
-      "Transcript": [
-         {
-            "assembly_name": "GRCh38", 
-            "display_name": "MAOB-001", 
-            "Parent": "ENSG00000069535", 
-            "seq_region_name": "X", 
-            "logic_name": "ensembl_havana_transcript", 
-            "object_type": "Transcript", 
-            "start": 43766611, 
-            "id": "ENST00000378069", 
-            "source": "ensembl_havana", 
-            "version": 4, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43882447, 
-                  "start": 43882254, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001476175", 
-                  "seq_region_name": "X", 
-                  "version": 4, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43843764, 
-                  "start": 43843670, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003472484", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43839005, 
-                  "start": 43838868, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003567619", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43803404, 
-                  "start": 43803300, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003685886", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43802263, 
-                  "start": 43802172, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003583665", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43797266, 
-                  "start": 43797125, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001035764", 
-                  "seq_region_name": "X", 
-                  "version": 2, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43795888, 
-                  "start": 43795739, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001035777", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43793578, 
-                  "start": 43793419, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001035772", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43781544, 
-                  "start": 43781448, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001035775", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43780395, 
-                  "start": 43780342, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001035768", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43778739, 
-                  "start": 43778682, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001035781", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43775272, 
-                  "start": 43775175, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001700569", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43769418, 
-                  "start": 43769307, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003470303", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43768716, 
-                  "start": 43768654, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003504290", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43767618, 
-                  "start": 43766611, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001332403", 
-                  "seq_region_name": "X", 
-                  "version": 5, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "homosapiens", 
-            "end": 43882447, 
-            "Translation": {
-               "end": 43882299, 
-               "Parent": "ENST00000378069", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSP00000367309", 
-               "start": 43767466, 
-               "length": 520, 
-               "species": "homosapiens"
-            }, 
-            "is_canonical": "1", 
-            "db_type": "core", 
-            "strand": -1
-         }, 
-         {
-            "assembly_name": "GRCh38", 
-            "display_name": "MAOB-002", 
-            "Parent": "ENSG00000069535", 
-            "seq_region_name": "X", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 43797212, 
-            "id": "ENST00000487544", 
-            "source": "havana", 
-            "version": 1, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43882435, 
-                  "start": 43882254, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001872093", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43844645, 
-                  "start": 43844456, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001817248", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43843764, 
-                  "start": 43843670, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003542477", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43839005, 
-                  "start": 43838868, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003474164", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43803404, 
-                  "start": 43803300, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003465179", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43802263, 
-                  "start": 43802172, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00003639598", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43797266, 
-                  "start": 43797212, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001835933", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "processed_transcript", 
-            "species": "homosapiens", 
-            "end": 43882435, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": -1
-         }, 
-         {
-            "assembly_name": "GRCh38", 
-            "display_name": "MAOB-004", 
-            "Parent": "ENSG00000069535", 
-            "seq_region_name": "X", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 43843800, 
-            "id": "ENST00000468431", 
-            "source": "havana", 
-            "version": 1, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43882303, 
-                  "start": 43882254, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001877220", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43844645, 
-                  "start": 43844506, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001958862", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "GRCh38", 
-                  "end": 43843934, 
-                  "start": 43843800, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSE00001868927", 
-                  "seq_region_name": "X", 
-                  "version": 1, 
-                  "species": "homosapiens", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "processed_transcript", 
-            "species": "homosapiens", 
-            "end": 43882303, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": -1
-         }
-      ], 
-      "species": "homosapiens", 
-      "strand": -1
-   }, 
-   "ENSMUSG00000000148": {
-      "assembly_name": "GRCm38", 
-      "display_name": "Brat1", 
-      "description": "BRCA1-associated ATM activator 1 [Source:MGI Symbol;Acc:MGI:1891679]", 
-      "seq_region_name": "5", 
-      "logic_name": "ensembl_havana_gene", 
-      "object_type": "Gene", 
-      "start": 140705011, 
-      "id": "ENSMUSG00000000148", 
-      "source": "ensembl_havana", 
-      "db_type": "core", 
-      "version": 17, 
-      "biotype": "protein_coding", 
-      "end": 140719379, 
-      "Transcript": [
-         {
-            "assembly_name": "GRCm38", 
-            "display_name": "Brat1-001", 
-            "Parent": "ENSMUSG00000000148", 
-            "seq_region_name": "5", 
-            "logic_name": "ensembl_havana_transcript", 
-            "object_type": "Transcript", 
-            "start": 140705011, 
-            "id": "ENSMUST00000041588", 
-            "source": "ensembl_havana", 
-            "version": 12, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140705075, 
-                  "start": 140705011, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000748497", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140706096, 
-                  "start": 140705953, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001297298", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140710292, 
-                  "start": 140710138, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001290673", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140711653, 
-                  "start": 140711506, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001292347", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140712877, 
-                  "start": 140712505, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000970545", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140713172, 
-                  "start": 140713053, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001224745", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140714384, 
-                  "start": 140714293, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001261412", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140714685, 
-                  "start": 140714567, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001303906", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140714946, 
-                  "start": 140714760, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001253128", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140715212, 
-                  "start": 140715139, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001253836", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140716794, 
-                  "start": 140716692, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001259851", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140717027, 
-                  "start": 140716929, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001241659", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140717319, 
-                  "start": 140717144, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001213291", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140719379, 
-                  "start": 140717902, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000648312", 
-                  "seq_region_name": "5", 
-                  "version": 2, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "musmusculus", 
-            "end": 140719379, 
-            "Translation": {
-               "end": 140718597, 
-               "Parent": "ENSMUST00000041588", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSMUSP00000036016", 
-               "start": 140705970, 
-               "length": 822, 
-               "species": "musmusculus"
-            }, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": 1
-         }, 
-         {
-            "assembly_name": "GRCm38", 
-            "display_name": "Brat1-003", 
-            "Parent": "ENSMUSG00000000148", 
-            "seq_region_name": "5", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 140705023, 
-            "id": "ENSMUST00000153440", 
-            "source": "havana", 
-            "version": 7, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140705075, 
-                  "start": 140705023, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000364841", 
-                  "seq_region_name": "5", 
-                  "version": 4, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140706096, 
-                  "start": 140705953, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001297298", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140710292, 
-                  "start": 140710138, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001290673", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140711653, 
-                  "start": 140711506, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001292347", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140712877, 
-                  "start": 140712505, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000970545", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140713172, 
-                  "start": 140713053, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001224745", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140714685, 
-                  "start": 140714567, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001272979", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140714946, 
-                  "start": 140714760, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001245614", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140715212, 
-                  "start": 140715139, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001230496", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140716794, 
-                  "start": 140716692, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001205573", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140717027, 
-                  "start": 140716929, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001270530", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140717319, 
-                  "start": 140717144, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001306270", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140719173, 
-                  "start": 140717902, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000758514", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }
-            ], 
-            "biotype": "nonsense_mediated_decay", 
-            "species": "musmusculus", 
-            "end": 140719173, 
-            "Translation": {
-               "end": 140714591, 
-               "Parent": "ENSMUST00000153440", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSMUSP00000114216", 
-               "start": 140705970, 
-               "length": 315, 
-               "species": "musmusculus"
-            }, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": 1
-         }, 
-         {
-            "assembly_name": "GRCm38", 
-            "display_name": "Brat1-002", 
-            "Parent": "ENSMUSG00000000148", 
-            "seq_region_name": "5", 
-            "logic_name": "ensembl_havana_transcript", 
-            "object_type": "Transcript", 
-            "start": 140705023, 
-            "id": "ENSMUST00000110806", 
-            "source": "ensembl_havana", 
-            "version": 7, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140705075, 
-                  "start": 140705023, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000364841", 
-                  "seq_region_name": "5", 
-                  "version": 4, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140706096, 
-                  "start": 140705953, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001297298", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140710292, 
-                  "start": 140710138, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001290673", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140711653, 
-                  "start": 140711506, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001292347", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140712877, 
-                  "start": 140712505, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000970545", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140713172, 
-                  "start": 140713053, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001224745", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140714384, 
-                  "start": 140714293, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001261412", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140714685, 
-                  "start": 140714567, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001303906", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140714946, 
-                  "start": 140714760, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001253128", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140715212, 
-                  "start": 140715139, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001253836", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140716794, 
-                  "start": 140716692, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001259851", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140717027, 
-                  "start": 140716929, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001241659", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140719330, 
-                  "start": 140717144, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000438979", 
-                  "seq_region_name": "5", 
-                  "version": 4, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "musmusculus", 
-            "end": 140719330, 
-            "Translation": {
-               "end": 140717340, 
-               "Parent": "ENSMUST00000110806", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSMUSP00000106429", 
-               "start": 140705970, 
-               "length": 597, 
-               "species": "musmusculus"
-            }, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": 1
-         }, 
-         {
-            "assembly_name": "GRCm38", 
-            "display_name": "Brat1-005", 
-            "Parent": "ENSMUSG00000000148", 
-            "seq_region_name": "5", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 140705050, 
-            "id": "ENSMUST00000131905", 
-            "source": "havana", 
-            "version": 7, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140705075, 
-                  "start": 140705050, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000783406", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140706096, 
-                  "start": 140705953, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001274803", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140710292, 
-                  "start": 140710138, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001307697", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140711653, 
-                  "start": 140711506, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001225092", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140712901, 
-                  "start": 140712505, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000769755", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140713172, 
-                  "start": 140713053, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001283960", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140714384, 
-                  "start": 140714293, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001259853", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140714685, 
-                  "start": 140714567, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001234502", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140714946, 
-                  "start": 140714760, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001245614", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140715935, 
-                  "start": 140715139, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000728535", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }
-            ], 
-            "biotype": "retained_intron", 
-            "species": "musmusculus", 
-            "end": 140715935, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": 1
-         }, 
-         {
-            "assembly_name": "GRCm38", 
-            "display_name": "Brat1-006", 
-            "Parent": "ENSMUSG00000000148", 
-            "seq_region_name": "5", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 140705052, 
-            "id": "ENSMUST00000124892", 
-            "source": "havana", 
-            "version": 1, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140705075, 
-                  "start": 140705052, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000781877", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140706096, 
-                  "start": 140705953, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001274803", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140711653, 
-                  "start": 140710138, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000801168", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140713172, 
-                  "start": 140712505, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000775148", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140714685, 
-                  "start": 140714567, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001234502", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140714946, 
-                  "start": 140714760, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001245614", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140715659, 
-                  "start": 140715139, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000729271", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }
-            ], 
-            "biotype": "retained_intron", 
-            "species": "musmusculus", 
-            "end": 140715659, 
-            "is_canonical": "0", 
-            "db_type": "core", 
-            "strand": 1
-         }, 
-         {
-            "assembly_name": "GRCm38", 
-            "display_name": "Brat1-004", 
-            "Parent": "ENSMUSG00000000148", 
-            "seq_region_name": "5", 
-            "logic_name": "havana", 
-            "object_type": "Transcript", 
-            "start": 140705066, 
-            "id": "ENSMUST00000100505", 
-            "source": "havana", 
-            "version": 2, 
-            "Exon": [
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140705228, 
-                  "start": 140705066, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000648319", 
-                  "seq_region_name": "5", 
-                  "version": 2, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140706096, 
-                  "start": 140705953, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001259531", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140710292, 
-                  "start": 140710138, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001290673", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140711653, 
-                  "start": 140711506, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001292347", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140712877, 
-                  "start": 140712505, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000970545", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140713172, 
-                  "start": 140713053, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001224745", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140714384, 
-                  "start": 140714293, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001261412", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140714685, 
-                  "start": 140714567, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001303906", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140714946, 
-                  "start": 140714760, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001253128", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140715212, 
-                  "start": 140715139, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001253836", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140716794, 
-                  "start": 140716692, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001259851", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140717027, 
-                  "start": 140716929, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001241659", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140717319, 
-                  "start": 140717144, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00001213291", 
-                  "seq_region_name": "5", 
-                  "version": 1, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }, 
-               {
-                  "assembly_name": "GRCm38", 
-                  "end": 140719379, 
-                  "start": 140717902, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSMUSE00000648312", 
-                  "seq_region_name": "5", 
-                  "version": 2, 
-                  "species": "musmusculus", 
-                  "strand": 1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "musmusculus", 
-            "end": 140719379, 
-            "Translation": {
-               "end": 140718597, 
-               "Parent": "ENSMUST00000100505", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSMUSP00000098074", 
-               "start": 140705111, 
-               "length": 867, 
-               "species": "musmusculus"
-            }, 
-            "is_canonical": "1", 
-            "db_type": "core", 
-            "strand": 1
-         }
-      ], 
-      "species": "musmusculus", 
-      "strand": 1
-   }, 
-   "ENSCAFG00000016358": {
-      "assembly_name": "CanFam3.1", 
-      "display_name": "BRAT1", 
-      "description": "BRCA1 associated ATM activator 1 [Source:HGNC Symbol;Acc:HGNC:21701]", 
-      "seq_region_name": "6", 
-      "logic_name": "ensembl", 
-      "object_type": "Gene", 
-      "start": 14515204, 
-      "id": "ENSCAFG00000016358", 
-      "source": "ensembl", 
-      "db_type": "core", 
-      "version": 3, 
-      "biotype": "protein_coding", 
-      "end": 14529569, 
-      "Transcript": [
-         {
-            "assembly_name": "CanFam3.1", 
-            "display_name": "BRAT1-201", 
-            "Parent": "ENSCAFG00000016358", 
-            "seq_region_name": "6", 
-            "logic_name": "ensembl", 
-            "object_type": "Transcript", 
-            "start": 14515204, 
-            "id": "ENSCAFT00000025950", 
-            "source": "ensembl", 
-            "version": 2, 
-            "Exon": [
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 14529569, 
-                  "start": 14529004, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000302855", 
-                  "seq_region_name": "6", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 14528695, 
-                  "start": 14528552, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000177662", 
-                  "seq_region_name": "6", 
-                  "version": 2, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 14524398, 
-                  "start": 14524244, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000177665", 
-                  "seq_region_name": "6", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 14521875, 
-                  "start": 14521728, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000177667", 
-                  "seq_region_name": "6", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 14521246, 
-                  "start": 14520874, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000177675", 
-                  "seq_region_name": "6", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 14520587, 
-                  "start": 14520468, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000177687", 
-                  "seq_region_name": "6", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 14519485, 
-                  "start": 14519394, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000177696", 
-                  "seq_region_name": "6", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 14518681, 
-                  "start": 14518563, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000177706", 
-                  "seq_region_name": "6", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 14518488, 
-                  "start": 14518302, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000177713", 
-                  "seq_region_name": "6", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 14518095, 
-                  "start": 14518022, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000177726", 
-                  "seq_region_name": "6", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 14517147, 
-                  "start": 14517045, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000177737", 
-                  "seq_region_name": "6", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 14516938, 
-                  "start": 14516840, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000177744", 
-                  "seq_region_name": "6", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 14516681, 
-                  "start": 14516506, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000177753", 
-                  "seq_region_name": "6", 
-                  "version": 1, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }, 
-               {
-                  "assembly_name": "CanFam3.1", 
-                  "end": 14516182, 
-                  "start": 14515204, 
-                  "db_type": "core", 
-                  "object_type": "Exon", 
-                  "id": "ENSCAFE00000177757", 
-                  "seq_region_name": "6", 
-                  "version": 2, 
-                  "species": "canisfamiliaris", 
-                  "strand": -1
-               }
-            ], 
-            "biotype": "protein_coding", 
-            "species": "canisfamiliaris", 
-            "end": 14529569, 
-            "Translation": {
-               "end": 14528678, 
-               "Parent": "ENSCAFT00000025950", 
-               "db_type": "core", 
-               "object_type": "Translation", 
-               "id": "ENSCAFP00000024092", 
-               "start": 14515481, 
-               "length": 824, 
-               "species": "canisfamiliaris"
-            }, 
-            "is_canonical": "1", 
-            "db_type": "core", 
-            "strand": -1
-         }
-      ], 
-      "species": "canisfamiliaris", 
-      "strand": -1
-   }
-}
Binary file test-data/gene.sqlite has changed
Binary file test-data/test.gafa.sqlite has changed