diff --git a/README.md b/README.md
index f1fd935..84cb6ba 100644
--- a/README.md
+++ b/README.md
@@ -1,16 +1,25 @@
-# Quickstart Guide
+# Equation Tree
-You will need:
+The Equation Tree package is an equation toolbox with symbolic regression in mind. It represents
+expressions as incomplete binary trees and has various features tailored towards testing symbolic
+regression algorithms or training models. The main features are:
-- `python` 3.8 or greater: [https://www.python.org/downloads/](https://www.python.org/downloads/)
+- Equation sampling (including priors)
+- Feature Extraction from equation distributions
+- Distance metrics between equations
-```shell
-pip install -U equation-tree
-```
+## Getting Started
+Check out the documentation at
+[https://autoresearch.github.io/equation-tree](https://autoresearch.github.io/equation-tree).
-Check your installation by running:
-```shell
-python -c "from equation_tree import EquationTree"
-```
+## About
+
+This project is in active development by
+the Autonomous Empirical Research
+Group
+(package developer: Younes Strittmatter,
+PI: Sebastian Musslick. This research program is supported by
+Schmidt Science Fellows, in partnership with the Rhodes Trust, as well as the Carney BRAINSTORM
+program at Brown University.
\ No newline at end of file
diff --git a/dev/burn.py b/dev/burn.py
new file mode 100644
index 0000000..7aea8fe
--- /dev/null
+++ b/dev/burn.py
@@ -0,0 +1,65 @@
+from equation_tree.sample import burn
+from equation_tree.defaults import DEFAULT_PRIOR
+
+prior_0 = {
+ 'structures': {'[0, 1, 1]': .3, '[0, 1, 2]': .3, '[0, 1, 2, 3, 2, 3, 1]': .4},
+ 'features': {'constants': .2, 'variables': .8},
+ 'functions': {'sin': .5, 'cos': .5},
+ 'operators': {'+': .8, '-': .2}
+}
+
+
+
+prior_1 = {
+ 'structures': {'[0, 1, 1]': .3, '[0, 1, 2]': .3, '[0, 1, 2, 3, 2, 3, 1]': .4},
+ 'features': {'constants': .2, 'variables': .8},
+ 'functions': {'sin': .5, 'cos': .5},
+ 'operators': {'+': .5, '-': .5},
+ 'function_conditionals': {
+ 'sin': {
+ 'features': {'constants': 0., 'variables': 1.},
+ 'functions': {'sin': 0., 'cos': 1.},
+ 'operators': {'+': .5, '-': .5}
+ },
+ 'cos': {
+ 'features': {'constants': 0., 'variables': 1.},
+ 'functions': {'cos': 1., 'sin': 0.},
+ 'operators': {'+': 0., '-': 1.}
+ }
+ },
+ 'operator_conditionals': {
+ '+': {
+ 'features': {'constants': .5, 'variables': .5},
+ 'functions': {'sin': 1., 'cos': 0.},
+ 'operators': {'+': 1., '-': 0.}
+ },
+ '-': {
+ 'features': {'constants': .3, 'variables': .7},
+ 'functions': {'cos': .5, 'sin': .5},
+ 'operators': {'+': .9, '-': .1}
+ }
+ },
+}
+
+# import random
+for _ in range(1, 5):
+ burn(DEFAULT_PRIOR,
+ _,
+ "../src/equation_tree/data/_hashed_probabilities.json",
+ 10_000,
+ 0.5,
+ )
+ burn(
+ prior_0,
+ 2,
+ "../src/equation_tree/data/_hashed_probabilities.json",
+ 10_000,
+ 0.5,
+ )
+ burn(
+ prior_1,
+ 2,
+ "../src/equation_tree/data/_hashed_probabilities.json",
+ 10_000,
+ 0.5,
+ )
\ No newline at end of file
diff --git a/docs/Additional Example.ipynb b/docs/Additional Example.ipynb
deleted file mode 100644
index b211083..0000000
--- a/docs/Additional Example.ipynb
+++ /dev/null
@@ -1,72 +0,0 @@
-{
- "cells": [
- {
- "attachments": {},
- "cell_type": "markdown",
- "metadata": {
- "collapsed": false
- },
- "source": [
- "# Additional Example\n"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": false
- },
- "outputs": [],
- "source": [
- "from autora.equation_tree.equation_tree import Example"
- ]
- },
- {
- "attachments": {},
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "Include inline mathematics like this: $4 < 5$\n",
- "\n",
- "Include block mathematics like this (don't forget the empty lines above and below the block):\n",
- "\n",
- "$$ \n",
- "y + 1 = 4 \n",
- "$$\n",
- "\n",
- "... or this:\n",
- "\n",
- "\\begin{align}\n",
- " p(v_i=1|\\mathbf{h}) & = \\sigma\\left(\\sum_j w_{ij}h_j + b_i\\right) \\\\\n",
- " p(h_j=1|\\mathbf{v}) & = \\sigma\\left(\\sum_i w_{ij}v_i + c_j\\right)\n",
- "\\end{align}"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": []
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "Python 3",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 2
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython2",
- "version": "2.7.6"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 0
-}
diff --git a/docs/Basic Usage.ipynb b/docs/Basic Usage.ipynb
index 1881b81..adc205b 100644
--- a/docs/Basic Usage.ipynb
+++ b/docs/Basic Usage.ipynb
@@ -7,37 +7,662 @@
"collapsed": false
},
"source": [
- "# Basic Usage\n"
+ "# Basic Usage\n",
+ "Here, we demonstrate core functionalities of the Equation Tree:\n",
+ "- Basic Functionality for sampling and processing equations\n",
+ "- Advanced settings for sampling equations\n",
+ "\n",
+ "## Installation"
]
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 1,
"metadata": {
"collapsed": false
},
- "outputs": [],
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Requirement already satisfied: equation_tree in /Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/src (0.0.11.dev27+g1da6b63.d20231102)\r\n",
+ "Requirement already satisfied: numpy in /Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/venv/lib/python3.11/site-packages (from equation_tree) (1.25.2)\r\n",
+ "Requirement already satisfied: sympy in /Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/venv/lib/python3.11/site-packages (from equation_tree) (1.12)\r\n",
+ "Requirement already satisfied: importlib_resources in /Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/venv/lib/python3.11/site-packages (from equation_tree) (6.0.1)\r\n",
+ "Requirement already satisfied: tqdm in /Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/venv/lib/python3.11/site-packages (from equation_tree) (4.66.1)\r\n",
+ "Requirement already satisfied: mpmath>=0.19 in /Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/venv/lib/python3.11/site-packages (from sympy->equation_tree) (1.3.0)\r\n",
+ "\r\n",
+ "\u001B[1m[\u001B[0m\u001B[34;49mnotice\u001B[0m\u001B[1;39;49m]\u001B[0m\u001B[39;49m A new release of pip is available: \u001B[0m\u001B[31;49m23.1.2\u001B[0m\u001B[39;49m -> \u001B[0m\u001B[32;49m23.3.1\u001B[0m\r\n",
+ "\u001B[1m[\u001B[0m\u001B[34;49mnotice\u001B[0m\u001B[1;39;49m]\u001B[0m\u001B[39;49m To update, run: \u001B[0m\u001B[32;49mpip install --upgrade pip\u001B[0m\r\n"
+ ]
+ }
+ ],
"source": [
- "from equation_tree import"
+ "import random\n",
+ "!pip install equation_tree"
]
},
{
"cell_type": "markdown",
"source": [
- "Include inline mathematics like this: $4 < 5$\n",
+ "## Basic Functionality\n",
+ "\n",
+ "### Sampling With Default Settings\n",
+ "First, we need to import the functionality. Here we also set a seed to ensure reproducible results."
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "outputs": [],
+ "source": [
+ "from equation_tree import sample\n",
+ "\n",
+ "# To obtain reproducible results, we set a seed for the following section\n",
+ "import numpy as np\n",
+ "np.random.seed(42)\n",
+ "# Adjusting the input dimension of the equations"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "We use this to sample an equation:"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/src/equation_tree/util/io.py:27: UserWarning: No hashed prior found. Sample frequencies may diverge from the prior. Consider burning this prior first.\n",
+ " warnings.warn(\n",
+ "Processing: 100%|██████████| 1/1 [00:00<00:00, 9.77iteration/s]\n"
+ ]
+ }
+ ],
+ "source": [
+ "equation = sample()"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "### Equation Representations And Features\n",
+ "\n",
+ "First, lets look at the type of the equation"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "outputs": [
+ {
+ "data": {
+ "text/plain": "list"
+ },
+ "execution_count": 4,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "type(equation)"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "It is a list! This is because we can sample multiple equations in one go:"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "Processing: 0%| | 0/100 [00:00, ?iteration/s]/Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/src/equation_tree/tree.py:51: RuntimeWarning: invalid value encountered in log\n",
+ " \"log\": lambda a: np.log(a),\n",
+ "/Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/src/equation_tree/tree.py:55: RuntimeWarning: invalid value encountered in arccos\n",
+ " \"acos\": lambda a: np.arccos(a),\n",
+ "Processing: 7%|▋ | 7/100 [00:00<00:01, 68.58iteration/s]/Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/src/equation_tree/tree.py:40: RuntimeWarning: invalid value encountered in scalar power\n",
+ " \"^\": lambda a, b: a**b,\n",
+ "/Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/src/equation_tree/tree.py:52: RuntimeWarning: invalid value encountered in sqrt\n",
+ " \"sqrt\": lambda a: np.sqrt(a),\n",
+ "Processing: 14%|█▍ | 14/100 [00:00<00:01, 68.71iteration/s]/Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/src/equation_tree/tree.py:56: RuntimeWarning: invalid value encountered in arcsin\n",
+ " \"asin\": lambda a: np.arcsin(a),\n",
+ "Processing: 100%|██████████| 100/100 [00:01<00:00, 85.06iteration/s]\n"
+ ]
+ }
+ ],
+ "source": [
+ "equations = sample(n = 100)"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "This returns 100 equations:"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "outputs": [
+ {
+ "data": {
+ "text/plain": "100"
+ },
+ "execution_count": 6,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "len(equations)"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "outputs": [
+ {
+ "data": {
+ "text/plain": "-sin(x_1 - exp(exp(x_1)))"
+ },
+ "execution_count": 7,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "equations[0]"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "outputs": [
+ {
+ "data": {
+ "text/plain": "-c_2 + tan(c_1*x_1)"
+ },
+ "execution_count": 8,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "equations[42]"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "They are represented as strings, but we can look at other representations as well. For example, prefix notation (for more details on different representations of the equations, see the respective section of the documentation):"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 9,
+ "outputs": [
+ {
+ "data": {
+ "text/plain": "['-', 'tan', '*', 'c_1', 'x_1', 'c_2']"
+ },
+ "execution_count": 9,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "equations[42].prefix"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "We can also look at features of the equation, for example at the number of constants, the tree depth of the underlying tree, the number of nodes or the tree structure (for more details on these features, see the respective section of the documentation):"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 10,
+ "outputs": [
+ {
+ "data": {
+ "text/plain": "2"
+ },
+ "execution_count": 10,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "equations[42].n_constants"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 11,
+ "outputs": [
+ {
+ "data": {
+ "text/plain": "3"
+ },
+ "execution_count": 11,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "equations[42].depth"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 12,
+ "outputs": [
+ {
+ "data": {
+ "text/plain": "6"
+ },
+ "execution_count": 12,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "equations[42].n_nodes"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 13,
+ "outputs": [
+ {
+ "data": {
+ "text/plain": "[0, 1, 2, 3, 3, 1]"
+ },
+ "execution_count": 13,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "equations[42].structure"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "markdown",
+ "source": [],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "### Instantiate Equations\n",
+ "\n",
+ "Note: the sampled equation are abstract: c_1 are representation of a constant. We can instantiate constants to be numbers:"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 14,
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "abstract: -c_2 + tan(c_1*x_1) , instantiated: tan(0.2720878822071884*x_1) - 0.4936315339297549\n"
+ ]
+ }
+ ],
+ "source": [
+ "# first we need to import the functionality\n",
+ "from equation_tree import instantiate_constants\n",
+ "import random\n",
+ "\n",
+ "# then we can use a function to instantiate the constants. For example for random constants between 0 and 1:\n",
+ "instantiated_equation = instantiate_constants(equations[42], lambda : random.random())\n",
+ "print(f'abstract: {equations[42]}', f', instantiated: {instantiated_equation}')"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 15,
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "abstract: c_2*x_1**c_1 , instantiated: x_1\n"
+ ]
+ }
+ ],
+ "source": [
+ "# we can also use other functions (for example all functions to be a constant\n",
+ "instantiated_equation_ = instantiate_constants(equations[41], lambda : 1)\n",
+ "print(f'abstract: {equations[41]}', f', instantiated: {instantiated_equation_}')"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "**We can use arbitrary functions to instantiate the constants.\n",
"\n",
- "Include block mathematics like this (don't forget the empty lines above and below the block):\n",
+ "### Evaluating Equations\n",
"\n",
- "$$ \n",
- "y + 1 = 4 \n",
- "$$\n",
+ "After instantiating equations, we can also evaluate on arbitrary input:"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 16,
+ "outputs": [
+ {
+ "data": {
+ "text/plain": "array([-0.21462429, 0.11148855, 0.57008635, 1.41577756])"
+ },
+ "execution_count": 16,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# import functionality\n",
+ "values = instantiated_equation.evaluate({'x_1': [1, 2, 3, 4]})\n",
+ "values"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 17,
+ "outputs": [
+ {
+ "data": {
+ "text/plain": "array([-0.21462429, 0.11148855, 0.57008635, 1.41577756])"
+ },
+ "execution_count": 17,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# We can also use pandas dataframes as inputs:\n",
+ "\n",
+ "# import functionality\n",
+ "import pandas as pd\n",
+ "\n",
+ "# define the input and get the values\n",
+ "input_df = pd.DataFrame({'x_1': [1, 2, 3, 4]})\n",
+ "instantiated_equation.evaluate(input_df)"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "\n",
+ "## Sample Settings\n",
+ "\n",
+ "When sampling equations, we can control for a variety of features of the underlying distribution.\n",
+ "\n",
+ "### Input Dimensions\n",
+ "\n",
+ "We can manipulate the space on witch the equation is defined. For example, if we want equations that are defined on 2-dimensions, we can write:"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 25,
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/src/equation_tree/util/io.py:27: UserWarning: No hashed prior found. Sample frequencies may diverge from the prior. Consider burning this prior first.\n",
+ " warnings.warn(\n",
+ "Processing: 0%| | 0/5 [00:00, ?iteration/s]/Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/src/equation_tree/tree.py:55: RuntimeWarning: invalid value encountered in arccos\n",
+ " \"acos\": lambda a: np.arccos(a),\n",
+ "/Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/src/equation_tree/tree.py:51: RuntimeWarning: invalid value encountered in log\n",
+ " \"log\": lambda a: np.log(a),\n",
+ "/Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/src/equation_tree/tree.py:56: RuntimeWarning: invalid value encountered in arcsin\n",
+ " \"asin\": lambda a: np.arcsin(a),\n",
+ "/Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/src/equation_tree/tree.py:52: RuntimeWarning: invalid value encountered in sqrt\n",
+ " \"sqrt\": lambda a: np.sqrt(a),\n",
+ "Processing: 100%|██████████| 5/5 [00:00<00:00, 112.51iteration/s]\n"
+ ]
+ }
+ ],
+ "source": [
+ "equations_2d = sample(n=5, max_num_variables=2)"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 27,
+ "outputs": [
+ {
+ "data": {
+ "text/plain": "[acos(Abs(acos(x_1))),\n -Abs(x_2) + asin(log(x_1)),\n Max(c_1, x_1),\n Max(x_1, Abs(sqrt(sin(x_1)))),\n cos(x_1*(c_1 + x_2))]"
+ },
+ "execution_count": 27,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "equations_2d"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "**Note: Not all the equations have exactly 2 input variable. Some of them have only one. This is since equations with only one input variable are still defined on 2 (or more dimensions)\n",
"\n",
- "... or this:\n",
+ "### Equation Complexity\n",
"\n",
- "\\begin{align}\n",
- " p(v_i=1|\\mathbf{h}) & = \\sigma\\left(\\sum_j w_{ij}h_j + b_i\\right) \\\\\n",
- " p(h_j=1|\\mathbf{v}) & = \\sigma\\left(\\sum_i w_{ij}v_i + c_j\\right)\n",
- "\\end{align}"
+ "We can also manipulate the equation complexity (as number of nodes)"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 28,
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/src/equation_tree/util/io.py:27: UserWarning: No hashed prior found. Sample frequencies may diverge from the prior. Consider burning this prior first.\n",
+ " warnings.warn(\n",
+ "Processing: 0%| | 0/5 [00:00, ?iteration/s]/Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/src/equation_tree/tree.py:55: RuntimeWarning: invalid value encountered in arccos\n",
+ " \"acos\": lambda a: np.arccos(a),\n",
+ "/Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/src/equation_tree/tree.py:56: RuntimeWarning: invalid value encountered in arcsin\n",
+ " \"asin\": lambda a: np.arcsin(a),\n",
+ "/Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/src/equation_tree/tree.py:40: RuntimeWarning: invalid value encountered in scalar power\n",
+ " \"^\": lambda a, b: a**b,\n",
+ "Processing: 100%|██████████| 5/5 [00:00<00:00, 312.27iteration/s]\n",
+ "Processing: 0%| | 0/5 [00:00, ?iteration/s]/Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/src/equation_tree/tree.py:40: RuntimeWarning: divide by zero encountered in scalar power\n",
+ " \"^\": lambda a, b: a**b,\n",
+ "/Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/src/equation_tree/tree.py:47: RuntimeWarning: invalid value encountered in sin\n",
+ " \"sin\": lambda a: np.sin(a),\n",
+ "Processing: 40%|████ | 2/5 [00:00<00:00, 12.82iteration/s]/Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/src/equation_tree/tree.py:52: RuntimeWarning: invalid value encountered in sqrt\n",
+ " \"sqrt\": lambda a: np.sqrt(a),\n",
+ "/Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/src/equation_tree/tree.py:51: RuntimeWarning: invalid value encountered in log\n",
+ " \"log\": lambda a: np.log(a),\n",
+ "Processing: 100%|██████████| 5/5 [00:00<00:00, 21.56iteration/s]\n"
+ ]
+ }
+ ],
+ "source": [
+ "equations_simple = sample(n=5, depth=3)\n",
+ "equations_complex = sample(n=5, depth=8)"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 29,
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "*** simple equations ***\n",
+ " [acos(exp(x_1)), Max(c_1, x_1), x_1/c_1, asin(exp(x_1)), x_1**c_1] \n",
+ "\n",
+ "*** complex equations ***\n",
+ " [sin(exp(sqrt(1 - sin(x_1)**2)/sin(x_1))**x_1), (x_1 + Min(x_1, sin(x_1)))/sqrt(1 - (x_1 + Min(x_1, sin(x_1)))**2), sqrt(Min(c_1**sin(sin(x_1)), x_1)), -asin(x_1)**x_1 + Min(c_1, x_1), Max(-x_1 + log(x_1), sqrt(Abs(x_1)))]\n"
+ ]
+ }
+ ],
+ "source": [
+ "print('*** simple equations ***\\n', equations_simple, '\\n')\n",
+ "print('*** complex equations ***\\n', equations_complex)"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "### Using Priors\n",
+ "We can also make use of priors to fully customize the sampling. Here, the entries for the structures, features, functions and operators represent the probability of the respective attribute being sampled."
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 34,
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/src/equation_tree/util/io.py:27: UserWarning: No hashed prior found. Sample frequencies may diverge from the prior. Consider burning this prior first.\n",
+ " warnings.warn(\n",
+ "Processing: 100%|██████████| 100/100 [00:00<00:00, 190.81iteration/s]\n"
+ ]
+ },
+ {
+ "data": {
+ "text/plain": "[cos(cos(x_1)),\n sin(sin(x_1)),\n -x_3 + sin(x_1) + sin(x_2),\n -x_3 + sin(x_2) + cos(x_1),\n cos(cos(x_1)),\n cos(sin(x_1)),\n sin(cos(x_1)),\n x_1 + x_2,\n sin(cos(x_1)),\n cos(sin(x_1)),\n x_1 + x_2,\n cos(sin(x_1)),\n x_1 - x_2,\n x_1 + x_2,\n sin(sin(x_1)),\n x_1 + x_2,\n sin(cos(x_1)),\n -c_1 + x_1,\n sin(cos(x_1)),\n x_1 + x_2,\n x_1 + x_2,\n x_1 + x_2,\n x_1 + x_2,\n sin(cos(x_1)),\n c_1 + x_1,\n x_1 - x_2,\n x_1 - x_2,\n x_1 + x_2,\n sin(sin(x_1)),\n c_1 + x_1,\n cos(sin(x_1)),\n cos(sin(x_1)),\n cos(sin(x_1)),\n cos(cos(x_1)),\n c_1 + x_1,\n sin(cos(x_1)),\n sin(cos(x_1)),\n x_1 - x_2,\n cos(sin(x_1)),\n cos(sin(x_1)),\n x_1 - x_2,\n cos(cos(x_1)),\n x_1 + x_2,\n x_1 + x_2,\n sin(sin(x_1)),\n c_1 + x_1,\n c_1 + x_1,\n x_1 + x_2,\n x_1 - x_2,\n sin(sin(x_1)),\n cos(cos(x_1)),\n cos(cos(x_1)),\n cos(cos(x_1)),\n sin(cos(x_1)),\n x_1 - x_2,\n sin(sin(x_1)),\n cos(cos(x_1)),\n c_1 + x_1,\n sin(sin(x_1)),\n cos(sin(x_1)),\n cos(sin(x_1)),\n x_1 + x_2,\n cos(sin(x_1)),\n sin(cos(x_1)),\n c_1 + x_1,\n -x_2,\n x_1 - x_2,\n -x_3 + sin(x_1) + sin(x_2),\n c_1 + x_1,\n x_1 + x_2,\n c_1 + x_1,\n c_1 + x_1,\n sin(sin(x_1)),\n cos(cos(x_1)),\n x_1 + x_2,\n c_1 + x_1,\n -x_1 + cos(x_1) + cos(x_2),\n x_1 - x_2,\n cos(sin(x_1)),\n sin(cos(x_1)),\n sin(cos(x_1)),\n sin(cos(x_1)),\n -x_3 + sin(x_1) + cos(x_2),\n x_1 + x_2,\n -x_3 + sin(x_2) + cos(x_1),\n -x_3 + sin(x_1) + sin(x_2),\n c_1 - x_1,\n c_1 + x_1,\n c_1 + x_1,\n cos(cos(x_1)),\n -x_2 + sin(x_2) + cos(x_1),\n c_1 + x_1,\n sin(sin(x_1)),\n c_1 + x_1,\n x_1 + x_2,\n sin(sin(x_1)),\n x_1 + x_2,\n x_1 + x_2,\n cos(sin(x_1)),\n sin(sin(x_1))]"
+ },
+ "execution_count": 34,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "p = {\n",
+ " 'structures': {'[0, 1, 1]': .3, '[0, 1, 2]': .3, '[0, 1, 2, 3, 2, 3, 1]': .4},\n",
+ " 'features': {'constants': .2, 'variables': .8},\n",
+ " 'functions': {'sin': .5, 'cos': .5},\n",
+ " 'operators': {'+': .8, '-': .2}\n",
+ "}\n",
+ "equations_with_prior = sample(n=10, prior=p, max_num_variables=10)\n",
+ "equations_with_prior"
],
"metadata": {
"collapsed": false
@@ -45,8 +670,108 @@
},
{
"cell_type": "markdown",
- "metadata": {},
- "source": []
+ "source": [
+ "We can also use conditional priors conditioned on the parent node:"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 38,
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/Users/younesstrittmatter/Documents/GitHub/AutoRA/equation-tree/src/equation_tree/util/io.py:27: UserWarning: No hashed prior found. Sample frequencies may diverge from the prior. Consider burning this prior first.\n",
+ " warnings.warn(\n",
+ "Processing: 100%|██████████| 100/100 [00:00<00:00, 128.08iteration/s]\n"
+ ]
+ },
+ {
+ "data": {
+ "text/plain": "[cos(cos(x_1)),\n x_1 - x_2,\n -c_1 + x_1,\n sin(cos(x_1)),\n sin(cos(x_1)),\n c_1 + x_1,\n -c_1 + sin(x_1) + sin(x_2),\n cos(cos(x_1)),\n cos(cos(x_1)),\n -x_3 + sin(x_1) + sin(x_2),\n sin(cos(x_1)),\n c_1 - x_1,\n -x_3 + sin(x_1) + sin(x_2),\n cos(cos(x_1)),\n -x_3 + sin(x_1) + sin(x_2),\n cos(cos(x_1)),\n c_1 - x_1,\n sin(cos(x_1)),\n cos(cos(x_1)),\n x_1 - x_2,\n -c_1 + sin(x_1) + sin(x_2),\n -x_3 + sin(x_1) + sin(x_2),\n cos(cos(x_1)),\n c_1 - x_1,\n sin(cos(x_1)),\n x_1 - x_2,\n -x_3 - sin(x_2) + cos(x_1),\n -c_1 + x_1,\n sin(cos(x_1)),\n cos(cos(x_1)),\n sin(cos(x_1)),\n x_1 + x_2,\n cos(cos(x_1)),\n -x_3 + sin(x_1) - sin(x_2),\n c_1 + x_1,\n cos(cos(x_1)),\n cos(cos(x_1)),\n sin(cos(x_1)),\n x_1 - x_2,\n -x_3 + sin(x_1) + sin(x_2),\n -c_1 + x_1,\n c_1 - x_1,\n c_1 + x_1,\n c_1 + x_1,\n cos(cos(x_1)),\n -c_1 + sin(x_1) + sin(x_2),\n c_1 + x_1,\n sin(cos(x_1)),\n sin(cos(x_1)),\n -x_3 + sin(x_1) + sin(x_2),\n -x_3 + sin(x_1) - cos(x_2),\n sin(cos(x_1)),\n x_1 - x_2,\n -x_3 + cos(x_1) - cos(x_2),\n x_1 - x_2,\n cos(cos(x_1)),\n sin(cos(x_1)),\n -x_2 + sin(x_1) + sin(x_2),\n cos(cos(x_1)),\n -c_1 + sin(x_1) + sin(x_2),\n -x_2 + sin(x_1) - cos(x_2),\n cos(cos(x_1)),\n -x_2 + sin(x_1) + sin(x_2),\n -x_3 + sin(x_1) + sin(x_2),\n sin(cos(x_1)),\n cos(cos(x_1)),\n cos(cos(x_1)),\n -c_1 + sin(x_1) + sin(x_2),\n cos(cos(x_1)),\n cos(cos(x_1)),\n cos(cos(x_1)),\n -x_3 + sin(x_1) + sin(x_2),\n cos(cos(x_1)),\n cos(cos(x_1)),\n -x_3 + sin(x_1) + sin(x_2),\n x_1 + x_2,\n c_1 - x_1,\n -x_1 + sin(x_1) + sin(x_2),\n cos(cos(x_1)),\n -c_1 + sin(x_1) + sin(x_2),\n c_1 - x_1,\n cos(cos(x_1)),\n -x_3 + sin(x_1) + sin(x_2),\n cos(cos(x_1)),\n c_1 - x_1,\n -x_3 + sin(x_1) + sin(x_2),\n cos(cos(x_1)),\n -x_3 + sin(x_1) + sin(x_2),\n c_1 + x_1,\n x_1 - x_2,\n cos(cos(x_1)),\n c_1 + x_1,\n cos(cos(x_1)),\n sin(cos(x_1)),\n sin(cos(x_1)),\n sin(cos(x_1)),\n sin(cos(x_1)),\n sin(cos(x_1)),\n -x_3 + sin(x_1) + sin(x_2),\n c_1 + x_1]"
+ },
+ "execution_count": 38,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "p_ = {\n",
+ " 'structures': {'[0, 1, 1]': .3, '[0, 1, 2]': .3, '[0, 1, 2, 3, 2, 3, 1]': .4},\n",
+ " 'features': {'constants': .2, 'variables': .8},\n",
+ " 'functions': {'sin': .5, 'cos': .5},\n",
+ " 'operators': {'+': .5, '-': .5},\n",
+ " 'function_conditionals': {\n",
+ " 'sin': {\n",
+ " 'features': {'constants': 0., 'variables': 1.},\n",
+ " 'functions': {'sin': 0., 'cos': 1.},\n",
+ " 'operators': {'+': .5, '-': .5}\n",
+ " },\n",
+ " 'cos': {\n",
+ " 'features': {'constants': 0., 'variables': 1.},\n",
+ " 'functions': {'cos': 1., 'sin': 0.},\n",
+ " 'operators': {'+': 0., '-': 1.}\n",
+ " }\n",
+ " },\n",
+ " 'operator_conditionals': {\n",
+ " '+': {\n",
+ " 'features': {'constants': .5, 'variables': .5},\n",
+ " 'functions': {'sin': 1., 'cos': 0.},\n",
+ " 'operators': {'+': 1., '-': 0.}\n",
+ " },\n",
+ " '-': {\n",
+ " 'features': {'constants': .3, 'variables': .7},\n",
+ " 'functions': {'cos': .5, 'sin': .5},\n",
+ " 'operators': {'+': .9, '-': .1}\n",
+ " }\n",
+ " },\n",
+ "}\n",
+ "equations_with_conditional_prior = sample(n=10, prior=p_, max_num_variables=10)\n",
+ "equations_with_conditional_prior"
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "**WARNING**\n",
+ "If your application is dependent on these priors, you should \"burn\" samples before starting the sampling.\n",
+ "During the sampling process, equations get simplified and invalid equations are discarded. This is likely to lead to disparities between the priors and the sampled frequencies.\n",
+ "To counteract this, the package offers the functionality to \"burn\" samples and adjust the priors so that the outcome frequency match them more closely. To burn samples, use the following code (We don't run it in the notebook since the adjusted priors are saved to disk for future use):\n",
+ "```\n",
+ "burn(\n",
+ " prior,\n",
+ " max_number_variables,\n",
+ " path_to_file,\n",
+ " number_of_burned_samples,\n",
+ " learning_rate\n",
+ " )\n",
+ "```\n",
+ "*this function should be run multiple times. The learning rate defines how much adjusted from previous runs are adjusted.\n",
+ "After burning, you can load the adjusted priors via:\n",
+ "```\n",
+ " sample(..., file=path_to_file)\n",
+ "```\n",
+ "*multiple adjusted priors can be stored in the same file."
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "outputs": [],
+ "source": [],
+ "metadata": {
+ "collapsed": false
+ }
}
],
"metadata": {
diff --git a/docs/img/logo.png b/docs/img/logo.png
new file mode 100644
index 0000000..f4bd83c
Binary files /dev/null and b/docs/img/logo.png differ
diff --git a/docs/index.md b/docs/index.md
index d616bfa..ac76ca0 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -1,24 +1,31 @@
-# equation-tree
+# Equation Tree
-Explain what your contribution is doing here
+The Equation Tree package is an equation toolbox with symbolic regression in mind. It represents
+expressions as incomplete binary trees and has various features tailored towards testing symbolic
+regression algorithms or training models. The most notable features are:
-You can include inline mathematics by wrapping LaTeX formatted math in `$` symbols: `$(3 < 4)$` will render as: $(3 < 4)$
+- Equation sampling (including priors)
+- Feature Extraction from equation distributions
+- Distance metrics between equations
-To include block mathematics wrap the expression with double `$$`:
+## Equation Sampling
-```
-$$
-E(\mathbf{v}, \mathbf{h}) = -\sum_{i,j}w_{ij}v_i h_j - \sum_i b_i v_i - \sum_j c_j h_j
-$$
-```
+coming soon
-Will render as:
+## Feature Extraction
-$$
-E(\mathbf{v}, \mathbf{h}) = -\sum_{i,j}w_{ij}v_i h_j - \sum_i b_i v_i - \sum_j c_j h_j
-$$
+coming soon
+## Distance Metrics
-See more information on writing mathematical expressions [here](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/writing-mathematical-expressions).
+coming soon
+## About
+This project is in active development by
+the Autonomous Empirical Research
+Group
+(package developer: Younes Strittmatter,
+PI: Sebastian Musslick. This research program is supported by
+Schmidt Science Fellows, in partnership with the Rhodes Trust, as well as the Carney BRAINSTORM
+program at Brown University.
\ No newline at end of file
diff --git a/docs/quickstart.md b/docs/quickstart.md
index 8771d5d..ac62c8f 100644
--- a/docs/quickstart.md
+++ b/docs/quickstart.md
@@ -7,11 +7,10 @@ You will need:
```shell
pip install -U equation-tree
-"]
```
Check your installation by running:
```shell
-python -c "from autora.equation_tree.equation_tree import Example"
-```
+python -c "from equation_tree import EquationTree"
+```
\ No newline at end of file
diff --git a/docs/user-guide/equation-formats.md b/docs/user-guide/equation-formats.md
new file mode 100644
index 0000000..5b71620
--- /dev/null
+++ b/docs/user-guide/equation-formats.md
@@ -0,0 +1,16 @@
+# Equation Formats
+Equations can be represented in multiple formats. Depending on the use case, some of these formats might be more useful than others. While the underlying format of the Equation Tree is a incomplete binary tree, it supports multiple formats as initialisation and output.
+
+## Tree Representation
+### Tree Structure
+coming soon
+
+
+## String Representation
+coming soon
+
+## Prefix Notation
+coming soon
+
+
+
diff --git a/docs/user-guide/sampling.md b/docs/user-guide/sampling.md
new file mode 100644
index 0000000..faabcad
--- /dev/null
+++ b/docs/user-guide/sampling.md
@@ -0,0 +1,2 @@
+# Sampling Method
+coming soon
\ No newline at end of file
diff --git a/mkdocs.yml b/mkdocs.yml
index ac0dd82..430b315 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -1,12 +1,86 @@
-# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
-INHERIT: mkdocs/base.yml # use the shared AutoRA configuration by default
-
-site_name: AutoRA equation-tree
+site_name: AutoRA Equation Tree
repo_url: 'https://github.com/AutoResearch/equation-tree'
+site_url: 'https://autoresearch.github.io/equation-tree/'
+edit_uri: 'blob/main/docs/'
+
+extra:
+ colab_base_url: 'https://colab.research.google.com/github/AutoResearch/equation-tree/blob/gh-pages/'
+ social:
+ - icon: fontawesome/brands/github-alt
+ link: https://github.com/AutoResearch
+
nav:
-- Home: 'index.md'
-- Quickstart: 'quickstart.md'
-- Examples:
- - Basic Usage: 'Basic Usage.ipynb'
- - Additional Example: 'Additional Example.ipynb'
+ - Introduction: 'index.md'
+ - Quickstart: 'quickstart.md'
+ - User Guide:
+ - Sampling: 'user-guide/sampling.md'
+ - Equation Formats: 'user-guide/equation-formats.md'
+ - Tutorials:
+ - Equation Sampling: Equation Sampling.ipynb
+ - Code Reference: reference/
+
+theme:
+ name: material
+ features:
+
+ language: en
+ logo: img/logo.png
+ palette:
+ # Palette toggle for light mode
+ - scheme: default
+ primary: black
+ toggle:
+ icon: material/brightness-7
+ name: Switch to dark mode
+ - scheme: slate
+ primary: black
+ toggle:
+ icon: material/brightness-4
+ name: Switch to light mode
+ custom_dir: mkdocs/overrides
+
+
+
+
+
+
+watch:
+ - src/
+
+plugins:
+ - search
+ - gen-files:
+ scripts:
+ - mkdocs/gen_ref_pages.py
+ - literate-nav:
+ nav_file: SUMMARY/index.html
+ - section-index
+ - mkdocstrings:
+ handlers:
+ python:
+ import:
+ - https://scikit-learn.org/stable/objects.inv
+ - mkdocs-jupyter: # required to convert Jupyter notebooks
+ include_source: true
+ execute: false
+ ignore_h1_titles: true
+hooks:
+ - mkdocs/hooks.py
+
+markdown_extensions:
+ admonition: { }
+ pymdownx.details: { }
+ pymdownx.superfences: { }
+ pymdownx.arithmatex: # required for equation display
+ generic: true
+ pymdownx.snippets: { }
+ pymdownx.tabbed:
+ alternate_style: true
+
+extra_javascript: [
+ # requirements for pymdownx.arithmetex:
+ "javascripts/mathjax.js",
+ "https://polyfill.io/v3/polyfill.min.js?features=es6",
+ "https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js"
+]
\ No newline at end of file
diff --git a/mkdocs/base.yml b/mkdocs/base.yml
deleted file mode 100644
index 8676be1..0000000
--- a/mkdocs/base.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
-# Shared configuration matching the rest of the AutoRA documentation.
-
-theme:
- name: material
-
-plugins:
- mkdocs-jupyter: # required to convert Jupyter notebooks
- include_source: true
- execute: false
- ignore_h1_titles: true
-
-markdown_extensions:
- admonition: {}
- pymdownx.details: {}
- pymdownx.superfences: {}
- pymdownx.arithmatex: # required for equation display
- generic: true
-
-extra_javascript: [
- # requirements for pymdownx.arithmetex:
- "javascripts/mathjax.js",
- "https://polyfill.io/v3/polyfill.min.js?features=es6",
- "https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js"
-]
\ No newline at end of file
diff --git a/mkdocs/gen_ref_pages.py b/mkdocs/gen_ref_pages.py
new file mode 100644
index 0000000..68069d2
--- /dev/null
+++ b/mkdocs/gen_ref_pages.py
@@ -0,0 +1,39 @@
+"""Generate the code reference pages and navigation."""
+
+from pathlib import Path
+from typing import List
+
+import mkdocs_gen_files
+
+nav = mkdocs_gen_files.Nav()
+
+source_paths = sorted(Path("./src/equation_tree/").rglob("*.py"))
+
+
+special_paths: List[Path] = [] # [Path("./docs/docstrings.py")]
+
+for path in source_paths:
+ module_path = path.relative_to(".").with_suffix("")
+ doc_path = path.relative_to(".").with_suffix(".md")
+
+ full_doc_path = Path("reference", doc_path)
+
+
+ parts = tuple(module_path.parts)
+
+ if parts[-1] == "__init__":
+ parts = parts[:-1]
+ doc_path = doc_path.with_name("index.md")
+ full_doc_path = full_doc_path.with_name("index.md")
+ elif parts[-1] == "__main__":
+ continue
+
+ nav[parts] = doc_path.as_posix()
+
+ with mkdocs_gen_files.open(full_doc_path, "w") as fd:
+ ident = ".".join(parts)
+ fd.write(f"::: {ident}")
+ mkdocs_gen_files.set_edit_path(full_doc_path, path)
+
+with mkdocs_gen_files.open("reference/SUMMARY.md", "w") as nav_file:
+ nav_file.writelines(nav.build_literate_nav())
diff --git a/mkdocs/hooks.py b/mkdocs/hooks.py
new file mode 100644
index 0000000..9074dfe
--- /dev/null
+++ b/mkdocs/hooks.py
@@ -0,0 +1,12 @@
+import os
+from urllib.parse import quote
+
+
+def basename(path):
+ return os.path.basename(path)
+
+
+def on_env(env, config, files, **kwargs):
+ env.filters["basename"] = basename
+ env.filters["quote"] = quote
+ return env
\ No newline at end of file
diff --git a/mkdocs/overrides/main.html b/mkdocs/overrides/main.html
new file mode 100644
index 0000000..3a7b8a9
--- /dev/null
+++ b/mkdocs/overrides/main.html
@@ -0,0 +1,15 @@
+{% extends "base.html" %}
+
+{% block content %}
+{% if page.nb_url %}
+
+ {% include ".icons/material/download.svg" %}
+
+
+
+
+{% endif %}
+{{ super() }}
+{% endblock content %}
\ No newline at end of file
diff --git a/pyproject.toml b/pyproject.toml
index ce24738..cdacef4 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -21,6 +21,17 @@ dependencies = [
dev = [
]
+docs = [
+ "mkdocs-material",
+ "mkdocs-gen-files",
+ "mkdocs-literate-nav",
+ "mkdocs-section-index",
+ "mkdocs-multirepo-plugin",
+ "mkdocstrings-python",
+ "mkdocs-jupyter",
+ "pymdown-extensions",
+]
+
[project.urls]
homepage = "http://www.empiricalresearch.ai"
repository = "https://github.com/AutoResearch/equation-tree"
diff --git a/src/equation_tree/__init__.py b/src/equation_tree/__init__.py
index eebaae9..2de8411 100644
--- a/src/equation_tree/__init__.py
+++ b/src/equation_tree/__init__.py
@@ -1,4 +1,4 @@
from equation_tree.sample import burn, sample
-from equation_tree.tree import EquationTree
+from equation_tree.tree import EquationTree, instantiate_constants
-__all__ = ["EquationTree", "sample", "burn"]
+__all__ = ["EquationTree", "sample", "burn", "instantiate_constants"]
diff --git a/src/equation_tree/data/_hashed_probabilities.json b/src/equation_tree/data/_hashed_probabilities.json
index 243a582..20dd498 100644
--- a/src/equation_tree/data/_hashed_probabilities.json
+++ b/src/equation_tree/data/_hashed_probabilities.json
@@ -1 +1 @@
-{"{'features': {'constants': 0.4056818181818182, 'variables': 0.5943181818181819}, 'functions': {'cos': 0.24, 'exp': 0.13333333333333333, 'log': 0.013333333333333334, 'sin': 0.21333333333333335, 'sqrt': 0.38666666666666666, 'tan': 0.013333333333333334}, 'max_num_variables': 100, 'operators': {'*': 0.4480946123521682, '+': 0.07621550591327202, '-': 0.08409986859395532, '/': 0.19185282522996058, '^': 0.19973718791064388}, 'structures': {'[0, 1, 1, 2, 2, 3, 3]': 0.008403361344537815, '[0, 1, 1, 2, 2, 3, 4, 4, 3, 4]': 0.008403361344537815, '[0, 1, 1, 2, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 3, 2, 3, 3]': 0.01680672268907563, '[0, 1, 1, 2, 3, 3, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 3, 4, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]': 0.01680672268907563, '[0, 1, 1, 2, 3, 3, 4, 5, 6, 6, 4, 2, 3, 4, 4]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 4, 3, 2, 3, 4, 5, 6, 6, 5, 6, 7, 8, 8, 7, 6, 7, 4, 5, 5]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 4, 3, 2]': 0.01680672268907563, '[0, 1, 1, 2, 3, 4, 4, 5, 5, 6, 3, 4, 5, 5, 4, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 4, 5, 5, 4, 3]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 6, 7, 7, 6, 5, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 4]': 0.008403361344537815, '[0, 1, 1]': 0.03361344537815126, '[0, 1, 2, 1, 2, 3, 4, 5, 5, 4, 5, 6, 6, 5, 6, 7, 7, 6, 7, 7, 3]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 2, 3, 4, 4, 3, 4, 4]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 2, 3, 4, 4]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 2]': 0.04201680672268908, '[0, 1, 2, 2, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 5, 6, 7, 8, 8, 7, 6, 3]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 3, 2]': 0.01680672268907563, '[0, 1, 2, 2, 1, 2, 3, 3, 4, 5, 5, 2, 3]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 4, 4, 2]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 4, 4]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 5, 5, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 5, 5, 4, 5, 6, 6, 7, 7, 5]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5, 3]': 0.01680672268907563, '[0, 1, 2, 2, 1, 2]': 0.008403361344537815, '[0, 1, 2, 2, 1]': 0.01680672268907563, '[0, 1, 2, 2, 3, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3, 1, 2, 3, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3, 1, 2, 3, 4, 4, 3, 2]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 2, 3, 4, 5, 6, 6, 5, 6, 7, 8, 8, 7, 6, 3]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3, 1]': 0.01680672268907563, '[0, 1, 2, 2, 3, 3, 4, 4, 1, 2, 3, 3, 4, 5, 5, 2]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3, 4, 4, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 4, 3, 4, 4, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 4, 3, 4, 5, 5, 6, 6, 4, 5, 5, 1, 2, 3, 3, 2]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 5, 6, 6, 1, 2, 2, 3, 4, 4, 5, 3]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 1]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 5, 5, 4, 5, 6, 6, 5, 3, 4, 5, 5, 4, 5, 5, 1, 2]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 5, 5, 6, 6, 4, 5, 5, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 6, 6, 1, 2, 3, 3, 2]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 5, 6, 6, 5, 3, 1, 2, 3, 4, 4, 2]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 5, 6, 7, 7, 6, 7, 7, 5, 4, 5, 6, 7, 7, 6, 7, 7, 5, 3, 4, 5, 6, 7, 7, 6, 5, 4, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 3]': 0.008403361344537815, '[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 5, 4, 1, 2, 2, 3]': 0.008403361344537815, '[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5, 6, 6, 1, 2, 3, 3, 4, 2]': 0.008403361344537815, '[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 7, 7, 5, 4, 1, 2, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 1, 2, 2]': 0.01680672268907563, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 5, 5, 4, 3, 4, 5, 5, 4, 2, 3, 4, 4, 3]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 1, 2]': 0.025210084033613446, '[0, 1, 2, 3, 3, 2, 1]': 0.05042016806722689, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2]': 0.01680672268907563, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 2]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4, 3, 2, 3, 4, 5, 5, 4, 5, 5, 3]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4, 3, 4, 4, 2]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 3, 1]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 3, 4, 4, 1, 2, 3, 3, 4, 4]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 5, 4, 3, 1]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 7, 8, 9, 9, 10, 10, 8, 7, 8, 9, 9, 8, 4, 5, 6, 6, 3, 1]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2]': 0.008403361344537815, '[0, 1, 2, 3, 3, 4, 4, 2, 3, 4, 4, 3, 4, 4, 1]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 3, 4, 5, 5, 4, 3, 2]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 2, 1]': 0.01680672268907563, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 5, 5, 4, 5, 5, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 4, 2, 3, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 4, 5, 6, 6, 4, 2, 3, 4, 5, 6, 6, 5, 3, 1, 2, 3, 3, 2, 3, 4, 5, 5, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 4, 5, 6, 6, 5, 4, 5, 6, 6, 2]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 4, 5, 6, 6, 7, 7, 5, 3, 1, 2, 3, 3, 2, 3, 4, 4, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 2]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 4, 2, 3, 4, 4, 3, 4, 4]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2, 3, 4, 5, 5, 4, 5, 6, 5, 3, 4, 4, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2, 3, 4, 5, 6, 6, 5, 4, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 1]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 2, 1]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 4, 2, 3, 3, 1, 2, 3, 3, 4, 4, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 4, 2, 3, 3, 1, 2, 3, 3, 4, 4, 2, 3, 4, 5, 5, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 5, 6, 6, 5, 4, 2, 3, 3, 1, 2, 2]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 5, 6, 7, 7, 6, 7, 7, 5, 4, 5, 5, 2]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4, 5, 5, 3, 4, 4, 2, 3, 3, 1, 2, 2, 3, 4, 5, 5, 4, 5, 5, 3]': 0.008403361344537815}}": {"structures": {"[0, 1, 1]": 0.0009098658055499868, "[0, 1, 2, 3, 4, 4, 3, 2, 1]": 0.0009098658055499868, "[0, 1, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 4]": 4.331246774879645e-05, "[0, 1, 2, 2, 3, 3, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]": 0.010495540854513414, "[0, 1, 2, 2, 3, 3, 4, 4, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]": 0.012724280191579191, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 5, 5, 4, 5, 5, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.02307323907841469, "[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5, 6, 6, 1, 2, 3, 3, 4, 2]": 0.03682693538876112, "[0, 1, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.001365229033736911, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 4, 2, 3, 3, 1, 2, 3, 3, 4, 4, 2, 3, 4, 5, 5, 3]": 0.019888716636508975, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 5, 6, 7, 7, 6, 7, 7, 5, 4, 5, 5, 2]": 0.019138254389179942, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 2, 1]": 0.0009098658055499868, "[0, 1, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]": 0.0009098658055499868, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2]": 0.013378014496158637, "[0, 1, 1, 2, 3, 4, 4, 5, 5, 6, 3, 4, 5, 5, 4, 2]": 0.01349565882164965, "[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 7, 7, 5, 4, 1, 2, 2, 3, 3]": 0.02177401997419435, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5, 3]": 0.03299811040603896, "[0, 1, 2, 2, 1, 2, 3, 3, 4, 5, 5, 2, 3]": 0.008907694127269687, "[0, 1, 2, 3, 3, 2, 1]": 0.0009098658055499868, "[0, 1, 2, 3, 3, 2, 1, 2]": 0.0007473843936467395, "[0, 1, 2, 2, 1, 2, 2, 3, 4, 4, 3, 4, 4]": 0.0038661525237534996, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 4, 2, 3, 3, 1, 2, 3, 3, 4, 4, 2, 3, 3]": 0.020437011548536842, "[0, 1, 2, 3, 4, 4, 3, 4, 5, 6, 6, 5, 4, 5, 6, 6, 2]": 0.010905238723274183, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.006177846951825555, "[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2, 3, 4, 5, 6, 6, 5, 4, 3]": 0.01966871518026102, "[0, 1, 2, 2, 1, 2, 2]": 0.0009098658055499868, "[0, 1, 2, 2, 3, 4, 4, 3, 4, 4, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]": 0.017040567425236602, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 2]": 0.00565088703038024, "[0, 1, 1, 2, 3, 3, 2, 3, 3]": 0.0009098658055499868, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4]": 0.004543491416261888, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 4, 5, 6, 6, 7, 7, 5, 3, 1, 2, 3, 3, 2, 3, 4, 4, 3]": 0.008307604972670076, "[0, 1, 2, 2, 1, 2, 2, 3, 3]": 6.756658047339333e-05, "[0, 1, 2, 2, 3, 4, 5, 6, 7, 7, 6, 7, 7, 5, 4, 5, 6, 7, 7, 6, 7, 7, 5, 3, 4, 5, 6, 7, 7, 6, 5, 4, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.013152060638868212, "[0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 5, 6, 6, 1, 2, 2, 3, 4, 4, 5, 3]": 0.021896997832723638, "[0, 1, 1, 2, 2]": 0.0009098658055499868, "[0, 1, 1, 2, 3, 3, 4, 2]": 0.0009098658055499868, "[0, 1, 1, 2, 2, 3, 4, 4, 3, 4]": 0.003980513155242347, "[0, 1, 2, 2, 3, 4, 5, 5, 4, 5, 6, 6, 5, 3, 4, 5, 5, 4, 5, 5, 1, 2]": 0.02880545507583974, "[0, 1, 2, 2, 3, 3, 1]": 0.0009098658055499868, "[0, 1, 1, 2, 3, 4, 4, 3, 2, 3, 4, 5, 6, 6, 5, 6, 7, 8, 8, 7, 6, 7, 4, 5, 5]": 0.031816867990550585, "[0, 1, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4, 5, 5, 3, 4, 4, 2, 3, 3, 1, 2, 2, 3, 4, 5, 5, 4, 5, 5, 3]": 0.013185405376151845, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 1]": 0.0003463662562889872, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 6, 7, 7, 6, 5, 2]": 0.006293791857814141, "[0, 1, 2, 2, 3, 3]": 0.0009098658055499868, "[0, 1, 2, 3, 3, 2, 1, 2, 2]": 0.0009098658055499868, "[0, 1, 2, 2, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 5, 6, 7, 8, 8, 7, 6, 3]": 0.019909334567795353, "[0, 1, 1, 2, 2, 3, 3]": 0.0009098658055499868, "[0, 1, 2, 2, 3, 4, 5, 6, 6, 5, 3, 1, 2, 3, 4, 4, 2]": 0.002956523861285068, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3]": 0.0014345727126974489, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 2]": 0.005046217555636637, "[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 3, 4, 5, 5, 4, 3, 2]": 0.005365293279300889, "[0, 1, 2, 2, 3, 3, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 2, 3, 4, 5, 6, 6, 5, 6, 7, 8, 8, 7, 6, 3]": 0.012335341069748025, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 2, 3, 3]": 0.024677573943497795, "[0, 1, 2, 2, 3, 3, 1, 2, 3, 3, 2, 3, 3]": 0.0077057486283505505, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4, 3, 2, 3, 4, 5, 5, 4, 5, 5, 3]": 0.021047758177030203, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5]": 0.021171629720835673, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 5, 4, 3, 1]": 0.006683876912104904, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 3]": 0.0009098658055499868, "[0, 1, 2, 3, 4, 4, 3, 4, 2, 3, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.03670323583124936, "[0, 1, 2, 2, 1, 2]": 0.0009098658055499868, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 4, 4]": 0.0009098658055499868, "[0, 1, 2, 2, 1, 2, 3, 3, 2]": 0.0009098658055499868, "[0, 1, 1, 2, 3, 3, 2]": 0.0009098658055499868, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 4, 4, 2]": 0.006532304017969842, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 4, 2, 3, 4, 4, 3, 4, 4]": 0.02037040464888648, "[0, 1, 2, 3, 3, 2, 3, 3, 4, 4, 1, 2, 3, 3, 4, 4]": 0.012344835742151145, "[0, 1, 1, 2, 3, 3, 4, 5, 6, 6, 4, 2, 3, 4, 4]": 0.001965443535549765, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 7, 8, 9, 9, 10, 10, 8, 7, 8, 9, 9, 8, 4, 5, 6, 6, 3, 1]": 0.012608913468113301, "[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 5, 4, 1, 2, 2, 3]": 0.02849243553365453, "[0, 1, 1, 2, 3, 4, 4, 3, 2]": 0.0009098658055499868, "[0, 1, 2, 2, 1]": 0.0009098658055499868, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1]": 0.003753900858793661, "[0, 1, 2, 2, 3, 3, 4, 4, 1, 2, 3, 3, 4, 5, 5, 2]": 0.004868259233242185, "[0, 1, 2, 1, 2, 3, 4, 5, 5, 4, 5, 6, 6, 5, 6, 7, 7, 6, 7, 7, 3]": 0.03185973794406829, "[0, 1, 2, 2, 3, 4, 4, 3, 4, 5, 5, 6, 6, 4, 5, 5, 1, 2, 3, 3, 2]": 0.01642567825521613, "[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2, 3, 4, 5, 5, 4, 5, 6, 5, 3, 4, 4, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2, 3, 3]": 0.03692164679794069, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 5, 5, 4, 5, 6, 6, 7, 7, 5]": 0.027369201820144767, "[0, 1, 2, 3, 4, 4, 3, 4, 5, 6, 6, 4, 2, 3, 4, 5, 6, 6, 5, 3, 1, 2, 3, 3, 2, 3, 4, 5, 5, 3]": 0.010781201614194897, "[0, 1, 2, 2, 3]": 0.0009098658055499868, "[0, 1, 2, 3, 3, 2]": 0.0009098658055499868, "[0, 1, 2, 3, 3, 4, 4, 2, 3, 4, 4, 3, 4, 4, 1]": 0.014341721831770361, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 2]": 0.007662494118809278, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 5, 6, 6, 5, 4, 2, 3, 3, 1, 2, 2]": 0.01933111598028511, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 5, 5, 4, 3, 4, 5, 5, 4, 2, 3, 4, 4, 3]": 0.014559363334162247, "[0, 1, 2, 2, 3, 4, 5, 5, 6, 6, 4, 5, 5, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 6, 6, 1, 2, 3, 3, 2]": 0.014888788446561088, "[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]": 0.012580752329170115, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2]": 0.004610530829684958, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4, 3, 4, 4, 2]": 0.020581096933380647, "[0, 1, 2, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 1]": 0.01073158856028385, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 5, 5, 3, 2, 3, 3]": 0.012589583625048596, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.011577783969631642, "[0, 1, 2, 2, 3, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.018306645589023965, "[0, 1, 2, 3, 3, 2, 3, 3, 1]": 0.0009098658055499868, "[0, 1, 2, 2, 3, 3, 1, 2, 3, 4, 4, 3, 2]": 0.0031128285975820023, "[0, 1, 2, 2, 1, 2, 2, 3, 4, 4]": 0.0009098658055499868, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 4, 5, 5, 4, 3]": 0.002958925996395191}, "features": {"constants": 0.7925812483375148, "variables": 0.2074187516624852}, "functions": {"exp": 0.04929796991669034, "sqrt": 0.3589611257025581, "sin": 0.24088669604071897, "cos": 0.31902906155736244, "log": 0.014791311214058057, "tan": 0.017033835568612016}, "operators": {"/": 0.20444884800241622, "*": 0.5757360672185223, "-": 0.02335782309718869, "^": 0.1553601003146245, "+": 0.041097161367248114}}, "{'features': {'constants': 0.4056818181818182, 'variables': 0.5943181818181819}, 'function_conditionals': {'cos': {'features': {'constants': 0.09090909090909091, 'variables': 0.9090909090909091}, 'functions': {}, 'operators': {'*': 0.42857142857142855, '-': 0.42857142857142855, '/': 0.14285714285714285}}, 'exp': {'features': {'constants': 0, 'variables': 0}, 'functions': {}, 'operators': {'/': 1.0}}, 'log': {'features': {'constants': 0, 'variables': 0}, 'functions': {}, 'operators': {'/': 1.0}}, 'sin': {'features': {'constants': 0.16666666666666666, 'variables': 0.8333333333333334}, 'functions': {}, 'operators': {'*': 0.1, '/': 0.9}}, 'sqrt': {'features': {'constants': 1.0, 'variables': 0.0}, 'functions': {}, 'operators': {'*': 0.08695652173913043, '+': 0.5217391304347826, '-': 0.30434782608695654, '/': 0.08695652173913043}}, 'tan': {'features': {'constants': 0, 'variables': 0}, 'functions': {}, 'operators': {'/': 1.0}}}, 'functions': {'cos': 0.24, 'exp': 0.13333333333333333, 'log': 0.013333333333333334, 'sin': 0.21333333333333335, 'sqrt': 0.38666666666666666, 'tan': 0.013333333333333334}, 'max_num_variables': 100, 'operator_conditionals': {'*': {'features': {'constants': 0.26216216216216215, 'variables': 0.7378378378378379}, 'functions': {'cos': 0.3333333333333333, 'exp': 0.1111111111111111, 'log': 0.027777777777777776, 'sin': 0.1388888888888889, 'sqrt': 0.3611111111111111, 'tan': 0.027777777777777776}, 'operators': {'*': 0.5217391304347826, '+': 0.06521739130434782, '-': 0.08695652173913043, '/': 0.0036231884057971015, '^': 0.322463768115942}}, '+': {'features': {'constants': 0.5945945945945946, 'variables': 0.40540540540540543}, 'functions': {'cos': 0.4, 'exp': 0.4, 'sqrt': 0.2}, 'operators': {'*': 0.25675675675675674, '+': 0.06756756756756757, '-': 0.04054054054054054, '/': 0.3918918918918919, '^': 0.24324324324324326}}, '-': {'features': {'constants': 0.5425531914893617, 'variables': 0.4574468085106383}, 'functions': {'cos': 0.3333333333333333, 'exp': 0.6666666666666666}, 'operators': {'*': 0.14285714285714285, '+': 0.03571428571428571, '-': 0.10714285714285714, '/': 0.35714285714285715, '^': 0.35714285714285715}}, '/': {'features': {'constants': 0.3333333333333333, 'variables': 0.6666666666666666}, 'functions': {'sqrt': 1.0}, 'operators': {'*': 0.7073170731707317, '+': 0.08292682926829269, '-': 0.04390243902439024, '^': 0.16585365853658537}}, '^': {'features': {'constants': 0.5503597122302158, 'variables': 0.44964028776978415}, 'functions': {'cos': 0.1, 'sin': 0.9}, 'operators': {'-': 0.9375, '/': 0.0625}}}, 'operators': {'*': 0.4480946123521682, '+': 0.07621550591327202, '-': 0.08409986859395532, '/': 0.19185282522996058, '^': 0.19973718791064388}, 'structures': {'[0, 1, 1, 2, 2, 3, 3]': 0.008403361344537815, '[0, 1, 1, 2, 2, 3, 4, 4, 3, 4]': 0.008403361344537815, '[0, 1, 1, 2, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 3, 2, 3, 3]': 0.01680672268907563, '[0, 1, 1, 2, 3, 3, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 3, 4, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]': 0.01680672268907563, '[0, 1, 1, 2, 3, 3, 4, 5, 6, 6, 4, 2, 3, 4, 4]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 4, 3, 2, 3, 4, 5, 6, 6, 5, 6, 7, 8, 8, 7, 6, 7, 4, 5, 5]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 4, 3, 2]': 0.01680672268907563, '[0, 1, 1, 2, 3, 4, 4, 5, 5, 6, 3, 4, 5, 5, 4, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 4, 5, 5, 4, 3]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 6, 7, 7, 6, 5, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 4]': 0.008403361344537815, '[0, 1, 1]': 0.03361344537815126, '[0, 1, 2, 1, 2, 3, 4, 5, 5, 4, 5, 6, 6, 5, 6, 7, 7, 6, 7, 7, 3]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 2, 3, 4, 4, 3, 4, 4]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 2, 3, 4, 4]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 2]': 0.04201680672268908, '[0, 1, 2, 2, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 5, 6, 7, 8, 8, 7, 6, 3]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 3, 2]': 0.01680672268907563, '[0, 1, 2, 2, 1, 2, 3, 3, 4, 5, 5, 2, 3]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 4, 4, 2]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 4, 4]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 5, 5, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 5, 5, 4, 5, 6, 6, 7, 7, 5]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5, 3]': 0.01680672268907563, '[0, 1, 2, 2, 1, 2]': 0.008403361344537815, '[0, 1, 2, 2, 1]': 0.01680672268907563, '[0, 1, 2, 2, 3, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3, 1, 2, 3, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3, 1, 2, 3, 4, 4, 3, 2]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 2, 3, 4, 5, 6, 6, 5, 6, 7, 8, 8, 7, 6, 3]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3, 1]': 0.01680672268907563, '[0, 1, 2, 2, 3, 3, 4, 4, 1, 2, 3, 3, 4, 5, 5, 2]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3, 4, 4, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 4, 3, 4, 4, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 4, 3, 4, 5, 5, 6, 6, 4, 5, 5, 1, 2, 3, 3, 2]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 5, 6, 6, 1, 2, 2, 3, 4, 4, 5, 3]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 1]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 5, 5, 4, 5, 6, 6, 5, 3, 4, 5, 5, 4, 5, 5, 1, 2]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 5, 5, 6, 6, 4, 5, 5, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 6, 6, 1, 2, 3, 3, 2]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 5, 6, 6, 5, 3, 1, 2, 3, 4, 4, 2]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 5, 6, 7, 7, 6, 7, 7, 5, 4, 5, 6, 7, 7, 6, 7, 7, 5, 3, 4, 5, 6, 7, 7, 6, 5, 4, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 3]': 0.008403361344537815, '[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 5, 4, 1, 2, 2, 3]': 0.008403361344537815, '[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5, 6, 6, 1, 2, 3, 3, 4, 2]': 0.008403361344537815, '[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 7, 7, 5, 4, 1, 2, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 1, 2, 2]': 0.01680672268907563, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 5, 5, 4, 3, 4, 5, 5, 4, 2, 3, 4, 4, 3]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 1, 2]': 0.025210084033613446, '[0, 1, 2, 3, 3, 2, 1]': 0.05042016806722689, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2]': 0.01680672268907563, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 2]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4, 3, 2, 3, 4, 5, 5, 4, 5, 5, 3]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4, 3, 4, 4, 2]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 3, 1]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 3, 4, 4, 1, 2, 3, 3, 4, 4]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 5, 4, 3, 1]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 7, 8, 9, 9, 10, 10, 8, 7, 8, 9, 9, 8, 4, 5, 6, 6, 3, 1]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2]': 0.008403361344537815, '[0, 1, 2, 3, 3, 4, 4, 2, 3, 4, 4, 3, 4, 4, 1]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 3, 4, 5, 5, 4, 3, 2]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 2, 1]': 0.01680672268907563, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 5, 5, 4, 5, 5, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 4, 2, 3, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 4, 5, 6, 6, 4, 2, 3, 4, 5, 6, 6, 5, 3, 1, 2, 3, 3, 2, 3, 4, 5, 5, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 4, 5, 6, 6, 5, 4, 5, 6, 6, 2]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 4, 5, 6, 6, 7, 7, 5, 3, 1, 2, 3, 3, 2, 3, 4, 4, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 2]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 4, 2, 3, 4, 4, 3, 4, 4]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2, 3, 4, 5, 5, 4, 5, 6, 5, 3, 4, 4, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2, 3, 4, 5, 6, 6, 5, 4, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 1]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 2, 1]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 4, 2, 3, 3, 1, 2, 3, 3, 4, 4, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 4, 2, 3, 3, 1, 2, 3, 3, 4, 4, 2, 3, 4, 5, 5, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 5, 6, 6, 5, 4, 2, 3, 3, 1, 2, 2]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 5, 6, 7, 7, 6, 7, 7, 5, 4, 5, 5, 2]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4, 5, 5, 3, 4, 4, 2, 3, 3, 1, 2, 2, 3, 4, 5, 5, 4, 5, 5, 3]': 0.008403361344537815}}": {"structures": {"[0, 1, 1]": 0.0008349887767524929, "[0, 1, 2, 3, 4, 4, 3, 2, 1]": 0.0008349887767524929, "[0, 1, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 4]": 0.0008349887767524929, "[0, 1, 2, 2, 3, 3, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]": 0.011140124743191539, "[0, 1, 2, 2, 3, 3, 4, 4, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]": 0.009208005530088381, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 5, 5, 4, 5, 5, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.01874585023001746, "[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5, 6, 6, 1, 2, 3, 3, 4, 2]": 0.03852869138973155, "[0, 1, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.0005970186131289292, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 4, 2, 3, 3, 1, 2, 3, 3, 4, 4, 2, 3, 4, 5, 5, 3]": 0.025766964034751472, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 5, 6, 7, 7, 6, 7, 7, 5, 4, 5, 5, 2]": 0.02460482171149281, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 2, 1]": 0.0008349887767524929, "[0, 1, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]": 0.0008349887767524929, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2]": 0.02337109894376766, "[0, 1, 1, 2, 3, 4, 4, 5, 5, 6, 3, 4, 5, 5, 4, 2]": 0.004454610998511118, "[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 7, 7, 5, 4, 1, 2, 2, 3, 3]": 0.028507118740012445, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5, 3]": 0.02992258359629921, "[0, 1, 2, 2, 1, 2, 3, 3, 4, 5, 5, 2, 3]": 0.001490467300054471, "[0, 1, 2, 3, 3, 2, 1]": 0.0008349887767524929, "[0, 1, 2, 3, 3, 2, 1, 2]": 0.0011708565771148406, "[0, 1, 2, 2, 1, 2, 2, 3, 4, 4, 3, 4, 4]": 0.009293698933839892, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 4, 2, 3, 3, 1, 2, 3, 3, 4, 4, 2, 3, 3]": 0.027336488339874048, "[0, 1, 2, 3, 4, 4, 3, 4, 5, 6, 6, 5, 4, 5, 6, 6, 2]": 0.007507238114998864, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.003876541267672306, "[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2, 3, 4, 5, 6, 6, 5, 4, 3]": 0.017176391388709293, "[0, 1, 2, 2, 1, 2, 2]": 0.0008349887767524929, "[0, 1, 2, 2, 3, 4, 4, 3, 4, 4, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]": 0.01765423514766485, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 2]": 0.0019196657888852946, "[0, 1, 1, 2, 3, 3, 2, 3, 3]": 0.0008349887767524929, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4]": 0.005363715397535797, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 4, 5, 6, 6, 7, 7, 5, 3, 1, 2, 3, 3, 2, 3, 4, 4, 3]": 0.014042538690984801, "[0, 1, 2, 2, 1, 2, 2, 3, 3]": 0.00210956911464606, "[0, 1, 2, 2, 3, 4, 5, 6, 7, 7, 6, 7, 7, 5, 4, 5, 6, 7, 7, 6, 7, 7, 5, 3, 4, 5, 6, 7, 7, 6, 5, 4, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.026353837319478938, "[0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 5, 6, 6, 1, 2, 2, 3, 4, 4, 5, 3]": 0.020824387144289584, "[0, 1, 1, 2, 2]": 0.0008349887767524929, "[0, 1, 1, 2, 3, 3, 4, 2]": 0.0008349887767524929, "[0, 1, 1, 2, 2, 3, 4, 4, 3, 4]": 0.0003979238123709069, "[0, 1, 2, 2, 3, 4, 5, 5, 4, 5, 6, 6, 5, 3, 4, 5, 5, 4, 5, 5, 1, 2]": 0.029381196425835504, "[0, 1, 2, 2, 3, 3, 1]": 0.0008349887767524929, "[0, 1, 1, 2, 3, 4, 4, 3, 2, 3, 4, 5, 6, 6, 5, 6, 7, 8, 8, 7, 6, 7, 4, 5, 5]": 0.026926880593916052, "[0, 1, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4, 5, 5, 3, 4, 4, 2, 3, 3, 1, 2, 2, 3, 4, 5, 5, 4, 5, 5, 3]": 0.02232809548413859, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 1]": 0.0008349887767524929, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 6, 7, 7, 6, 5, 2]": 0.0012816733460621881, "[0, 1, 2, 2, 3, 3]": 0.0008349887767524929, "[0, 1, 2, 3, 3, 2, 1, 2, 2]": 0.0008349887767524929, "[0, 1, 2, 2, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 5, 6, 7, 8, 8, 7, 6, 3]": 0.019612566078060615, "[0, 1, 1, 2, 2, 3, 3]": 0.0008349887767524929, "[0, 1, 2, 2, 3, 4, 5, 6, 6, 5, 3, 1, 2, 3, 4, 4, 2]": 0.013850515966799749, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3]": 0.0008349887767524929, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 2]": 0.007556668720136147, "[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 3, 4, 5, 5, 4, 3, 2]": 4.455659600286333e-05, "[0, 1, 2, 2, 3, 3, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 2, 3, 4, 5, 6, 6, 5, 6, 7, 8, 8, 7, 6, 3]": 0.017051587138257305, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 2, 3, 3]": 0.025678790271609294, "[0, 1, 2, 2, 3, 3, 1, 2, 3, 3, 2, 3, 3]": 0.010671631903212768, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4, 3, 2, 3, 4, 5, 5, 4, 5, 5, 3]": 0.02194527467494512, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5]": 0.008155412797856193, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 5, 4, 3, 1]": 0.002652915051019169, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 3]": 0.0008349887767524929, "[0, 1, 2, 3, 4, 4, 3, 4, 2, 3, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.036909822246476806, "[0, 1, 2, 2, 1, 2]": 0.0008349887767524929, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 4, 4]": 0.0008349887767524929, "[0, 1, 2, 2, 1, 2, 3, 3, 2]": 0.0008349887767524929, "[0, 1, 1, 2, 3, 3, 2]": 0.0008349887767524929, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 4, 4, 2]": 0.00450310435179752, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 4, 2, 3, 4, 4, 3, 4, 4]": 0.017913515512128213, "[0, 1, 2, 3, 3, 2, 3, 3, 4, 4, 1, 2, 3, 3, 4, 4]": 0.007567834787671979, "[0, 1, 1, 2, 3, 3, 4, 5, 6, 6, 4, 2, 3, 4, 4]": 0.0008349887767524929, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 7, 8, 9, 9, 10, 10, 8, 7, 8, 9, 9, 8, 4, 5, 6, 6, 3, 1]": 0.01248691083186223, "[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 5, 4, 1, 2, 2, 3]": 0.02786792371466756, "[0, 1, 1, 2, 3, 4, 4, 3, 2]": 0.0008349887767524929, "[0, 1, 2, 2, 1]": 0.0008349887767524929, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1]": 0.003221993254368555, "[0, 1, 2, 2, 3, 3, 4, 4, 1, 2, 3, 3, 4, 5, 5, 2]": 0.0008349887767524929, "[0, 1, 2, 1, 2, 3, 4, 5, 5, 4, 5, 6, 6, 5, 6, 7, 7, 6, 7, 7, 3]": 0.03632361936211415, "[0, 1, 2, 2, 3, 4, 4, 3, 4, 5, 5, 6, 6, 4, 5, 5, 1, 2, 3, 3, 2]": 0.01598704093808284, "[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2, 3, 4, 5, 5, 4, 5, 6, 5, 3, 4, 4, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2, 3, 3]": 0.03934536631270499, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 5, 5, 4, 5, 6, 6, 7, 7, 5]": 0.021589126658314382, "[0, 1, 2, 3, 4, 4, 3, 4, 5, 6, 6, 4, 2, 3, 4, 5, 6, 6, 5, 3, 1, 2, 3, 3, 2, 3, 4, 5, 5, 3]": 0.01962227148668187, "[0, 1, 2, 2, 3]": 0.0008349887767524929, "[0, 1, 2, 3, 3, 2]": 0.0008349887767524929, "[0, 1, 2, 3, 3, 4, 4, 2, 3, 4, 4, 3, 4, 4, 1]": 0.011453197241384067, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 2]": 0.014835161175317716, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 5, 6, 6, 5, 4, 2, 3, 3, 1, 2, 2]": 0.022927842505485487, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 5, 5, 4, 3, 4, 5, 5, 4, 2, 3, 4, 4, 3]": 0.013898786760832081, "[0, 1, 2, 2, 3, 4, 5, 5, 6, 6, 4, 5, 5, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 6, 6, 1, 2, 3, 3, 2]": 0.022790539295558115, "[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]": 0.007094138697610488, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2]": 0.0008349887767524929, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4, 3, 4, 4, 2]": 0.019854685531357313, "[0, 1, 2, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 1]": 0.006436515821274742, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 5, 5, 3, 2, 3, 3]": 0.008266382419170383, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.00897147602967831, "[0, 1, 2, 2, 3, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.015635233794557835, "[0, 1, 2, 3, 3, 2, 3, 3, 1]": 0.0008782337381027859, "[0, 1, 2, 2, 3, 3, 1, 2, 3, 4, 4, 3, 2]": 0.0008349887767524929, "[0, 1, 2, 2, 1, 2, 2, 3, 4, 4]": 0.0008349887767524929, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 4, 5, 5, 4, 3]": 6.740631326147565e-05}, "features": {"constants": 0.8076144320016446, "variables": 0.1923855679983554}, "functions": {"exp": 0.0008027706240643456, "sqrt": 0.8186835827405591, "sin": 0.0008027706240643456, "cos": 0.13951294253749935, "log": 0.02117754627797164, "tan": 0.019020387195841364}, "operators": {"/": 0.19263594869016368, "*": 0.6147137608027463, "-": 0.0009257810428404567, "^": 0.09594194935425843, "+": 0.0957825601099912}, "function_conditionals": {"exp": {"features": {"constants": 0, "variables": 0}, "functions": {}, "operators": {"/": 1.0}}, "sqrt": {"features": {"constants": 1.0, "variables": 0.0}, "functions": {}, "operators": {"-": 0.2157866104298664, "+": 0.5920543078958905, "*": 0.14558672522698846, "/": 0.046572356447254666}}, "sin": {"features": {"constants": 0.9992105003454061, "variables": 0.0007894996545939011}, "functions": {}, "operators": {"/": 0.8774694104145393, "*": 0.12253058958546068}}, "cos": {"features": {"constants": 0.6903409090909092, "variables": 0.3096590909090908}, "functions": {}, "operators": {"-": 0.4221462060183409, "*": 0.5085794138085337, "/": 0.06927438017312548}}, "log": {"features": {"constants": 0, "variables": 0}, "functions": {}, "operators": {"/": 1.0}}, "tan": {"features": {"constants": 0, "variables": 0}, "functions": {}, "operators": {"/": 1.0}}}, "operator_conditionals": {"/": {"features": {"constants": 0.5354350481483316, "variables": 0.46456495185166835}, "functions": {"sqrt": 1.0}, "operators": {"*": 0.635165362839063, "^": 0.26111190221798986, "+": 0.07736006157356345, "-": 0.026362673369383638}}, "*": {"features": {"constants": 0.48865500739873163, "variables": 0.5113449926012683}, "functions": {"exp": 0.006281204274101395, "sqrt": 0.7095951823726637, "cos": 0.1830140688807854, "sin": 0.0790240022236559, "log": 0.015282944795546543, "tan": 0.006802597453247072}, "operators": {"*": 0.4915380070830905, "-": 0.027493601162129823, "^": 0.43858530281538655, "+": 0.03137090776098026, "/": 0.011012181178412883}}, "-": {"features": {"constants": 0.9990243967634361, "variables": 0.0009756032365639803}, "functions": {"cos": 0.3424303661748593, "exp": 0.6575696338251408}, "operators": {"/": 0.051699989499591606, "-": 0.16128819602837446, "^": 0.6397720479812647, "*": 0.06124161422992077, "+": 0.08599815226084835}}, "^": {"features": {"constants": 0.9990351716166572, "variables": 0.0009648283833428605}, "functions": {"sin": 0.8878337119751618, "cos": 0.11216628802483813}, "operators": {"-": 0.9820824837520326, "/": 0.017917516247967523}}, "+": {"features": {"constants": 0.981603983783434, "variables": 0.018396016216565933}, "functions": {"exp": 0.20764189315580622, "cos": 0.25728279237528917, "sqrt": 0.5350753144689047}, "operators": {"/": 0.041355793936865295, "^": 0.45907152032230264, "*": 0.22820282556167076, "+": 0.17561285354364511, "-": 0.0957570066355162}}}}, "{'depth': {1: 0.4262080975185024, 2: 0.25903352198519813, 3: 0.1414888985633435, 4: 0.09142359599477581, 5: 0.04527644754026992, 6: 0.020026121027427082, 7: 0.007400957771005659, 8: 0.003918154114061821, 9: 0.003918154114061821, 11: 0.00043535045711797995, 12: 0.0008707009142359599}, 'features': {'constants': 0.34810126582278483, 'variables': 0.6518987341772152}, 'function_conditionals': {'abs': {'features': {'constants': 0.2222222222222222, 'variables': 0.7777777777777778}, 'functions': {}, 'operators': {'*': 0.5, '/': 0.5}}, 'cos': {'features': {'constants': 0.8947368421052632, 'variables': 0.10526315789473684}, 'functions': {}, 'operators': {'*': 0.22222222222222218, '+': 0.3333333333333333, '-': 0.44444444444444436}}, 'cosh': {'features': {'constants': 1.0, 'variables': 0.0}, 'functions': {}, 'operators': {'*': 1.0}}, 'cubed': {'features': {'constants': 0.0784313725490196, 'variables': 0.9215686274509803}, 'functions': {'cubed': 0.3541666666666667, 'squared': 0.6458333333333334}, 'operators': {'*': 0.8571428571428572, '+': 0.030075187969924814, '-': 0.09774436090225565, '/': 0.015037593984962407}}, 'exp': {'features': {'constants': 0.0, 'variables': 1.0}, 'functions': {'cubed': 0.25, 'squared': 0.75}, 'operators': {'*': 0.1, '+': 0.1, '-': 0.2, '/': 0.6}}, 'log': {'features': {'constants': 0.0, 'variables': 1.0}, 'functions': {}, 'operators': {'^': 1.0}}, 'sin': {'features': {'constants': 0.9090909090909091, 'variables': 0.09090909090909091}, 'functions': {'squared': 1.0}, 'operators': {'+': 0.5333333333333333, '-': 0.3333333333333333, '/': 0.13333333333333333}}, 'sinh': {'features': {'constants': 1.0, 'variables': 0.0}, 'functions': {}, 'operators': {}}, 'sqrt': {'features': {'constants': 0.8837209302325582, 'variables': 0.11627906976744186}, 'functions': {'abs': 0.027777777777777776, 'squared': 0.9722222222222222}, 'operators': {'*': 0.6153846153846154, '+': 0.23076923076923078, '-': 0.07692307692307693, '/': 0.07692307692307693}}, 'squared': {'features': {'constants': 0.21768707482993196, 'variables': 0.782312925170068}, 'functions': {'abs': 0.00946372239747634, 'cubed': 0.14195583596214512, 'sin': 0.0031545741324921135, 'squared': 0.8454258675078864}, 'operators': {'*': 0.7804295942720764, '+': 0.06921241050119331, '-': 0.13842482100238662, '/': 0.011933174224343675}}, 'tanh': {'features': {'constants': 1.0, 'variables': 0.0}, 'functions': {}, 'operators': {'*': 1.0}}}, 'functions': {'abs': 0.00816326530612245, 'cos': 0.019727891156462583, 'cosh': 0.0020408163265306124, 'cubed': 0.15918367346938775, 'exp': 0.01292517006802721, 'log': 0.0027210884353741495, 'sin': 0.022448979591836733, 'sinh': 0.0006802721088435374, 'sqrt': 0.0653061224489796, 'squared': 0.7040816326530612, 'tanh': 0.0027210884353741495}, 'max_depth': {2: 0.19547235524597306, 3: 0.25859817152808023, 4: 0.11928602525032656, 5: 0.11754462342185464, 6: 0.07357422725293865, 7: 0.053112755768393576, 8: 0.044841097083151954, 9: 0.030039181541140627, 10: 0.020461471484545066, 11: 0.023073574227252945, 12: 0.013495864170657384, 13: 0.008271658685241623, 14: 0.006965607313887682, 15: 0.006530256856769702, 16: 0.004353504571179802, 17: 0.004353504571179802, 18: 0.0017414018284719205, 19: 0.002176752285589901, 20: 0.0017414018284719205, 21: 0.0013060513713539404, 22: 0.0013060513713539404, 23: 0.0008707009142359602, 24: 0.002176752285589901, 25: 0.002176752285589901, 26: 0.0008707009142359602, 27: 0.0008707009142359602, 28: 0.0004353504571179801, 29: 0.0008707009142359602, 33: 0.0008707009142359602, 35: 0.0008707009142359602, 37: 0.0004353504571179801, 40: 0.0004353504571179801, 59: 0.0008707009142359602}, 'max_num_variables': 100, 'operator_conditionals': {'*': {'features': {'constants': 0.3047890897557881, 'variables': 0.6952109102442119}, 'functions': {'abs': 0.02976190476190476, 'cos': 0.10714285714285714, 'cosh': 0.005952380952380952, 'cubed': 0.047619047619047616, 'exp': 0.047619047619047616, 'log': 0.011904761904761904, 'sin': 0.11904761904761904, 'sqrt': 0.4166666666666667, 'squared': 0.20833333333333334, 'tanh': 0.005952380952380952}, 'operators': {'*': 0.6206373292867983, '+': 0.03641881638846738, '-': 0.12518968133535663, '/': 0.0015174506828528076, '^': 0.21623672230652508}}, '+': {'features': {'constants': 0.3367003367003367, 'variables': 0.6632996632996633}, 'functions': {'cos': 0.28571428571428575, 'exp': 0.07142857142857144, 'sin': 0.07142857142857144, 'sqrt': 0.2142857142857143, 'squared': 0.28571428571428575, 'tanh': 0.07142857142857144}, 'operators': {'*': 0.7216117216117216, '+': 0.11721611721611722, '-': 0.03663003663003663, '/': 0.06227106227106227, '^': 0.06227106227106227}}, '-': {'features': {'constants': 0.6133682830930537, 'variables': 0.38663171690694625}, 'functions': {'exp': 0.07142857142857142, 'sin': 0.35714285714285715, 'sqrt': 0.2857142857142857, 'squared': 0.14285714285714285, 'tanh': 0.14285714285714285}, 'operators': {'*': 0.5523809523809524, '+': 0.2, '-': 0.01904761904761905, '/': 0.08571428571428572, '^': 0.14285714285714285}}, '/': {'features': {'constants': 0.4734982332155477, 'variables': 0.5265017667844523}, 'functions': {'exp': 0.05555555555555555, 'log': 0.1111111111111111, 'sqrt': 0.3888888888888889, 'squared': 0.4444444444444444}, 'operators': {'*': 0.6216216216216216, '+': 0.018018018018018018, '-': 0.16216216216216217, '^': 0.1981981981981982}}, '^': {'features': {'constants': 0.37468030690537085, 'variables': 0.6253196930946292}, 'functions': {'cubed': 0.19047619047619047, 'exp': 0.047619047619047616, 'squared': 0.7619047619047619}, 'operators': {'*': 0.4330708661417323, '+': 0.03937007874015748, '-': 0.30708661417322836, '/': 0.2125984251968504, '^': 0.007874015748031496}}}, 'operators': {'*': 0.625614489003881, '+': 0.07994825355756792, '-': 0.11927554980595084, '/': 0.05407503234152652, '^': 0.12108667529107374}, 'operators_and_functions': {'*': 0.4532333645735708, '+': 0.057919400187441426, '-': 0.08641049671977508, '/': 0.03917525773195876, '^': 0.08772258669165886, 'abs': 0.0022492970946579195, 'cos': 0.005435801312089972, 'cosh': 0.0005623242736644799, 'cubed': 0.04386129334582943, 'exp': 0.003561387066541706, 'log': 0.0007497656982193065, 'sin': 0.006185567010309278, 'sinh': 0.00018744142455482662, 'sqrt': 0.017994376757263356, 'squared': 0.19400187441424555, 'tanh': 0.0007497656982193065}, 'structures': {'[0, 1, 1, 2, 2, 3, 3]': 0.0034828036569438635, '[0, 1, 1, 2, 2, 3, 4, 5, 5, 4, 3]': 0.00043535045711798294, '[0, 1, 1, 2, 2, 3, 4, 5, 5, 4]': 0.00043535045711798294, '[0, 1, 1, 2, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4]': 0.00043535045711798294, '[0, 1, 1, 2, 2, 3, 4, 5, 6, 7, 7]': 0.0008707009142359659, '[0, 1, 1, 2, 2, 3]': 0.0008707009142359659, '[0, 1, 1, 2, 2]': 0.03613408794079258, '[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 6, 5, 6, 6]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 7, 8, 8, 7]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 7, 8, 9, 9, 8]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 3, 2, 3, 3]': 0.0008707009142359659, '[0, 1, 1, 2, 3, 3, 2, 3]': 0.0008707009142359659, '[0, 1, 1, 2, 3, 3, 2]': 0.005224205485415795, '[0, 1, 1, 2, 3, 3, 4, 4, 2, 3, 3, 4]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 3]': 0.004353504571179829, '[0, 1, 1, 2, 3, 4, 4, 3, 2]': 0.0013060513713539488, '[0, 1, 1, 2, 3, 4, 4, 3, 4, 2, 3, 4, 3]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 4, 4, 3, 4, 5, 4, 5]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 4, 4, 3]': 0.0021767522855899147, '[0, 1, 1, 2, 3, 4, 4, 5, 3, 4, 5, 5, 2]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 4, 4, 5]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 4, 4]': 0.0034828036569438635, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 2]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 3, 4, 5, 6, 7, 7, 6, 5, 6, 6]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 3]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 3]': 0.0008707009142359659, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 4, 5, 5, 6, 4, 5, 5, 6, 3, 4, 5, 6, 7, 8, 7, 6, 5, 4, 5, 5]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 4, 5, 5]': 0.0008707009142359659, '[0, 1, 1, 2, 3, 4, 5, 6, 6, 5, 4]': 0.0008707009142359659, '[0, 1, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 4, 5, 6, 6, 5]': 0.0008707009142359659, '[0, 1, 1, 2, 3, 4, 5, 6, 6]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 4]': 0.0008707009142359659, '[0, 1, 1, 2, 3]': 0.0017414018284719317, '[0, 1, 1, 2]': 0.02568567696996099, '[0, 1, 1]': 0.23073574227253094, '[0, 1, 2, 1, 2, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 1, 2, 3, 3, 4]': 0.00043535045711798294, '[0, 1, 2, 1, 2, 3, 3]': 0.0008707009142359659, '[0, 1, 2, 1, 2, 3, 4, 4, 3, 4, 4, 5]': 0.00043535045711798294, '[0, 1, 2, 1, 2, 3, 4, 4, 3, 4]': 0.00043535045711798294, '[0, 1, 2, 1, 2, 3, 4, 4]': 0.0013060513713539488, '[0, 1, 2, 1, 2, 3, 4, 5, 5, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2]': 0.00043535045711798294, '[0, 1, 2, 1, 2, 3]': 0.0013060513713539488, '[0, 1, 2, 1, 2]': 0.0017414018284719317, '[0, 1, 2, 1]': 0.0013060513713539488, '[0, 1, 2, 2, 1, 2, 2, 3, 3, 4, 4]': 0.0008707009142359659, '[0, 1, 2, 2, 1, 2, 2, 3, 3]': 0.0008707009142359659, '[0, 1, 2, 2, 1, 2, 2, 3]': 0.0008707009142359659, '[0, 1, 2, 2, 1, 2, 2]': 0.008271658685241677, '[0, 1, 2, 2, 1, 2, 3, 3, 2]': 0.0021767522855899147, '[0, 1, 2, 2, 1, 2, 3, 3, 4, 4, 5, 5, 2]': 0.00043535045711798294, '[0, 1, 2, 2, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5, 2]': 0.0017414018284719317, '[0, 1, 2, 2, 1, 2, 3, 3]': 0.0013060513713539488, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 4]': 0.00043535045711798294, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 3]': 0.0008707009142359659, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 5, 5, 6, 6, 3, 2]': 0.00043535045711798294, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 5, 6, 7, 3, 4, 4, 5, 5, 6, 7, 8, 9, 10, 11]': 0.00043535045711798294, '[0, 1, 2, 2, 1, 2, 3, 4, 4]': 0.0021767522855899147, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 3]': 0.0008707009142359659, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 2, 3, 4, 4, 5, 5, 3]': 0.00043535045711798294, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 6, 6, 3, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4]': 0.00043535045711798294, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 6, 6, 4, 3, 4, 4, 5, 5, 2, 3, 4, 5, 6, 6, 7, 7, 8, 8, 5, 4, 3, 4, 4, 5, 5]': 0.00043535045711798294, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5]': 0.00043535045711798294, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 2]': 0.00043535045711798294, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6, 5]': 0.00043535045711798294, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6]': 0.00043535045711798294, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4]': 0.0017414018284719317, '[0, 1, 2, 2, 1, 2, 3, 4]': 0.006965607313887727, '[0, 1, 2, 2, 1, 2, 3]': 0.0017414018284719317, '[0, 1, 2, 2, 1, 2]': 0.013060513713539489, '[0, 1, 2, 2, 1]': 0.056595559425337776, '[0, 1, 2, 2, 3, 1, 2, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 1, 2, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 1, 2, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 1, 2, 2]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 1, 2, 3, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 1, 2, 3, 3, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 1, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 1, 2, 3, 4, 5, 5, 4, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 1, 2, 3, 4, 5, 5]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 1, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 1, 2]': 0.0017414018284719317, '[0, 1, 2, 2, 3, 1]': 0.0008707009142359659, '[0, 1, 2, 2, 3, 3, 1, 2, 2]': 0.0026121027427078976, '[0, 1, 2, 2, 3, 3, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3]': 0.0008707009142359659, '[0, 1, 2, 2, 3, 3, 1, 2, 3, 4]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 3, 1, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 3, 1, 2]': 0.0008707009142359659, '[0, 1, 2, 2, 3, 3, 1]': 0.003918154114061848, '[0, 1, 2, 2, 3, 3, 4, 1, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 3, 4, 4, 1, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 3, 4, 4, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 3]': 0.0013060513713539488, '[0, 1, 2, 2, 3, 4, 4, 1]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 4, 4, 3, 1, 2, 2]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 4, 4, 3, 1, 2, 3, 3]': 0.0017414018284719317, '[0, 1, 2, 2, 3, 4, 4, 3, 4, 4, 5, 1, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 4, 4, 3, 4, 4, 5, 5, 1, 2, 3, 3, 2, 3, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 4, 5, 5, 1, 2, 2, 3, 3, 4, 5, 6]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 4, 5, 5, 4, 1, 2, 2, 3, 4, 5, 5, 4]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 4, 5, 5, 6, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 4, 5, 6, 1, 2, 2, 3, 3, 4, 4, 5, 6, 7, 8, 8, 9, 10, 7, 8, 8, 9, 10, 11, 12]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 4, 5, 6, 6, 5, 4, 1, 2, 2, 3, 3, 4]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 4, 5, 6, 7, 3, 4, 4, 5, 5, 6, 6, 1, 2, 3, 4]': 0.00043535045711798294, '[0, 1, 2, 2, 3]': 0.0017414018284719317, '[0, 1, 2, 2]': 0.08837614279495053, '[0, 1, 2, 3, 1, 2, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 1, 2, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 2, 1]': 0.0013060513713539488, '[0, 1, 2, 3, 2, 3, 1, 2, 3, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 2, 3, 1]': 0.00043535045711798294, '[0, 1, 2, 3, 2, 3, 3, 4, 4, 1, 2, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 2, 3, 3, 4, 5, 5, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 5]': 0.00043535045711798294, '[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 5, 6, 4, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 2, 3]': 0.0008707009142359659, '[0, 1, 2, 3, 2]': 0.0008707009142359659, '[0, 1, 2, 3, 3, 1, 2, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 1, 2, 2, 3, 3]': 0.0013060513713539488, '[0, 1, 2, 3, 3, 2, 1, 2, 2]': 0.004353504571179829, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 4, 5, 5, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 4, 5, 5, 6, 6, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 5, 6, 6, 5, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 5, 6]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 1, 2]': 0.004788855028297813, '[0, 1, 2, 3, 3, 2, 1]': 0.01044841097083159, '[0, 1, 2, 3, 3, 2, 3, 1, 2, 2]': 0.0013060513713539488, '[0, 1, 2, 3, 3, 2, 3, 1, 2]': 0.0008707009142359659, '[0, 1, 2, 3, 3, 2, 3, 1]': 0.0008707009142359659, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2, 3, 3, 4]': 0.0008707009142359659, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2]': 0.0034828036569438635, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 3, 1]': 0.0017414018284719317, '[0, 1, 2, 3, 3, 2, 3, 3, 4, 4, 1]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 7, 1, 2, 2, 3, 3, 4, 5, 5, 4, 5, 5, 6, 7, 8, 9]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 3]': 0.0008707009142359659, '[0, 1, 2, 3, 3, 2, 3, 4, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 4, 4, 1, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 4, 4, 3, 1, 2, 3, 3]': 0.0008707009142359659, '[0, 1, 2, 3, 3, 2, 3, 4, 4, 3, 1]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 4, 4, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 5, 4, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 5, 4, 5, 1, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 5, 4, 5, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 5, 6, 7, 1, 2, 2, 3, 3, 4, 5, 5, 4, 5, 6, 7, 7, 6, 5, 6, 7, 8, 9]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 6]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2]': 0.04135829342620838, '[0, 1, 2, 3, 3, 4, 2, 1, 2, 2]': 0.0017414018284719317, '[0, 1, 2, 3, 3, 4, 2, 3, 4, 3, 4, 5, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 4, 2, 3, 4, 4, 3, 1, 2, 3, 3, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 4, 2, 3, 4, 5, 6, 6, 5, 6, 4, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 4, 2]': 0.0013060513713539488, '[0, 1, 2, 3, 3, 4, 4, 2, 1, 2, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 4, 4, 2, 1]': 0.0008707009142359659, '[0, 1, 2, 3, 3, 4, 4, 2, 3, 1, 2]': 0.0008707009142359659, '[0, 1, 2, 3, 3, 4, 4, 2, 3, 3, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 4, 4, 2, 3, 3, 4, 4, 1]': 0.0008707009142359659, '[0, 1, 2, 3, 3, 4, 4, 2, 3, 3, 4, 4, 5, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 4, 4, 2, 3, 4, 5, 1, 2, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 4, 4, 2]': 0.003918154114061848, '[0, 1, 2, 3, 3, 4, 4, 5, 5, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 4, 5, 2, 3, 3, 4, 4, 5, 5]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 4, 5, 6, 2, 3, 3, 4, 4, 5, 6, 7, 7, 6, 5, 6, 7, 7, 6, 7, 8, 9, 10, 11, 12, 12, 11, 10, 9]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 4, 5, 6, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 4, 5, 6, 6, 2, 3, 3, 4, 5, 5, 4, 1, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 4, 5, 6, 6, 5, 4, 5, 6, 7, 7, 6, 2, 3, 3, 1, 2, 3, 4, 4]': 0.0008707009142359659, '[0, 1, 2, 3, 3]': 0.014801915542011419, '[0, 1, 2, 3, 4, 4, 1, 2, 3, 4, 5, 3, 4, 4, 5, 6, 7, 7, 6, 2, 3, 4, 5, 5, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 2, 3, 1, 2, 2, 3, 4, 5, 5, 3, 4, 5, 5]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 2, 3, 3]': 0.0008707009142359659, '[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 2]': 0.0026121027427078976, '[0, 1, 2, 3, 4, 4, 3, 2, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 2, 1]': 0.0017414018284719317, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 3, 1, 2, 3, 3, 2, 3, 3]': 0.0008707009142359659, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 3, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 3, 1]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.0013060513713539488, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 1, 2, 3, 4, 4, 3, 2]': 0.0008707009142359659, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 5, 6, 6, 5, 3, 1, 2, 3, 4, 4, 3, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 2, 3]': 0.0013060513713539488, '[0, 1, 2, 3, 4, 4, 3, 2]': 0.010883761427949572, '[0, 1, 2, 3, 4, 4, 3, 4, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 4, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 3, 1, 2, 3, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 3, 1, 2]': 0.0008707009142359659, '[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 4, 1, 2, 2, 3, 3, 4, 5, 6]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 4, 4, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 4, 4, 2]': 0.0034828036569438635, '[0, 1, 2, 3, 4, 4, 3, 4, 4, 5, 5, 2, 3, 4, 4, 3, 4, 4, 5, 5, 1, 2, 3, 3, 2, 3, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 4, 5, 2, 3, 4, 5, 5, 1, 2, 3, 4, 4, 3, 4, 5, 2, 3, 4, 5, 5]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 4, 5, 5, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 4, 5, 5, 4, 5, 2, 3, 4, 4, 3, 4, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3]': 0.0074009577710057095, '[0, 1, 2, 3, 4, 4, 5, 3, 2, 1, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 5, 3, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 5, 5, 3, 2, 1]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 5, 5, 2, 1]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 5, 5, 3]': 0.0008707009142359659, '[0, 1, 2, 3, 4, 4, 5, 5, 6, 3, 4, 5, 6, 6, 5, 6, 4, 5, 6, 6, 2, 3, 4, 5, 6, 6, 5, 6, 4, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 5, 5, 6, 6, 3, 4, 4, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 5, 5, 6, 7, 8, 8, 7, 6, 3, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 5, 6, 7, 8, 9, 9, 8, 7, 3, 4, 5, 6, 7, 7, 6, 5, 4, 5, 5]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4]': 0.006965607313887727, '[0, 1, 2, 3, 4, 5, 4, 3, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 4, 3, 4, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 5, 4, 1, 2, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2, 2, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2, 2, 3, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2, 3, 3, 4, 5, 6, 6, 5, 4, 2, 3, 4, 4, 5, 5, 6, 6, 7, 7, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3]': 0.0008707009142359659, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2]': 0.0026121027427078976, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 4, 2]': 0.0017414018284719317, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 5, 2, 3, 4, 5, 5, 1, 2, 3, 4, 4, 3, 2, 3, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 5, 4, 3]': 0.003918154114061848, '[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3]': 0.0013060513713539488, '[0, 1, 2, 3, 4, 5, 5, 4, 5, 6, 6, 5, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 5, 4]': 0.004353504571179829, '[0, 1, 2, 3, 4, 5, 5, 6, 4, 3, 2, 3, 4, 5, 6, 6, 7, 8, 9, 9, 8, 5, 6, 7, 8, 8, 7, 4, 5, 6, 7, 7, 6, 3, 4, 5, 6, 7, 8, 8, 7, 5, 6, 7, 8, 8, 7, 4, 5, 6, 7, 7, 6, 1, 2, 2, 3, 4, 4]': 0.0008707009142359659, '[0, 1, 2, 3, 4, 5, 5]': 0.0030474531998258805, '[0, 1, 2, 3, 4, 5, 6, 6, 1, 2, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 2, 3, 3, 4, 4, 1, 2, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 4, 2, 3, 1, 2, 2, 3, 4, 5, 5, 4, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 4, 5, 5, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3]': 0.0008707009142359659, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 6, 6, 5]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 3, 4, 4, 5, 5, 2, 1, 2, 2, 3, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 5, 5, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 6, 7, 7, 5, 6, 6, 7, 7, 4, 5, 5, 6, 6, 3, 4, 4, 2, 3, 3, 4, 4, 1, 2, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 6, 7, 7, 8, 8, 5, 4, 3, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 6]': 0.0008707009142359659, '[0, 1, 2, 3, 4, 5, 6, 7, 7, 6, 7, 7, 5]': 0.0008707009142359659, '[0, 1, 2, 3, 4, 5, 6, 7, 7, 8, 8, 6, 7, 7, 5, 6, 6, 4, 5, 5, 3, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 7, 8, 7, 6, 5, 4, 3, 4, 4, 2, 3, 4, 5, 1, 2, 3, 4, 4, 2, 3, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 7, 8, 8, 7, 6, 5, 4, 3, 2, 3, 1, 2, 3, 4, 5, 5, 4, 3, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 7, 8, 8, 9, 9, 7, 8, 8, 6, 5, 6, 6, 4, 5, 5, 3, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 7, 8, 8]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 8, 7, 6, 5, 4, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 8, 7, 8, 8, 9, 9, 6, 7, 7, 5, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5]': 0.00043535045711798294, '[0, 1, 2, 3, 4]': 0.003918154114061848, '[0, 1, 2, 3]': 0.003918154114061848, '[0, 1, 2]': 0.027862429255550908, '[0, 1]': 0.19547235524597434}}": {"max_depth": {}, "depth": {}, "structures": {"[0, 1]": 0.20838018184617202, "[0, 1, 1]": 0.1259385910817701, "[0, 1, 1, 2, 2, 3, 3]": 0.005144902359099523, "[0, 1, 2, 2, 1, 2]": 0.0231922790277002, "[0, 1, 1, 2, 2]": 0.04585237359269811, "[0, 1, 2, 3, 3, 2, 1, 2, 2]": 0.00541118671809001, "[0, 1, 2, 2]": 0.06494142109457576, "[0, 1, 2, 2, 1]": 0.029675147509414853, "[0, 1, 2, 2, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5, 2]": 0.003450009221172002, "[0, 1, 1, 2]": 0.04591265780128713, "[0, 1, 1, 2, 3, 3, 2]": 0.0034476002462902338, "[0, 1, 2, 1, 2, 3, 4, 5, 5, 3, 4, 4]": 0.0008440251489498395, "[0, 1, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2]": 0.0006303769335071332, "[0, 1, 1, 2, 3, 3, 2, 3, 3]": 0.0007517224049969159, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2]": 0.0006318746422474679, "[0, 1, 2, 2, 3, 4, 4, 3, 1, 2, 3, 3]": 0.0023443220484064197, "[0, 1, 2, 3, 3, 2, 3, 4, 4, 3, 1, 2, 3, 3]": 0.001329577937984722, "[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 5, 6, 4, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 3]": 0.0004550965119352653, "[0, 1, 2, 3, 4, 4, 5, 5, 6, 3, 4, 5, 6, 6, 5, 6, 4, 5, 6, 6, 2, 3, 4, 5, 6, 6, 5, 6, 4, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 3]": 0.0004550965119352653, "[0, 1, 2, 2, 1, 2, 3, 3, 4, 4, 5, 5, 2]": 0.0003975951177128601, "[0, 1, 2, 3, 4, 4, 3, 2, 1]": 0.0010154025131086015, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 5, 5, 6, 6, 3, 2]": 0.0005781090991113682, "[0, 1, 2, 2, 3, 3]": 0.00013936627781455772, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 2]": 0.0007148532717007623, "[0, 1, 2, 2, 3, 3, 4, 1, 2, 3, 3]": 0.000765623397356192, "[0, 1, 2]": 0.06862743991857075, "[0, 1, 2, 3, 4, 4, 3, 2]": 0.006876904005854892, "[0, 1, 2, 1, 2, 3, 4, 4, 3, 4, 4, 5]": 0.0005258412647156035, "[0, 1, 2, 2, 1, 2, 3]": 0.0032040723551122626, "[0, 1, 2, 3, 3]": 0.016862793971579984, "[0, 1, 2, 3, 3, 4, 2]": 0.0016651630530983938, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4]": 0.0006595900198243278, "[0, 1, 2, 3, 3, 2, 1, 2]": 0.008840781308218346, "[0, 1, 2, 2, 1, 2, 2]": 0.001725650209928992, "[0, 1, 1, 2, 3, 4, 4, 3]": 0.0016042128467167848, "[0, 1, 2, 3, 3, 2]": 0.03409975056129988, "[0, 1, 2, 3, 3, 2, 1]": 0.004826927573053596, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 6, 6, 4, 3, 4, 4, 5, 5, 2, 3, 4, 5, 6, 6, 7, 7, 8, 8, 5, 4, 3, 4, 4, 5, 5]": 0.0006364515201071152, "[0, 1, 2, 3, 4, 4, 3, 4, 4, 5, 5, 2, 3, 4, 4, 3, 4, 4, 5, 5, 1, 2, 3, 3, 2, 3, 3, 4, 4]": 0.0008163935230116222, "[0, 1, 2, 3, 4, 4, 5, 5, 6, 7, 8, 8, 7, 6, 3, 2]": 0.00040850076472426764, "[0, 1, 2, 3, 3, 4, 4, 2, 3, 3, 4, 4, 1]": 0.0008982012808416519, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 3, 4, 4, 5, 5, 2, 1, 2, 2, 3, 3, 4, 4]": 0.0006088198941688978, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 2, 3, 3, 4, 4, 1, 2, 2, 3, 3]": 0.0006318746422474679, "[0, 1, 2, 3, 4, 5, 5, 4, 3]": 0.0047330742308640756, "[0, 1, 2, 3, 4, 4, 3, 4, 4, 2]": 0.0034355162563361255, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2]": 0.0074049070693388095, "[0, 1, 2, 1, 2, 3]": 0.002762787575409456, "[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 4, 4, 3]": 0.0004796480169198203, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 3, 1]": 0.0004237990892821157, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4]": 0.0005078348248775204, "[0, 1, 2, 3, 4, 5, 6, 7, 7, 6, 7, 7, 5]": 0.0012221329145588, "[0, 1, 2, 3, 4, 4, 3, 4, 2, 3]": 0.0008163935230116222, "[0, 1, 2, 3, 4, 4, 3, 2, 3]": 0.0017988280565684755, "[0, 1, 2, 3, 3, 4, 4, 2, 3, 1, 2]": 0.0017156819238378957, "[0, 1, 2, 3, 4, 4, 5, 5, 3]": 0.0008651026942796869, "[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 3, 1, 2, 3, 2]": 0.0005781090991113682, "[0, 1, 2, 2, 3, 3, 1, 2, 2]": 0.004467119073217036, "[0, 1, 2, 3, 2, 3]": 0.001314519410150366, "[0, 1, 2, 3, 3, 4, 5, 6, 6, 2, 3, 3, 4, 5, 5, 4, 1, 2, 3, 3]": 0.000585681394451685, "[0, 1, 1, 2, 3, 4, 5, 6, 6, 5, 4]": 0.0009715180975724329, "[0, 1, 2, 2, 3, 4, 5, 5, 4, 1, 2, 2, 3, 4, 5, 5, 4]": 0.0007932550232944095, "[0, 1, 2, 3, 3, 2, 3, 1]": 0.0014252134171805206, "[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 3, 1, 2]": 0.0015543852944295978, "[0, 1, 2, 3, 1, 2, 2, 3, 3]": 0.0007332949951965819, "[0, 1, 2, 3, 3, 4, 5, 6, 2, 3, 3, 4, 4, 5, 6, 7, 7, 6, 5, 6, 7, 7, 6, 7, 8, 9, 10, 11, 12, 12, 11, 10, 9]": 0.0005811882682306805, "[0, 1, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6]": 0.00040850076472426764, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 3, 4, 5, 6, 7, 7, 6, 5, 6, 6]": 0.0007840651208520121, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.0013598453857569675, "[0, 1, 2, 2, 3, 4, 4, 3, 4, 4, 5, 1, 2, 3]": 0.0008440251489498395, "[0, 1, 1, 2, 3, 4, 5, 5, 6, 4, 5, 5, 6, 3, 4, 5, 6, 7, 8, 7, 6, 5, 4, 5, 5]": 0.0004550965119352653, "[0, 1, 2, 2, 3, 3, 1]": 0.003655617965590856, "[0, 1, 1, 2, 3, 4, 4]": 0.00508057733037718, "[0, 1, 2, 3, 3, 4, 4, 2, 1]": 0.0005403084638073727, "[0, 1, 2, 3, 4, 5, 5]": 0.004795021199638229, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 4, 2]": 0.0015249186947800463, "[0, 1, 2, 3, 4]": 0.006093032785470654, "[0, 1, 2, 3, 4, 5, 5, 4]": 0.004734951220678228, "[0, 1, 2, 3]": 0.004095868607417391, "[0, 1, 1, 2, 3, 4, 5, 6, 6, 5]": 0.0006974939927555487, "[0, 1, 2, 3, 4, 4]": 0.006312715684651196, "[0, 1, 2, 2, 1, 2, 3, 3, 2]": 0.0007025171789859428, "[0, 1, 2, 3, 4, 4, 2, 3, 1, 2, 2, 3, 4, 5, 5, 3, 4, 5, 5]": 0.0008440251489498395, "[0, 1, 2, 3, 4, 5, 6, 7, 8, 8]": 0.0004550965119352653, "[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 7, 8, 8, 7]": 0.0006917147719835494, "[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 7, 8, 9, 9, 8]": 0.0008348352465074422, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 2]": 0.0005781090991113682, "[0, 1, 1, 2, 3, 3]": 0.0006800899125168779, "[0, 1, 1, 2, 3]": 0.003371607469578355, "[0, 1, 2, 2, 3, 1, 2, 3]": 0.0008163935230116222, "[0, 1, 2, 3, 3, 4, 2, 3, 4, 3, 4, 5, 1, 2]": 0.0006318746422474679, "[0, 1, 2, 2, 3, 1, 2]": 0.0024692398996327683, "[0, 1, 2, 3, 2]": 0.001600933081977327, "[0, 1, 2, 3, 3, 2, 3, 1, 2, 2]": 0.002426042069317654, "[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3]": 0.0020045586947197093, "[0, 1, 2, 3, 3, 4, 4, 2]": 0.0030501810568288345, "[0, 1, 2, 3, 4, 4, 3, 2, 1, 2]": 0.0005761094662484059, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 3, 1, 2]": 0.0005258412647156035, "[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 2, 3, 3]": 0.001918762426459616, "[0, 1, 2, 3, 3, 2, 1, 2, 2, 3, 3]": 0.0024936197972796927, "[0, 1, 2, 1, 2, 2, 3, 3]": 0.0008947952746052696, "[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 2]": 0.003950130282365634, "[0, 1, 2, 3, 3, 4, 2, 3, 4, 5, 6, 6, 5, 6, 4, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 3]": 0.0006303769335071332, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 6, 6, 3, 2, 3]": 0.0008947952746052696, "[0, 1, 2, 2, 1, 2, 2, 3, 3, 4, 4]": 0.0016327870460232444, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3]": 0.0011391267990965715, "[0, 1, 2, 3, 3, 2, 3, 3, 4, 4, 1]": 0.0006640831460453321, "[0, 1, 2, 2, 3, 1, 2, 2, 3, 3]": 0.0008947952746052696, "[0, 1, 2, 3, 3, 2, 3]": 0.0007485933197544298, "[0, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 5, 5, 2, 1]": 0.0004550965119352653, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 3]": 0.0014252134171805206, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 3]": 0.00025398419660037006, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 1, 2, 3, 4, 4, 3, 2]": 0.0012129791588395059, "[0, 1, 2, 2, 3, 1, 2, 3, 3, 2, 3]": 0.0005811045165920378, "[0, 1, 2, 3, 3, 2, 3, 1, 2]": 0.0009101930238705306, "[0, 1, 2, 2, 3, 3, 1, 2]": 0.0010834815214592554, "[0, 1, 2, 3, 3, 2, 3, 4, 4, 3, 1]": 0.000737991771417975, "[0, 1, 2, 2, 3, 4, 4, 3, 1, 2, 2]": 0.0005072796428580375, "[0, 1, 2, 2, 3, 1, 2, 2, 3]": 0.0008348352465074422, "[0, 1, 2, 3, 4, 4, 3]": 0.007717516038823076, "[0, 1, 2, 3, 4, 4, 5, 5, 3, 2, 1]": 0.00019816576270445275, "[0, 1, 2, 3, 3, 2, 3, 3, 1]": 0.002448758955338605, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5, 3]": 0.0003228445137325257, "[0, 1, 2, 3, 3, 4, 4, 2, 3, 3, 1, 2]": 0.000662351393001418, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3]": 0.0006318746422474679, "[0, 1, 2, 2, 1, 2, 3, 3]": 0.0010154025131086015, "[0, 1, 2, 3, 4, 5, 5, 4, 5, 6, 6, 5, 3]": 0.0004570646992220903, "[0, 1, 2, 2, 1, 2, 3, 4]": 0.015945188672266887, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 6]": 0.0003425420482921399, "[0, 1, 2, 3, 4, 5]": 0.0004550965119352653, "[0, 1, 2, 2, 3, 4, 5, 6, 7, 3, 4, 4, 5, 5, 6, 6, 1, 2, 3, 4]": 0.0006303769335071332, "[0, 1, 2, 2, 3, 4, 5, 6, 1, 2, 2, 3, 3, 4, 4, 5, 6, 7, 8, 8, 9, 10, 7, 8, 8, 9, 10, 11, 12]": 0.0004550965119352653, "[0, 1, 2, 3, 4, 5, 5, 6, 4, 3, 2, 3, 4, 5, 6, 6, 7, 8, 9, 9, 8, 5, 6, 7, 8, 8, 7, 4, 5, 6, 7, 7, 6, 3, 4, 5, 6, 7, 8, 8, 7, 5, 6, 7, 8, 8, 7, 4, 5, 6, 7, 7, 6, 1, 2, 2, 3, 4, 4]": 0.0018679923008041858, "[0, 1, 2, 3, 4, 4, 5, 3, 2]": 0.0006088198941688978, "[0, 1, 2, 3, 2, 1]": 0.002633615698160379, "[0, 1, 2, 3, 3, 4, 5, 6, 6, 5, 4, 5, 6, 7, 7, 6, 2, 3, 3, 1, 2, 3, 4, 4]": 0.0013067355006207094, "[0, 1, 2, 2, 1, 2, 2, 3]": 0.001688050297899679, "[0, 1, 2, 3, 4, 4, 3, 4, 5, 5, 4, 5, 2, 3, 4, 4, 3, 4, 1, 2]": 0.0006303769335071332, "[0, 1, 2, 2, 3, 3, 1, 2, 3, 4]": 0.0006318746422474679, "[0, 1, 2, 2, 3, 3, 1, 2, 3]": 0.0008163935230116222, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 1, 2]": 0.0004550965119352653, "[0, 1, 2, 3, 3, 2, 3, 3]": 0.000484663186170057, "[0, 1, 1, 2, 2, 3]": 0.0018749571867942114, "[0, 1, 1, 2, 2, 3, 4, 5, 5, 4]": 0.0003271339899531415, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2]": 0.0025882267396995693, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 6, 6, 5]": 0.0003577306390688377, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3]": 0.0007607086574389246, "[0, 1, 2, 3, 3, 4, 4, 2, 3, 4, 5, 1, 2, 2, 3]": 0.0006318746422474679, "[0, 1, 2, 2, 1, 2, 3, 4, 4]": 0.0036436818576554494, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5]": 0.0005253393405929759, "[0, 1, 2, 3, 3, 4, 5, 2, 3, 3, 4, 4, 5, 5]": 0.0004565095172026074, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 5, 4, 3]": 0.0004841411431408248, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 5, 5, 4]": 0.0007148532717007623, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2, 2, 3, 4, 4]": 0.0007148532717007623, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2, 2, 3, 4]": 0.0005258412647156035, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 3, 1, 2, 3, 3, 2, 3, 3]": 0.0018679923008041858, "[0, 1, 2, 3, 3, 4, 4, 5, 5, 2]": 9.41297068279157e-05, "[0, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 2]": 0.0002765675142981, "[0, 1, 2, 2, 1, 2, 2, 3, 3]": 0.001362380778258026, "[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2]": 0.0008947952746052696, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 3]": 0.00011976401111080536, "[0, 1, 2, 1, 2]": 0.0036299512240765084, "[0, 1, 2, 3, 3, 4, 4]": 0.0004288778912643902, "[0, 1, 2, 3, 4, 4, 3, 4, 5, 2, 3, 4, 5, 5, 1, 2, 3, 4, 4, 3, 4, 5, 2, 3, 4, 5, 5]": 0.0005781090991113682, "[0, 1, 2, 1, 2, 3, 4, 4, 3, 4]": 0.0006303769335071332, "[0, 1, 2, 3, 2, 3, 3, 4, 5, 5, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 5]": 0.0005781090991113682, "[0, 1, 2, 1, 2, 3, 4, 4]": 0.0018911308005213992, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2, 3, 3, 4, 5, 6, 6, 5, 4, 2, 3, 4, 4, 5, 5, 6, 6, 7, 7, 3, 4, 4]": 0.0006470530684435699, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 4, 2, 3, 1, 2, 2, 3, 4, 5, 5, 4, 3]": 0.0006318746422474679, "[0, 1, 2, 2, 3, 4, 5, 6, 6, 5, 4, 1, 2, 2, 3, 3, 4]": 0.00047357343031983855, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 4]": 0.0005258412647156035, "[0, 1, 2, 3, 3, 1, 2]": 0.0006303769335071332, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 5, 4, 5, 1, 2]": 0.0004550965119352653, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 5, 4, 5, 1, 2, 3, 3]": 0.0004550965119352653, "[0, 1, 1, 2, 3, 4, 4, 3, 2]": 0.001220164372524246, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 4, 5, 5, 4]": 0.0005304181425752504, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 4, 5, 5, 6, 6, 4]": 0.0005258412647156035, "[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 6, 5, 6, 6]": 0.0006364515201071152, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6]": 0.0005258412647156035, "[0, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 7, 1, 2, 2, 3, 3, 4, 5, 5, 4, 5, 5, 6, 7, 8, 9]": 0.0006318746422474679, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 5, 6, 7, 1, 2, 2, 3, 3, 4, 5, 5, 4, 5, 6, 7, 7, 6, 5, 6, 7, 8, 9]": 0.0004550965119352653, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4]": 0.000631754743885722, "[0, 1, 1, 2, 3, 4]": 0.0009101930238705306, "[0, 1, 2, 2, 3, 1, 2, 3, 3]": 0.0008163935230116222, "[0, 1, 2, 2, 3, 1, 2, 3, 4, 5, 5, 4, 3, 4, 4]": 0.0005904035814419149, "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 8, 7, 6, 5, 4, 3]": 0.0005078348248775204, "[0, 1, 2, 3, 2, 3, 3, 4, 4, 1, 2, 2, 3]": 0.0006303769335071332, "[0, 1, 2, 3, 2, 3, 1, 2, 3, 2, 3]": 0.0004550965119352653, "[0, 1, 2, 2, 3, 1, 2, 3, 2, 3]": 0.0004550965119352653, "[0, 1, 2, 3, 4, 5, 6, 7, 8, 8, 9, 9, 7, 8, 8, 6, 5, 6, 6, 4, 5, 5, 3, 4]": 0.0006303769335071332, "[0, 1, 2, 3, 4, 5, 6, 7, 7, 8, 8, 6, 7, 7, 5, 6, 6, 4, 5, 5, 3, 4]": 0.0008163935230116222, "[0, 1, 2, 3, 4, 5, 6, 6]": 0.0009101930238705306, "[0, 1, 2, 1, 2, 3, 3, 4]": 0.0008947952746052696, "[0, 1, 1, 2, 3, 3, 2, 3]": 0.0018596588622363632, "[0, 1, 2, 2, 3, 3, 4, 4, 1, 2]": 0.0006303769335071332, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 4, 5, 5, 2, 3]": 0.0005456225509138603, "[0, 1, 2, 1]": 0.002273731692351364, "[0, 1, 2, 3, 4, 5, 6]": 0.0004550965119352653, "[0, 1, 1, 2, 3, 4, 5, 5]": 0.0008192077206061425, "[0, 1, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4]": 0.000585681394451685, "[0, 1, 2, 2, 3, 4, 4, 3, 4, 4, 5, 5, 1, 2, 3, 3, 2, 3, 3, 4, 4]": 0.0003975951177128601, "[0, 1, 1, 2, 3, 4, 4, 5]": 0.0008440251489498395, "[0, 1, 2, 2, 3, 4, 5, 5, 6, 1, 2]": 0.0005781090991113682, "[0, 1, 2, 3, 3, 2, 3, 4, 4, 3]": 0.00045201639098160307, "[0, 1, 1, 2, 3, 4, 5, 6, 6]": 0.0008440251489498395, "[0, 1, 2, 3, 4, 5, 6, 6, 1, 2, 2, 3, 3]": 0.0006088198941688978, "[0, 1, 2, 3, 4, 4, 1, 2]": 0.0006303769335071332, "[0, 1, 2, 2, 3, 4, 5, 5, 1, 2, 2, 3, 3, 4, 5, 6]": 0.000765623397356192, "[0, 1, 2, 2, 3, 1, 2, 2]": 0.0005580497685134677, "[0, 1, 1, 2, 3, 4, 4, 3, 4, 2, 3, 4, 3]": 0.000765623397356192, "[0, 1, 2, 2, 3, 1]": 0.0013744432915250902, "[0, 1, 2, 3, 4, 4, 5, 3, 2, 1, 2, 3]": 0.0007840651208520121, "[0, 1, 2, 3, 2, 3, 1]": 0.0008947952746052696, "[0, 1, 2, 2, 3, 4, 4, 1]": 0.0005580497685134677, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2]": 0.0008163935230116222, "[0, 1, 2, 3, 4, 4, 5, 5, 6, 6, 3, 4, 4, 2]": 0.0003273376399535301, "[0, 1, 2, 1, 2, 3, 3]": 0.001531246794712384, "[0, 1, 2, 3, 4, 5, 6, 6, 7, 7, 5, 6, 6, 7, 7, 4, 5, 5, 6, 6, 3, 4, 4, 2, 3, 3, 4, 4, 1, 2, 2, 3, 3]": 0.000765623397356192, "[0, 1, 1, 2, 2, 3, 4, 5, 5, 4, 3]": 0.0008947952746052696, "[0, 1, 2, 3, 3, 1, 2, 2, 3, 3]": 0.0006115812673459879, "[0, 1, 2, 3, 3, 4, 4, 2, 1, 2, 2, 3, 3]": 0.000765623397356192, "[0, 1, 2, 3, 3, 4, 4, 2, 3, 3, 4, 4, 5, 1, 2]": 0.0006318746422474679, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3]": 0.0007332949951965819, "[0, 1, 2, 2, 3]": 0.0037674188893038786, "[0, 1, 2, 3, 4, 5, 6, 6, 7, 7, 8, 8, 5, 4, 3, 2, 3]": 0.0004550965119352653, "[0, 1, 1, 2, 3, 4, 4, 3, 4, 5, 4, 5]": 0.0008947952746052696, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2]": 0.0006088198941688978, "[0, 1, 2, 3, 4, 4, 5, 6, 7, 8, 9, 9, 8, 7, 3, 4, 5, 6, 7, 7, 6, 5, 4, 5, 5]": 0.0008440251489498395, "[0, 1, 1, 2, 3, 3, 4, 4, 2, 3, 3, 4]": 0.00047357343031983855, "[0, 1, 2, 3, 3, 4, 5, 6, 2, 3, 3]": 0.0004288778912643902, "[0, 1, 2, 3, 4, 4, 1, 2, 3, 4, 5, 3, 4, 4, 5, 6, 7, 7, 6, 2, 3, 4, 5, 5, 4]": 0.000560811141690558, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 2, 3, 4, 4, 5, 5, 3]": 0.0005303343909366078, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 5, 6, 6, 5, 3, 1, 2, 3, 4, 4, 3, 2]": 0.0005811045165920378, "[0, 1, 2, 3, 1, 2, 3, 4, 4]": 0.000737991771417975, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 2]": 0.0005304181425752504, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2, 3]": 0.0004550965119352653, "[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 4, 1, 2, 2, 3, 3, 4, 5, 6]": 0.0008163935230116222, "[0, 1, 2, 3, 3, 2, 3, 4, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4]": 0.0006318746422474679, "[0, 1, 2, 3, 3, 4, 2, 1, 2, 2]": 0.0036113058505802993, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2, 3, 3, 4]": 0.001351304791807878, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 5, 6, 6, 5, 2]": 0.0006640831460453321, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 3]": 0.0003726997622832343, "[0, 1, 2, 3, 4, 5, 5, 4, 1, 2, 2]": 0.0006825248695411522, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 5, 6, 7, 3, 4, 4, 5, 5, 6, 7, 8, 9, 10, 11]": 0.0005811045165920378, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 5, 6]": 0.0004550965119352653, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 5, 2, 3, 4, 5, 5, 1, 2, 3, 4, 4, 3, 2, 3, 4]": 0.0005258412647156035, "[0, 1, 2, 3, 4, 4, 3, 4, 5, 5, 2]": 0.0005100410160351278, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6, 5]": 0.0002666135603339398, "[0, 1, 2, 2, 3, 3, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3]": 0.0009471468606396771, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4]": 0.0019828415719977247, "[0, 1, 2, 2, 3, 1, 2, 3, 4, 5, 5]": 0.0005901745206726893, "[0, 1, 2, 2, 3, 1, 2, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4]": 0.0008163935230116222, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 3]": 0.0014804766690569538, "[0, 1, 2, 3, 3, 2, 3, 4, 4, 1, 2, 3, 3]": 0.0005072796428580375, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 2]": 0.0006640831460453321, "[0, 1, 2, 3, 4, 5, 6, 7, 8, 8, 7, 6, 5, 4, 3, 2, 3, 1, 2, 3, 4, 5, 5, 4, 3, 2]": 0.0005781090991113682, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4]": 0.0007424848976389793, "[0, 1, 1, 2, 3, 4, 4, 5, 3, 4, 5, 5, 2]": 0.0007932550232944095, "[0, 1, 2, 2, 3, 3, 4, 4, 1, 2, 3, 3]": 0.0006470530684435699, "[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 4]": 0.0006595900198243278, "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 8, 7, 8, 8, 9, 9, 6, 7, 7, 5, 4]": 0.00040124626532617305, "[0, 1, 2, 3, 4, 4, 3, 4, 2]": 0.000737991771417975, "[0, 1, 1, 2, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4]": 0.0007148532717007623, "[0, 1, 2, 3, 4, 5, 6, 7, 8, 7, 6, 5, 4, 3, 4, 4, 2, 3, 4, 5, 1, 2, 3, 4, 4, 2, 3, 4]": 0.0003975951177128601, "[0, 1, 2, 3, 4, 5, 4, 3, 2]": 0.0005258412647156035, "[0, 1, 2, 3, 4, 5, 4, 3, 4, 2]": 0.0004550965119352653, "[0, 1, 1, 2, 2, 3, 4, 5, 6, 7, 7]": 0.001565461280879746, "[0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 1, 2]": 0.000585681394451685, "[0, 1, 2, 3, 4, 4, 3, 4, 4]": 0.000560811141690558, "[0, 1, 2, 3, 3, 4, 2, 3, 4, 4, 3, 1, 2, 3, 3, 2]": 0.0004550965119352653}, "features": {"constants": 0.46358084069773686, "variables": 0.5364191593022631}, "functions": {"cubed": 0.14921124330476984, "squared": 0.7138540988220661, "exp": 0.0009866907458214158, "sqrt": 0.08894571888805046, "abs": 0.0009866907458214158, "cos": 0.022280539917401285, "sin": 0.01886483077266418, "cosh": 0.0027120924185183685, "tanh": 1.587055873340241e-05, "sinh": 0.0011555330803322886, "log": 0.0009866907458214158}, "operators": {"*": 0.6409819824585885, "/": 0.0692640132429371, "^": 0.05885149775732697, "-": 0.13813106053897634, "+": 0.09277144600217119}, "function_conditionals": {"cubed": {"features": {"constants": 0.1941176470588235, "variables": 0.8058823529411765}, "functions": {"squared": 0.6513647388059702, "cubed": 0.3486352611940299}, "operators": {"*": 0.8042886527164189, "-": 0.13793995342351414, "+": 0.042215145583636655, "/": 0.015556248276430106}}, "squared": {"features": {"constants": 0.5387755102040817, "variables": 0.4612244897959184}, "functions": {"squared": 0.8817723850239167, "cubed": 0.11044471227100489, "abs": 0.006976365731807302, "sin": 0.0008065369732712583}, "operators": {"/": 0.010539643932640654, "*": 0.7019901678095036, "-": 0.1959755727877388, "+": 0.09149461547011697}}, "exp": {"features": {"constants": 0.0, "variables": 1.0}, "functions": {"squared": 0.802600963935516, "cubed": 0.197399036064484}, "operators": {"/": 0.5382467895030708, "-": 0.24489112227805698, "*": 0.1000558347292016, "+": 0.11680625348967057}}, "sqrt": {"features": {"constants": 0.9993332752278501, "variables": 0.0006667247721499679}, "functions": {"squared": 0.997648443519569, "abs": 0.0023515564804309913}, "operators": {"*": 0.5784501348904902, "/": 0.08537480920095133, "+": 0.24888515672145115, "-": 0.0872898991871073}}, "abs": {"features": {"constants": 0.5499999999999999, "variables": 0.4500000000000001}, "functions": {}, "operators": {"/": 0.8456768249468464, "*": 0.15432317505315368}}, "cos": {"features": {"constants": 0.9993332814115465, "variables": 0.0006667185884533662}, "functions": {}, "operators": {"+": 0.3353712948894196, "-": 0.45069376033126846, "*": 0.21393494477931202}}, "sin": {"features": {"constants": 0.9992672040503631, "variables": 0.000732795949636933}, "functions": {"squared": 1.0}, "operators": {"-": 0.35014662081179887, "+": 0.6017851980746625, "/": 0.04806818111353865}}, "cosh": {"features": {"constants": 1.0, "variables": 0.0}, "functions": {}, "operators": {"*": 1.0}}, "tanh": {"features": {"constants": 1.0, "variables": 0.0}, "functions": {}, "operators": {"*": 1.0}}, "sinh": {"features": {"constants": 0.9545454545454546, "variables": 0.04545454545454546}, "functions": {}, "operators": {}}, "log": {"features": {"constants": 0.0, "variables": 1.0}, "functions": {}, "operators": {"^": 1.0}}}, "operator_conditionals": {"*": {"features": {"constants": 0.38590023061726514, "variables": 0.6140997693827349}, "functions": {"exp": 0.003959382973193769, "sqrt": 0.6490048756657717, "squared": 0.06908298399135777, "abs": 0.0009416898474603168, "cos": 0.1270415512589031, "sin": 0.1357947465802452, "cubed": 0.006370195004319179, "tanh": 0.00318458869661701, "cosh": 0.003678296134671744, "log": 0.0009416898474603168}, "operators": {"^": 0.17036015837283142, "*": 0.6350345934516782, "-": 0.15555912846869255, "+": 0.03663137967314808, "/": 0.0024147400336496827}}, "/": {"features": {"constants": 0.6014238081567458, "variables": 0.39857619184325416}, "functions": {"sqrt": 0.6508536980093867, "squared": 0.3097386308464153, "exp": 0.003135620650590698, "log": 0.03627205049360738}, "operators": {"*": 0.6444900489203303, "^": 0.14130622793166359, "-": 0.19101947730250687, "+": 0.023184245845499166}}, "^": {"features": {"constants": 0.37300222520755477, "variables": 0.6269977747924452}, "functions": {"exp": 0.03289007161514565, "squared": 0.8206102697773539, "cubed": 0.14649965860750047}, "operators": {"-": 0.286300621494364, "/": 0.24971750978094107, "+": 0.0009589001587148849, "*": 0.46206406840726505, "^": 0.0009589001587148849}}, "-": {"features": {"constants": 0.835727247469027, "variables": 0.16427275253097304}, "functions": {"exp": 0.0009660452272441601, "sin": 0.377532710122936, "sqrt": 0.4749442952794016, "tanh": 0.12467474533596475, "squared": 0.021882204034453664}, "operators": {"^": 0.12760449401331583, "+": 0.2571483266441882, "*": 0.5370209058849575, "/": 0.0772377532267214, "-": 0.0009885202308169863}}, "+": {"features": {"constants": 0.42221067670792817, "variables": 0.5777893232920718}, "functions": {"squared": 0.10133100733401827, "sqrt": 0.34692652758140147, "cos": 0.3674460120640023, "exp": 0.01432981720900428, "sin": 0.07455573752148836, "tanh": 0.09541089829008535}, "operators": {"^": 0.04009859902346872, "+": 0.1461016486769288, "*": 0.7120481893710094, "-": 0.04746661674526358, "/": 0.05428494618332942}}}, "operators_and_functions": {"*": 0.4532333645735708, "/": 0.03917525773195876, "^": 0.08772258669165886, "-": 0.08641049671977508, "+": 0.057919400187441426, "cubed": 0.04386129334582943, "squared": 0.19400187441424555, "exp": 0.003561387066541706, "sqrt": 0.017994376757263356, "abs": 0.0022492970946579195, "cos": 0.005435801312089972, "sin": 0.006185567010309278, "cosh": 0.0005623242736644799, "tanh": 0.0007497656982193065, "sinh": 0.00018744142455482662, "log": 0.0007497656982193065}}, "{'features': {'constants': 0.34810126582278483, 'variables': 0.6518987341772152}, 'function_conditionals': {'abs': {'features': {'constants': 0.2222222222222222, 'variables': 0.7777777777777778}, 'functions': {}, 'operators': {'*': 0.5, '/': 0.5}}, 'cos': {'features': {'constants': 0.8947368421052632, 'variables': 0.10526315789473684}, 'functions': {}, 'operators': {'*': 0.22222222222222218, '+': 0.3333333333333333, '-': 0.44444444444444436}}, 'cosh': {'features': {'constants': 1.0, 'variables': 0.0}, 'functions': {}, 'operators': {'*': 1.0}}, 'cubed': {'features': {'constants': 0.0784313725490196, 'variables': 0.9215686274509803}, 'functions': {'cubed': 0.3541666666666667, 'squared': 0.6458333333333334}, 'operators': {'*': 0.8571428571428572, '+': 0.030075187969924814, '-': 0.09774436090225565, '/': 0.015037593984962407}}, 'exp': {'features': {'constants': 0.0, 'variables': 1.0}, 'functions': {'cubed': 0.25, 'squared': 0.75}, 'operators': {'*': 0.1, '+': 0.1, '-': 0.2, '/': 0.6}}, 'log': {'features': {'constants': 0.0, 'variables': 1.0}, 'functions': {}, 'operators': {'^': 1.0}}, 'sin': {'features': {'constants': 0.9090909090909091, 'variables': 0.09090909090909091}, 'functions': {'squared': 1.0}, 'operators': {'+': 0.5333333333333333, '-': 0.3333333333333333, '/': 0.13333333333333333}}, 'sinh': {'features': {'constants': 1.0, 'variables': 0.0}, 'functions': {}, 'operators': {}}, 'sqrt': {'features': {'constants': 0.8837209302325582, 'variables': 0.11627906976744186}, 'functions': {'abs': 0.027777777777777776, 'squared': 0.9722222222222222}, 'operators': {'*': 0.6153846153846154, '+': 0.23076923076923078, '-': 0.07692307692307693, '/': 0.07692307692307693}}, 'squared': {'features': {'constants': 0.21768707482993196, 'variables': 0.782312925170068}, 'functions': {'abs': 0.00946372239747634, 'cubed': 0.14195583596214512, 'sin': 0.0031545741324921135, 'squared': 0.8454258675078864}, 'operators': {'*': 0.7804295942720764, '+': 0.06921241050119331, '-': 0.13842482100238662, '/': 0.011933174224343675}}, 'tanh': {'features': {'constants': 1.0, 'variables': 0.0}, 'functions': {}, 'operators': {'*': 1.0}}}, 'functions': {'abs': 0.00816326530612245, 'cos': 0.019727891156462583, 'cosh': 0.0020408163265306124, 'cubed': 0.15918367346938775, 'exp': 0.01292517006802721, 'log': 0.0027210884353741495, 'sin': 0.022448979591836733, 'sinh': 0.0006802721088435374, 'sqrt': 0.0653061224489796, 'squared': 0.7040816326530612, 'tanh': 0.0027210884353741495}, 'max_num_variables': 100, 'operator_conditionals': {'*': {'features': {'constants': 0.3047890897557881, 'variables': 0.6952109102442119}, 'functions': {'abs': 0.02976190476190476, 'cos': 0.10714285714285714, 'cosh': 0.005952380952380952, 'cubed': 0.047619047619047616, 'exp': 0.047619047619047616, 'log': 0.011904761904761904, 'sin': 0.11904761904761904, 'sqrt': 0.4166666666666667, 'squared': 0.20833333333333334, 'tanh': 0.005952380952380952}, 'operators': {'*': 0.6206373292867983, '+': 0.03641881638846738, '-': 0.12518968133535663, '/': 0.0015174506828528076, '^': 0.21623672230652508}}, '+': {'features': {'constants': 0.3367003367003367, 'variables': 0.6632996632996633}, 'functions': {'cos': 0.28571428571428575, 'exp': 0.07142857142857144, 'sin': 0.07142857142857144, 'sqrt': 0.2142857142857143, 'squared': 0.28571428571428575, 'tanh': 0.07142857142857144}, 'operators': {'*': 0.7216117216117216, '+': 0.11721611721611722, '-': 0.03663003663003663, '/': 0.06227106227106227, '^': 0.06227106227106227}}, '-': {'features': {'constants': 0.6133682830930537, 'variables': 0.38663171690694625}, 'functions': {'exp': 0.07142857142857142, 'sin': 0.35714285714285715, 'sqrt': 0.2857142857142857, 'squared': 0.14285714285714285, 'tanh': 0.14285714285714285}, 'operators': {'*': 0.5523809523809524, '+': 0.2, '-': 0.01904761904761905, '/': 0.08571428571428572, '^': 0.14285714285714285}}, '/': {'features': {'constants': 0.4734982332155477, 'variables': 0.5265017667844523}, 'functions': {'exp': 0.05555555555555555, 'log': 0.1111111111111111, 'sqrt': 0.3888888888888889, 'squared': 0.4444444444444444}, 'operators': {'*': 0.6216216216216216, '+': 0.018018018018018018, '-': 0.16216216216216217, '^': 0.1981981981981982}}, '^': {'features': {'constants': 0.37468030690537085, 'variables': 0.6253196930946292}, 'functions': {'cubed': 0.19047619047619047, 'exp': 0.047619047619047616, 'squared': 0.7619047619047619}, 'operators': {'*': 0.4330708661417323, '+': 0.03937007874015748, '-': 0.30708661417322836, '/': 0.2125984251968504, '^': 0.007874015748031496}}}, 'operators': {'*': 0.625614489003881, '+': 0.07994825355756792, '-': 0.11927554980595084, '/': 0.05407503234152652, '^': 0.12108667529107374}, 'operators_and_functions': {'*': 0.4532333645735708, '+': 0.057919400187441426, '-': 0.08641049671977508, '/': 0.03917525773195876, '^': 0.08772258669165886, 'abs': 0.0022492970946579195, 'cos': 0.005435801312089972, 'cosh': 0.0005623242736644799, 'cubed': 0.04386129334582943, 'exp': 0.003561387066541706, 'log': 0.0007497656982193065, 'sin': 0.006185567010309278, 'sinh': 0.00018744142455482662, 'sqrt': 0.017994376757263356, 'squared': 0.19400187441424555, 'tanh': 0.0007497656982193065}, 'structures': {'[0, 1, 1, 2, 2, 3, 3]': 0.004329004329004347, '[0, 1, 1, 2, 2, 3, 4, 5, 5, 4, 3]': 0.0005411255411255434, '[0, 1, 1, 2, 2, 3, 4, 5, 5, 4]': 0.0005411255411255434, '[0, 1, 1, 2, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4]': 0.0005411255411255434, '[0, 1, 1, 2, 2, 3, 4, 5, 6, 7, 7]': 0.0010822510822510868, '[0, 1, 1, 2, 2, 3]': 0.0010822510822510868, '[0, 1, 1, 2, 2]': 0.0449134199134201, '[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 6, 5, 6, 6]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 7, 8, 8, 7]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 7, 8, 9, 9, 8]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 3, 2, 3, 3]': 0.0010822510822510868, '[0, 1, 1, 2, 3, 3, 2, 3]': 0.0010822510822510868, '[0, 1, 1, 2, 3, 3, 2]': 0.006493506493506522, '[0, 1, 1, 2, 3, 3, 4, 4, 2, 3, 3, 4]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 3]': 0.005411255411255434, '[0, 1, 1, 2, 3, 4, 4, 3, 2]': 0.0016233766233766304, '[0, 1, 1, 2, 3, 4, 4, 3, 4, 2, 3, 4, 3]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 4, 4, 3, 4, 5, 4, 5]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 4, 4, 3]': 0.002705627705627717, '[0, 1, 1, 2, 3, 4, 4, 5, 3, 4, 5, 5, 2]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 4, 4, 5]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 4, 4]': 0.004329004329004347, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 2]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 3, 4, 5, 6, 7, 7, 6, 5, 6, 6]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 3]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 3]': 0.0010822510822510868, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 4, 5, 5, 6, 4, 5, 5, 6, 3, 4, 5, 6, 7, 8, 7, 6, 5, 4, 5, 5]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 4, 5, 5]': 0.0010822510822510868, '[0, 1, 1, 2, 3, 4, 5, 6, 6, 5, 4]': 0.0010822510822510868, '[0, 1, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 4, 5, 6, 6, 5]': 0.0010822510822510868, '[0, 1, 1, 2, 3, 4, 5, 6, 6]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 4]': 0.0010822510822510868, '[0, 1, 1, 2, 3]': 0.0021645021645021736, '[0, 1, 1, 2]': 0.03192640692640707, '[0, 1, 1]': 0.286796536796538, '[0, 1, 2, 1, 2, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 1, 2, 3, 3, 4]': 0.0005411255411255434, '[0, 1, 2, 1, 2, 3, 3]': 0.0010822510822510868, '[0, 1, 2, 1, 2, 3, 4, 4, 3, 4, 4, 5]': 0.0005411255411255434, '[0, 1, 2, 1, 2, 3, 4, 4, 3, 4]': 0.0005411255411255434, '[0, 1, 2, 1, 2, 3, 4, 4]': 0.0016233766233766304, '[0, 1, 2, 1, 2, 3, 4, 5, 5, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2]': 0.0005411255411255434, '[0, 1, 2, 1, 2, 3]': 0.0016233766233766304, '[0, 1, 2, 1, 2]': 0.0021645021645021736, '[0, 1, 2, 1]': 0.0016233766233766304, '[0, 1, 2, 2, 1, 2, 2, 3, 3, 4, 4]': 0.0010822510822510868, '[0, 1, 2, 2, 1, 2, 2, 3, 3]': 0.0010822510822510868, '[0, 1, 2, 2, 1, 2, 2, 3]': 0.0010822510822510868, '[0, 1, 2, 2, 1, 2, 2]': 0.010281385281385325, '[0, 1, 2, 2, 1, 2, 3, 3, 2]': 0.002705627705627717, '[0, 1, 2, 2, 1, 2, 3, 3, 4, 4, 5, 5, 2]': 0.0005411255411255434, '[0, 1, 2, 2, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5, 2]': 0.0021645021645021736, '[0, 1, 2, 2, 1, 2, 3, 3]': 0.0016233766233766304, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 4]': 0.0005411255411255434, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 3]': 0.0010822510822510868, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 5, 5, 6, 6, 3, 2]': 0.0005411255411255434, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 5, 6, 7, 3, 4, 4, 5, 5, 6, 7, 8, 9, 10, 11]': 0.0005411255411255434, '[0, 1, 2, 2, 1, 2, 3, 4, 4]': 0.002705627705627717, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 3]': 0.0010822510822510868, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 2, 3, 4, 4, 5, 5, 3]': 0.0005411255411255434, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 6, 6, 3, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4]': 0.0005411255411255434, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 6, 6, 4, 3, 4, 4, 5, 5, 2, 3, 4, 5, 6, 6, 7, 7, 8, 8, 5, 4, 3, 4, 4, 5, 5]': 0.0005411255411255434, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5]': 0.0005411255411255434, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 2]': 0.0005411255411255434, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6, 5]': 0.0005411255411255434, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6]': 0.0005411255411255434, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4]': 0.0021645021645021736, '[0, 1, 2, 2, 1, 2, 3, 4]': 0.008658008658008694, '[0, 1, 2, 2, 1, 2, 3]': 0.0021645021645021736, '[0, 1, 2, 2, 1, 2]': 0.0162337662337663, '[0, 1, 2, 2, 1]': 0.07034632034632064, '[0, 1, 2, 2, 3, 1, 2, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 1, 2, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 1, 2, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 1, 2, 2]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 1, 2, 3, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 1, 2, 3, 3, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 1, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 1, 2, 3, 4, 5, 5, 4, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 1, 2, 3, 4, 5, 5]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 1, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 1, 2]': 0.0021645021645021736, '[0, 1, 2, 2, 3, 1]': 0.0010822510822510868, '[0, 1, 2, 2, 3, 3, 1, 2, 2]': 0.003246753246753261, '[0, 1, 2, 2, 3, 3, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3]': 0.0010822510822510868, '[0, 1, 2, 2, 3, 3, 1, 2, 3, 4]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 3, 1, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 3, 1, 2]': 0.0010822510822510868, '[0, 1, 2, 2, 3, 3, 1]': 0.004870129870129891, '[0, 1, 2, 2, 3, 3, 4, 1, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 3, 4, 4, 1, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 3, 4, 4, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 3]': 0.0016233766233766304, '[0, 1, 2, 2, 3, 4, 4, 1]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 4, 4, 3, 1, 2, 2]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 4, 4, 3, 1, 2, 3, 3]': 0.0021645021645021736, '[0, 1, 2, 2, 3, 4, 4, 3, 4, 4, 5, 1, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 4, 4, 3, 4, 4, 5, 5, 1, 2, 3, 3, 2, 3, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 4, 5, 5, 1, 2, 2, 3, 3, 4, 5, 6]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 4, 5, 5, 4, 1, 2, 2, 3, 4, 5, 5, 4]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 4, 5, 5, 6, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 4, 5, 6, 1, 2, 2, 3, 3, 4, 4, 5, 6, 7, 8, 8, 9, 10, 7, 8, 8, 9, 10, 11, 12]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 4, 5, 6, 6, 5, 4, 1, 2, 2, 3, 3, 4]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 4, 5, 6, 7, 3, 4, 4, 5, 5, 6, 6, 1, 2, 3, 4]': 0.0005411255411255434, '[0, 1, 2, 2, 3]': 0.0021645021645021736, '[0, 1, 2, 2]': 0.1098484848484853, '[0, 1, 2, 3, 1, 2, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 1, 2, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 2, 1]': 0.0016233766233766304, '[0, 1, 2, 3, 2, 3, 1, 2, 3, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 2, 3, 1]': 0.0005411255411255434, '[0, 1, 2, 3, 2, 3, 3, 4, 4, 1, 2, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 2, 3, 3, 4, 5, 5, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 5]': 0.0005411255411255434, '[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 5, 6, 4, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 2, 3]': 0.0010822510822510868, '[0, 1, 2, 3, 2]': 0.0010822510822510868, '[0, 1, 2, 3, 3, 1, 2, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 1, 2, 2, 3, 3]': 0.0016233766233766304, '[0, 1, 2, 3, 3, 2, 1, 2, 2]': 0.005411255411255434, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 4, 5, 5, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 4, 5, 5, 6, 6, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 5, 6, 6, 5, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 5, 6]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 1, 2]': 0.005952380952380978, '[0, 1, 2, 3, 3, 2, 1]': 0.012987012987013043, '[0, 1, 2, 3, 3, 2, 3, 1, 2, 2]': 0.0016233766233766304, '[0, 1, 2, 3, 3, 2, 3, 1, 2]': 0.0010822510822510868, '[0, 1, 2, 3, 3, 2, 3, 1]': 0.0010822510822510868, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2, 3, 3, 4]': 0.0010822510822510868, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2]': 0.004329004329004347, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 3, 1]': 0.0021645021645021736, '[0, 1, 2, 3, 3, 2, 3, 3, 4, 4, 1]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 7, 1, 2, 2, 3, 3, 4, 5, 5, 4, 5, 5, 6, 7, 8, 9]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 3]': 0.0010822510822510868, '[0, 1, 2, 3, 3, 2, 3, 4, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 4, 4, 1, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 4, 4, 3, 1, 2, 3, 3]': 0.0010822510822510868, '[0, 1, 2, 3, 3, 2, 3, 4, 4, 3, 1]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 4, 4, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 5, 4, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 5, 4, 5, 1, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 5, 4, 5, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 5, 6, 7, 1, 2, 2, 3, 3, 4, 5, 5, 4, 5, 6, 7, 7, 6, 5, 6, 7, 8, 9]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 6]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2]': 0.05140692640692662, '[0, 1, 2, 3, 3, 4, 2, 1, 2, 2]': 0.0021645021645021736, '[0, 1, 2, 3, 3, 4, 2, 3, 4, 3, 4, 5, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 4, 2, 3, 4, 4, 3, 1, 2, 3, 3, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 4, 2, 3, 4, 5, 6, 6, 5, 6, 4, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 4, 2]': 0.0016233766233766304, '[0, 1, 2, 3, 3, 4, 4, 2, 1, 2, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 4, 4, 2, 1]': 0.0010822510822510868, '[0, 1, 2, 3, 3, 4, 4, 2, 3, 1, 2]': 0.0010822510822510868, '[0, 1, 2, 3, 3, 4, 4, 2, 3, 3, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 4, 4, 2, 3, 3, 4, 4, 1]': 0.0010822510822510868, '[0, 1, 2, 3, 3, 4, 4, 2, 3, 3, 4, 4, 5, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 4, 4, 2, 3, 4, 5, 1, 2, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 4, 4, 2]': 0.004870129870129891, '[0, 1, 2, 3, 3, 4, 4, 5, 5, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 4, 5, 2, 3, 3, 4, 4, 5, 5]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 4, 5, 6, 2, 3, 3, 4, 4, 5, 6, 7, 7, 6, 5, 6, 7, 7, 6, 7, 8, 9, 10, 11, 12, 12, 11, 10, 9]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 4, 5, 6, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 4, 5, 6, 6, 2, 3, 3, 4, 5, 5, 4, 1, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 4, 5, 6, 6, 5, 4, 5, 6, 7, 7, 6, 2, 3, 3, 1, 2, 3, 4, 4]': 0.0010822510822510868, '[0, 1, 2, 3, 3]': 0.01839826839826848, '[0, 1, 2, 3, 4, 4, 1, 2, 3, 4, 5, 3, 4, 4, 5, 6, 7, 7, 6, 2, 3, 4, 5, 5, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 2, 3, 1, 2, 2, 3, 4, 5, 5, 3, 4, 5, 5]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 2, 3, 3]': 0.0010822510822510868, '[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 2]': 0.003246753246753261, '[0, 1, 2, 3, 4, 4, 3, 2, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 2, 1]': 0.0021645021645021736, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 3, 1, 2, 3, 3, 2, 3, 3]': 0.0010822510822510868, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 3, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 3, 1]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.0016233766233766304, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 1, 2, 3, 4, 4, 3, 2]': 0.0010822510822510868, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 5, 6, 6, 5, 3, 1, 2, 3, 4, 4, 3, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 2, 3]': 0.0016233766233766304, '[0, 1, 2, 3, 4, 4, 3, 2]': 0.013528138528138585, '[0, 1, 2, 3, 4, 4, 3, 4, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 4, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 3, 1, 2, 3, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 3, 1, 2]': 0.0010822510822510868, '[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 4, 1, 2, 2, 3, 3, 4, 5, 6]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 4, 4, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 4, 4, 2]': 0.004329004329004347, '[0, 1, 2, 3, 4, 4, 3, 4, 4, 5, 5, 2, 3, 4, 4, 3, 4, 4, 5, 5, 1, 2, 3, 3, 2, 3, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 4, 5, 2, 3, 4, 5, 5, 1, 2, 3, 4, 4, 3, 4, 5, 2, 3, 4, 5, 5]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 4, 5, 5, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 4, 5, 5, 4, 5, 2, 3, 4, 4, 3, 4, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3]': 0.00919913419913424, '[0, 1, 2, 3, 4, 4, 5, 3, 2, 1, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 5, 3, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 5, 5, 3, 2, 1]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 5, 5, 2, 1]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 5, 5, 3]': 0.0010822510822510868, '[0, 1, 2, 3, 4, 4, 5, 5, 6, 3, 4, 5, 6, 6, 5, 6, 4, 5, 6, 6, 2, 3, 4, 5, 6, 6, 5, 6, 4, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 5, 5, 6, 6, 3, 4, 4, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 5, 5, 6, 7, 8, 8, 7, 6, 3, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 5, 6, 7, 8, 9, 9, 8, 7, 3, 4, 5, 6, 7, 7, 6, 5, 4, 5, 5]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4]': 0.008658008658008694, '[0, 1, 2, 3, 4, 5, 4, 3, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 4, 3, 4, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 5, 4, 1, 2, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2, 2, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2, 2, 3, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2, 3, 3, 4, 5, 6, 6, 5, 4, 2, 3, 4, 4, 5, 5, 6, 6, 7, 7, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3]': 0.0010822510822510868, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2]': 0.003246753246753261, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 4, 2]': 0.0021645021645021736, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 5, 2, 3, 4, 5, 5, 1, 2, 3, 4, 4, 3, 2, 3, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 5, 4, 3]': 0.004870129870129891, '[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3]': 0.0016233766233766304, '[0, 1, 2, 3, 4, 5, 5, 4, 5, 6, 6, 5, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 5, 4]': 0.005411255411255434, '[0, 1, 2, 3, 4, 5, 5, 6, 4, 3, 2, 3, 4, 5, 6, 6, 7, 8, 9, 9, 8, 5, 6, 7, 8, 8, 7, 4, 5, 6, 7, 7, 6, 3, 4, 5, 6, 7, 8, 8, 7, 5, 6, 7, 8, 8, 7, 4, 5, 6, 7, 7, 6, 1, 2, 2, 3, 4, 4]': 0.0010822510822510868, '[0, 1, 2, 3, 4, 5, 5]': 0.003787878787878804, '[0, 1, 2, 3, 4, 5, 6, 6, 1, 2, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 2, 3, 3, 4, 4, 1, 2, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 4, 2, 3, 1, 2, 2, 3, 4, 5, 5, 4, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 4, 5, 5, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3]': 0.0010822510822510868, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 6, 6, 5]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 3, 4, 4, 5, 5, 2, 1, 2, 2, 3, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 5, 5, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 6, 7, 7, 5, 6, 6, 7, 7, 4, 5, 5, 6, 6, 3, 4, 4, 2, 3, 3, 4, 4, 1, 2, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 6, 7, 7, 8, 8, 5, 4, 3, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 6]': 0.0010822510822510868, '[0, 1, 2, 3, 4, 5, 6, 7, 7, 6, 7, 7, 5]': 0.0010822510822510868, '[0, 1, 2, 3, 4, 5, 6, 7, 7, 8, 8, 6, 7, 7, 5, 6, 6, 4, 5, 5, 3, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 7, 8, 7, 6, 5, 4, 3, 4, 4, 2, 3, 4, 5, 1, 2, 3, 4, 4, 2, 3, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 7, 8, 8, 7, 6, 5, 4, 3, 2, 3, 1, 2, 3, 4, 5, 5, 4, 3, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 7, 8, 8, 9, 9, 7, 8, 8, 6, 5, 6, 6, 4, 5, 5, 3, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 7, 8, 8]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 8, 7, 6, 5, 4, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 8, 7, 8, 8, 9, 9, 6, 7, 7, 5, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5]': 0.0005411255411255434, '[0, 1, 2, 3, 4]': 0.004870129870129891, '[0, 1, 2, 3]': 0.004870129870129891, '[0, 1, 2]': 0.03463203463203478}}": {"structures": {"[0, 1, 1]": 0.07891205978241306, "[0, 1, 1, 2, 2, 3, 3]": 0.007704558158444097, "[0, 1, 2, 2, 1, 2]": 0.03746312106245314, "[0, 1, 1, 2, 2]": 0.05552340531236816, "[0, 1, 2, 3, 3, 2, 1, 2, 2]": 0.007234797820868571, "[0, 1, 2, 2]": 0.06985264979689815, "[0, 1, 2, 2, 1]": 0.017040540579643937, "[0, 1, 2, 2, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5, 2]": 0.006042589496231798, "[0, 1, 1, 2]": 0.07021907310117172, "[0, 1, 1, 2, 3, 3, 2]": 0.0018640233713067078, "[0, 1, 2, 1, 2, 3, 4, 5, 5, 3, 4, 4]": 0.0008480376362766235, "[0, 1, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2]": 0.001547560584995919, "[0, 1, 1, 2, 3, 3, 2, 3, 3]": 0.0009127938800248493, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2]": 0.0011990378714181904, "[0, 1, 2, 2, 3, 4, 4, 3, 1, 2, 3, 3]": 0.003677880189263579, "[0, 1, 2, 3, 3, 2, 3, 4, 4, 3, 1, 2, 3, 3]": 0.002396748585077716, "[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 5, 6, 4, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 3]": 0.0005609265213025427, "[0, 1, 2, 3, 4, 4, 5, 5, 6, 3, 4, 5, 6, 6, 5, 6, 4, 5, 6, 6, 2, 3, 4, 5, 6, 6, 5, 6, 4, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 3]": 0.0005609265213025427, "[0, 1, 2, 2, 1, 2, 3, 3, 4, 4, 5, 5, 2]": 0.0014970113280997899, "[0, 1, 2, 3, 4, 4, 3, 2, 1]": 0.0010109851379225803, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 5, 5, 6, 6, 3, 2]": 0.0009043988136411406, "[0, 1, 2, 2, 3, 3]": 0.0010109851379225803, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 2]": 0.0014970113280997899, "[0, 1, 2, 2, 3, 3, 4, 1, 2, 3, 3]": 0.0010163538807567236, "[0, 1, 2]": 0.11639862167602023, "[0, 1, 2, 3, 4, 4, 3, 2]": 0.0077534653776549995, "[0, 1, 2, 1, 2, 3, 4, 4, 3, 4, 4, 5]": 0.0007377305608171045, "[0, 1, 2, 2, 1, 2, 3]": 0.006029725701762589, "[0, 1, 2, 3, 3]": 0.01605876215229702, "[0, 1, 2, 3, 3, 4, 2]": 0.0038276925462948377, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4]": 0.0006962130716347436, "[0, 1, 2, 3, 3, 2, 1, 2]": 0.01509892096782445, "[0, 1, 2, 2, 1, 2, 2]": 0.0010109851379225803, "[0, 1, 1, 2, 3, 4, 4, 3]": 0.0017675569051790146, "[0, 1, 2, 3, 3, 2]": 0.030561975889923806, "[0, 1, 2, 3, 3, 2, 1]": 0.004655607654384341, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 6, 6, 4, 3, 4, 4, 5, 5, 2, 3, 4, 5, 6, 6, 7, 7, 8, 8, 5, 4, 3, 4, 4, 5, 5]": 0.0012019941605957572, "[0, 1, 2, 3, 4, 4, 3, 4, 4, 5, 5, 2, 3, 4, 4, 3, 4, 4, 5, 5, 1, 2, 3, 3, 2, 3, 3, 4, 4]": 0.0014041911881802734, "[0, 1, 2, 3, 4, 4, 5, 5, 6, 7, 8, 8, 7, 6, 3, 2]": 0.0006595527933062535, "[0, 1, 2, 3, 3, 4, 4, 2, 3, 3, 4, 4, 1]": 0.0032580036037305328, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 3, 4, 4, 5, 5, 2, 1, 2, 2, 3, 3, 4, 4]": 0.0006391927543692981, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 2, 3, 3, 4, 4, 1, 2, 2, 3, 3]": 0.001056046584329528, "[0, 1, 2, 3, 4, 5, 5, 4, 3]": 0.004808098311715691, "[0, 1, 2, 3, 4, 4, 3, 4, 4, 2]": 0.0036520545337590787, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2]": 0.010466723758127787, "[0, 1, 2, 1, 2, 3]": 0.004657911344974576, "[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 4, 4, 3]": 0.00047450300712717876, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 3, 1]": 0.0011246921306627808, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4]": 0.000500665286504067, "[0, 1, 2, 3, 4, 5, 6, 7, 7, 6, 7, 7, 5]": 0.002273180745184842, "[0, 1, 2, 3, 4, 4, 3, 4, 2, 3]": 0.0005609265213025427, "[0, 1, 2, 3, 4, 4, 3, 2, 3]": 0.003907662345405659, "[0, 1, 2, 3, 3, 4, 4, 2, 3, 1, 2]": 0.0016309499533392732, "[0, 1, 2, 3, 4, 4, 5, 5, 3]": 0.0011268160643196335, "[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 3, 1, 2, 3, 2]": 0.0010836841292054863, "[0, 1, 2, 2, 3, 3, 1, 2, 2]": 0.006871432103869834, "[0, 1, 2, 3, 2, 3]": 0.0015272907322025635, "[0, 1, 2, 3, 3, 4, 5, 6, 6, 2, 3, 3, 4, 5, 5, 4, 1, 2, 3, 3]": 0.0011121303098538076, "[0, 1, 1, 2, 3, 4, 5, 6, 6, 5, 4]": 0.0018166083017007787, "[0, 1, 2, 2, 3, 4, 5, 5, 4, 1, 2, 2, 3, 4, 5, 5, 4]": 0.0007999659009443325, "[0, 1, 2, 3, 3, 2, 3, 1]": 0.0026679692687224675, "[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 3, 1, 2]": 0.002808382376360547, "[0, 1, 2, 3, 1, 2, 2, 3, 3]": 0.0011640067245086015, "[0, 1, 2, 3, 3, 4, 5, 6, 2, 3, 3, 4, 4, 5, 6, 7, 7, 6, 5, 6, 7, 7, 6, 7, 8, 9, 10, 11, 12, 12, 11, 10, 9]": 0.0009842790230247017, "[0, 1, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6]": 0.0009040207039141573, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 3, 4, 5, 6, 7, 7, 6, 5, 6, 6]": 0.0010741428737666516, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.001101885251279401, "[0, 1, 2, 2, 3, 4, 4, 3, 4, 4, 5, 1, 2, 3]": 0.0011328055704562042, "[0, 1, 1, 2, 3, 4, 5, 5, 6, 4, 5, 5, 6, 3, 4, 5, 6, 7, 8, 7, 6, 5, 4, 5, 5]": 0.0007377305608171045, "[0, 1, 2, 2, 3, 3, 1]": 0.0045061299280975825, "[0, 1, 1, 2, 3, 4, 4]": 0.007551281256336808, "[0, 1, 2, 3, 3, 4, 4, 2, 1]": 0.0010109851379225803, "[0, 1, 2, 3, 4, 5, 5]": 0.008165929187815342, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 4, 2]": 0.002496470907828268, "[0, 1, 2, 3, 4]": 0.011152723967775297, "[0, 1, 2, 3, 4, 5, 5, 4]": 0.0038779990119198345, "[0, 1, 2, 3]": 0.016642027403268443, "[0, 1, 1, 2, 3, 4, 5, 6, 6, 5]": 0.0009002320592158755, "[0, 1, 2, 3, 4, 4]": 0.008286881557866993, "[0, 1, 2, 2, 1, 2, 3, 3, 2]": 0.0010229185103049945, "[0, 1, 2, 3, 4, 4, 2, 3, 1, 2, 2, 3, 4, 5, 5, 3, 4, 5, 5]": 0.0005609265213025427, "[0, 1, 2, 3, 4, 5, 6, 7, 8, 8]": 0.0005609265213025427, "[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 7, 8, 8, 7]": 0.0008125277217533055, "[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 7, 8, 9, 9, 8]": 0.0004785825079753308, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 2]": 0.0006663390753410118, "[0, 1, 1, 2, 3, 3]": 0.0010109851379225803, "[0, 1, 1, 2, 3]": 0.005146303330669394, "[0, 1, 2, 2, 3, 1, 2, 3]": 0.0014547404450764023, "[0, 1, 2, 3, 3, 4, 2, 3, 4, 3, 4, 5, 1, 2]": 0.0007895601713854591, "[0, 1, 2, 2, 3, 1, 2]": 0.004013221100087641, "[0, 1, 2, 3, 2]": 0.0017484947310143415, "[0, 1, 2, 3, 3, 2, 3, 1, 2, 2]": 0.0029581599454839677, "[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3]": 0.0015597848525221287, "[0, 1, 2, 3, 3, 4, 4, 2]": 0.004082670980104483, "[0, 1, 2, 3, 4, 4, 3, 2, 1, 2]": 0.0015208078119590706, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 3, 1, 2]": 0.001532042475009379, "[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 2, 3, 3]": 0.0028632150801929084, "[0, 1, 2, 3, 3, 2, 1, 2, 2, 3, 3]": 0.004034173020815587, "[0, 1, 2, 1, 2, 2, 3, 3]": 0.0007720627641023115, "[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 2]": 0.005408606113498407, "[0, 1, 2, 3, 3, 4, 2, 3, 4, 5, 6, 6, 5, 6, 4, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 3]": 0.0007377305608171045, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 6, 6, 3, 2, 3]": 0.0011337910001820602, "[0, 1, 2, 2, 1, 2, 2, 3, 3, 4, 4]": 0.002912437179330372, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3]": 0.0009510698361117287, "[0, 1, 2, 3, 3, 2, 3, 3, 4, 4, 1]": 0.0010812708838342196, "[0, 1, 2, 2, 3, 1, 2, 2, 3, 3]": 0.0010698594268304196, "[0, 1, 2, 3, 3, 2, 3]": 0.0010812708838342196, "[0, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 5, 5, 2, 1]": 0.0014814932181132499, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 3]": 0.0008499847759799831, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 3]": 0.0010109851379225803, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 1, 2, 3, 4, 4, 3, 2]": 0.0030416156239181412, "[0, 1, 2, 2, 3, 1, 2, 3, 3, 2, 3]": 0.0007377305608171045, "[0, 1, 2, 3, 3, 2, 3, 1, 2]": 0.0015272907322025635, "[0, 1, 2, 2, 3, 3, 1, 2]": 0.001491895525642843, "[0, 1, 2, 3, 3, 2, 3, 4, 4, 3, 1]": 0.0010867046945756246, "[0, 1, 2, 2, 3, 4, 4, 3, 1, 2, 2]": 0.0008392804947901535, "[0, 1, 2, 2, 3, 1, 2, 2, 3]": 0.0005609265213025427, "[0, 1, 2, 3, 4, 4, 3]": 0.0101019698732314, "[0, 1, 2, 3, 4, 4, 5, 5, 3, 2, 1]": 0.0005234231326044066, "[0, 1, 2, 3, 3, 2, 3, 3, 1]": 0.0046798368355542, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5, 3]": 0.0005614105686915624, "[0, 1, 2, 3, 3, 4, 4, 2, 3, 3, 1, 2]": 0.001029736197212235, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3]": 0.0010836841292054863, "[0, 1, 2, 2, 1, 2, 3, 3]": 0.0010109851379225803, "[0, 1, 2, 3, 4, 5, 5, 4, 5, 6, 6, 5, 3]": 0.0006424055519008117, "[0, 1, 2, 2, 1, 2, 3, 4]": 0.028637872926850567, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 6]": 0.0009532428030516208, "[0, 1, 2, 3, 4, 5]": 0.0005609265213025427, "[0, 1, 2, 2, 3, 4, 5, 6, 7, 3, 4, 4, 5, 5, 6, 6, 1, 2, 3, 4]": 0.0005609265213025427, "[0, 1, 2, 2, 3, 4, 5, 6, 1, 2, 2, 3, 3, 4, 4, 5, 6, 7, 8, 8, 9, 10, 7, 8, 8, 9, 10, 11, 12]": 0.0016486590987881769, "[0, 1, 2, 3, 4, 5, 5, 6, 4, 3, 2, 3, 4, 5, 6, 6, 7, 8, 9, 9, 8, 5, 6, 7, 8, 8, 7, 4, 5, 6, 7, 7, 6, 3, 4, 5, 6, 7, 8, 8, 7, 5, 6, 7, 8, 8, 7, 4, 5, 6, 7, 7, 6, 1, 2, 2, 3, 4, 4]": 0.0023171458275343935, "[0, 1, 2, 3, 4, 4, 5, 3, 2]": 0.0009882739499612102, "[0, 1, 2, 3, 2, 1]": 0.004430288702111878, "[0, 1, 2, 3, 3, 4, 5, 6, 6, 5, 4, 5, 6, 7, 7, 6, 2, 3, 3, 1, 2, 3, 4, 4]": 0.00258903810737059, "[0, 1, 2, 2, 1, 2, 2, 3]": 0.002806753244941645, "[0, 1, 2, 3, 4, 4, 3, 4, 5, 5, 4, 5, 2, 3, 4, 4, 3, 4, 1, 2]": 0.0007898550953318294, "[0, 1, 2, 2, 3, 3, 1, 2, 3, 4]": 0.0007908405250576848, "[0, 1, 2, 2, 3, 3, 1, 2, 3]": 0.0010599519215387767, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 1, 2]": 0.0009257820521291555, "[0, 1, 2, 3, 3, 2, 3, 3]": 0.0006729113900134133, "[0, 1, 1, 2, 2, 3]": 0.0020455715559826565, "[0, 1, 1, 2, 2, 3, 4, 5, 5, 4]": 0.0006512744194335125, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2]": 0.002107257409363016, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 6, 6, 5]": 0.0006341271780280709, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3]": 0.0010535089613231644, "[0, 1, 2, 3, 3, 4, 4, 2, 3, 4, 5, 1, 2, 2, 3]": 0.0007895601713854591, "[0, 1, 2, 2, 1, 2, 3, 4, 4]": 0.004861386497034715, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5]": 0.0009462915869375453, "[0, 1, 2, 3, 3, 4, 5, 2, 3, 3, 4, 4, 5, 5]": 0.0002793865397565718, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 5, 4, 3]": 0.0003377828527653722, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 5, 5, 4]": 0.0010586247637801114, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2, 2, 3, 4, 4]": 0.0014814932181132499, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2, 2, 3, 4]": 0.0010431066537935716, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 3, 1, 2, 3, 3, 2, 3, 3]": 0.0027690677825147254, "[0, 1, 2, 3, 3, 4, 4, 5, 5, 2]": 0.00024200642366828788, "[0, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 2]": 0.0007606513070985111, "[0, 1, 2, 2, 1, 2, 2, 3, 3]": 0.0008146516554101583, "[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2]": 0.0007170532663164578, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 3]": 6.656216912061984e-05, "[0, 1, 2, 1, 2]": 0.006544087138256579, "[0, 1, 2, 3, 3, 4, 4]": 0.0002561973758961627, "[0, 1, 2, 3, 4, 4, 3, 4, 5, 2, 3, 4, 5, 5, 1, 2, 3, 4, 4, 3, 4, 5, 2, 3, 4, 5, 5]": 0.0010550611546036725, "[0, 1, 2, 1, 2, 3, 4, 4, 3, 4]": 0.0005609265213025427, "[0, 1, 2, 3, 2, 3, 3, 4, 5, 5, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 5]": 0.0007898550953318294, "[0, 1, 2, 1, 2, 3, 4, 4]": 0.004414770592125338, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2, 3, 3, 4, 5, 6, 6, 5, 4, 2, 3, 4, 4, 5, 5, 6, 6, 7, 7, 3, 4, 4]": 0.0007217148229796739, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 4, 2, 3, 1, 2, 2, 3, 4, 5, 5, 4, 3]": 0.00068590095024875, "[0, 1, 2, 2, 3, 4, 5, 6, 6, 5, 4, 1, 2, 2, 3, 3, 4]": 0.001056046584329528, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 4]": 0.0006340713396803954, "[0, 1, 2, 3, 3, 1, 2]": 0.0014167530089892466, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 5, 4, 5, 1, 2]": 0.0007895601713854591, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 5, 4, 5, 1, 2, 3, 3]": 0.0007383204087098445, "[0, 1, 1, 2, 3, 4, 4, 3, 2]": 0.0015478135253731151, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 4, 5, 5, 4]": 0.0006453618410783786, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 4, 5, 5, 6, 6, 4]": 0.0009549480705372698, "[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 6, 5, 6, 6]": 0.001017681038515389, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6]": 0.0013536419312841445, "[0, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 7, 1, 2, 2, 3, 3, 4, 5, 5, 4, 5, 5, 6, 7, 8, 9]": 0.0005609265213025427, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 5, 6, 7, 1, 2, 2, 3, 3, 4, 5, 5, 4, 5, 6, 7, 7, 6, 5, 6, 7, 8, 9]": 0.0007895601713854591, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4]": 0.0007593241493398455, "[0, 1, 1, 2, 3, 4]": 0.0031807015737975557, "[0, 1, 2, 2, 3, 1, 2, 3, 3]": 0.0013691600412706843, "[0, 1, 2, 2, 3, 1, 2, 3, 4, 5, 5, 4, 3, 4, 4]": 0.0011835197614316504, "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 8, 7, 6, 5, 4, 3]": 0.00024791900202342183, "[0, 1, 2, 3, 2, 3, 3, 4, 4, 1, 2, 2, 3]": 0.0011328055704562042, "[0, 1, 2, 3, 2, 3, 1, 2, 3, 2, 3]": 0.0005609265213025427, "[0, 1, 2, 2, 3, 1, 2, 3, 2, 3]": 0.0007895601713854591, "[0, 1, 2, 3, 4, 5, 6, 7, 8, 8, 9, 9, 7, 8, 8, 6, 5, 6, 6, 4, 5, 5, 3, 4]": 0.0011328055704562042, "[0, 1, 2, 3, 4, 5, 6, 7, 7, 8, 8, 6, 7, 7, 5, 6, 6, 4, 5, 5, 3, 4]": 0.0007895601713854591, "[0, 1, 2, 3, 4, 5, 6, 6]": 0.0016309499533392732, "[0, 1, 2, 1, 2, 3, 3, 4]": 0.0007895601713854591, "[0, 1, 1, 2, 3, 3, 2, 3]": 0.002333637507372614, "[0, 1, 2, 2, 3, 3, 4, 4, 1, 2]": 0.0007440834911935437, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 4, 5, 5, 2, 3]": 0.000951991781359703, "[0, 1, 2, 1]": 0.003913272950100556, "[0, 1, 2, 3, 4, 5, 6]": 0.0005609265213025427, "[0, 1, 1, 2, 3, 4, 5, 5]": 0.000804744150118516, "[0, 1, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4]": 0.0010193101699342906, "[0, 1, 2, 2, 3, 4, 4, 3, 4, 4, 5, 5, 1, 2, 3, 3, 2, 3, 3, 4, 4]": 0.0009796293262356614, "[0, 1, 1, 2, 3, 4, 4, 5]": 0.001532042475009379, "[0, 1, 2, 2, 3, 4, 5, 5, 6, 1, 2]": 0.0007895601713854591, "[0, 1, 2, 3, 3, 2, 3, 4, 4, 3]": 0.00016205007821798044, "[0, 1, 1, 2, 3, 4, 5, 6, 6]": 0.0007965029496546388, "[0, 1, 2, 3, 4, 5, 6, 6, 1, 2, 2, 3, 3]": 0.0007411382701754625, "[0, 1, 2, 3, 4, 4, 1, 2]": 0.0005609265213025427, "[0, 1, 2, 2, 3, 4, 5, 5, 1, 2, 2, 3, 3, 4, 5, 6]": 0.0007213367132526902, "[0, 1, 2, 2, 3, 1, 2, 2]": 0.0009489593561153885, "[0, 1, 1, 2, 3, 4, 4, 3, 4, 2, 3, 4, 3]": 0.0009773167387511405, "[0, 1, 2, 2, 3, 1]": 0.002011867566831733, "[0, 1, 2, 3, 4, 4, 5, 3, 2, 1, 2, 3]": 0.0005609265213025427, "[0, 1, 2, 3, 2, 3, 1]": 0.0005609265213025427, "[0, 1, 2, 2, 3, 4, 4, 1]": 0.0010348282799208307, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2]": 0.000951991781359703, "[0, 1, 2, 3, 4, 4, 5, 5, 6, 6, 3, 4, 4, 2]": 0.0003473883843967787, "[0, 1, 2, 1, 2, 3, 3]": 0.002559631018816411, "[0, 1, 2, 3, 4, 5, 6, 6, 7, 7, 5, 6, 6, 7, 7, 4, 5, 5, 6, 6, 3, 4, 4, 2, 3, 3, 4, 4, 1, 2, 2, 3, 3]": 0.0011329705045355215, "[0, 1, 1, 2, 2, 3, 4, 5, 5, 4, 3]": 0.0005388295165447156, "[0, 1, 2, 3, 3, 1, 2, 2, 3, 3]": 0.0008253915162225149, "[0, 1, 2, 3, 3, 4, 4, 2, 1, 2, 2, 3, 3]": 0.0014702585550629417, "[0, 1, 2, 3, 3, 4, 4, 2, 3, 3, 4, 4, 5, 1, 2]": 0.0007377305608171045, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3]": 0.0014940550389222229, "[0, 1, 2, 2, 3]": 0.005796492454204993, "[0, 1, 2, 3, 4, 5, 6, 6, 7, 7, 8, 8, 5, 4, 3, 2, 3]": 0.0014814932181132499, "[0, 1, 1, 2, 3, 4, 4, 3, 4, 5, 4, 5]": 0.0015208078119590706, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2]": 0.0006663390753410118, "[0, 1, 2, 3, 4, 4, 5, 6, 7, 8, 9, 9, 8, 7, 3, 4, 5, 6, 7, 7, 6, 5, 4, 5, 5]": 0.0003519738049932467, "[0, 1, 1, 2, 3, 3, 4, 4, 2, 3, 3, 4]": 0.0014547404450764023, "[0, 1, 2, 3, 3, 4, 5, 6, 2, 3, 3]": 0.0008184403001084393, "[0, 1, 2, 3, 4, 4, 1, 2, 3, 4, 5, 3, 4, 4, 5, 6, 7, 7, 6, 2, 3, 4, 5, 5, 4]": 0.0007087748924437168, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 2, 3, 4, 4, 5, 5, 3]": 0.001598109841892048, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 5, 6, 6, 5, 3, 1, 2, 3, 4, 4, 3, 2]": 0.0009770392869109024, "[0, 1, 2, 3, 1, 2, 3, 4, 4]": 0.0009321006347096703, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 2]": 0.000748089486289538, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2, 3]": 0.0010812708838342196, "[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 4, 1, 2, 2, 3, 3, 4, 5, 6]": 0.0010550611546036725, "[0, 1, 2, 3, 3, 2, 3, 4, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4]": 0.0014464620712036612, "[0, 1, 2, 3, 3, 4, 2, 1, 2, 2]": 0.00576013414953674, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2, 3, 3, 4]": 0.0031427141377104, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 5, 6, 6, 5, 2]": 0.0006202381994604323, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 3]": 7.45986811326062e-05, "[0, 1, 2, 3, 4, 5, 5, 4, 1, 2, 2]": 0.0009377246930650807, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 5, 6, 7, 3, 4, 4, 5, 5, 6, 7, 8, 9, 10, 11]": 0.0005609265213025427, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 5, 6]": 0.0005609265213025427, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 5, 2, 3, 4, 5, 5, 1, 2, 3, 4, 4, 3, 2, 3, 4]": 0.0014814932181132499, "[0, 1, 2, 3, 4, 4, 3, 4, 5, 5, 2]": 0.0007018236763296415, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6, 5]": 0.00031665413808393424, "[0, 1, 2, 2, 3, 3, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3]": 0.0017911961400831084, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4]": 0.0034716882347425528, "[0, 1, 2, 2, 3, 1, 2, 3, 4, 5, 5]": 0.0012875745644014757, "[0, 1, 2, 2, 3, 1, 2, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4]": 0.001326889158247297, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 3]": 0.002782956761082364, "[0, 1, 2, 3, 3, 2, 3, 4, 4, 1, 2, 3, 3]": 0.00030970292196985866, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 2]": 0.0008141568531722073, "[0, 1, 2, 3, 4, 5, 6, 7, 8, 8, 7, 6, 5, 4, 3, 2, 3, 1, 2, 3, 4, 5, 5, 4, 3, 2]": 0.0010812708838342196, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4]": 0.000682022119406869, "[0, 1, 1, 2, 3, 4, 4, 5, 3, 4, 5, 5, 2]": 0.0008227126788851861, "[0, 1, 2, 2, 3, 3, 4, 4, 1, 2, 3, 3]": 0.0009825856154132284, "[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 4]": 0.0010586247637801114, "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 8, 7, 8, 8, 9, 9, 6, 7, 7, 5, 4]": 0.0006988673871520745, "[0, 1, 2, 3, 4, 4, 3, 4, 2]": 0.0010326924863898021, "[0, 1, 1, 2, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4]": 0.0011091740206762405, "[0, 1, 2, 3, 4, 5, 6, 7, 8, 7, 6, 5, 4, 3, 4, 4, 2, 3, 4, 5, 1, 2, 3, 4, 4, 2, 3, 4]": 0.0007377305608171045, "[0, 1, 2, 3, 4, 5, 4, 3, 2]": 0.0008227126788851861, "[0, 1, 2, 3, 4, 5, 4, 3, 4, 2]": 0.0010569313561686383, "[0, 1, 1, 2, 2, 3, 4, 5, 6, 7, 7]": 0.002590667238789491, "[0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 1, 2]": 0.0009257820521291555, "[0, 1, 2, 3, 4, 4, 3, 4, 4]": 0.00040680650882560823, "[0, 1, 2, 3, 3, 4, 2, 3, 4, 4, 3, 1, 2, 3, 3, 2]": 0.001056046584329528}, "features": {"constants": 0.46912114675140626, "variables": 0.5308788532485937}, "functions": {"cubed": 0.18002618309041551, "squared": 0.7503144028451362, "exp": 0.0009720018187190634, "sqrt": 0.05849008594833346, "abs": 0.0009720018187190634, "cos": 0.0035620758514310928, "sin": 0.0009720018187190634, "cosh": 0.002305767839173125, "tanh": 0.0009720018187190634, "sinh": 0.00044147533191542574, "log": 0.0009720018187190634}, "operators": {"*": 0.6454566793307276, "/": 0.08238506327151819, "^": 0.01612471392914046, "-": 0.1591198628171143, "+": 0.09691368065149947}, "function_conditionals": {"cubed": {"features": {"constants": 0.2647058823529412, "variables": 0.7352941176470589}, "functions": {"squared": 0.6825293010910947, "cubed": 0.31747069890890545}, "operators": {"*": 0.7968698827741699, "-": 0.15256371931329277, "+": 0.036580468817256497, "/": 0.01398592909528087}}, "squared": {"features": {"constants": 0.7346938775510204, "variables": 0.2653061224489796}, "functions": {"squared": 0.8993596393765647, "cubed": 0.09146228243130039, "abs": 0.009106945302767733, "sin": 7.113288936722225e-05}, "operators": {"/": 0.01037143508229135, "*": 0.6720627943867252, "-": 0.23146721260154773, "+": 0.08609855792943588}}, "exp": {"features": {"constants": 0.0, "variables": 1.0}, "functions": {"squared": 0.7881528215913075, "cubed": 0.21184717840869258}, "operators": {"/": 0.6845292102583094, "-": 0.31291547078974175, "*": 0.0012776594759744467, "+": 0.0012776594759744467}}, "sqrt": {"features": {"constants": 0.9993333332945964, "variables": 0.0006666667054036579}, "functions": {"squared": 0.9990181858995036, "abs": 0.0009818141004964667}, "operators": {"*": 0.5862789903725641, "/": 0.08702093156257511, "+": 0.23953873031624212, "-": 0.08716134774861864}}, "abs": {"features": {"constants": 0.7499999999999999, "variables": 0.2500000000000001}, "functions": {}, "operators": {"/": 0.9991955979878441, "*": 0.0008044020121559905}}, "cos": {"features": {"constants": 0.9993332814115465, "variables": 0.0006667185884533662}, "functions": {}, "operators": {"+": 0.2947898100639122, "-": 0.5678764965343415, "*": 0.1373336934017463}}, "sin": {"features": {"constants": 0.9992672040503631, "variables": 0.000732795949636933}, "functions": {"squared": 1.0}, "operators": {"-": 0.3741521518550288, "+": 0.5199707095644537, "/": 0.10587713858051738}}, "cosh": {"features": {"constants": 1.0, "variables": 0.0}, "functions": {}, "operators": {"*": 1.0}}, "tanh": {"features": {"constants": 1.0, "variables": 0.0}, "functions": {}, "operators": {"*": 1.0}}, "sinh": {"features": {"constants": 1.0, "variables": 0.0}, "functions": {}, "operators": {}}, "log": {"features": {"constants": 0.0, "variables": 1.0}, "functions": {}, "operators": {"^": 1.0}}}, "operator_conditionals": {"*": {"features": {"constants": 0.4297636994988707, "variables": 0.5702363005011293}, "functions": {"exp": 0.0009142703516578908, "sqrt": 0.7158273785041466, "squared": 0.036290860655075925, "abs": 0.0009142703516578908, "cos": 0.11783865178832031, "sin": 0.11159478551666067, "cubed": 0.004012793015551432, "tanh": 0.00684446753588746, "cosh": 0.004848251929383891, "log": 0.0009142703516578908}, "operators": {"^": 0.14070395669009067, "*": 0.6476856799834887, "-": 0.1738085212730113, "+": 0.03418168813167849, "/": 0.003620153921730835}}, "/": {"features": {"constants": 0.6941513576595078, "variables": 0.30584864234049225}, "functions": {"sqrt": 0.7785331207421367, "squared": 0.21132048122916364, "exp": 0.009238797150088645, "log": 0.0009076008786111702}, "operators": {"*": 0.621694570726957, "^": 0.1334264039135164, "-": 0.2250931702981806, "+": 0.019785855061345982}}, "^": {"features": {"constants": 0.35213710009195853, "variables": 0.6478628999080416}, "functions": {"exp": 0.039962285291643265, "squared": 0.8187595902340601, "cubed": 0.1412781244742966}, "operators": {"-": 0.2958514545963171, "/": 0.2535619000387056, "+": 0.0009365832126558828, "*": 0.44871347893966557, "^": 0.0009365832126558828}}, "-": {"features": {"constants": 0.9122167844862894, "variables": 0.08778321551371064}, "functions": {"exp": 0.00048572104666658194, "sin": 0.34311521552314656, "sqrt": 0.5326522860025157, "tanh": 0.11777956982551413, "squared": 0.005967207602157072}, "operators": {"^": 0.12863263357210555, "+": 0.30178214304453227, "*": 0.4906003948854253, "/": 0.07799890033106685, "-": 0.000985928166870063}}, "+": {"features": {"constants": 0.48085262046822286, "variables": 0.5191473795317771}, "functions": {"squared": 0.10325172429783458, "sqrt": 0.42597119062372624, "cos": 0.35918420473123425, "exp": 0.0009496805498353013, "sin": 0.054654042793167455, "tanh": 0.05598915700420216}, "operators": {"^": 0.03672324384736636, "+": 0.13238259678730913, "*": 0.7306443013526068, "-": 0.04357428160966542, "/": 0.05667557640305222}}}, "operators_and_functions": {"*": 0.4532333645735708, "/": 0.03917525773195876, "^": 0.08772258669165886, "-": 0.08641049671977508, "+": 0.057919400187441426, "cubed": 0.04386129334582943, "squared": 0.19400187441424555, "exp": 0.003561387066541706, "sqrt": 0.017994376757263356, "abs": 0.0022492970946579195, "cos": 0.005435801312089972, "sin": 0.006185567010309278, "cosh": 0.0005623242736644799, "tanh": 0.0007497656982193065, "sinh": 0.00018744142455482662, "log": 0.0007497656982193065}}}
\ No newline at end of file
+{"{'features': {'constants': 0.4056818181818182, 'variables': 0.5943181818181819}, 'functions': {'cos': 0.24, 'exp': 0.13333333333333333, 'log': 0.013333333333333334, 'sin': 0.21333333333333335, 'sqrt': 0.38666666666666666, 'tan': 0.013333333333333334}, 'max_num_variables': 100, 'operators': {'*': 0.4480946123521682, '+': 0.07621550591327202, '-': 0.08409986859395532, '/': 0.19185282522996058, '^': 0.19973718791064388}, 'structures': {'[0, 1, 1, 2, 2, 3, 3]': 0.008403361344537815, '[0, 1, 1, 2, 2, 3, 4, 4, 3, 4]': 0.008403361344537815, '[0, 1, 1, 2, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 3, 2, 3, 3]': 0.01680672268907563, '[0, 1, 1, 2, 3, 3, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 3, 4, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]': 0.01680672268907563, '[0, 1, 1, 2, 3, 3, 4, 5, 6, 6, 4, 2, 3, 4, 4]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 4, 3, 2, 3, 4, 5, 6, 6, 5, 6, 7, 8, 8, 7, 6, 7, 4, 5, 5]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 4, 3, 2]': 0.01680672268907563, '[0, 1, 1, 2, 3, 4, 4, 5, 5, 6, 3, 4, 5, 5, 4, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 4, 5, 5, 4, 3]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 6, 7, 7, 6, 5, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 4]': 0.008403361344537815, '[0, 1, 1]': 0.03361344537815126, '[0, 1, 2, 1, 2, 3, 4, 5, 5, 4, 5, 6, 6, 5, 6, 7, 7, 6, 7, 7, 3]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 2, 3, 4, 4, 3, 4, 4]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 2, 3, 4, 4]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 2]': 0.04201680672268908, '[0, 1, 2, 2, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 5, 6, 7, 8, 8, 7, 6, 3]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 3, 2]': 0.01680672268907563, '[0, 1, 2, 2, 1, 2, 3, 3, 4, 5, 5, 2, 3]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 4, 4, 2]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 4, 4]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 5, 5, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 5, 5, 4, 5, 6, 6, 7, 7, 5]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5, 3]': 0.01680672268907563, '[0, 1, 2, 2, 1, 2]': 0.008403361344537815, '[0, 1, 2, 2, 1]': 0.01680672268907563, '[0, 1, 2, 2, 3, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3, 1, 2, 3, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3, 1, 2, 3, 4, 4, 3, 2]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 2, 3, 4, 5, 6, 6, 5, 6, 7, 8, 8, 7, 6, 3]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3, 1]': 0.01680672268907563, '[0, 1, 2, 2, 3, 3, 4, 4, 1, 2, 3, 3, 4, 5, 5, 2]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3, 4, 4, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 4, 3, 4, 4, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 4, 3, 4, 5, 5, 6, 6, 4, 5, 5, 1, 2, 3, 3, 2]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 5, 6, 6, 1, 2, 2, 3, 4, 4, 5, 3]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 1]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 5, 5, 4, 5, 6, 6, 5, 3, 4, 5, 5, 4, 5, 5, 1, 2]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 5, 5, 6, 6, 4, 5, 5, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 6, 6, 1, 2, 3, 3, 2]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 5, 6, 6, 5, 3, 1, 2, 3, 4, 4, 2]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 5, 6, 7, 7, 6, 7, 7, 5, 4, 5, 6, 7, 7, 6, 7, 7, 5, 3, 4, 5, 6, 7, 7, 6, 5, 4, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 3]': 0.008403361344537815, '[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 5, 4, 1, 2, 2, 3]': 0.008403361344537815, '[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5, 6, 6, 1, 2, 3, 3, 4, 2]': 0.008403361344537815, '[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 7, 7, 5, 4, 1, 2, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 1, 2, 2]': 0.01680672268907563, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 5, 5, 4, 3, 4, 5, 5, 4, 2, 3, 4, 4, 3]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 1, 2]': 0.025210084033613446, '[0, 1, 2, 3, 3, 2, 1]': 0.05042016806722689, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2]': 0.01680672268907563, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 2]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4, 3, 2, 3, 4, 5, 5, 4, 5, 5, 3]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4, 3, 4, 4, 2]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 3, 1]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 3, 4, 4, 1, 2, 3, 3, 4, 4]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 5, 4, 3, 1]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 7, 8, 9, 9, 10, 10, 8, 7, 8, 9, 9, 8, 4, 5, 6, 6, 3, 1]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2]': 0.008403361344537815, '[0, 1, 2, 3, 3, 4, 4, 2, 3, 4, 4, 3, 4, 4, 1]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 3, 4, 5, 5, 4, 3, 2]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 2, 1]': 0.01680672268907563, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 5, 5, 4, 5, 5, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 4, 2, 3, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 4, 5, 6, 6, 4, 2, 3, 4, 5, 6, 6, 5, 3, 1, 2, 3, 3, 2, 3, 4, 5, 5, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 4, 5, 6, 6, 5, 4, 5, 6, 6, 2]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 4, 5, 6, 6, 7, 7, 5, 3, 1, 2, 3, 3, 2, 3, 4, 4, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 2]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 4, 2, 3, 4, 4, 3, 4, 4]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2, 3, 4, 5, 5, 4, 5, 6, 5, 3, 4, 4, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2, 3, 4, 5, 6, 6, 5, 4, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 1]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 2, 1]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 4, 2, 3, 3, 1, 2, 3, 3, 4, 4, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 4, 2, 3, 3, 1, 2, 3, 3, 4, 4, 2, 3, 4, 5, 5, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 5, 6, 6, 5, 4, 2, 3, 3, 1, 2, 2]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 5, 6, 7, 7, 6, 7, 7, 5, 4, 5, 5, 2]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4, 5, 5, 3, 4, 4, 2, 3, 3, 1, 2, 2, 3, 4, 5, 5, 4, 5, 5, 3]': 0.008403361344537815}}": {"structures": {"[0, 1, 1]": 0.0009098658055499868, "[0, 1, 2, 3, 4, 4, 3, 2, 1]": 0.0009098658055499868, "[0, 1, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 4]": 4.331246774879645e-05, "[0, 1, 2, 2, 3, 3, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]": 0.010495540854513414, "[0, 1, 2, 2, 3, 3, 4, 4, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]": 0.012724280191579191, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 5, 5, 4, 5, 5, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.02307323907841469, "[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5, 6, 6, 1, 2, 3, 3, 4, 2]": 0.03682693538876112, "[0, 1, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.001365229033736911, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 4, 2, 3, 3, 1, 2, 3, 3, 4, 4, 2, 3, 4, 5, 5, 3]": 0.019888716636508975, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 5, 6, 7, 7, 6, 7, 7, 5, 4, 5, 5, 2]": 0.019138254389179942, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 2, 1]": 0.0009098658055499868, "[0, 1, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]": 0.0009098658055499868, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2]": 0.013378014496158637, "[0, 1, 1, 2, 3, 4, 4, 5, 5, 6, 3, 4, 5, 5, 4, 2]": 0.01349565882164965, "[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 7, 7, 5, 4, 1, 2, 2, 3, 3]": 0.02177401997419435, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5, 3]": 0.03299811040603896, "[0, 1, 2, 2, 1, 2, 3, 3, 4, 5, 5, 2, 3]": 0.008907694127269687, "[0, 1, 2, 3, 3, 2, 1]": 0.0009098658055499868, "[0, 1, 2, 3, 3, 2, 1, 2]": 0.0007473843936467395, "[0, 1, 2, 2, 1, 2, 2, 3, 4, 4, 3, 4, 4]": 0.0038661525237534996, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 4, 2, 3, 3, 1, 2, 3, 3, 4, 4, 2, 3, 3]": 0.020437011548536842, "[0, 1, 2, 3, 4, 4, 3, 4, 5, 6, 6, 5, 4, 5, 6, 6, 2]": 0.010905238723274183, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.006177846951825555, "[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2, 3, 4, 5, 6, 6, 5, 4, 3]": 0.01966871518026102, "[0, 1, 2, 2, 1, 2, 2]": 0.0009098658055499868, "[0, 1, 2, 2, 3, 4, 4, 3, 4, 4, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]": 0.017040567425236602, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 2]": 0.00565088703038024, "[0, 1, 1, 2, 3, 3, 2, 3, 3]": 0.0009098658055499868, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4]": 0.004543491416261888, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 4, 5, 6, 6, 7, 7, 5, 3, 1, 2, 3, 3, 2, 3, 4, 4, 3]": 0.008307604972670076, "[0, 1, 2, 2, 1, 2, 2, 3, 3]": 6.756658047339333e-05, "[0, 1, 2, 2, 3, 4, 5, 6, 7, 7, 6, 7, 7, 5, 4, 5, 6, 7, 7, 6, 7, 7, 5, 3, 4, 5, 6, 7, 7, 6, 5, 4, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.013152060638868212, "[0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 5, 6, 6, 1, 2, 2, 3, 4, 4, 5, 3]": 0.021896997832723638, "[0, 1, 1, 2, 2]": 0.0009098658055499868, "[0, 1, 1, 2, 3, 3, 4, 2]": 0.0009098658055499868, "[0, 1, 1, 2, 2, 3, 4, 4, 3, 4]": 0.003980513155242347, "[0, 1, 2, 2, 3, 4, 5, 5, 4, 5, 6, 6, 5, 3, 4, 5, 5, 4, 5, 5, 1, 2]": 0.02880545507583974, "[0, 1, 2, 2, 3, 3, 1]": 0.0009098658055499868, "[0, 1, 1, 2, 3, 4, 4, 3, 2, 3, 4, 5, 6, 6, 5, 6, 7, 8, 8, 7, 6, 7, 4, 5, 5]": 0.031816867990550585, "[0, 1, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4, 5, 5, 3, 4, 4, 2, 3, 3, 1, 2, 2, 3, 4, 5, 5, 4, 5, 5, 3]": 0.013185405376151845, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 1]": 0.0003463662562889872, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 6, 7, 7, 6, 5, 2]": 0.006293791857814141, "[0, 1, 2, 2, 3, 3]": 0.0009098658055499868, "[0, 1, 2, 3, 3, 2, 1, 2, 2]": 0.0009098658055499868, "[0, 1, 2, 2, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 5, 6, 7, 8, 8, 7, 6, 3]": 0.019909334567795353, "[0, 1, 1, 2, 2, 3, 3]": 0.0009098658055499868, "[0, 1, 2, 2, 3, 4, 5, 6, 6, 5, 3, 1, 2, 3, 4, 4, 2]": 0.002956523861285068, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3]": 0.0014345727126974489, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 2]": 0.005046217555636637, "[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 3, 4, 5, 5, 4, 3, 2]": 0.005365293279300889, "[0, 1, 2, 2, 3, 3, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 2, 3, 4, 5, 6, 6, 5, 6, 7, 8, 8, 7, 6, 3]": 0.012335341069748025, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 2, 3, 3]": 0.024677573943497795, "[0, 1, 2, 2, 3, 3, 1, 2, 3, 3, 2, 3, 3]": 0.0077057486283505505, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4, 3, 2, 3, 4, 5, 5, 4, 5, 5, 3]": 0.021047758177030203, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5]": 0.021171629720835673, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 5, 4, 3, 1]": 0.006683876912104904, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 3]": 0.0009098658055499868, "[0, 1, 2, 3, 4, 4, 3, 4, 2, 3, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.03670323583124936, "[0, 1, 2, 2, 1, 2]": 0.0009098658055499868, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 4, 4]": 0.0009098658055499868, "[0, 1, 2, 2, 1, 2, 3, 3, 2]": 0.0009098658055499868, "[0, 1, 1, 2, 3, 3, 2]": 0.0009098658055499868, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 4, 4, 2]": 0.006532304017969842, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 4, 2, 3, 4, 4, 3, 4, 4]": 0.02037040464888648, "[0, 1, 2, 3, 3, 2, 3, 3, 4, 4, 1, 2, 3, 3, 4, 4]": 0.012344835742151145, "[0, 1, 1, 2, 3, 3, 4, 5, 6, 6, 4, 2, 3, 4, 4]": 0.001965443535549765, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 7, 8, 9, 9, 10, 10, 8, 7, 8, 9, 9, 8, 4, 5, 6, 6, 3, 1]": 0.012608913468113301, "[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 5, 4, 1, 2, 2, 3]": 0.02849243553365453, "[0, 1, 1, 2, 3, 4, 4, 3, 2]": 0.0009098658055499868, "[0, 1, 2, 2, 1]": 0.0009098658055499868, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1]": 0.003753900858793661, "[0, 1, 2, 2, 3, 3, 4, 4, 1, 2, 3, 3, 4, 5, 5, 2]": 0.004868259233242185, "[0, 1, 2, 1, 2, 3, 4, 5, 5, 4, 5, 6, 6, 5, 6, 7, 7, 6, 7, 7, 3]": 0.03185973794406829, "[0, 1, 2, 2, 3, 4, 4, 3, 4, 5, 5, 6, 6, 4, 5, 5, 1, 2, 3, 3, 2]": 0.01642567825521613, "[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2, 3, 4, 5, 5, 4, 5, 6, 5, 3, 4, 4, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2, 3, 3]": 0.03692164679794069, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 5, 5, 4, 5, 6, 6, 7, 7, 5]": 0.027369201820144767, "[0, 1, 2, 3, 4, 4, 3, 4, 5, 6, 6, 4, 2, 3, 4, 5, 6, 6, 5, 3, 1, 2, 3, 3, 2, 3, 4, 5, 5, 3]": 0.010781201614194897, "[0, 1, 2, 2, 3]": 0.0009098658055499868, "[0, 1, 2, 3, 3, 2]": 0.0009098658055499868, "[0, 1, 2, 3, 3, 4, 4, 2, 3, 4, 4, 3, 4, 4, 1]": 0.014341721831770361, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 2]": 0.007662494118809278, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 5, 6, 6, 5, 4, 2, 3, 3, 1, 2, 2]": 0.01933111598028511, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 5, 5, 4, 3, 4, 5, 5, 4, 2, 3, 4, 4, 3]": 0.014559363334162247, "[0, 1, 2, 2, 3, 4, 5, 5, 6, 6, 4, 5, 5, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 6, 6, 1, 2, 3, 3, 2]": 0.014888788446561088, "[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]": 0.012580752329170115, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2]": 0.004610530829684958, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4, 3, 4, 4, 2]": 0.020581096933380647, "[0, 1, 2, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 1]": 0.01073158856028385, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 5, 5, 3, 2, 3, 3]": 0.012589583625048596, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.011577783969631642, "[0, 1, 2, 2, 3, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.018306645589023965, "[0, 1, 2, 3, 3, 2, 3, 3, 1]": 0.0009098658055499868, "[0, 1, 2, 2, 3, 3, 1, 2, 3, 4, 4, 3, 2]": 0.0031128285975820023, "[0, 1, 2, 2, 1, 2, 2, 3, 4, 4]": 0.0009098658055499868, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 4, 5, 5, 4, 3]": 0.002958925996395191}, "features": {"constants": 0.7925812483375148, "variables": 0.2074187516624852}, "functions": {"exp": 0.04929796991669034, "sqrt": 0.3589611257025581, "sin": 0.24088669604071897, "cos": 0.31902906155736244, "log": 0.014791311214058057, "tan": 0.017033835568612016}, "operators": {"/": 0.20444884800241622, "*": 0.5757360672185223, "-": 0.02335782309718869, "^": 0.1553601003146245, "+": 0.041097161367248114}}, "{'features': {'constants': 0.4056818181818182, 'variables': 0.5943181818181819}, 'function_conditionals': {'cos': {'features': {'constants': 0.09090909090909091, 'variables': 0.9090909090909091}, 'functions': {}, 'operators': {'*': 0.42857142857142855, '-': 0.42857142857142855, '/': 0.14285714285714285}}, 'exp': {'features': {'constants': 0, 'variables': 0}, 'functions': {}, 'operators': {'/': 1.0}}, 'log': {'features': {'constants': 0, 'variables': 0}, 'functions': {}, 'operators': {'/': 1.0}}, 'sin': {'features': {'constants': 0.16666666666666666, 'variables': 0.8333333333333334}, 'functions': {}, 'operators': {'*': 0.1, '/': 0.9}}, 'sqrt': {'features': {'constants': 1.0, 'variables': 0.0}, 'functions': {}, 'operators': {'*': 0.08695652173913043, '+': 0.5217391304347826, '-': 0.30434782608695654, '/': 0.08695652173913043}}, 'tan': {'features': {'constants': 0, 'variables': 0}, 'functions': {}, 'operators': {'/': 1.0}}}, 'functions': {'cos': 0.24, 'exp': 0.13333333333333333, 'log': 0.013333333333333334, 'sin': 0.21333333333333335, 'sqrt': 0.38666666666666666, 'tan': 0.013333333333333334}, 'max_num_variables': 100, 'operator_conditionals': {'*': {'features': {'constants': 0.26216216216216215, 'variables': 0.7378378378378379}, 'functions': {'cos': 0.3333333333333333, 'exp': 0.1111111111111111, 'log': 0.027777777777777776, 'sin': 0.1388888888888889, 'sqrt': 0.3611111111111111, 'tan': 0.027777777777777776}, 'operators': {'*': 0.5217391304347826, '+': 0.06521739130434782, '-': 0.08695652173913043, '/': 0.0036231884057971015, '^': 0.322463768115942}}, '+': {'features': {'constants': 0.5945945945945946, 'variables': 0.40540540540540543}, 'functions': {'cos': 0.4, 'exp': 0.4, 'sqrt': 0.2}, 'operators': {'*': 0.25675675675675674, '+': 0.06756756756756757, '-': 0.04054054054054054, '/': 0.3918918918918919, '^': 0.24324324324324326}}, '-': {'features': {'constants': 0.5425531914893617, 'variables': 0.4574468085106383}, 'functions': {'cos': 0.3333333333333333, 'exp': 0.6666666666666666}, 'operators': {'*': 0.14285714285714285, '+': 0.03571428571428571, '-': 0.10714285714285714, '/': 0.35714285714285715, '^': 0.35714285714285715}}, '/': {'features': {'constants': 0.3333333333333333, 'variables': 0.6666666666666666}, 'functions': {'sqrt': 1.0}, 'operators': {'*': 0.7073170731707317, '+': 0.08292682926829269, '-': 0.04390243902439024, '^': 0.16585365853658537}}, '^': {'features': {'constants': 0.5503597122302158, 'variables': 0.44964028776978415}, 'functions': {'cos': 0.1, 'sin': 0.9}, 'operators': {'-': 0.9375, '/': 0.0625}}}, 'operators': {'*': 0.4480946123521682, '+': 0.07621550591327202, '-': 0.08409986859395532, '/': 0.19185282522996058, '^': 0.19973718791064388}, 'structures': {'[0, 1, 1, 2, 2, 3, 3]': 0.008403361344537815, '[0, 1, 1, 2, 2, 3, 4, 4, 3, 4]': 0.008403361344537815, '[0, 1, 1, 2, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 3, 2, 3, 3]': 0.01680672268907563, '[0, 1, 1, 2, 3, 3, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 3, 4, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]': 0.01680672268907563, '[0, 1, 1, 2, 3, 3, 4, 5, 6, 6, 4, 2, 3, 4, 4]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 4, 3, 2, 3, 4, 5, 6, 6, 5, 6, 7, 8, 8, 7, 6, 7, 4, 5, 5]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 4, 3, 2]': 0.01680672268907563, '[0, 1, 1, 2, 3, 4, 4, 5, 5, 6, 3, 4, 5, 5, 4, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 4, 5, 5, 4, 3]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 6, 7, 7, 6, 5, 2]': 0.008403361344537815, '[0, 1, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 4]': 0.008403361344537815, '[0, 1, 1]': 0.03361344537815126, '[0, 1, 2, 1, 2, 3, 4, 5, 5, 4, 5, 6, 6, 5, 6, 7, 7, 6, 7, 7, 3]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 2, 3, 4, 4, 3, 4, 4]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 2, 3, 4, 4]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 2]': 0.04201680672268908, '[0, 1, 2, 2, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 5, 6, 7, 8, 8, 7, 6, 3]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 3, 2]': 0.01680672268907563, '[0, 1, 2, 2, 1, 2, 3, 3, 4, 5, 5, 2, 3]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 4, 4, 2]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 4, 4]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 5, 5, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 5, 5, 4, 5, 6, 6, 7, 7, 5]': 0.008403361344537815, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5, 3]': 0.01680672268907563, '[0, 1, 2, 2, 1, 2]': 0.008403361344537815, '[0, 1, 2, 2, 1]': 0.01680672268907563, '[0, 1, 2, 2, 3, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3, 1, 2, 3, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3, 1, 2, 3, 4, 4, 3, 2]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 2, 3, 4, 5, 6, 6, 5, 6, 7, 8, 8, 7, 6, 3]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3, 1]': 0.01680672268907563, '[0, 1, 2, 2, 3, 3, 4, 4, 1, 2, 3, 3, 4, 5, 5, 2]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3, 4, 4, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]': 0.008403361344537815, '[0, 1, 2, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 4, 3, 4, 4, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 4, 3, 4, 5, 5, 6, 6, 4, 5, 5, 1, 2, 3, 3, 2]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 5, 6, 6, 1, 2, 2, 3, 4, 4, 5, 3]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 1]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 5, 5, 4, 5, 6, 6, 5, 3, 4, 5, 5, 4, 5, 5, 1, 2]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 5, 5, 6, 6, 4, 5, 5, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 6, 6, 1, 2, 3, 3, 2]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 5, 6, 6, 5, 3, 1, 2, 3, 4, 4, 2]': 0.008403361344537815, '[0, 1, 2, 2, 3, 4, 5, 6, 7, 7, 6, 7, 7, 5, 4, 5, 6, 7, 7, 6, 7, 7, 5, 3, 4, 5, 6, 7, 7, 6, 5, 4, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 2, 3]': 0.008403361344537815, '[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 5, 4, 1, 2, 2, 3]': 0.008403361344537815, '[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5, 6, 6, 1, 2, 3, 3, 4, 2]': 0.008403361344537815, '[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 7, 7, 5, 4, 1, 2, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 1, 2, 2]': 0.01680672268907563, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 5, 5, 4, 3, 4, 5, 5, 4, 2, 3, 4, 4, 3]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 1, 2]': 0.025210084033613446, '[0, 1, 2, 3, 3, 2, 1]': 0.05042016806722689, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2]': 0.01680672268907563, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 2]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4, 3, 2, 3, 4, 5, 5, 4, 5, 5, 3]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4, 3, 4, 4, 2]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 3, 1]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 3, 4, 4, 1, 2, 3, 3, 4, 4]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 5, 4, 3, 1]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 7, 8, 9, 9, 10, 10, 8, 7, 8, 9, 9, 8, 4, 5, 6, 6, 3, 1]': 0.008403361344537815, '[0, 1, 2, 3, 3, 2]': 0.008403361344537815, '[0, 1, 2, 3, 3, 4, 4, 2, 3, 4, 4, 3, 4, 4, 1]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 3, 4, 5, 5, 4, 3, 2]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 2, 1]': 0.01680672268907563, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 5, 5, 4, 5, 5, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 4, 2, 3, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 4, 5, 6, 6, 4, 2, 3, 4, 5, 6, 6, 5, 3, 1, 2, 3, 3, 2, 3, 4, 5, 5, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 4, 3, 4, 5, 6, 6, 5, 4, 5, 6, 6, 2]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 4, 5, 6, 6, 7, 7, 5, 3, 1, 2, 3, 3, 2, 3, 4, 4, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 2]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 4, 2, 3, 4, 4, 3, 4, 4]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2, 3, 4, 5, 5, 4, 5, 6, 5, 3, 4, 4, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2, 3, 4, 5, 6, 6, 5, 4, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 1]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 2, 1]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 4, 2, 3, 3, 1, 2, 3, 3, 4, 4, 2, 3, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 4, 2, 3, 3, 1, 2, 3, 3, 4, 4, 2, 3, 4, 5, 5, 3]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 5, 6, 6, 5, 4, 2, 3, 3, 1, 2, 2]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 5, 6, 7, 7, 6, 7, 7, 5, 4, 5, 5, 2]': 0.008403361344537815, '[0, 1, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4, 5, 5, 3, 4, 4, 2, 3, 3, 1, 2, 2, 3, 4, 5, 5, 4, 5, 5, 3]': 0.008403361344537815}}": {"structures": {"[0, 1, 1]": 0.0008349887767524929, "[0, 1, 2, 3, 4, 4, 3, 2, 1]": 0.0008349887767524929, "[0, 1, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 4]": 0.0008349887767524929, "[0, 1, 2, 2, 3, 3, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]": 0.011140124743191539, "[0, 1, 2, 2, 3, 3, 4, 4, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]": 0.009208005530088381, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 5, 5, 4, 5, 5, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.01874585023001746, "[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5, 6, 6, 1, 2, 3, 3, 4, 2]": 0.03852869138973155, "[0, 1, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.0005970186131289292, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 4, 2, 3, 3, 1, 2, 3, 3, 4, 4, 2, 3, 4, 5, 5, 3]": 0.025766964034751472, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 5, 6, 7, 7, 6, 7, 7, 5, 4, 5, 5, 2]": 0.02460482171149281, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 2, 1]": 0.0008349887767524929, "[0, 1, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]": 0.0008349887767524929, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2]": 0.02337109894376766, "[0, 1, 1, 2, 3, 4, 4, 5, 5, 6, 3, 4, 5, 5, 4, 2]": 0.004454610998511118, "[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 7, 7, 5, 4, 1, 2, 2, 3, 3]": 0.028507118740012445, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5, 3]": 0.02992258359629921, "[0, 1, 2, 2, 1, 2, 3, 3, 4, 5, 5, 2, 3]": 0.001490467300054471, "[0, 1, 2, 3, 3, 2, 1]": 0.0008349887767524929, "[0, 1, 2, 3, 3, 2, 1, 2]": 0.0011708565771148406, "[0, 1, 2, 2, 1, 2, 2, 3, 4, 4, 3, 4, 4]": 0.009293698933839892, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 4, 2, 3, 3, 1, 2, 3, 3, 4, 4, 2, 3, 3]": 0.027336488339874048, "[0, 1, 2, 3, 4, 4, 3, 4, 5, 6, 6, 5, 4, 5, 6, 6, 2]": 0.007507238114998864, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.003876541267672306, "[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2, 3, 4, 5, 6, 6, 5, 4, 3]": 0.017176391388709293, "[0, 1, 2, 2, 1, 2, 2]": 0.0008349887767524929, "[0, 1, 2, 2, 3, 4, 4, 3, 4, 4, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]": 0.01765423514766485, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 2]": 0.0019196657888852946, "[0, 1, 1, 2, 3, 3, 2, 3, 3]": 0.0008349887767524929, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4]": 0.005363715397535797, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 4, 5, 6, 6, 7, 7, 5, 3, 1, 2, 3, 3, 2, 3, 4, 4, 3]": 0.014042538690984801, "[0, 1, 2, 2, 1, 2, 2, 3, 3]": 0.00210956911464606, "[0, 1, 2, 2, 3, 4, 5, 6, 7, 7, 6, 7, 7, 5, 4, 5, 6, 7, 7, 6, 7, 7, 5, 3, 4, 5, 6, 7, 7, 6, 5, 4, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.026353837319478938, "[0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 5, 6, 6, 1, 2, 2, 3, 4, 4, 5, 3]": 0.020824387144289584, "[0, 1, 1, 2, 2]": 0.0008349887767524929, "[0, 1, 1, 2, 3, 3, 4, 2]": 0.0008349887767524929, "[0, 1, 1, 2, 2, 3, 4, 4, 3, 4]": 0.0003979238123709069, "[0, 1, 2, 2, 3, 4, 5, 5, 4, 5, 6, 6, 5, 3, 4, 5, 5, 4, 5, 5, 1, 2]": 0.029381196425835504, "[0, 1, 2, 2, 3, 3, 1]": 0.0008349887767524929, "[0, 1, 1, 2, 3, 4, 4, 3, 2, 3, 4, 5, 6, 6, 5, 6, 7, 8, 8, 7, 6, 7, 4, 5, 5]": 0.026926880593916052, "[0, 1, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4, 5, 5, 3, 4, 4, 2, 3, 3, 1, 2, 2, 3, 4, 5, 5, 4, 5, 5, 3]": 0.02232809548413859, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 1]": 0.0008349887767524929, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 6, 7, 7, 6, 5, 2]": 0.0012816733460621881, "[0, 1, 2, 2, 3, 3]": 0.0008349887767524929, "[0, 1, 2, 3, 3, 2, 1, 2, 2]": 0.0008349887767524929, "[0, 1, 2, 2, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 5, 6, 7, 8, 8, 7, 6, 3]": 0.019612566078060615, "[0, 1, 1, 2, 2, 3, 3]": 0.0008349887767524929, "[0, 1, 2, 2, 3, 4, 5, 6, 6, 5, 3, 1, 2, 3, 4, 4, 2]": 0.013850515966799749, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3]": 0.0008349887767524929, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 2]": 0.007556668720136147, "[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 3, 4, 5, 5, 4, 3, 2]": 4.455659600286333e-05, "[0, 1, 2, 2, 3, 3, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 2, 3, 4, 5, 6, 6, 5, 6, 7, 8, 8, 7, 6, 3]": 0.017051587138257305, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 2, 3, 3]": 0.025678790271609294, "[0, 1, 2, 2, 3, 3, 1, 2, 3, 3, 2, 3, 3]": 0.010671631903212768, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4, 3, 2, 3, 4, 5, 5, 4, 5, 5, 3]": 0.02194527467494512, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5]": 0.008155412797856193, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 5, 4, 3, 1]": 0.002652915051019169, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 3]": 0.0008349887767524929, "[0, 1, 2, 3, 4, 4, 3, 4, 2, 3, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.036909822246476806, "[0, 1, 2, 2, 1, 2]": 0.0008349887767524929, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 4, 4]": 0.0008349887767524929, "[0, 1, 2, 2, 1, 2, 3, 3, 2]": 0.0008349887767524929, "[0, 1, 1, 2, 3, 3, 2]": 0.0008349887767524929, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 4, 4, 2]": 0.00450310435179752, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 4, 2, 3, 4, 4, 3, 4, 4]": 0.017913515512128213, "[0, 1, 2, 3, 3, 2, 3, 3, 4, 4, 1, 2, 3, 3, 4, 4]": 0.007567834787671979, "[0, 1, 1, 2, 3, 3, 4, 5, 6, 6, 4, 2, 3, 4, 4]": 0.0008349887767524929, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 7, 8, 9, 9, 10, 10, 8, 7, 8, 9, 9, 8, 4, 5, 6, 6, 3, 1]": 0.01248691083186223, "[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 5, 4, 1, 2, 2, 3]": 0.02786792371466756, "[0, 1, 1, 2, 3, 4, 4, 3, 2]": 0.0008349887767524929, "[0, 1, 2, 2, 1]": 0.0008349887767524929, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1]": 0.003221993254368555, "[0, 1, 2, 2, 3, 3, 4, 4, 1, 2, 3, 3, 4, 5, 5, 2]": 0.0008349887767524929, "[0, 1, 2, 1, 2, 3, 4, 5, 5, 4, 5, 6, 6, 5, 6, 7, 7, 6, 7, 7, 3]": 0.03632361936211415, "[0, 1, 2, 2, 3, 4, 4, 3, 4, 5, 5, 6, 6, 4, 5, 5, 1, 2, 3, 3, 2]": 0.01598704093808284, "[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2, 3, 4, 5, 5, 4, 5, 6, 5, 3, 4, 4, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2, 3, 3]": 0.03934536631270499, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 5, 5, 4, 5, 6, 6, 7, 7, 5]": 0.021589126658314382, "[0, 1, 2, 3, 4, 4, 3, 4, 5, 6, 6, 4, 2, 3, 4, 5, 6, 6, 5, 3, 1, 2, 3, 3, 2, 3, 4, 5, 5, 3]": 0.01962227148668187, "[0, 1, 2, 2, 3]": 0.0008349887767524929, "[0, 1, 2, 3, 3, 2]": 0.0008349887767524929, "[0, 1, 2, 3, 3, 4, 4, 2, 3, 4, 4, 3, 4, 4, 1]": 0.011453197241384067, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 2]": 0.014835161175317716, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 5, 6, 6, 5, 4, 2, 3, 3, 1, 2, 2]": 0.022927842505485487, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 5, 5, 4, 3, 4, 5, 5, 4, 2, 3, 4, 4, 3]": 0.013898786760832081, "[0, 1, 2, 2, 3, 4, 5, 5, 6, 6, 4, 5, 5, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 6, 6, 1, 2, 3, 3, 2]": 0.022790539295558115, "[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5]": 0.007094138697610488, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2]": 0.0008349887767524929, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4, 3, 4, 4, 2]": 0.019854685531357313, "[0, 1, 2, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 1]": 0.006436515821274742, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 5, 5, 3, 2, 3, 3]": 0.008266382419170383, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.00897147602967831, "[0, 1, 2, 2, 3, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.015635233794557835, "[0, 1, 2, 3, 3, 2, 3, 3, 1]": 0.0008782337381027859, "[0, 1, 2, 2, 3, 3, 1, 2, 3, 4, 4, 3, 2]": 0.0008349887767524929, "[0, 1, 2, 2, 1, 2, 2, 3, 4, 4]": 0.0008349887767524929, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 4, 5, 5, 4, 3]": 6.740631326147565e-05}, "features": {"constants": 0.8076144320016446, "variables": 0.1923855679983554}, "functions": {"exp": 0.0008027706240643456, "sqrt": 0.8186835827405591, "sin": 0.0008027706240643456, "cos": 0.13951294253749935, "log": 0.02117754627797164, "tan": 0.019020387195841364}, "operators": {"/": 0.19263594869016368, "*": 0.6147137608027463, "-": 0.0009257810428404567, "^": 0.09594194935425843, "+": 0.0957825601099912}, "function_conditionals": {"exp": {"features": {"constants": 0, "variables": 0}, "functions": {}, "operators": {"/": 1.0}}, "sqrt": {"features": {"constants": 1.0, "variables": 0.0}, "functions": {}, "operators": {"-": 0.2157866104298664, "+": 0.5920543078958905, "*": 0.14558672522698846, "/": 0.046572356447254666}}, "sin": {"features": {"constants": 0.9992105003454061, "variables": 0.0007894996545939011}, "functions": {}, "operators": {"/": 0.8774694104145393, "*": 0.12253058958546068}}, "cos": {"features": {"constants": 0.6903409090909092, "variables": 0.3096590909090908}, "functions": {}, "operators": {"-": 0.4221462060183409, "*": 0.5085794138085337, "/": 0.06927438017312548}}, "log": {"features": {"constants": 0, "variables": 0}, "functions": {}, "operators": {"/": 1.0}}, "tan": {"features": {"constants": 0, "variables": 0}, "functions": {}, "operators": {"/": 1.0}}}, "operator_conditionals": {"/": {"features": {"constants": 0.5354350481483316, "variables": 0.46456495185166835}, "functions": {"sqrt": 1.0}, "operators": {"*": 0.635165362839063, "^": 0.26111190221798986, "+": 0.07736006157356345, "-": 0.026362673369383638}}, "*": {"features": {"constants": 0.48865500739873163, "variables": 0.5113449926012683}, "functions": {"exp": 0.006281204274101395, "sqrt": 0.7095951823726637, "cos": 0.1830140688807854, "sin": 0.0790240022236559, "log": 0.015282944795546543, "tan": 0.006802597453247072}, "operators": {"*": 0.4915380070830905, "-": 0.027493601162129823, "^": 0.43858530281538655, "+": 0.03137090776098026, "/": 0.011012181178412883}}, "-": {"features": {"constants": 0.9990243967634361, "variables": 0.0009756032365639803}, "functions": {"cos": 0.3424303661748593, "exp": 0.6575696338251408}, "operators": {"/": 0.051699989499591606, "-": 0.16128819602837446, "^": 0.6397720479812647, "*": 0.06124161422992077, "+": 0.08599815226084835}}, "^": {"features": {"constants": 0.9990351716166572, "variables": 0.0009648283833428605}, "functions": {"sin": 0.8878337119751618, "cos": 0.11216628802483813}, "operators": {"-": 0.9820824837520326, "/": 0.017917516247967523}}, "+": {"features": {"constants": 0.981603983783434, "variables": 0.018396016216565933}, "functions": {"exp": 0.20764189315580622, "cos": 0.25728279237528917, "sqrt": 0.5350753144689047}, "operators": {"/": 0.041355793936865295, "^": 0.45907152032230264, "*": 0.22820282556167076, "+": 0.17561285354364511, "-": 0.0957570066355162}}}}, "{'depth': {1: 0.4262080975185024, 2: 0.25903352198519813, 3: 0.1414888985633435, 4: 0.09142359599477581, 5: 0.04527644754026992, 6: 0.020026121027427082, 7: 0.007400957771005659, 8: 0.003918154114061821, 9: 0.003918154114061821, 11: 0.00043535045711797995, 12: 0.0008707009142359599}, 'features': {'constants': 0.34810126582278483, 'variables': 0.6518987341772152}, 'function_conditionals': {'abs': {'features': {'constants': 0.2222222222222222, 'variables': 0.7777777777777778}, 'functions': {}, 'operators': {'*': 0.5, '/': 0.5}}, 'cos': {'features': {'constants': 0.8947368421052632, 'variables': 0.10526315789473684}, 'functions': {}, 'operators': {'*': 0.22222222222222218, '+': 0.3333333333333333, '-': 0.44444444444444436}}, 'cosh': {'features': {'constants': 1.0, 'variables': 0.0}, 'functions': {}, 'operators': {'*': 1.0}}, 'cubed': {'features': {'constants': 0.0784313725490196, 'variables': 0.9215686274509803}, 'functions': {'cubed': 0.3541666666666667, 'squared': 0.6458333333333334}, 'operators': {'*': 0.8571428571428572, '+': 0.030075187969924814, '-': 0.09774436090225565, '/': 0.015037593984962407}}, 'exp': {'features': {'constants': 0.0, 'variables': 1.0}, 'functions': {'cubed': 0.25, 'squared': 0.75}, 'operators': {'*': 0.1, '+': 0.1, '-': 0.2, '/': 0.6}}, 'log': {'features': {'constants': 0.0, 'variables': 1.0}, 'functions': {}, 'operators': {'^': 1.0}}, 'sin': {'features': {'constants': 0.9090909090909091, 'variables': 0.09090909090909091}, 'functions': {'squared': 1.0}, 'operators': {'+': 0.5333333333333333, '-': 0.3333333333333333, '/': 0.13333333333333333}}, 'sinh': {'features': {'constants': 1.0, 'variables': 0.0}, 'functions': {}, 'operators': {}}, 'sqrt': {'features': {'constants': 0.8837209302325582, 'variables': 0.11627906976744186}, 'functions': {'abs': 0.027777777777777776, 'squared': 0.9722222222222222}, 'operators': {'*': 0.6153846153846154, '+': 0.23076923076923078, '-': 0.07692307692307693, '/': 0.07692307692307693}}, 'squared': {'features': {'constants': 0.21768707482993196, 'variables': 0.782312925170068}, 'functions': {'abs': 0.00946372239747634, 'cubed': 0.14195583596214512, 'sin': 0.0031545741324921135, 'squared': 0.8454258675078864}, 'operators': {'*': 0.7804295942720764, '+': 0.06921241050119331, '-': 0.13842482100238662, '/': 0.011933174224343675}}, 'tanh': {'features': {'constants': 1.0, 'variables': 0.0}, 'functions': {}, 'operators': {'*': 1.0}}}, 'functions': {'abs': 0.00816326530612245, 'cos': 0.019727891156462583, 'cosh': 0.0020408163265306124, 'cubed': 0.15918367346938775, 'exp': 0.01292517006802721, 'log': 0.0027210884353741495, 'sin': 0.022448979591836733, 'sinh': 0.0006802721088435374, 'sqrt': 0.0653061224489796, 'squared': 0.7040816326530612, 'tanh': 0.0027210884353741495}, 'max_depth': {2: 0.19547235524597306, 3: 0.25859817152808023, 4: 0.11928602525032656, 5: 0.11754462342185464, 6: 0.07357422725293865, 7: 0.053112755768393576, 8: 0.044841097083151954, 9: 0.030039181541140627, 10: 0.020461471484545066, 11: 0.023073574227252945, 12: 0.013495864170657384, 13: 0.008271658685241623, 14: 0.006965607313887682, 15: 0.006530256856769702, 16: 0.004353504571179802, 17: 0.004353504571179802, 18: 0.0017414018284719205, 19: 0.002176752285589901, 20: 0.0017414018284719205, 21: 0.0013060513713539404, 22: 0.0013060513713539404, 23: 0.0008707009142359602, 24: 0.002176752285589901, 25: 0.002176752285589901, 26: 0.0008707009142359602, 27: 0.0008707009142359602, 28: 0.0004353504571179801, 29: 0.0008707009142359602, 33: 0.0008707009142359602, 35: 0.0008707009142359602, 37: 0.0004353504571179801, 40: 0.0004353504571179801, 59: 0.0008707009142359602}, 'max_num_variables': 100, 'operator_conditionals': {'*': {'features': {'constants': 0.3047890897557881, 'variables': 0.6952109102442119}, 'functions': {'abs': 0.02976190476190476, 'cos': 0.10714285714285714, 'cosh': 0.005952380952380952, 'cubed': 0.047619047619047616, 'exp': 0.047619047619047616, 'log': 0.011904761904761904, 'sin': 0.11904761904761904, 'sqrt': 0.4166666666666667, 'squared': 0.20833333333333334, 'tanh': 0.005952380952380952}, 'operators': {'*': 0.6206373292867983, '+': 0.03641881638846738, '-': 0.12518968133535663, '/': 0.0015174506828528076, '^': 0.21623672230652508}}, '+': {'features': {'constants': 0.3367003367003367, 'variables': 0.6632996632996633}, 'functions': {'cos': 0.28571428571428575, 'exp': 0.07142857142857144, 'sin': 0.07142857142857144, 'sqrt': 0.2142857142857143, 'squared': 0.28571428571428575, 'tanh': 0.07142857142857144}, 'operators': {'*': 0.7216117216117216, '+': 0.11721611721611722, '-': 0.03663003663003663, '/': 0.06227106227106227, '^': 0.06227106227106227}}, '-': {'features': {'constants': 0.6133682830930537, 'variables': 0.38663171690694625}, 'functions': {'exp': 0.07142857142857142, 'sin': 0.35714285714285715, 'sqrt': 0.2857142857142857, 'squared': 0.14285714285714285, 'tanh': 0.14285714285714285}, 'operators': {'*': 0.5523809523809524, '+': 0.2, '-': 0.01904761904761905, '/': 0.08571428571428572, '^': 0.14285714285714285}}, '/': {'features': {'constants': 0.4734982332155477, 'variables': 0.5265017667844523}, 'functions': {'exp': 0.05555555555555555, 'log': 0.1111111111111111, 'sqrt': 0.3888888888888889, 'squared': 0.4444444444444444}, 'operators': {'*': 0.6216216216216216, '+': 0.018018018018018018, '-': 0.16216216216216217, '^': 0.1981981981981982}}, '^': {'features': {'constants': 0.37468030690537085, 'variables': 0.6253196930946292}, 'functions': {'cubed': 0.19047619047619047, 'exp': 0.047619047619047616, 'squared': 0.7619047619047619}, 'operators': {'*': 0.4330708661417323, '+': 0.03937007874015748, '-': 0.30708661417322836, '/': 0.2125984251968504, '^': 0.007874015748031496}}}, 'operators': {'*': 0.625614489003881, '+': 0.07994825355756792, '-': 0.11927554980595084, '/': 0.05407503234152652, '^': 0.12108667529107374}, 'operators_and_functions': {'*': 0.4532333645735708, '+': 0.057919400187441426, '-': 0.08641049671977508, '/': 0.03917525773195876, '^': 0.08772258669165886, 'abs': 0.0022492970946579195, 'cos': 0.005435801312089972, 'cosh': 0.0005623242736644799, 'cubed': 0.04386129334582943, 'exp': 0.003561387066541706, 'log': 0.0007497656982193065, 'sin': 0.006185567010309278, 'sinh': 0.00018744142455482662, 'sqrt': 0.017994376757263356, 'squared': 0.19400187441424555, 'tanh': 0.0007497656982193065}, 'structures': {'[0, 1, 1, 2, 2, 3, 3]': 0.0034828036569438635, '[0, 1, 1, 2, 2, 3, 4, 5, 5, 4, 3]': 0.00043535045711798294, '[0, 1, 1, 2, 2, 3, 4, 5, 5, 4]': 0.00043535045711798294, '[0, 1, 1, 2, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4]': 0.00043535045711798294, '[0, 1, 1, 2, 2, 3, 4, 5, 6, 7, 7]': 0.0008707009142359659, '[0, 1, 1, 2, 2, 3]': 0.0008707009142359659, '[0, 1, 1, 2, 2]': 0.03613408794079258, '[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 6, 5, 6, 6]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 7, 8, 8, 7]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 7, 8, 9, 9, 8]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 3, 2, 3, 3]': 0.0008707009142359659, '[0, 1, 1, 2, 3, 3, 2, 3]': 0.0008707009142359659, '[0, 1, 1, 2, 3, 3, 2]': 0.005224205485415795, '[0, 1, 1, 2, 3, 3, 4, 4, 2, 3, 3, 4]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 3]': 0.004353504571179829, '[0, 1, 1, 2, 3, 4, 4, 3, 2]': 0.0013060513713539488, '[0, 1, 1, 2, 3, 4, 4, 3, 4, 2, 3, 4, 3]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 4, 4, 3, 4, 5, 4, 5]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 4, 4, 3]': 0.0021767522855899147, '[0, 1, 1, 2, 3, 4, 4, 5, 3, 4, 5, 5, 2]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 4, 4, 5]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 4, 4]': 0.0034828036569438635, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 2]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 3, 4, 5, 6, 7, 7, 6, 5, 6, 6]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 3]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 3]': 0.0008707009142359659, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 4, 5, 5, 6, 4, 5, 5, 6, 3, 4, 5, 6, 7, 8, 7, 6, 5, 4, 5, 5]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 4, 5, 5]': 0.0008707009142359659, '[0, 1, 1, 2, 3, 4, 5, 6, 6, 5, 4]': 0.0008707009142359659, '[0, 1, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 4, 5, 6, 6, 5]': 0.0008707009142359659, '[0, 1, 1, 2, 3, 4, 5, 6, 6]': 0.00043535045711798294, '[0, 1, 1, 2, 3, 4]': 0.0008707009142359659, '[0, 1, 1, 2, 3]': 0.0017414018284719317, '[0, 1, 1, 2]': 0.02568567696996099, '[0, 1, 1]': 0.23073574227253094, '[0, 1, 2, 1, 2, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 1, 2, 3, 3, 4]': 0.00043535045711798294, '[0, 1, 2, 1, 2, 3, 3]': 0.0008707009142359659, '[0, 1, 2, 1, 2, 3, 4, 4, 3, 4, 4, 5]': 0.00043535045711798294, '[0, 1, 2, 1, 2, 3, 4, 4, 3, 4]': 0.00043535045711798294, '[0, 1, 2, 1, 2, 3, 4, 4]': 0.0013060513713539488, '[0, 1, 2, 1, 2, 3, 4, 5, 5, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2]': 0.00043535045711798294, '[0, 1, 2, 1, 2, 3]': 0.0013060513713539488, '[0, 1, 2, 1, 2]': 0.0017414018284719317, '[0, 1, 2, 1]': 0.0013060513713539488, '[0, 1, 2, 2, 1, 2, 2, 3, 3, 4, 4]': 0.0008707009142359659, '[0, 1, 2, 2, 1, 2, 2, 3, 3]': 0.0008707009142359659, '[0, 1, 2, 2, 1, 2, 2, 3]': 0.0008707009142359659, '[0, 1, 2, 2, 1, 2, 2]': 0.008271658685241677, '[0, 1, 2, 2, 1, 2, 3, 3, 2]': 0.0021767522855899147, '[0, 1, 2, 2, 1, 2, 3, 3, 4, 4, 5, 5, 2]': 0.00043535045711798294, '[0, 1, 2, 2, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5, 2]': 0.0017414018284719317, '[0, 1, 2, 2, 1, 2, 3, 3]': 0.0013060513713539488, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 4]': 0.00043535045711798294, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 3]': 0.0008707009142359659, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 5, 5, 6, 6, 3, 2]': 0.00043535045711798294, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 5, 6, 7, 3, 4, 4, 5, 5, 6, 7, 8, 9, 10, 11]': 0.00043535045711798294, '[0, 1, 2, 2, 1, 2, 3, 4, 4]': 0.0021767522855899147, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 3]': 0.0008707009142359659, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 2, 3, 4, 4, 5, 5, 3]': 0.00043535045711798294, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 6, 6, 3, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4]': 0.00043535045711798294, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 6, 6, 4, 3, 4, 4, 5, 5, 2, 3, 4, 5, 6, 6, 7, 7, 8, 8, 5, 4, 3, 4, 4, 5, 5]': 0.00043535045711798294, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5]': 0.00043535045711798294, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 2]': 0.00043535045711798294, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6, 5]': 0.00043535045711798294, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6]': 0.00043535045711798294, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4]': 0.0017414018284719317, '[0, 1, 2, 2, 1, 2, 3, 4]': 0.006965607313887727, '[0, 1, 2, 2, 1, 2, 3]': 0.0017414018284719317, '[0, 1, 2, 2, 1, 2]': 0.013060513713539489, '[0, 1, 2, 2, 1]': 0.056595559425337776, '[0, 1, 2, 2, 3, 1, 2, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 1, 2, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 1, 2, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 1, 2, 2]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 1, 2, 3, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 1, 2, 3, 3, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 1, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 1, 2, 3, 4, 5, 5, 4, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 1, 2, 3, 4, 5, 5]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 1, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 1, 2]': 0.0017414018284719317, '[0, 1, 2, 2, 3, 1]': 0.0008707009142359659, '[0, 1, 2, 2, 3, 3, 1, 2, 2]': 0.0026121027427078976, '[0, 1, 2, 2, 3, 3, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3]': 0.0008707009142359659, '[0, 1, 2, 2, 3, 3, 1, 2, 3, 4]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 3, 1, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 3, 1, 2]': 0.0008707009142359659, '[0, 1, 2, 2, 3, 3, 1]': 0.003918154114061848, '[0, 1, 2, 2, 3, 3, 4, 1, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 3, 4, 4, 1, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 3, 4, 4, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 3]': 0.0013060513713539488, '[0, 1, 2, 2, 3, 4, 4, 1]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 4, 4, 3, 1, 2, 2]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 4, 4, 3, 1, 2, 3, 3]': 0.0017414018284719317, '[0, 1, 2, 2, 3, 4, 4, 3, 4, 4, 5, 1, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 4, 4, 3, 4, 4, 5, 5, 1, 2, 3, 3, 2, 3, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 4, 5, 5, 1, 2, 2, 3, 3, 4, 5, 6]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 4, 5, 5, 4, 1, 2, 2, 3, 4, 5, 5, 4]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 4, 5, 5, 6, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 4, 5, 6, 1, 2, 2, 3, 3, 4, 4, 5, 6, 7, 8, 8, 9, 10, 7, 8, 8, 9, 10, 11, 12]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 4, 5, 6, 6, 5, 4, 1, 2, 2, 3, 3, 4]': 0.00043535045711798294, '[0, 1, 2, 2, 3, 4, 5, 6, 7, 3, 4, 4, 5, 5, 6, 6, 1, 2, 3, 4]': 0.00043535045711798294, '[0, 1, 2, 2, 3]': 0.0017414018284719317, '[0, 1, 2, 2]': 0.08837614279495053, '[0, 1, 2, 3, 1, 2, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 1, 2, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 2, 1]': 0.0013060513713539488, '[0, 1, 2, 3, 2, 3, 1, 2, 3, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 2, 3, 1]': 0.00043535045711798294, '[0, 1, 2, 3, 2, 3, 3, 4, 4, 1, 2, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 2, 3, 3, 4, 5, 5, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 5]': 0.00043535045711798294, '[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 5, 6, 4, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 2, 3]': 0.0008707009142359659, '[0, 1, 2, 3, 2]': 0.0008707009142359659, '[0, 1, 2, 3, 3, 1, 2, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 1, 2, 2, 3, 3]': 0.0013060513713539488, '[0, 1, 2, 3, 3, 2, 1, 2, 2]': 0.004353504571179829, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 4, 5, 5, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 4, 5, 5, 6, 6, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 5, 6, 6, 5, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 5, 6]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 1, 2]': 0.004788855028297813, '[0, 1, 2, 3, 3, 2, 1]': 0.01044841097083159, '[0, 1, 2, 3, 3, 2, 3, 1, 2, 2]': 0.0013060513713539488, '[0, 1, 2, 3, 3, 2, 3, 1, 2]': 0.0008707009142359659, '[0, 1, 2, 3, 3, 2, 3, 1]': 0.0008707009142359659, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2, 3, 3, 4]': 0.0008707009142359659, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2]': 0.0034828036569438635, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 3, 1]': 0.0017414018284719317, '[0, 1, 2, 3, 3, 2, 3, 3, 4, 4, 1]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 7, 1, 2, 2, 3, 3, 4, 5, 5, 4, 5, 5, 6, 7, 8, 9]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 3]': 0.0008707009142359659, '[0, 1, 2, 3, 3, 2, 3, 4, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 4, 4, 1, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 4, 4, 3, 1, 2, 3, 3]': 0.0008707009142359659, '[0, 1, 2, 3, 3, 2, 3, 4, 4, 3, 1]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 4, 4, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 5, 4, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 5, 4, 5, 1, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 5, 4, 5, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 5, 6, 7, 1, 2, 2, 3, 3, 4, 5, 5, 4, 5, 6, 7, 7, 6, 5, 6, 7, 8, 9]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 6]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 2]': 0.04135829342620838, '[0, 1, 2, 3, 3, 4, 2, 1, 2, 2]': 0.0017414018284719317, '[0, 1, 2, 3, 3, 4, 2, 3, 4, 3, 4, 5, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 4, 2, 3, 4, 4, 3, 1, 2, 3, 3, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 4, 2, 3, 4, 5, 6, 6, 5, 6, 4, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 4, 2]': 0.0013060513713539488, '[0, 1, 2, 3, 3, 4, 4, 2, 1, 2, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 4, 4, 2, 1]': 0.0008707009142359659, '[0, 1, 2, 3, 3, 4, 4, 2, 3, 1, 2]': 0.0008707009142359659, '[0, 1, 2, 3, 3, 4, 4, 2, 3, 3, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 4, 4, 2, 3, 3, 4, 4, 1]': 0.0008707009142359659, '[0, 1, 2, 3, 3, 4, 4, 2, 3, 3, 4, 4, 5, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 4, 4, 2, 3, 4, 5, 1, 2, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 4, 4, 2]': 0.003918154114061848, '[0, 1, 2, 3, 3, 4, 4, 5, 5, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 4, 5, 2, 3, 3, 4, 4, 5, 5]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 4, 5, 6, 2, 3, 3, 4, 4, 5, 6, 7, 7, 6, 5, 6, 7, 7, 6, 7, 8, 9, 10, 11, 12, 12, 11, 10, 9]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 4, 5, 6, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 4, 5, 6, 6, 2, 3, 3, 4, 5, 5, 4, 1, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 3, 4, 5, 6, 6, 5, 4, 5, 6, 7, 7, 6, 2, 3, 3, 1, 2, 3, 4, 4]': 0.0008707009142359659, '[0, 1, 2, 3, 3]': 0.014801915542011419, '[0, 1, 2, 3, 4, 4, 1, 2, 3, 4, 5, 3, 4, 4, 5, 6, 7, 7, 6, 2, 3, 4, 5, 5, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 2, 3, 1, 2, 2, 3, 4, 5, 5, 3, 4, 5, 5]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 2, 3, 3]': 0.0008707009142359659, '[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 2]': 0.0026121027427078976, '[0, 1, 2, 3, 4, 4, 3, 2, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 2, 1]': 0.0017414018284719317, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 3, 1, 2, 3, 3, 2, 3, 3]': 0.0008707009142359659, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 3, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 3, 1]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.0013060513713539488, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 1, 2, 3, 4, 4, 3, 2]': 0.0008707009142359659, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 5, 6, 6, 5, 3, 1, 2, 3, 4, 4, 3, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 2, 3]': 0.0013060513713539488, '[0, 1, 2, 3, 4, 4, 3, 2]': 0.010883761427949572, '[0, 1, 2, 3, 4, 4, 3, 4, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 4, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 3, 1, 2, 3, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 3, 1, 2]': 0.0008707009142359659, '[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 4, 1, 2, 2, 3, 3, 4, 5, 6]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 4, 4, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 4, 4, 2]': 0.0034828036569438635, '[0, 1, 2, 3, 4, 4, 3, 4, 4, 5, 5, 2, 3, 4, 4, 3, 4, 4, 5, 5, 1, 2, 3, 3, 2, 3, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 4, 5, 2, 3, 4, 5, 5, 1, 2, 3, 4, 4, 3, 4, 5, 2, 3, 4, 5, 5]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 4, 5, 5, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3, 4, 5, 5, 4, 5, 2, 3, 4, 4, 3, 4, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 3]': 0.0074009577710057095, '[0, 1, 2, 3, 4, 4, 5, 3, 2, 1, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 5, 3, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 5, 5, 3, 2, 1]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 5, 5, 2, 1]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 5, 5, 3]': 0.0008707009142359659, '[0, 1, 2, 3, 4, 4, 5, 5, 6, 3, 4, 5, 6, 6, 5, 6, 4, 5, 6, 6, 2, 3, 4, 5, 6, 6, 5, 6, 4, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 5, 5, 6, 6, 3, 4, 4, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 5, 5, 6, 7, 8, 8, 7, 6, 3, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4, 5, 6, 7, 8, 9, 9, 8, 7, 3, 4, 5, 6, 7, 7, 6, 5, 4, 5, 5]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 4]': 0.006965607313887727, '[0, 1, 2, 3, 4, 5, 4, 3, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 4, 3, 4, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 5, 4, 1, 2, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2, 2, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2, 2, 3, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2, 3, 3, 4, 5, 6, 6, 5, 4, 2, 3, 4, 4, 5, 5, 6, 6, 7, 7, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3]': 0.0008707009142359659, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2]': 0.0026121027427078976, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 4, 2]': 0.0017414018284719317, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 5, 2, 3, 4, 5, 5, 1, 2, 3, 4, 4, 3, 2, 3, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 5, 4, 3]': 0.003918154114061848, '[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3]': 0.0013060513713539488, '[0, 1, 2, 3, 4, 5, 5, 4, 5, 6, 6, 5, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 5, 4]': 0.004353504571179829, '[0, 1, 2, 3, 4, 5, 5, 6, 4, 3, 2, 3, 4, 5, 6, 6, 7, 8, 9, 9, 8, 5, 6, 7, 8, 8, 7, 4, 5, 6, 7, 7, 6, 3, 4, 5, 6, 7, 8, 8, 7, 5, 6, 7, 8, 8, 7, 4, 5, 6, 7, 7, 6, 1, 2, 2, 3, 4, 4]': 0.0008707009142359659, '[0, 1, 2, 3, 4, 5, 5]': 0.0030474531998258805, '[0, 1, 2, 3, 4, 5, 6, 6, 1, 2, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 2, 3, 3, 4, 4, 1, 2, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 4, 2, 3, 1, 2, 2, 3, 4, 5, 5, 4, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 4, 5, 5, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3]': 0.0008707009142359659, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 6, 6, 5]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 3, 4, 4, 5, 5, 2, 1, 2, 2, 3, 3, 4, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 5, 5, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 6, 7, 7, 5, 6, 6, 7, 7, 4, 5, 5, 6, 6, 3, 4, 4, 2, 3, 3, 4, 4, 1, 2, 2, 3, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 6, 7, 7, 8, 8, 5, 4, 3, 2, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 6]': 0.0008707009142359659, '[0, 1, 2, 3, 4, 5, 6, 7, 7, 6, 7, 7, 5]': 0.0008707009142359659, '[0, 1, 2, 3, 4, 5, 6, 7, 7, 8, 8, 6, 7, 7, 5, 6, 6, 4, 5, 5, 3, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 7, 8, 7, 6, 5, 4, 3, 4, 4, 2, 3, 4, 5, 1, 2, 3, 4, 4, 2, 3, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 7, 8, 8, 7, 6, 5, 4, 3, 2, 3, 1, 2, 3, 4, 5, 5, 4, 3, 2]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 7, 8, 8, 9, 9, 7, 8, 8, 6, 5, 6, 6, 4, 5, 5, 3, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 7, 8, 8]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 8, 7, 6, 5, 4, 3]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 8, 7, 8, 8, 9, 9, 6, 7, 7, 5, 4]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5, 6]': 0.00043535045711798294, '[0, 1, 2, 3, 4, 5]': 0.00043535045711798294, '[0, 1, 2, 3, 4]': 0.003918154114061848, '[0, 1, 2, 3]': 0.003918154114061848, '[0, 1, 2]': 0.027862429255550908, '[0, 1]': 0.19547235524597434}}": {"max_depth": {}, "depth": {}, "structures": {"[0, 1]": 0.20838018184617202, "[0, 1, 1]": 0.1259385910817701, "[0, 1, 1, 2, 2, 3, 3]": 0.005144902359099523, "[0, 1, 2, 2, 1, 2]": 0.0231922790277002, "[0, 1, 1, 2, 2]": 0.04585237359269811, "[0, 1, 2, 3, 3, 2, 1, 2, 2]": 0.00541118671809001, "[0, 1, 2, 2]": 0.06494142109457576, "[0, 1, 2, 2, 1]": 0.029675147509414853, "[0, 1, 2, 2, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5, 2]": 0.003450009221172002, "[0, 1, 1, 2]": 0.04591265780128713, "[0, 1, 1, 2, 3, 3, 2]": 0.0034476002462902338, "[0, 1, 2, 1, 2, 3, 4, 5, 5, 3, 4, 4]": 0.0008440251489498395, "[0, 1, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2]": 0.0006303769335071332, "[0, 1, 1, 2, 3, 3, 2, 3, 3]": 0.0007517224049969159, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2]": 0.0006318746422474679, "[0, 1, 2, 2, 3, 4, 4, 3, 1, 2, 3, 3]": 0.0023443220484064197, "[0, 1, 2, 3, 3, 2, 3, 4, 4, 3, 1, 2, 3, 3]": 0.001329577937984722, "[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 5, 6, 4, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 3]": 0.0004550965119352653, "[0, 1, 2, 3, 4, 4, 5, 5, 6, 3, 4, 5, 6, 6, 5, 6, 4, 5, 6, 6, 2, 3, 4, 5, 6, 6, 5, 6, 4, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 3]": 0.0004550965119352653, "[0, 1, 2, 2, 1, 2, 3, 3, 4, 4, 5, 5, 2]": 0.0003975951177128601, "[0, 1, 2, 3, 4, 4, 3, 2, 1]": 0.0010154025131086015, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 5, 5, 6, 6, 3, 2]": 0.0005781090991113682, "[0, 1, 2, 2, 3, 3]": 0.00013936627781455772, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 2]": 0.0007148532717007623, "[0, 1, 2, 2, 3, 3, 4, 1, 2, 3, 3]": 0.000765623397356192, "[0, 1, 2]": 0.06862743991857075, "[0, 1, 2, 3, 4, 4, 3, 2]": 0.006876904005854892, "[0, 1, 2, 1, 2, 3, 4, 4, 3, 4, 4, 5]": 0.0005258412647156035, "[0, 1, 2, 2, 1, 2, 3]": 0.0032040723551122626, "[0, 1, 2, 3, 3]": 0.016862793971579984, "[0, 1, 2, 3, 3, 4, 2]": 0.0016651630530983938, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4]": 0.0006595900198243278, "[0, 1, 2, 3, 3, 2, 1, 2]": 0.008840781308218346, "[0, 1, 2, 2, 1, 2, 2]": 0.001725650209928992, "[0, 1, 1, 2, 3, 4, 4, 3]": 0.0016042128467167848, "[0, 1, 2, 3, 3, 2]": 0.03409975056129988, "[0, 1, 2, 3, 3, 2, 1]": 0.004826927573053596, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 6, 6, 4, 3, 4, 4, 5, 5, 2, 3, 4, 5, 6, 6, 7, 7, 8, 8, 5, 4, 3, 4, 4, 5, 5]": 0.0006364515201071152, "[0, 1, 2, 3, 4, 4, 3, 4, 4, 5, 5, 2, 3, 4, 4, 3, 4, 4, 5, 5, 1, 2, 3, 3, 2, 3, 3, 4, 4]": 0.0008163935230116222, "[0, 1, 2, 3, 4, 4, 5, 5, 6, 7, 8, 8, 7, 6, 3, 2]": 0.00040850076472426764, "[0, 1, 2, 3, 3, 4, 4, 2, 3, 3, 4, 4, 1]": 0.0008982012808416519, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 3, 4, 4, 5, 5, 2, 1, 2, 2, 3, 3, 4, 4]": 0.0006088198941688978, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 2, 3, 3, 4, 4, 1, 2, 2, 3, 3]": 0.0006318746422474679, "[0, 1, 2, 3, 4, 5, 5, 4, 3]": 0.0047330742308640756, "[0, 1, 2, 3, 4, 4, 3, 4, 4, 2]": 0.0034355162563361255, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2]": 0.0074049070693388095, "[0, 1, 2, 1, 2, 3]": 0.002762787575409456, "[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 4, 4, 3]": 0.0004796480169198203, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 3, 1]": 0.0004237990892821157, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4]": 0.0005078348248775204, "[0, 1, 2, 3, 4, 5, 6, 7, 7, 6, 7, 7, 5]": 0.0012221329145588, "[0, 1, 2, 3, 4, 4, 3, 4, 2, 3]": 0.0008163935230116222, "[0, 1, 2, 3, 4, 4, 3, 2, 3]": 0.0017988280565684755, "[0, 1, 2, 3, 3, 4, 4, 2, 3, 1, 2]": 0.0017156819238378957, "[0, 1, 2, 3, 4, 4, 5, 5, 3]": 0.0008651026942796869, "[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 3, 1, 2, 3, 2]": 0.0005781090991113682, "[0, 1, 2, 2, 3, 3, 1, 2, 2]": 0.004467119073217036, "[0, 1, 2, 3, 2, 3]": 0.001314519410150366, "[0, 1, 2, 3, 3, 4, 5, 6, 6, 2, 3, 3, 4, 5, 5, 4, 1, 2, 3, 3]": 0.000585681394451685, "[0, 1, 1, 2, 3, 4, 5, 6, 6, 5, 4]": 0.0009715180975724329, "[0, 1, 2, 2, 3, 4, 5, 5, 4, 1, 2, 2, 3, 4, 5, 5, 4]": 0.0007932550232944095, "[0, 1, 2, 3, 3, 2, 3, 1]": 0.0014252134171805206, "[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 3, 1, 2]": 0.0015543852944295978, "[0, 1, 2, 3, 1, 2, 2, 3, 3]": 0.0007332949951965819, "[0, 1, 2, 3, 3, 4, 5, 6, 2, 3, 3, 4, 4, 5, 6, 7, 7, 6, 5, 6, 7, 7, 6, 7, 8, 9, 10, 11, 12, 12, 11, 10, 9]": 0.0005811882682306805, "[0, 1, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6]": 0.00040850076472426764, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 3, 4, 5, 6, 7, 7, 6, 5, 6, 6]": 0.0007840651208520121, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.0013598453857569675, "[0, 1, 2, 2, 3, 4, 4, 3, 4, 4, 5, 1, 2, 3]": 0.0008440251489498395, "[0, 1, 1, 2, 3, 4, 5, 5, 6, 4, 5, 5, 6, 3, 4, 5, 6, 7, 8, 7, 6, 5, 4, 5, 5]": 0.0004550965119352653, "[0, 1, 2, 2, 3, 3, 1]": 0.003655617965590856, "[0, 1, 1, 2, 3, 4, 4]": 0.00508057733037718, "[0, 1, 2, 3, 3, 4, 4, 2, 1]": 0.0005403084638073727, "[0, 1, 2, 3, 4, 5, 5]": 0.004795021199638229, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 4, 2]": 0.0015249186947800463, "[0, 1, 2, 3, 4]": 0.006093032785470654, "[0, 1, 2, 3, 4, 5, 5, 4]": 0.004734951220678228, "[0, 1, 2, 3]": 0.004095868607417391, "[0, 1, 1, 2, 3, 4, 5, 6, 6, 5]": 0.0006974939927555487, "[0, 1, 2, 3, 4, 4]": 0.006312715684651196, "[0, 1, 2, 2, 1, 2, 3, 3, 2]": 0.0007025171789859428, "[0, 1, 2, 3, 4, 4, 2, 3, 1, 2, 2, 3, 4, 5, 5, 3, 4, 5, 5]": 0.0008440251489498395, "[0, 1, 2, 3, 4, 5, 6, 7, 8, 8]": 0.0004550965119352653, "[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 7, 8, 8, 7]": 0.0006917147719835494, "[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 7, 8, 9, 9, 8]": 0.0008348352465074422, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 2]": 0.0005781090991113682, "[0, 1, 1, 2, 3, 3]": 0.0006800899125168779, "[0, 1, 1, 2, 3]": 0.003371607469578355, "[0, 1, 2, 2, 3, 1, 2, 3]": 0.0008163935230116222, "[0, 1, 2, 3, 3, 4, 2, 3, 4, 3, 4, 5, 1, 2]": 0.0006318746422474679, "[0, 1, 2, 2, 3, 1, 2]": 0.0024692398996327683, "[0, 1, 2, 3, 2]": 0.001600933081977327, "[0, 1, 2, 3, 3, 2, 3, 1, 2, 2]": 0.002426042069317654, "[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3]": 0.0020045586947197093, "[0, 1, 2, 3, 3, 4, 4, 2]": 0.0030501810568288345, "[0, 1, 2, 3, 4, 4, 3, 2, 1, 2]": 0.0005761094662484059, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 3, 1, 2]": 0.0005258412647156035, "[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 2, 3, 3]": 0.001918762426459616, "[0, 1, 2, 3, 3, 2, 1, 2, 2, 3, 3]": 0.0024936197972796927, "[0, 1, 2, 1, 2, 2, 3, 3]": 0.0008947952746052696, "[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 2]": 0.003950130282365634, "[0, 1, 2, 3, 3, 4, 2, 3, 4, 5, 6, 6, 5, 6, 4, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 3]": 0.0006303769335071332, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 6, 6, 3, 2, 3]": 0.0008947952746052696, "[0, 1, 2, 2, 1, 2, 2, 3, 3, 4, 4]": 0.0016327870460232444, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3]": 0.0011391267990965715, "[0, 1, 2, 3, 3, 2, 3, 3, 4, 4, 1]": 0.0006640831460453321, "[0, 1, 2, 2, 3, 1, 2, 2, 3, 3]": 0.0008947952746052696, "[0, 1, 2, 3, 3, 2, 3]": 0.0007485933197544298, "[0, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 5, 5, 2, 1]": 0.0004550965119352653, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 3]": 0.0014252134171805206, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 3]": 0.00025398419660037006, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 1, 2, 3, 4, 4, 3, 2]": 0.0012129791588395059, "[0, 1, 2, 2, 3, 1, 2, 3, 3, 2, 3]": 0.0005811045165920378, "[0, 1, 2, 3, 3, 2, 3, 1, 2]": 0.0009101930238705306, "[0, 1, 2, 2, 3, 3, 1, 2]": 0.0010834815214592554, "[0, 1, 2, 3, 3, 2, 3, 4, 4, 3, 1]": 0.000737991771417975, "[0, 1, 2, 2, 3, 4, 4, 3, 1, 2, 2]": 0.0005072796428580375, "[0, 1, 2, 2, 3, 1, 2, 2, 3]": 0.0008348352465074422, "[0, 1, 2, 3, 4, 4, 3]": 0.007717516038823076, "[0, 1, 2, 3, 4, 4, 5, 5, 3, 2, 1]": 0.00019816576270445275, "[0, 1, 2, 3, 3, 2, 3, 3, 1]": 0.002448758955338605, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5, 3]": 0.0003228445137325257, "[0, 1, 2, 3, 3, 4, 4, 2, 3, 3, 1, 2]": 0.000662351393001418, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3]": 0.0006318746422474679, "[0, 1, 2, 2, 1, 2, 3, 3]": 0.0010154025131086015, "[0, 1, 2, 3, 4, 5, 5, 4, 5, 6, 6, 5, 3]": 0.0004570646992220903, "[0, 1, 2, 2, 1, 2, 3, 4]": 0.015945188672266887, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 6]": 0.0003425420482921399, "[0, 1, 2, 3, 4, 5]": 0.0004550965119352653, "[0, 1, 2, 2, 3, 4, 5, 6, 7, 3, 4, 4, 5, 5, 6, 6, 1, 2, 3, 4]": 0.0006303769335071332, "[0, 1, 2, 2, 3, 4, 5, 6, 1, 2, 2, 3, 3, 4, 4, 5, 6, 7, 8, 8, 9, 10, 7, 8, 8, 9, 10, 11, 12]": 0.0004550965119352653, "[0, 1, 2, 3, 4, 5, 5, 6, 4, 3, 2, 3, 4, 5, 6, 6, 7, 8, 9, 9, 8, 5, 6, 7, 8, 8, 7, 4, 5, 6, 7, 7, 6, 3, 4, 5, 6, 7, 8, 8, 7, 5, 6, 7, 8, 8, 7, 4, 5, 6, 7, 7, 6, 1, 2, 2, 3, 4, 4]": 0.0018679923008041858, "[0, 1, 2, 3, 4, 4, 5, 3, 2]": 0.0006088198941688978, "[0, 1, 2, 3, 2, 1]": 0.002633615698160379, "[0, 1, 2, 3, 3, 4, 5, 6, 6, 5, 4, 5, 6, 7, 7, 6, 2, 3, 3, 1, 2, 3, 4, 4]": 0.0013067355006207094, "[0, 1, 2, 2, 1, 2, 2, 3]": 0.001688050297899679, "[0, 1, 2, 3, 4, 4, 3, 4, 5, 5, 4, 5, 2, 3, 4, 4, 3, 4, 1, 2]": 0.0006303769335071332, "[0, 1, 2, 2, 3, 3, 1, 2, 3, 4]": 0.0006318746422474679, "[0, 1, 2, 2, 3, 3, 1, 2, 3]": 0.0008163935230116222, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 1, 2]": 0.0004550965119352653, "[0, 1, 2, 3, 3, 2, 3, 3]": 0.000484663186170057, "[0, 1, 1, 2, 2, 3]": 0.0018749571867942114, "[0, 1, 1, 2, 2, 3, 4, 5, 5, 4]": 0.0003271339899531415, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2]": 0.0025882267396995693, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 6, 6, 5]": 0.0003577306390688377, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3]": 0.0007607086574389246, "[0, 1, 2, 3, 3, 4, 4, 2, 3, 4, 5, 1, 2, 2, 3]": 0.0006318746422474679, "[0, 1, 2, 2, 1, 2, 3, 4, 4]": 0.0036436818576554494, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5]": 0.0005253393405929759, "[0, 1, 2, 3, 3, 4, 5, 2, 3, 3, 4, 4, 5, 5]": 0.0004565095172026074, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 5, 4, 3]": 0.0004841411431408248, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 5, 5, 4]": 0.0007148532717007623, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2, 2, 3, 4, 4]": 0.0007148532717007623, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2, 2, 3, 4]": 0.0005258412647156035, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 3, 1, 2, 3, 3, 2, 3, 3]": 0.0018679923008041858, "[0, 1, 2, 3, 3, 4, 4, 5, 5, 2]": 9.41297068279157e-05, "[0, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 2]": 0.0002765675142981, "[0, 1, 2, 2, 1, 2, 2, 3, 3]": 0.001362380778258026, "[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2]": 0.0008947952746052696, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 3]": 0.00011976401111080536, "[0, 1, 2, 1, 2]": 0.0036299512240765084, "[0, 1, 2, 3, 3, 4, 4]": 0.0004288778912643902, "[0, 1, 2, 3, 4, 4, 3, 4, 5, 2, 3, 4, 5, 5, 1, 2, 3, 4, 4, 3, 4, 5, 2, 3, 4, 5, 5]": 0.0005781090991113682, "[0, 1, 2, 1, 2, 3, 4, 4, 3, 4]": 0.0006303769335071332, "[0, 1, 2, 3, 2, 3, 3, 4, 5, 5, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 5]": 0.0005781090991113682, "[0, 1, 2, 1, 2, 3, 4, 4]": 0.0018911308005213992, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2, 3, 3, 4, 5, 6, 6, 5, 4, 2, 3, 4, 4, 5, 5, 6, 6, 7, 7, 3, 4, 4]": 0.0006470530684435699, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 4, 2, 3, 1, 2, 2, 3, 4, 5, 5, 4, 3]": 0.0006318746422474679, "[0, 1, 2, 2, 3, 4, 5, 6, 6, 5, 4, 1, 2, 2, 3, 3, 4]": 0.00047357343031983855, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 4]": 0.0005258412647156035, "[0, 1, 2, 3, 3, 1, 2]": 0.0006303769335071332, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 5, 4, 5, 1, 2]": 0.0004550965119352653, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 5, 4, 5, 1, 2, 3, 3]": 0.0004550965119352653, "[0, 1, 1, 2, 3, 4, 4, 3, 2]": 0.001220164372524246, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 4, 5, 5, 4]": 0.0005304181425752504, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 4, 5, 5, 6, 6, 4]": 0.0005258412647156035, "[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 6, 5, 6, 6]": 0.0006364515201071152, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6]": 0.0005258412647156035, "[0, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 7, 1, 2, 2, 3, 3, 4, 5, 5, 4, 5, 5, 6, 7, 8, 9]": 0.0006318746422474679, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 5, 6, 7, 1, 2, 2, 3, 3, 4, 5, 5, 4, 5, 6, 7, 7, 6, 5, 6, 7, 8, 9]": 0.0004550965119352653, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4]": 0.000631754743885722, "[0, 1, 1, 2, 3, 4]": 0.0009101930238705306, "[0, 1, 2, 2, 3, 1, 2, 3, 3]": 0.0008163935230116222, "[0, 1, 2, 2, 3, 1, 2, 3, 4, 5, 5, 4, 3, 4, 4]": 0.0005904035814419149, "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 8, 7, 6, 5, 4, 3]": 0.0005078348248775204, "[0, 1, 2, 3, 2, 3, 3, 4, 4, 1, 2, 2, 3]": 0.0006303769335071332, "[0, 1, 2, 3, 2, 3, 1, 2, 3, 2, 3]": 0.0004550965119352653, "[0, 1, 2, 2, 3, 1, 2, 3, 2, 3]": 0.0004550965119352653, "[0, 1, 2, 3, 4, 5, 6, 7, 8, 8, 9, 9, 7, 8, 8, 6, 5, 6, 6, 4, 5, 5, 3, 4]": 0.0006303769335071332, "[0, 1, 2, 3, 4, 5, 6, 7, 7, 8, 8, 6, 7, 7, 5, 6, 6, 4, 5, 5, 3, 4]": 0.0008163935230116222, "[0, 1, 2, 3, 4, 5, 6, 6]": 0.0009101930238705306, "[0, 1, 2, 1, 2, 3, 3, 4]": 0.0008947952746052696, "[0, 1, 1, 2, 3, 3, 2, 3]": 0.0018596588622363632, "[0, 1, 2, 2, 3, 3, 4, 4, 1, 2]": 0.0006303769335071332, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 4, 5, 5, 2, 3]": 0.0005456225509138603, "[0, 1, 2, 1]": 0.002273731692351364, "[0, 1, 2, 3, 4, 5, 6]": 0.0004550965119352653, "[0, 1, 1, 2, 3, 4, 5, 5]": 0.0008192077206061425, "[0, 1, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4]": 0.000585681394451685, "[0, 1, 2, 2, 3, 4, 4, 3, 4, 4, 5, 5, 1, 2, 3, 3, 2, 3, 3, 4, 4]": 0.0003975951177128601, "[0, 1, 1, 2, 3, 4, 4, 5]": 0.0008440251489498395, "[0, 1, 2, 2, 3, 4, 5, 5, 6, 1, 2]": 0.0005781090991113682, "[0, 1, 2, 3, 3, 2, 3, 4, 4, 3]": 0.00045201639098160307, "[0, 1, 1, 2, 3, 4, 5, 6, 6]": 0.0008440251489498395, "[0, 1, 2, 3, 4, 5, 6, 6, 1, 2, 2, 3, 3]": 0.0006088198941688978, "[0, 1, 2, 3, 4, 4, 1, 2]": 0.0006303769335071332, "[0, 1, 2, 2, 3, 4, 5, 5, 1, 2, 2, 3, 3, 4, 5, 6]": 0.000765623397356192, "[0, 1, 2, 2, 3, 1, 2, 2]": 0.0005580497685134677, "[0, 1, 1, 2, 3, 4, 4, 3, 4, 2, 3, 4, 3]": 0.000765623397356192, "[0, 1, 2, 2, 3, 1]": 0.0013744432915250902, "[0, 1, 2, 3, 4, 4, 5, 3, 2, 1, 2, 3]": 0.0007840651208520121, "[0, 1, 2, 3, 2, 3, 1]": 0.0008947952746052696, "[0, 1, 2, 2, 3, 4, 4, 1]": 0.0005580497685134677, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2]": 0.0008163935230116222, "[0, 1, 2, 3, 4, 4, 5, 5, 6, 6, 3, 4, 4, 2]": 0.0003273376399535301, "[0, 1, 2, 1, 2, 3, 3]": 0.001531246794712384, "[0, 1, 2, 3, 4, 5, 6, 6, 7, 7, 5, 6, 6, 7, 7, 4, 5, 5, 6, 6, 3, 4, 4, 2, 3, 3, 4, 4, 1, 2, 2, 3, 3]": 0.000765623397356192, "[0, 1, 1, 2, 2, 3, 4, 5, 5, 4, 3]": 0.0008947952746052696, "[0, 1, 2, 3, 3, 1, 2, 2, 3, 3]": 0.0006115812673459879, "[0, 1, 2, 3, 3, 4, 4, 2, 1, 2, 2, 3, 3]": 0.000765623397356192, "[0, 1, 2, 3, 3, 4, 4, 2, 3, 3, 4, 4, 5, 1, 2]": 0.0006318746422474679, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3]": 0.0007332949951965819, "[0, 1, 2, 2, 3]": 0.0037674188893038786, "[0, 1, 2, 3, 4, 5, 6, 6, 7, 7, 8, 8, 5, 4, 3, 2, 3]": 0.0004550965119352653, "[0, 1, 1, 2, 3, 4, 4, 3, 4, 5, 4, 5]": 0.0008947952746052696, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2]": 0.0006088198941688978, "[0, 1, 2, 3, 4, 4, 5, 6, 7, 8, 9, 9, 8, 7, 3, 4, 5, 6, 7, 7, 6, 5, 4, 5, 5]": 0.0008440251489498395, "[0, 1, 1, 2, 3, 3, 4, 4, 2, 3, 3, 4]": 0.00047357343031983855, "[0, 1, 2, 3, 3, 4, 5, 6, 2, 3, 3]": 0.0004288778912643902, "[0, 1, 2, 3, 4, 4, 1, 2, 3, 4, 5, 3, 4, 4, 5, 6, 7, 7, 6, 2, 3, 4, 5, 5, 4]": 0.000560811141690558, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 2, 3, 4, 4, 5, 5, 3]": 0.0005303343909366078, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 5, 6, 6, 5, 3, 1, 2, 3, 4, 4, 3, 2]": 0.0005811045165920378, "[0, 1, 2, 3, 1, 2, 3, 4, 4]": 0.000737991771417975, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 2]": 0.0005304181425752504, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2, 3]": 0.0004550965119352653, "[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 4, 1, 2, 2, 3, 3, 4, 5, 6]": 0.0008163935230116222, "[0, 1, 2, 3, 3, 2, 3, 4, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4]": 0.0006318746422474679, "[0, 1, 2, 3, 3, 4, 2, 1, 2, 2]": 0.0036113058505802993, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2, 3, 3, 4]": 0.001351304791807878, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 5, 6, 6, 5, 2]": 0.0006640831460453321, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 3]": 0.0003726997622832343, "[0, 1, 2, 3, 4, 5, 5, 4, 1, 2, 2]": 0.0006825248695411522, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 5, 6, 7, 3, 4, 4, 5, 5, 6, 7, 8, 9, 10, 11]": 0.0005811045165920378, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 5, 6]": 0.0004550965119352653, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 5, 2, 3, 4, 5, 5, 1, 2, 3, 4, 4, 3, 2, 3, 4]": 0.0005258412647156035, "[0, 1, 2, 3, 4, 4, 3, 4, 5, 5, 2]": 0.0005100410160351278, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6, 5]": 0.0002666135603339398, "[0, 1, 2, 2, 3, 3, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3]": 0.0009471468606396771, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4]": 0.0019828415719977247, "[0, 1, 2, 2, 3, 1, 2, 3, 4, 5, 5]": 0.0005901745206726893, "[0, 1, 2, 2, 3, 1, 2, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4]": 0.0008163935230116222, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 3]": 0.0014804766690569538, "[0, 1, 2, 3, 3, 2, 3, 4, 4, 1, 2, 3, 3]": 0.0005072796428580375, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 2]": 0.0006640831460453321, "[0, 1, 2, 3, 4, 5, 6, 7, 8, 8, 7, 6, 5, 4, 3, 2, 3, 1, 2, 3, 4, 5, 5, 4, 3, 2]": 0.0005781090991113682, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4]": 0.0007424848976389793, "[0, 1, 1, 2, 3, 4, 4, 5, 3, 4, 5, 5, 2]": 0.0007932550232944095, "[0, 1, 2, 2, 3, 3, 4, 4, 1, 2, 3, 3]": 0.0006470530684435699, "[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 4]": 0.0006595900198243278, "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 8, 7, 8, 8, 9, 9, 6, 7, 7, 5, 4]": 0.00040124626532617305, "[0, 1, 2, 3, 4, 4, 3, 4, 2]": 0.000737991771417975, "[0, 1, 1, 2, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4]": 0.0007148532717007623, "[0, 1, 2, 3, 4, 5, 6, 7, 8, 7, 6, 5, 4, 3, 4, 4, 2, 3, 4, 5, 1, 2, 3, 4, 4, 2, 3, 4]": 0.0003975951177128601, "[0, 1, 2, 3, 4, 5, 4, 3, 2]": 0.0005258412647156035, "[0, 1, 2, 3, 4, 5, 4, 3, 4, 2]": 0.0004550965119352653, "[0, 1, 1, 2, 2, 3, 4, 5, 6, 7, 7]": 0.001565461280879746, "[0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 1, 2]": 0.000585681394451685, "[0, 1, 2, 3, 4, 4, 3, 4, 4]": 0.000560811141690558, "[0, 1, 2, 3, 3, 4, 2, 3, 4, 4, 3, 1, 2, 3, 3, 2]": 0.0004550965119352653}, "features": {"constants": 0.46358084069773686, "variables": 0.5364191593022631}, "functions": {"cubed": 0.14921124330476984, "squared": 0.7138540988220661, "exp": 0.0009866907458214158, "sqrt": 0.08894571888805046, "abs": 0.0009866907458214158, "cos": 0.022280539917401285, "sin": 0.01886483077266418, "cosh": 0.0027120924185183685, "tanh": 1.587055873340241e-05, "sinh": 0.0011555330803322886, "log": 0.0009866907458214158}, "operators": {"*": 0.6409819824585885, "/": 0.0692640132429371, "^": 0.05885149775732697, "-": 0.13813106053897634, "+": 0.09277144600217119}, "function_conditionals": {"cubed": {"features": {"constants": 0.1941176470588235, "variables": 0.8058823529411765}, "functions": {"squared": 0.6513647388059702, "cubed": 0.3486352611940299}, "operators": {"*": 0.8042886527164189, "-": 0.13793995342351414, "+": 0.042215145583636655, "/": 0.015556248276430106}}, "squared": {"features": {"constants": 0.5387755102040817, "variables": 0.4612244897959184}, "functions": {"squared": 0.8817723850239167, "cubed": 0.11044471227100489, "abs": 0.006976365731807302, "sin": 0.0008065369732712583}, "operators": {"/": 0.010539643932640654, "*": 0.7019901678095036, "-": 0.1959755727877388, "+": 0.09149461547011697}}, "exp": {"features": {"constants": 0.0, "variables": 1.0}, "functions": {"squared": 0.802600963935516, "cubed": 0.197399036064484}, "operators": {"/": 0.5382467895030708, "-": 0.24489112227805698, "*": 0.1000558347292016, "+": 0.11680625348967057}}, "sqrt": {"features": {"constants": 0.9993332752278501, "variables": 0.0006667247721499679}, "functions": {"squared": 0.997648443519569, "abs": 0.0023515564804309913}, "operators": {"*": 0.5784501348904902, "/": 0.08537480920095133, "+": 0.24888515672145115, "-": 0.0872898991871073}}, "abs": {"features": {"constants": 0.5499999999999999, "variables": 0.4500000000000001}, "functions": {}, "operators": {"/": 0.8456768249468464, "*": 0.15432317505315368}}, "cos": {"features": {"constants": 0.9993332814115465, "variables": 0.0006667185884533662}, "functions": {}, "operators": {"+": 0.3353712948894196, "-": 0.45069376033126846, "*": 0.21393494477931202}}, "sin": {"features": {"constants": 0.9992672040503631, "variables": 0.000732795949636933}, "functions": {"squared": 1.0}, "operators": {"-": 0.35014662081179887, "+": 0.6017851980746625, "/": 0.04806818111353865}}, "cosh": {"features": {"constants": 1.0, "variables": 0.0}, "functions": {}, "operators": {"*": 1.0}}, "tanh": {"features": {"constants": 1.0, "variables": 0.0}, "functions": {}, "operators": {"*": 1.0}}, "sinh": {"features": {"constants": 0.9545454545454546, "variables": 0.04545454545454546}, "functions": {}, "operators": {}}, "log": {"features": {"constants": 0.0, "variables": 1.0}, "functions": {}, "operators": {"^": 1.0}}}, "operator_conditionals": {"*": {"features": {"constants": 0.38590023061726514, "variables": 0.6140997693827349}, "functions": {"exp": 0.003959382973193769, "sqrt": 0.6490048756657717, "squared": 0.06908298399135777, "abs": 0.0009416898474603168, "cos": 0.1270415512589031, "sin": 0.1357947465802452, "cubed": 0.006370195004319179, "tanh": 0.00318458869661701, "cosh": 0.003678296134671744, "log": 0.0009416898474603168}, "operators": {"^": 0.17036015837283142, "*": 0.6350345934516782, "-": 0.15555912846869255, "+": 0.03663137967314808, "/": 0.0024147400336496827}}, "/": {"features": {"constants": 0.6014238081567458, "variables": 0.39857619184325416}, "functions": {"sqrt": 0.6508536980093867, "squared": 0.3097386308464153, "exp": 0.003135620650590698, "log": 0.03627205049360738}, "operators": {"*": 0.6444900489203303, "^": 0.14130622793166359, "-": 0.19101947730250687, "+": 0.023184245845499166}}, "^": {"features": {"constants": 0.37300222520755477, "variables": 0.6269977747924452}, "functions": {"exp": 0.03289007161514565, "squared": 0.8206102697773539, "cubed": 0.14649965860750047}, "operators": {"-": 0.286300621494364, "/": 0.24971750978094107, "+": 0.0009589001587148849, "*": 0.46206406840726505, "^": 0.0009589001587148849}}, "-": {"features": {"constants": 0.835727247469027, "variables": 0.16427275253097304}, "functions": {"exp": 0.0009660452272441601, "sin": 0.377532710122936, "sqrt": 0.4749442952794016, "tanh": 0.12467474533596475, "squared": 0.021882204034453664}, "operators": {"^": 0.12760449401331583, "+": 0.2571483266441882, "*": 0.5370209058849575, "/": 0.0772377532267214, "-": 0.0009885202308169863}}, "+": {"features": {"constants": 0.42221067670792817, "variables": 0.5777893232920718}, "functions": {"squared": 0.10133100733401827, "sqrt": 0.34692652758140147, "cos": 0.3674460120640023, "exp": 0.01432981720900428, "sin": 0.07455573752148836, "tanh": 0.09541089829008535}, "operators": {"^": 0.04009859902346872, "+": 0.1461016486769288, "*": 0.7120481893710094, "-": 0.04746661674526358, "/": 0.05428494618332942}}}, "operators_and_functions": {"*": 0.4532333645735708, "/": 0.03917525773195876, "^": 0.08772258669165886, "-": 0.08641049671977508, "+": 0.057919400187441426, "cubed": 0.04386129334582943, "squared": 0.19400187441424555, "exp": 0.003561387066541706, "sqrt": 0.017994376757263356, "abs": 0.0022492970946579195, "cos": 0.005435801312089972, "sin": 0.006185567010309278, "cosh": 0.0005623242736644799, "tanh": 0.0007497656982193065, "sinh": 0.00018744142455482662, "log": 0.0007497656982193065}}, "{'features': {'constants': 0.34810126582278483, 'variables': 0.6518987341772152}, 'function_conditionals': {'abs': {'features': {'constants': 0.2222222222222222, 'variables': 0.7777777777777778}, 'functions': {}, 'operators': {'*': 0.5, '/': 0.5}}, 'cos': {'features': {'constants': 0.8947368421052632, 'variables': 0.10526315789473684}, 'functions': {}, 'operators': {'*': 0.22222222222222218, '+': 0.3333333333333333, '-': 0.44444444444444436}}, 'cosh': {'features': {'constants': 1.0, 'variables': 0.0}, 'functions': {}, 'operators': {'*': 1.0}}, 'cubed': {'features': {'constants': 0.0784313725490196, 'variables': 0.9215686274509803}, 'functions': {'cubed': 0.3541666666666667, 'squared': 0.6458333333333334}, 'operators': {'*': 0.8571428571428572, '+': 0.030075187969924814, '-': 0.09774436090225565, '/': 0.015037593984962407}}, 'exp': {'features': {'constants': 0.0, 'variables': 1.0}, 'functions': {'cubed': 0.25, 'squared': 0.75}, 'operators': {'*': 0.1, '+': 0.1, '-': 0.2, '/': 0.6}}, 'log': {'features': {'constants': 0.0, 'variables': 1.0}, 'functions': {}, 'operators': {'^': 1.0}}, 'sin': {'features': {'constants': 0.9090909090909091, 'variables': 0.09090909090909091}, 'functions': {'squared': 1.0}, 'operators': {'+': 0.5333333333333333, '-': 0.3333333333333333, '/': 0.13333333333333333}}, 'sinh': {'features': {'constants': 1.0, 'variables': 0.0}, 'functions': {}, 'operators': {}}, 'sqrt': {'features': {'constants': 0.8837209302325582, 'variables': 0.11627906976744186}, 'functions': {'abs': 0.027777777777777776, 'squared': 0.9722222222222222}, 'operators': {'*': 0.6153846153846154, '+': 0.23076923076923078, '-': 0.07692307692307693, '/': 0.07692307692307693}}, 'squared': {'features': {'constants': 0.21768707482993196, 'variables': 0.782312925170068}, 'functions': {'abs': 0.00946372239747634, 'cubed': 0.14195583596214512, 'sin': 0.0031545741324921135, 'squared': 0.8454258675078864}, 'operators': {'*': 0.7804295942720764, '+': 0.06921241050119331, '-': 0.13842482100238662, '/': 0.011933174224343675}}, 'tanh': {'features': {'constants': 1.0, 'variables': 0.0}, 'functions': {}, 'operators': {'*': 1.0}}}, 'functions': {'abs': 0.00816326530612245, 'cos': 0.019727891156462583, 'cosh': 0.0020408163265306124, 'cubed': 0.15918367346938775, 'exp': 0.01292517006802721, 'log': 0.0027210884353741495, 'sin': 0.022448979591836733, 'sinh': 0.0006802721088435374, 'sqrt': 0.0653061224489796, 'squared': 0.7040816326530612, 'tanh': 0.0027210884353741495}, 'max_num_variables': 100, 'operator_conditionals': {'*': {'features': {'constants': 0.3047890897557881, 'variables': 0.6952109102442119}, 'functions': {'abs': 0.02976190476190476, 'cos': 0.10714285714285714, 'cosh': 0.005952380952380952, 'cubed': 0.047619047619047616, 'exp': 0.047619047619047616, 'log': 0.011904761904761904, 'sin': 0.11904761904761904, 'sqrt': 0.4166666666666667, 'squared': 0.20833333333333334, 'tanh': 0.005952380952380952}, 'operators': {'*': 0.6206373292867983, '+': 0.03641881638846738, '-': 0.12518968133535663, '/': 0.0015174506828528076, '^': 0.21623672230652508}}, '+': {'features': {'constants': 0.3367003367003367, 'variables': 0.6632996632996633}, 'functions': {'cos': 0.28571428571428575, 'exp': 0.07142857142857144, 'sin': 0.07142857142857144, 'sqrt': 0.2142857142857143, 'squared': 0.28571428571428575, 'tanh': 0.07142857142857144}, 'operators': {'*': 0.7216117216117216, '+': 0.11721611721611722, '-': 0.03663003663003663, '/': 0.06227106227106227, '^': 0.06227106227106227}}, '-': {'features': {'constants': 0.6133682830930537, 'variables': 0.38663171690694625}, 'functions': {'exp': 0.07142857142857142, 'sin': 0.35714285714285715, 'sqrt': 0.2857142857142857, 'squared': 0.14285714285714285, 'tanh': 0.14285714285714285}, 'operators': {'*': 0.5523809523809524, '+': 0.2, '-': 0.01904761904761905, '/': 0.08571428571428572, '^': 0.14285714285714285}}, '/': {'features': {'constants': 0.4734982332155477, 'variables': 0.5265017667844523}, 'functions': {'exp': 0.05555555555555555, 'log': 0.1111111111111111, 'sqrt': 0.3888888888888889, 'squared': 0.4444444444444444}, 'operators': {'*': 0.6216216216216216, '+': 0.018018018018018018, '-': 0.16216216216216217, '^': 0.1981981981981982}}, '^': {'features': {'constants': 0.37468030690537085, 'variables': 0.6253196930946292}, 'functions': {'cubed': 0.19047619047619047, 'exp': 0.047619047619047616, 'squared': 0.7619047619047619}, 'operators': {'*': 0.4330708661417323, '+': 0.03937007874015748, '-': 0.30708661417322836, '/': 0.2125984251968504, '^': 0.007874015748031496}}}, 'operators': {'*': 0.625614489003881, '+': 0.07994825355756792, '-': 0.11927554980595084, '/': 0.05407503234152652, '^': 0.12108667529107374}, 'operators_and_functions': {'*': 0.4532333645735708, '+': 0.057919400187441426, '-': 0.08641049671977508, '/': 0.03917525773195876, '^': 0.08772258669165886, 'abs': 0.0022492970946579195, 'cos': 0.005435801312089972, 'cosh': 0.0005623242736644799, 'cubed': 0.04386129334582943, 'exp': 0.003561387066541706, 'log': 0.0007497656982193065, 'sin': 0.006185567010309278, 'sinh': 0.00018744142455482662, 'sqrt': 0.017994376757263356, 'squared': 0.19400187441424555, 'tanh': 0.0007497656982193065}, 'structures': {'[0, 1, 1, 2, 2, 3, 3]': 0.004329004329004347, '[0, 1, 1, 2, 2, 3, 4, 5, 5, 4, 3]': 0.0005411255411255434, '[0, 1, 1, 2, 2, 3, 4, 5, 5, 4]': 0.0005411255411255434, '[0, 1, 1, 2, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4]': 0.0005411255411255434, '[0, 1, 1, 2, 2, 3, 4, 5, 6, 7, 7]': 0.0010822510822510868, '[0, 1, 1, 2, 2, 3]': 0.0010822510822510868, '[0, 1, 1, 2, 2]': 0.0449134199134201, '[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 6, 5, 6, 6]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 7, 8, 8, 7]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 7, 8, 9, 9, 8]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 3, 2, 3, 3]': 0.0010822510822510868, '[0, 1, 1, 2, 3, 3, 2, 3]': 0.0010822510822510868, '[0, 1, 1, 2, 3, 3, 2]': 0.006493506493506522, '[0, 1, 1, 2, 3, 3, 4, 4, 2, 3, 3, 4]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 3]': 0.005411255411255434, '[0, 1, 1, 2, 3, 4, 4, 3, 2]': 0.0016233766233766304, '[0, 1, 1, 2, 3, 4, 4, 3, 4, 2, 3, 4, 3]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 4, 4, 3, 4, 5, 4, 5]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 4, 4, 3]': 0.002705627705627717, '[0, 1, 1, 2, 3, 4, 4, 5, 3, 4, 5, 5, 2]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 4, 4, 5]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 4, 4]': 0.004329004329004347, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 2]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 3, 4, 5, 6, 7, 7, 6, 5, 6, 6]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 3]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 3]': 0.0010822510822510868, '[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 4, 5, 5, 6, 4, 5, 5, 6, 3, 4, 5, 6, 7, 8, 7, 6, 5, 4, 5, 5]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 4, 5, 5]': 0.0010822510822510868, '[0, 1, 1, 2, 3, 4, 5, 6, 6, 5, 4]': 0.0010822510822510868, '[0, 1, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 4, 5, 6, 6, 5]': 0.0010822510822510868, '[0, 1, 1, 2, 3, 4, 5, 6, 6]': 0.0005411255411255434, '[0, 1, 1, 2, 3, 4]': 0.0010822510822510868, '[0, 1, 1, 2, 3]': 0.0021645021645021736, '[0, 1, 1, 2]': 0.03192640692640707, '[0, 1, 1]': 0.286796536796538, '[0, 1, 2, 1, 2, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 1, 2, 3, 3, 4]': 0.0005411255411255434, '[0, 1, 2, 1, 2, 3, 3]': 0.0010822510822510868, '[0, 1, 2, 1, 2, 3, 4, 4, 3, 4, 4, 5]': 0.0005411255411255434, '[0, 1, 2, 1, 2, 3, 4, 4, 3, 4]': 0.0005411255411255434, '[0, 1, 2, 1, 2, 3, 4, 4]': 0.0016233766233766304, '[0, 1, 2, 1, 2, 3, 4, 5, 5, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2]': 0.0005411255411255434, '[0, 1, 2, 1, 2, 3]': 0.0016233766233766304, '[0, 1, 2, 1, 2]': 0.0021645021645021736, '[0, 1, 2, 1]': 0.0016233766233766304, '[0, 1, 2, 2, 1, 2, 2, 3, 3, 4, 4]': 0.0010822510822510868, '[0, 1, 2, 2, 1, 2, 2, 3, 3]': 0.0010822510822510868, '[0, 1, 2, 2, 1, 2, 2, 3]': 0.0010822510822510868, '[0, 1, 2, 2, 1, 2, 2]': 0.010281385281385325, '[0, 1, 2, 2, 1, 2, 3, 3, 2]': 0.002705627705627717, '[0, 1, 2, 2, 1, 2, 3, 3, 4, 4, 5, 5, 2]': 0.0005411255411255434, '[0, 1, 2, 2, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5, 2]': 0.0021645021645021736, '[0, 1, 2, 2, 1, 2, 3, 3]': 0.0016233766233766304, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 4]': 0.0005411255411255434, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 3]': 0.0010822510822510868, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 5, 5, 6, 6, 3, 2]': 0.0005411255411255434, '[0, 1, 2, 2, 1, 2, 3, 4, 4, 5, 6, 7, 3, 4, 4, 5, 5, 6, 7, 8, 9, 10, 11]': 0.0005411255411255434, '[0, 1, 2, 2, 1, 2, 3, 4, 4]': 0.002705627705627717, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 3]': 0.0010822510822510868, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 2, 3, 4, 4, 5, 5, 3]': 0.0005411255411255434, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 6, 6, 3, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4]': 0.0005411255411255434, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 6, 6, 4, 3, 4, 4, 5, 5, 2, 3, 4, 5, 6, 6, 7, 7, 8, 8, 5, 4, 3, 4, 4, 5, 5]': 0.0005411255411255434, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 5]': 0.0005411255411255434, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 2]': 0.0005411255411255434, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6, 5]': 0.0005411255411255434, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6]': 0.0005411255411255434, '[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4]': 0.0021645021645021736, '[0, 1, 2, 2, 1, 2, 3, 4]': 0.008658008658008694, '[0, 1, 2, 2, 1, 2, 3]': 0.0021645021645021736, '[0, 1, 2, 2, 1, 2]': 0.0162337662337663, '[0, 1, 2, 2, 1]': 0.07034632034632064, '[0, 1, 2, 2, 3, 1, 2, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 1, 2, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 1, 2, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 1, 2, 2]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 1, 2, 3, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 1, 2, 3, 3, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 1, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 1, 2, 3, 4, 5, 5, 4, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 1, 2, 3, 4, 5, 5]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 1, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 1, 2]': 0.0021645021645021736, '[0, 1, 2, 2, 3, 1]': 0.0010822510822510868, '[0, 1, 2, 2, 3, 3, 1, 2, 2]': 0.003246753246753261, '[0, 1, 2, 2, 3, 3, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3]': 0.0010822510822510868, '[0, 1, 2, 2, 3, 3, 1, 2, 3, 4]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 3, 1, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 3, 1, 2]': 0.0010822510822510868, '[0, 1, 2, 2, 3, 3, 1]': 0.004870129870129891, '[0, 1, 2, 2, 3, 3, 4, 1, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 3, 4, 4, 1, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 3, 4, 4, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 3]': 0.0016233766233766304, '[0, 1, 2, 2, 3, 4, 4, 1]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 4, 4, 3, 1, 2, 2]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 4, 4, 3, 1, 2, 3, 3]': 0.0021645021645021736, '[0, 1, 2, 2, 3, 4, 4, 3, 4, 4, 5, 1, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 4, 4, 3, 4, 4, 5, 5, 1, 2, 3, 3, 2, 3, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 4, 5, 5, 1, 2, 2, 3, 3, 4, 5, 6]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 4, 5, 5, 4, 1, 2, 2, 3, 4, 5, 5, 4]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 4, 5, 5, 6, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 4, 5, 6, 1, 2, 2, 3, 3, 4, 4, 5, 6, 7, 8, 8, 9, 10, 7, 8, 8, 9, 10, 11, 12]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 4, 5, 6, 6, 5, 4, 1, 2, 2, 3, 3, 4]': 0.0005411255411255434, '[0, 1, 2, 2, 3, 4, 5, 6, 7, 3, 4, 4, 5, 5, 6, 6, 1, 2, 3, 4]': 0.0005411255411255434, '[0, 1, 2, 2, 3]': 0.0021645021645021736, '[0, 1, 2, 2]': 0.1098484848484853, '[0, 1, 2, 3, 1, 2, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 1, 2, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 2, 1]': 0.0016233766233766304, '[0, 1, 2, 3, 2, 3, 1, 2, 3, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 2, 3, 1]': 0.0005411255411255434, '[0, 1, 2, 3, 2, 3, 3, 4, 4, 1, 2, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 2, 3, 3, 4, 5, 5, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 5]': 0.0005411255411255434, '[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 5, 6, 4, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 2, 3]': 0.0010822510822510868, '[0, 1, 2, 3, 2]': 0.0010822510822510868, '[0, 1, 2, 3, 3, 1, 2, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 1, 2, 2, 3, 3]': 0.0016233766233766304, '[0, 1, 2, 3, 3, 2, 1, 2, 2]': 0.005411255411255434, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 4, 5, 5, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 4, 5, 5, 6, 6, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 5, 6, 6, 5, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 5, 6]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 1, 2]': 0.005952380952380978, '[0, 1, 2, 3, 3, 2, 1]': 0.012987012987013043, '[0, 1, 2, 3, 3, 2, 3, 1, 2, 2]': 0.0016233766233766304, '[0, 1, 2, 3, 3, 2, 3, 1, 2]': 0.0010822510822510868, '[0, 1, 2, 3, 3, 2, 3, 1]': 0.0010822510822510868, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2, 3, 3, 4]': 0.0010822510822510868, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2]': 0.004329004329004347, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 3, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 3, 1]': 0.0021645021645021736, '[0, 1, 2, 3, 3, 2, 3, 3, 4, 4, 1]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 7, 1, 2, 2, 3, 3, 4, 5, 5, 4, 5, 5, 6, 7, 8, 9]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 3]': 0.0010822510822510868, '[0, 1, 2, 3, 3, 2, 3, 4, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 4, 4, 1, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 4, 4, 3, 1, 2, 3, 3]': 0.0010822510822510868, '[0, 1, 2, 3, 3, 2, 3, 4, 4, 3, 1]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 4, 4, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 5, 4, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 5, 4, 5, 1, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 5, 4, 5, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 5, 6, 7, 1, 2, 2, 3, 3, 4, 5, 5, 4, 5, 6, 7, 7, 6, 5, 6, 7, 8, 9]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3, 4, 5, 6]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 2]': 0.05140692640692662, '[0, 1, 2, 3, 3, 4, 2, 1, 2, 2]': 0.0021645021645021736, '[0, 1, 2, 3, 3, 4, 2, 3, 4, 3, 4, 5, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 4, 2, 3, 4, 4, 3, 1, 2, 3, 3, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 4, 2, 3, 4, 5, 6, 6, 5, 6, 4, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 4, 2]': 0.0016233766233766304, '[0, 1, 2, 3, 3, 4, 4, 2, 1, 2, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 4, 4, 2, 1]': 0.0010822510822510868, '[0, 1, 2, 3, 3, 4, 4, 2, 3, 1, 2]': 0.0010822510822510868, '[0, 1, 2, 3, 3, 4, 4, 2, 3, 3, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 4, 4, 2, 3, 3, 4, 4, 1]': 0.0010822510822510868, '[0, 1, 2, 3, 3, 4, 4, 2, 3, 3, 4, 4, 5, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 4, 4, 2, 3, 4, 5, 1, 2, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 4, 4, 2]': 0.004870129870129891, '[0, 1, 2, 3, 3, 4, 4, 5, 5, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 4, 5, 2, 3, 3, 4, 4, 5, 5]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 4, 5, 6, 2, 3, 3, 4, 4, 5, 6, 7, 7, 6, 5, 6, 7, 7, 6, 7, 8, 9, 10, 11, 12, 12, 11, 10, 9]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 4, 5, 6, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 4, 5, 6, 6, 2, 3, 3, 4, 5, 5, 4, 1, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 3, 4, 5, 6, 6, 5, 4, 5, 6, 7, 7, 6, 2, 3, 3, 1, 2, 3, 4, 4]': 0.0010822510822510868, '[0, 1, 2, 3, 3]': 0.01839826839826848, '[0, 1, 2, 3, 4, 4, 1, 2, 3, 4, 5, 3, 4, 4, 5, 6, 7, 7, 6, 2, 3, 4, 5, 5, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 2, 3, 1, 2, 2, 3, 4, 5, 5, 3, 4, 5, 5]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 2, 3, 3]': 0.0010822510822510868, '[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 2]': 0.003246753246753261, '[0, 1, 2, 3, 4, 4, 3, 2, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 2, 1]': 0.0021645021645021736, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 3, 1, 2, 3, 3, 2, 3, 3]': 0.0010822510822510868, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 3, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 3, 1]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 3]': 0.0016233766233766304, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 1, 2, 3, 4, 4, 3, 2]': 0.0010822510822510868, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 5, 6, 6, 5, 3, 1, 2, 3, 4, 4, 3, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 2, 3]': 0.0016233766233766304, '[0, 1, 2, 3, 4, 4, 3, 2]': 0.013528138528138585, '[0, 1, 2, 3, 4, 4, 3, 4, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 4, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 3, 1, 2, 3, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 3, 1, 2]': 0.0010822510822510868, '[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 4, 1, 2, 2, 3, 3, 4, 5, 6]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 4, 4, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 4, 4, 2]': 0.004329004329004347, '[0, 1, 2, 3, 4, 4, 3, 4, 4, 5, 5, 2, 3, 4, 4, 3, 4, 4, 5, 5, 1, 2, 3, 3, 2, 3, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 4, 5, 2, 3, 4, 5, 5, 1, 2, 3, 4, 4, 3, 4, 5, 2, 3, 4, 5, 5]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 4, 5, 5, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3, 4, 5, 5, 4, 5, 2, 3, 4, 4, 3, 4, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 3]': 0.00919913419913424, '[0, 1, 2, 3, 4, 4, 5, 3, 2, 1, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 5, 3, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 5, 5, 3, 2, 1]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 5, 5, 2, 1]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 5, 5, 3]': 0.0010822510822510868, '[0, 1, 2, 3, 4, 4, 5, 5, 6, 3, 4, 5, 6, 6, 5, 6, 4, 5, 6, 6, 2, 3, 4, 5, 6, 6, 5, 6, 4, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 5, 5, 6, 6, 3, 4, 4, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 5, 5, 6, 7, 8, 8, 7, 6, 3, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4, 5, 6, 7, 8, 9, 9, 8, 7, 3, 4, 5, 6, 7, 7, 6, 5, 4, 5, 5]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 4]': 0.008658008658008694, '[0, 1, 2, 3, 4, 5, 4, 3, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 4, 3, 4, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 5, 4, 1, 2, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2, 2, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2, 2, 3, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2, 3, 3, 4, 5, 6, 6, 5, 4, 2, 3, 4, 4, 5, 5, 6, 6, 7, 7, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3]': 0.0010822510822510868, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 2]': 0.003246753246753261, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 4, 2]': 0.0021645021645021736, '[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 5, 2, 3, 4, 5, 5, 1, 2, 3, 4, 4, 3, 2, 3, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 5, 4, 3]': 0.004870129870129891, '[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3]': 0.0016233766233766304, '[0, 1, 2, 3, 4, 5, 5, 4, 5, 6, 6, 5, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 5, 4]': 0.005411255411255434, '[0, 1, 2, 3, 4, 5, 5, 6, 4, 3, 2, 3, 4, 5, 6, 6, 7, 8, 9, 9, 8, 5, 6, 7, 8, 8, 7, 4, 5, 6, 7, 7, 6, 3, 4, 5, 6, 7, 8, 8, 7, 5, 6, 7, 8, 8, 7, 4, 5, 6, 7, 7, 6, 1, 2, 2, 3, 4, 4]': 0.0010822510822510868, '[0, 1, 2, 3, 4, 5, 5]': 0.003787878787878804, '[0, 1, 2, 3, 4, 5, 6, 6, 1, 2, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 2, 3, 3, 4, 4, 1, 2, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 4, 2, 3, 1, 2, 2, 3, 4, 5, 5, 4, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 4, 5, 5, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3]': 0.0010822510822510868, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 6, 6, 5]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 3, 4, 4, 5, 5, 2, 1, 2, 2, 3, 3, 4, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 5, 5, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 6, 7, 7, 5, 6, 6, 7, 7, 4, 5, 5, 6, 6, 3, 4, 4, 2, 3, 3, 4, 4, 1, 2, 2, 3, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 6, 7, 7, 8, 8, 5, 4, 3, 2, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 6]': 0.0010822510822510868, '[0, 1, 2, 3, 4, 5, 6, 7, 7, 6, 7, 7, 5]': 0.0010822510822510868, '[0, 1, 2, 3, 4, 5, 6, 7, 7, 8, 8, 6, 7, 7, 5, 6, 6, 4, 5, 5, 3, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 7, 8, 7, 6, 5, 4, 3, 4, 4, 2, 3, 4, 5, 1, 2, 3, 4, 4, 2, 3, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 7, 8, 8, 7, 6, 5, 4, 3, 2, 3, 1, 2, 3, 4, 5, 5, 4, 3, 2]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 7, 8, 8, 9, 9, 7, 8, 8, 6, 5, 6, 6, 4, 5, 5, 3, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 7, 8, 8]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 8, 7, 6, 5, 4, 3]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 8, 7, 8, 8, 9, 9, 6, 7, 7, 5, 4]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5, 6]': 0.0005411255411255434, '[0, 1, 2, 3, 4, 5]': 0.0005411255411255434, '[0, 1, 2, 3, 4]': 0.004870129870129891, '[0, 1, 2, 3]': 0.004870129870129891, '[0, 1, 2]': 0.03463203463203478}}": {"structures": {"[0, 1, 1]": 0.07891205978241306, "[0, 1, 1, 2, 2, 3, 3]": 0.007704558158444097, "[0, 1, 2, 2, 1, 2]": 0.03746312106245314, "[0, 1, 1, 2, 2]": 0.05552340531236816, "[0, 1, 2, 3, 3, 2, 1, 2, 2]": 0.007234797820868571, "[0, 1, 2, 2]": 0.06985264979689815, "[0, 1, 2, 2, 1]": 0.017040540579643937, "[0, 1, 2, 2, 1, 2, 3, 3, 4, 5, 5, 4, 5, 5, 2]": 0.006042589496231798, "[0, 1, 1, 2]": 0.07021907310117172, "[0, 1, 1, 2, 3, 3, 2]": 0.0018640233713067078, "[0, 1, 2, 1, 2, 3, 4, 5, 5, 3, 4, 4]": 0.0008480376362766235, "[0, 1, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2]": 0.001547560584995919, "[0, 1, 1, 2, 3, 3, 2, 3, 3]": 0.0009127938800248493, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 5, 2]": 0.0011990378714181904, "[0, 1, 2, 2, 3, 4, 4, 3, 1, 2, 3, 3]": 0.003677880189263579, "[0, 1, 2, 3, 3, 2, 3, 4, 4, 3, 1, 2, 3, 3]": 0.002396748585077716, "[0, 1, 2, 3, 2, 3, 4, 5, 6, 6, 5, 6, 4, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 3]": 0.0005609265213025427, "[0, 1, 2, 3, 4, 4, 5, 5, 6, 3, 4, 5, 6, 6, 5, 6, 4, 5, 6, 6, 2, 3, 4, 5, 6, 6, 5, 6, 4, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 3]": 0.0005609265213025427, "[0, 1, 2, 2, 1, 2, 3, 3, 4, 4, 5, 5, 2]": 0.0014970113280997899, "[0, 1, 2, 3, 4, 4, 3, 2, 1]": 0.0010109851379225803, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 5, 5, 6, 6, 3, 2]": 0.0009043988136411406, "[0, 1, 2, 2, 3, 3]": 0.0010109851379225803, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 3, 2]": 0.0014970113280997899, "[0, 1, 2, 2, 3, 3, 4, 1, 2, 3, 3]": 0.0010163538807567236, "[0, 1, 2]": 0.11639862167602023, "[0, 1, 2, 3, 4, 4, 3, 2]": 0.0077534653776549995, "[0, 1, 2, 1, 2, 3, 4, 4, 3, 4, 4, 5]": 0.0007377305608171045, "[0, 1, 2, 2, 1, 2, 3]": 0.006029725701762589, "[0, 1, 2, 3, 3]": 0.01605876215229702, "[0, 1, 2, 3, 3, 4, 2]": 0.0038276925462948377, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4]": 0.0006962130716347436, "[0, 1, 2, 3, 3, 2, 1, 2]": 0.01509892096782445, "[0, 1, 2, 2, 1, 2, 2]": 0.0010109851379225803, "[0, 1, 1, 2, 3, 4, 4, 3]": 0.0017675569051790146, "[0, 1, 2, 3, 3, 2]": 0.030561975889923806, "[0, 1, 2, 3, 3, 2, 1]": 0.004655607654384341, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 6, 6, 4, 3, 4, 4, 5, 5, 2, 3, 4, 5, 6, 6, 7, 7, 8, 8, 5, 4, 3, 4, 4, 5, 5]": 0.0012019941605957572, "[0, 1, 2, 3, 4, 4, 3, 4, 4, 5, 5, 2, 3, 4, 4, 3, 4, 4, 5, 5, 1, 2, 3, 3, 2, 3, 3, 4, 4]": 0.0014041911881802734, "[0, 1, 2, 3, 4, 4, 5, 5, 6, 7, 8, 8, 7, 6, 3, 2]": 0.0006595527933062535, "[0, 1, 2, 3, 3, 4, 4, 2, 3, 3, 4, 4, 1]": 0.0032580036037305328, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 3, 4, 4, 5, 5, 2, 1, 2, 2, 3, 3, 4, 4]": 0.0006391927543692981, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 2, 3, 3, 4, 4, 1, 2, 2, 3, 3]": 0.001056046584329528, "[0, 1, 2, 3, 4, 5, 5, 4, 3]": 0.004808098311715691, "[0, 1, 2, 3, 4, 4, 3, 4, 4, 2]": 0.0036520545337590787, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2]": 0.010466723758127787, "[0, 1, 2, 1, 2, 3]": 0.004657911344974576, "[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 4, 4, 3]": 0.00047450300712717876, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 3, 1]": 0.0011246921306627808, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4]": 0.000500665286504067, "[0, 1, 2, 3, 4, 5, 6, 7, 7, 6, 7, 7, 5]": 0.002273180745184842, "[0, 1, 2, 3, 4, 4, 3, 4, 2, 3]": 0.0005609265213025427, "[0, 1, 2, 3, 4, 4, 3, 2, 3]": 0.003907662345405659, "[0, 1, 2, 3, 3, 4, 4, 2, 3, 1, 2]": 0.0016309499533392732, "[0, 1, 2, 3, 4, 4, 5, 5, 3]": 0.0011268160643196335, "[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 3, 1, 2, 3, 2]": 0.0010836841292054863, "[0, 1, 2, 2, 3, 3, 1, 2, 2]": 0.006871432103869834, "[0, 1, 2, 3, 2, 3]": 0.0015272907322025635, "[0, 1, 2, 3, 3, 4, 5, 6, 6, 2, 3, 3, 4, 5, 5, 4, 1, 2, 3, 3]": 0.0011121303098538076, "[0, 1, 1, 2, 3, 4, 5, 6, 6, 5, 4]": 0.0018166083017007787, "[0, 1, 2, 2, 3, 4, 5, 5, 4, 1, 2, 2, 3, 4, 5, 5, 4]": 0.0007999659009443325, "[0, 1, 2, 3, 3, 2, 3, 1]": 0.0026679692687224675, "[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 3, 1, 2]": 0.002808382376360547, "[0, 1, 2, 3, 1, 2, 2, 3, 3]": 0.0011640067245086015, "[0, 1, 2, 3, 3, 4, 5, 6, 2, 3, 3, 4, 4, 5, 6, 7, 7, 6, 5, 6, 7, 7, 6, 7, 8, 9, 10, 11, 12, 12, 11, 10, 9]": 0.0009842790230247017, "[0, 1, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6]": 0.0009040207039141573, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 3, 4, 5, 6, 7, 7, 6, 5, 6, 6]": 0.0010741428737666516, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 3]": 0.001101885251279401, "[0, 1, 2, 2, 3, 4, 4, 3, 4, 4, 5, 1, 2, 3]": 0.0011328055704562042, "[0, 1, 1, 2, 3, 4, 5, 5, 6, 4, 5, 5, 6, 3, 4, 5, 6, 7, 8, 7, 6, 5, 4, 5, 5]": 0.0007377305608171045, "[0, 1, 2, 2, 3, 3, 1]": 0.0045061299280975825, "[0, 1, 1, 2, 3, 4, 4]": 0.007551281256336808, "[0, 1, 2, 3, 3, 4, 4, 2, 1]": 0.0010109851379225803, "[0, 1, 2, 3, 4, 5, 5]": 0.008165929187815342, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 4, 2]": 0.002496470907828268, "[0, 1, 2, 3, 4]": 0.011152723967775297, "[0, 1, 2, 3, 4, 5, 5, 4]": 0.0038779990119198345, "[0, 1, 2, 3]": 0.016642027403268443, "[0, 1, 1, 2, 3, 4, 5, 6, 6, 5]": 0.0009002320592158755, "[0, 1, 2, 3, 4, 4]": 0.008286881557866993, "[0, 1, 2, 2, 1, 2, 3, 3, 2]": 0.0010229185103049945, "[0, 1, 2, 3, 4, 4, 2, 3, 1, 2, 2, 3, 4, 5, 5, 3, 4, 5, 5]": 0.0005609265213025427, "[0, 1, 2, 3, 4, 5, 6, 7, 8, 8]": 0.0005609265213025427, "[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 7, 8, 8, 7]": 0.0008125277217533055, "[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 7, 8, 9, 9, 8]": 0.0004785825079753308, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 2]": 0.0006663390753410118, "[0, 1, 1, 2, 3, 3]": 0.0010109851379225803, "[0, 1, 1, 2, 3]": 0.005146303330669394, "[0, 1, 2, 2, 3, 1, 2, 3]": 0.0014547404450764023, "[0, 1, 2, 3, 3, 4, 2, 3, 4, 3, 4, 5, 1, 2]": 0.0007895601713854591, "[0, 1, 2, 2, 3, 1, 2]": 0.004013221100087641, "[0, 1, 2, 3, 2]": 0.0017484947310143415, "[0, 1, 2, 3, 3, 2, 3, 1, 2, 2]": 0.0029581599454839677, "[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3]": 0.0015597848525221287, "[0, 1, 2, 3, 3, 4, 4, 2]": 0.004082670980104483, "[0, 1, 2, 3, 4, 4, 3, 2, 1, 2]": 0.0015208078119590706, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 3, 1, 2]": 0.001532042475009379, "[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 2, 3, 3]": 0.0028632150801929084, "[0, 1, 2, 3, 3, 2, 1, 2, 2, 3, 3]": 0.004034173020815587, "[0, 1, 2, 1, 2, 2, 3, 3]": 0.0007720627641023115, "[0, 1, 2, 3, 4, 4, 3, 2, 1, 2, 2]": 0.005408606113498407, "[0, 1, 2, 3, 3, 4, 2, 3, 4, 5, 6, 6, 5, 6, 4, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 3]": 0.0007377305608171045, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 6, 6, 3, 2, 3]": 0.0011337910001820602, "[0, 1, 2, 2, 1, 2, 2, 3, 3, 4, 4]": 0.002912437179330372, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3]": 0.0009510698361117287, "[0, 1, 2, 3, 3, 2, 3, 3, 4, 4, 1]": 0.0010812708838342196, "[0, 1, 2, 2, 3, 1, 2, 2, 3, 3]": 0.0010698594268304196, "[0, 1, 2, 3, 3, 2, 3]": 0.0010812708838342196, "[0, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 5, 5, 2, 1]": 0.0014814932181132499, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 3]": 0.0008499847759799831, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 3]": 0.0010109851379225803, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 3, 1, 2, 3, 4, 4, 3, 2]": 0.0030416156239181412, "[0, 1, 2, 2, 3, 1, 2, 3, 3, 2, 3]": 0.0007377305608171045, "[0, 1, 2, 3, 3, 2, 3, 1, 2]": 0.0015272907322025635, "[0, 1, 2, 2, 3, 3, 1, 2]": 0.001491895525642843, "[0, 1, 2, 3, 3, 2, 3, 4, 4, 3, 1]": 0.0010867046945756246, "[0, 1, 2, 2, 3, 4, 4, 3, 1, 2, 2]": 0.0008392804947901535, "[0, 1, 2, 2, 3, 1, 2, 2, 3]": 0.0005609265213025427, "[0, 1, 2, 3, 4, 4, 3]": 0.0101019698732314, "[0, 1, 2, 3, 4, 4, 5, 5, 3, 2, 1]": 0.0005234231326044066, "[0, 1, 2, 3, 3, 2, 3, 3, 1]": 0.0046798368355542, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 5, 3]": 0.0005614105686915624, "[0, 1, 2, 3, 3, 4, 4, 2, 3, 3, 1, 2]": 0.001029736197212235, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3]": 0.0010836841292054863, "[0, 1, 2, 2, 1, 2, 3, 3]": 0.0010109851379225803, "[0, 1, 2, 3, 4, 5, 5, 4, 5, 6, 6, 5, 3]": 0.0006424055519008117, "[0, 1, 2, 2, 1, 2, 3, 4]": 0.028637872926850567, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 6]": 0.0009532428030516208, "[0, 1, 2, 3, 4, 5]": 0.0005609265213025427, "[0, 1, 2, 2, 3, 4, 5, 6, 7, 3, 4, 4, 5, 5, 6, 6, 1, 2, 3, 4]": 0.0005609265213025427, "[0, 1, 2, 2, 3, 4, 5, 6, 1, 2, 2, 3, 3, 4, 4, 5, 6, 7, 8, 8, 9, 10, 7, 8, 8, 9, 10, 11, 12]": 0.0016486590987881769, "[0, 1, 2, 3, 4, 5, 5, 6, 4, 3, 2, 3, 4, 5, 6, 6, 7, 8, 9, 9, 8, 5, 6, 7, 8, 8, 7, 4, 5, 6, 7, 7, 6, 3, 4, 5, 6, 7, 8, 8, 7, 5, 6, 7, 8, 8, 7, 4, 5, 6, 7, 7, 6, 1, 2, 2, 3, 4, 4]": 0.0023171458275343935, "[0, 1, 2, 3, 4, 4, 5, 3, 2]": 0.0009882739499612102, "[0, 1, 2, 3, 2, 1]": 0.004430288702111878, "[0, 1, 2, 3, 3, 4, 5, 6, 6, 5, 4, 5, 6, 7, 7, 6, 2, 3, 3, 1, 2, 3, 4, 4]": 0.00258903810737059, "[0, 1, 2, 2, 1, 2, 2, 3]": 0.002806753244941645, "[0, 1, 2, 3, 4, 4, 3, 4, 5, 5, 4, 5, 2, 3, 4, 4, 3, 4, 1, 2]": 0.0007898550953318294, "[0, 1, 2, 2, 3, 3, 1, 2, 3, 4]": 0.0007908405250576848, "[0, 1, 2, 2, 3, 3, 1, 2, 3]": 0.0010599519215387767, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 1, 2]": 0.0009257820521291555, "[0, 1, 2, 3, 3, 2, 3, 3]": 0.0006729113900134133, "[0, 1, 1, 2, 2, 3]": 0.0020455715559826565, "[0, 1, 1, 2, 2, 3, 4, 5, 5, 4]": 0.0006512744194335125, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2]": 0.002107257409363016, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 5, 6, 6, 5]": 0.0006341271780280709, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3]": 0.0010535089613231644, "[0, 1, 2, 3, 3, 4, 4, 2, 3, 4, 5, 1, 2, 2, 3]": 0.0007895601713854591, "[0, 1, 2, 2, 1, 2, 3, 4, 4]": 0.004861386497034715, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5]": 0.0009462915869375453, "[0, 1, 2, 3, 3, 4, 5, 2, 3, 3, 4, 4, 5, 5]": 0.0002793865397565718, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 5, 4, 3]": 0.0003377828527653722, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 6, 6, 4, 5, 5, 3, 4, 5, 5, 4]": 0.0010586247637801114, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2, 2, 3, 4, 4]": 0.0014814932181132499, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2, 2, 3, 4]": 0.0010431066537935716, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 3, 1, 2, 3, 3, 2, 3, 3]": 0.0027690677825147254, "[0, 1, 2, 3, 3, 4, 4, 5, 5, 2]": 0.00024200642366828788, "[0, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4, 2]": 0.0007606513070985111, "[0, 1, 2, 2, 1, 2, 2, 3, 3]": 0.0008146516554101583, "[0, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 4, 4, 2]": 0.0007170532663164578, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 3]": 6.656216912061984e-05, "[0, 1, 2, 1, 2]": 0.006544087138256579, "[0, 1, 2, 3, 3, 4, 4]": 0.0002561973758961627, "[0, 1, 2, 3, 4, 4, 3, 4, 5, 2, 3, 4, 5, 5, 1, 2, 3, 4, 4, 3, 4, 5, 2, 3, 4, 5, 5]": 0.0010550611546036725, "[0, 1, 2, 1, 2, 3, 4, 4, 3, 4]": 0.0005609265213025427, "[0, 1, 2, 3, 2, 3, 3, 4, 5, 5, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 5]": 0.0007898550953318294, "[0, 1, 2, 1, 2, 3, 4, 4]": 0.004414770592125338, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2, 3, 3, 4, 5, 6, 6, 5, 4, 2, 3, 4, 4, 5, 5, 6, 6, 7, 7, 3, 4, 4]": 0.0007217148229796739, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 4, 2, 3, 1, 2, 2, 3, 4, 5, 5, 4, 3]": 0.00068590095024875, "[0, 1, 2, 2, 3, 4, 5, 6, 6, 5, 4, 1, 2, 2, 3, 3, 4]": 0.001056046584329528, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 3, 4]": 0.0006340713396803954, "[0, 1, 2, 3, 3, 1, 2]": 0.0014167530089892466, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 5, 4, 5, 1, 2]": 0.0007895601713854591, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 5, 4, 5, 1, 2, 3, 3]": 0.0007383204087098445, "[0, 1, 1, 2, 3, 4, 4, 3, 2]": 0.0015478135253731151, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 4, 5, 5, 4]": 0.0006453618410783786, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 4, 5, 5, 6, 6, 4]": 0.0009549480705372698, "[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 6, 5, 6, 6]": 0.001017681038515389, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6]": 0.0013536419312841445, "[0, 1, 2, 3, 3, 2, 3, 3, 4, 5, 6, 7, 1, 2, 2, 3, 3, 4, 5, 5, 4, 5, 5, 6, 7, 8, 9]": 0.0005609265213025427, "[0, 1, 2, 3, 3, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 5, 6, 7, 1, 2, 2, 3, 3, 4, 5, 5, 4, 5, 6, 7, 7, 6, 5, 6, 7, 8, 9]": 0.0007895601713854591, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4]": 0.0007593241493398455, "[0, 1, 1, 2, 3, 4]": 0.0031807015737975557, "[0, 1, 2, 2, 3, 1, 2, 3, 3]": 0.0013691600412706843, "[0, 1, 2, 2, 3, 1, 2, 3, 4, 5, 5, 4, 3, 4, 4]": 0.0011835197614316504, "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 8, 7, 6, 5, 4, 3]": 0.00024791900202342183, "[0, 1, 2, 3, 2, 3, 3, 4, 4, 1, 2, 2, 3]": 0.0011328055704562042, "[0, 1, 2, 3, 2, 3, 1, 2, 3, 2, 3]": 0.0005609265213025427, "[0, 1, 2, 2, 3, 1, 2, 3, 2, 3]": 0.0007895601713854591, "[0, 1, 2, 3, 4, 5, 6, 7, 8, 8, 9, 9, 7, 8, 8, 6, 5, 6, 6, 4, 5, 5, 3, 4]": 0.0011328055704562042, "[0, 1, 2, 3, 4, 5, 6, 7, 7, 8, 8, 6, 7, 7, 5, 6, 6, 4, 5, 5, 3, 4]": 0.0007895601713854591, "[0, 1, 2, 3, 4, 5, 6, 6]": 0.0016309499533392732, "[0, 1, 2, 1, 2, 3, 3, 4]": 0.0007895601713854591, "[0, 1, 1, 2, 3, 3, 2, 3]": 0.002333637507372614, "[0, 1, 2, 2, 3, 3, 4, 4, 1, 2]": 0.0007440834911935437, "[0, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 4, 4, 5, 5, 2, 3]": 0.000951991781359703, "[0, 1, 2, 1]": 0.003913272950100556, "[0, 1, 2, 3, 4, 5, 6]": 0.0005609265213025427, "[0, 1, 1, 2, 3, 4, 5, 5]": 0.000804744150118516, "[0, 1, 1, 2, 3, 4, 4, 5, 5, 3, 4, 4]": 0.0010193101699342906, "[0, 1, 2, 2, 3, 4, 4, 3, 4, 4, 5, 5, 1, 2, 3, 3, 2, 3, 3, 4, 4]": 0.0009796293262356614, "[0, 1, 1, 2, 3, 4, 4, 5]": 0.001532042475009379, "[0, 1, 2, 2, 3, 4, 5, 5, 6, 1, 2]": 0.0007895601713854591, "[0, 1, 2, 3, 3, 2, 3, 4, 4, 3]": 0.00016205007821798044, "[0, 1, 1, 2, 3, 4, 5, 6, 6]": 0.0007965029496546388, "[0, 1, 2, 3, 4, 5, 6, 6, 1, 2, 2, 3, 3]": 0.0007411382701754625, "[0, 1, 2, 3, 4, 4, 1, 2]": 0.0005609265213025427, "[0, 1, 2, 2, 3, 4, 5, 5, 1, 2, 2, 3, 3, 4, 5, 6]": 0.0007213367132526902, "[0, 1, 2, 2, 3, 1, 2, 2]": 0.0009489593561153885, "[0, 1, 1, 2, 3, 4, 4, 3, 4, 2, 3, 4, 3]": 0.0009773167387511405, "[0, 1, 2, 2, 3, 1]": 0.002011867566831733, "[0, 1, 2, 3, 4, 4, 5, 3, 2, 1, 2, 3]": 0.0005609265213025427, "[0, 1, 2, 3, 2, 3, 1]": 0.0005609265213025427, "[0, 1, 2, 2, 3, 4, 4, 1]": 0.0010348282799208307, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2]": 0.000951991781359703, "[0, 1, 2, 3, 4, 4, 5, 5, 6, 6, 3, 4, 4, 2]": 0.0003473883843967787, "[0, 1, 2, 1, 2, 3, 3]": 0.002559631018816411, "[0, 1, 2, 3, 4, 5, 6, 6, 7, 7, 5, 6, 6, 7, 7, 4, 5, 5, 6, 6, 3, 4, 4, 2, 3, 3, 4, 4, 1, 2, 2, 3, 3]": 0.0011329705045355215, "[0, 1, 1, 2, 2, 3, 4, 5, 5, 4, 3]": 0.0005388295165447156, "[0, 1, 2, 3, 3, 1, 2, 2, 3, 3]": 0.0008253915162225149, "[0, 1, 2, 3, 3, 4, 4, 2, 1, 2, 2, 3, 3]": 0.0014702585550629417, "[0, 1, 2, 3, 3, 4, 4, 2, 3, 3, 4, 4, 5, 1, 2]": 0.0007377305608171045, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3]": 0.0014940550389222229, "[0, 1, 2, 2, 3]": 0.005796492454204993, "[0, 1, 2, 3, 4, 5, 6, 6, 7, 7, 8, 8, 5, 4, 3, 2, 3]": 0.0014814932181132499, "[0, 1, 1, 2, 3, 4, 4, 3, 4, 5, 4, 5]": 0.0015208078119590706, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 3, 3, 1, 2]": 0.0006663390753410118, "[0, 1, 2, 3, 4, 4, 5, 6, 7, 8, 9, 9, 8, 7, 3, 4, 5, 6, 7, 7, 6, 5, 4, 5, 5]": 0.0003519738049932467, "[0, 1, 1, 2, 3, 3, 4, 4, 2, 3, 3, 4]": 0.0014547404450764023, "[0, 1, 2, 3, 3, 4, 5, 6, 2, 3, 3]": 0.0008184403001084393, "[0, 1, 2, 3, 4, 4, 1, 2, 3, 4, 5, 3, 4, 4, 5, 6, 7, 7, 6, 2, 3, 4, 5, 5, 4]": 0.0007087748924437168, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 5, 4, 5, 5, 3, 2, 3, 4, 4, 5, 5, 3]": 0.001598109841892048, "[0, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4, 5, 6, 6, 5, 3, 1, 2, 3, 4, 4, 3, 2]": 0.0009770392869109024, "[0, 1, 2, 3, 1, 2, 3, 4, 4]": 0.0009321006347096703, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3, 2]": 0.000748089486289538, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2, 3]": 0.0010812708838342196, "[0, 1, 2, 3, 4, 4, 3, 4, 4, 2, 3, 4, 1, 2, 2, 3, 3, 4, 5, 6]": 0.0010550611546036725, "[0, 1, 2, 3, 3, 2, 3, 4, 1, 2, 3, 4, 4, 3, 2, 3, 4, 4]": 0.0014464620712036612, "[0, 1, 2, 3, 3, 4, 2, 1, 2, 2]": 0.00576013414953674, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 2, 3, 3, 4]": 0.0031427141377104, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 5, 6, 6, 5, 2]": 0.0006202381994604323, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 3]": 7.45986811326062e-05, "[0, 1, 2, 3, 4, 5, 5, 4, 1, 2, 2]": 0.0009377246930650807, "[0, 1, 2, 2, 1, 2, 3, 4, 4, 5, 6, 7, 3, 4, 4, 5, 5, 6, 7, 8, 9, 10, 11]": 0.0005609265213025427, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 5, 6]": 0.0005609265213025427, "[0, 1, 2, 3, 4, 5, 5, 4, 3, 4, 5, 2, 3, 4, 5, 5, 1, 2, 3, 4, 4, 3, 2, 3, 4]": 0.0014814932181132499, "[0, 1, 2, 3, 4, 4, 3, 4, 5, 5, 2]": 0.0007018236763296415, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 6, 5]": 0.00031665413808393424, "[0, 1, 2, 2, 3, 3, 1, 2, 3, 4, 5, 6, 6, 5, 4, 3]": 0.0017911961400831084, "[0, 1, 2, 2, 1, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4]": 0.0034716882347425528, "[0, 1, 2, 2, 3, 1, 2, 3, 4, 5, 5]": 0.0012875745644014757, "[0, 1, 2, 2, 3, 1, 2, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4]": 0.001326889158247297, "[0, 1, 1, 2, 3, 4, 5, 5, 4, 5, 3]": 0.002782956761082364, "[0, 1, 2, 3, 3, 2, 3, 4, 4, 1, 2, 3, 3]": 0.00030970292196985866, "[0, 1, 2, 3, 3, 2, 1, 2, 3, 4, 4, 3, 2]": 0.0008141568531722073, "[0, 1, 2, 3, 4, 5, 6, 7, 8, 8, 7, 6, 5, 4, 3, 2, 3, 1, 2, 3, 4, 5, 5, 4, 3, 2]": 0.0010812708838342196, "[0, 1, 2, 3, 3, 2, 3, 3, 1, 2, 3, 4, 4]": 0.000682022119406869, "[0, 1, 1, 2, 3, 4, 4, 5, 3, 4, 5, 5, 2]": 0.0008227126788851861, "[0, 1, 2, 2, 3, 3, 4, 4, 1, 2, 3, 3]": 0.0009825856154132284, "[0, 1, 1, 2, 3, 3, 2, 3, 3, 4, 4]": 0.0010586247637801114, "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 8, 7, 8, 8, 9, 9, 6, 7, 7, 5, 4]": 0.0006988673871520745, "[0, 1, 2, 3, 4, 4, 3, 4, 2]": 0.0010326924863898021, "[0, 1, 1, 2, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4]": 0.0011091740206762405, "[0, 1, 2, 3, 4, 5, 6, 7, 8, 7, 6, 5, 4, 3, 4, 4, 2, 3, 4, 5, 1, 2, 3, 4, 4, 2, 3, 4]": 0.0007377305608171045, "[0, 1, 2, 3, 4, 5, 4, 3, 2]": 0.0008227126788851861, "[0, 1, 2, 3, 4, 5, 4, 3, 4, 2]": 0.0010569313561686383, "[0, 1, 1, 2, 2, 3, 4, 5, 6, 7, 7]": 0.002590667238789491, "[0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 1, 2]": 0.0009257820521291555, "[0, 1, 2, 3, 4, 4, 3, 4, 4]": 0.00040680650882560823, "[0, 1, 2, 3, 3, 4, 2, 3, 4, 4, 3, 1, 2, 3, 3, 2]": 0.001056046584329528}, "features": {"constants": 0.46912114675140626, "variables": 0.5308788532485937}, "functions": {"cubed": 0.18002618309041551, "squared": 0.7503144028451362, "exp": 0.0009720018187190634, "sqrt": 0.05849008594833346, "abs": 0.0009720018187190634, "cos": 0.0035620758514310928, "sin": 0.0009720018187190634, "cosh": 0.002305767839173125, "tanh": 0.0009720018187190634, "sinh": 0.00044147533191542574, "log": 0.0009720018187190634}, "operators": {"*": 0.6454566793307276, "/": 0.08238506327151819, "^": 0.01612471392914046, "-": 0.1591198628171143, "+": 0.09691368065149947}, "function_conditionals": {"cubed": {"features": {"constants": 0.2647058823529412, "variables": 0.7352941176470589}, "functions": {"squared": 0.6825293010910947, "cubed": 0.31747069890890545}, "operators": {"*": 0.7968698827741699, "-": 0.15256371931329277, "+": 0.036580468817256497, "/": 0.01398592909528087}}, "squared": {"features": {"constants": 0.7346938775510204, "variables": 0.2653061224489796}, "functions": {"squared": 0.8993596393765647, "cubed": 0.09146228243130039, "abs": 0.009106945302767733, "sin": 7.113288936722225e-05}, "operators": {"/": 0.01037143508229135, "*": 0.6720627943867252, "-": 0.23146721260154773, "+": 0.08609855792943588}}, "exp": {"features": {"constants": 0.0, "variables": 1.0}, "functions": {"squared": 0.7881528215913075, "cubed": 0.21184717840869258}, "operators": {"/": 0.6845292102583094, "-": 0.31291547078974175, "*": 0.0012776594759744467, "+": 0.0012776594759744467}}, "sqrt": {"features": {"constants": 0.9993333332945964, "variables": 0.0006666667054036579}, "functions": {"squared": 0.9990181858995036, "abs": 0.0009818141004964667}, "operators": {"*": 0.5862789903725641, "/": 0.08702093156257511, "+": 0.23953873031624212, "-": 0.08716134774861864}}, "abs": {"features": {"constants": 0.7499999999999999, "variables": 0.2500000000000001}, "functions": {}, "operators": {"/": 0.9991955979878441, "*": 0.0008044020121559905}}, "cos": {"features": {"constants": 0.9993332814115465, "variables": 0.0006667185884533662}, "functions": {}, "operators": {"+": 0.2947898100639122, "-": 0.5678764965343415, "*": 0.1373336934017463}}, "sin": {"features": {"constants": 0.9992672040503631, "variables": 0.000732795949636933}, "functions": {"squared": 1.0}, "operators": {"-": 0.3741521518550288, "+": 0.5199707095644537, "/": 0.10587713858051738}}, "cosh": {"features": {"constants": 1.0, "variables": 0.0}, "functions": {}, "operators": {"*": 1.0}}, "tanh": {"features": {"constants": 1.0, "variables": 0.0}, "functions": {}, "operators": {"*": 1.0}}, "sinh": {"features": {"constants": 1.0, "variables": 0.0}, "functions": {}, "operators": {}}, "log": {"features": {"constants": 0.0, "variables": 1.0}, "functions": {}, "operators": {"^": 1.0}}}, "operator_conditionals": {"*": {"features": {"constants": 0.4297636994988707, "variables": 0.5702363005011293}, "functions": {"exp": 0.0009142703516578908, "sqrt": 0.7158273785041466, "squared": 0.036290860655075925, "abs": 0.0009142703516578908, "cos": 0.11783865178832031, "sin": 0.11159478551666067, "cubed": 0.004012793015551432, "tanh": 0.00684446753588746, "cosh": 0.004848251929383891, "log": 0.0009142703516578908}, "operators": {"^": 0.14070395669009067, "*": 0.6476856799834887, "-": 0.1738085212730113, "+": 0.03418168813167849, "/": 0.003620153921730835}}, "/": {"features": {"constants": 0.6941513576595078, "variables": 0.30584864234049225}, "functions": {"sqrt": 0.7785331207421367, "squared": 0.21132048122916364, "exp": 0.009238797150088645, "log": 0.0009076008786111702}, "operators": {"*": 0.621694570726957, "^": 0.1334264039135164, "-": 0.2250931702981806, "+": 0.019785855061345982}}, "^": {"features": {"constants": 0.35213710009195853, "variables": 0.6478628999080416}, "functions": {"exp": 0.039962285291643265, "squared": 0.8187595902340601, "cubed": 0.1412781244742966}, "operators": {"-": 0.2958514545963171, "/": 0.2535619000387056, "+": 0.0009365832126558828, "*": 0.44871347893966557, "^": 0.0009365832126558828}}, "-": {"features": {"constants": 0.9122167844862894, "variables": 0.08778321551371064}, "functions": {"exp": 0.00048572104666658194, "sin": 0.34311521552314656, "sqrt": 0.5326522860025157, "tanh": 0.11777956982551413, "squared": 0.005967207602157072}, "operators": {"^": 0.12863263357210555, "+": 0.30178214304453227, "*": 0.4906003948854253, "/": 0.07799890033106685, "-": 0.000985928166870063}}, "+": {"features": {"constants": 0.48085262046822286, "variables": 0.5191473795317771}, "functions": {"squared": 0.10325172429783458, "sqrt": 0.42597119062372624, "cos": 0.35918420473123425, "exp": 0.0009496805498353013, "sin": 0.054654042793167455, "tanh": 0.05598915700420216}, "operators": {"^": 0.03672324384736636, "+": 0.13238259678730913, "*": 0.7306443013526068, "-": 0.04357428160966542, "/": 0.05667557640305222}}}, "operators_and_functions": {"*": 0.4532333645735708, "/": 0.03917525773195876, "^": 0.08772258669165886, "-": 0.08641049671977508, "+": 0.057919400187441426, "cubed": 0.04386129334582943, "squared": 0.19400187441424555, "exp": 0.003561387066541706, "sqrt": 0.017994376757263356, "abs": 0.0022492970946579195, "cos": 0.005435801312089972, "sin": 0.006185567010309278, "cosh": 0.0005623242736644799, "tanh": 0.0007497656982193065, "sinh": 0.00018744142455482662, "log": 0.0007497656982193065}}, "{'features': {'constants': 0.2, 'variables': 0.8}, 'functions': {'cos': 0.5, 'sin': 0.5}, 'max_num_variables': 2, 'operators': {'+': 0.8, '-': 0.2}, 'structures': {'[0, 1, 1]': 0.3, '[0, 1, 2, 3, 2, 3, 1]': 0.4, '[0, 1, 2]': 0.3}}": {"structures": {"[0, 1, 1]": 0.0009307121995893695, "[0, 1, 2]": 0.0009307121995893695, "[0, 1, 2, 3, 2, 3, 1]": 0.9981385756008213}, "features": {"constants": 0.2890752019401218, "variables": 0.7109247980598782}, "functions": {"sin": 0.5043038042350465, "cos": 0.49569619576495344}, "operators": {"+": 0.9982837389770144, "-": 0.001716261022985652}}, "{'features': {'constants': 0.2, 'variables': 0.8}, 'function_conditionals': {'cos': {'features': {'constants': 0.0, 'variables': 1.0}, 'functions': {'cos': 1.0, 'sin': 0.0}, 'operators': {'+': 0.0, '-': 1.0}}, 'sin': {'features': {'constants': 0.0, 'variables': 1.0}, 'functions': {'cos': 1.0, 'sin': 0.0}, 'operators': {'+': 0.0, '-': 1.0}}}, 'functions': {'cos': 0.5, 'sin': 0.5}, 'max_num_variables': 2, 'operator_conditionals': {'+': {'features': {'constants': 0.5, 'variables': 0.5}, 'functions': {'cos': 0.0, 'sin': 1.0}, 'operators': {'+': 1.0, '-': 0.0}}, '-': {'features': {'constants': 0.3, 'variables': 0.7}, 'functions': {'cos': 0.5, 'sin': 0.5}, 'operators': {'+': 0.9, '-': 0.1}}}, 'operators': {'+': 1.0, '-': 0.0}, 'structures': {'[0, 1, 1]': 0.3, '[0, 1, 2, 3, 2, 3, 1]': 0.4, '[0, 1, 2]': 0.3}}": {"structures": {"[0, 1, 1]": 0.3234375, "[0, 1, 2]": 0.17656249999999996, "[0, 1, 2, 3, 2, 3, 1]": 0.5000000000000001}, "features": {"constants": 0.18936708860759494, "variables": 0.8106329113924051}, "functions": {"sin": 0.6254655870445345, "cos": 0.3745344129554656}, "operators": {"+": 1.0, "-": 0.0}, "function_conditionals": {"sin": {"features": {"constants": 0.0, "variables": 1.0}, "functions": {"sin": 0.0, "cos": 1.0}, "operators": {"+": 0.0, "-": 1.0}}, "cos": {"features": {"constants": 0.0, "variables": 1.0}, "functions": {"cos": 1.0, "sin": 0.0}, "operators": {"+": 0.0, "-": 1.0}}}, "operator_conditionals": {"+": {"features": {"constants": 0.5500653594771242, "variables": 0.4499346405228758}, "functions": {"sin": 1.0, "cos": 0.0}, "operators": {"+": 1.0, "-": 0.0}}, "-": {"features": {"constants": 0.3666666666666667, "variables": 0.6333333333333333}, "functions": {"cos": 0.5, "sin": 0.5}, "operators": {"+": 0.7666666666666667, "-": 0.23333333333333334}}}}, "{'features': {'constants': 0.2, 'variables': 0.8}, 'function_conditionals': {'cos': {'features': {'constants': 0.0, 'variables': 1.0}, 'functions': {'cos': 1.0, 'sin': 0.0}, 'operators': {'+': 0.0, '-': 1.0}}, 'sin': {'features': {'constants': 0.0, 'variables': 1.0}, 'functions': {'cos': 1.0, 'sin': 0.0}, 'operators': {'+': 0.5, '-': 0.5}}}, 'functions': {'cos': 0.5, 'sin': 0.5}, 'max_num_variables': 2, 'operator_conditionals': {'+': {'features': {'constants': 0.5, 'variables': 0.5}, 'functions': {'cos': 0.0, 'sin': 1.0}, 'operators': {'+': 1.0, '-': 0.0}}, '-': {'features': {'constants': 0.3, 'variables': 0.7}, 'functions': {'cos': 0.5, 'sin': 0.5}, 'operators': {'+': 0.9, '-': 0.1}}}, 'operators': {'+': 0.5, '-': 0.5}, 'structures': {'[0, 1, 1]': 0.3, '[0, 1, 2, 3, 2, 3, 1]': 0.4, '[0, 1, 2]': 0.3}}": {"structures": {"[0, 1, 1]": 0.25165000000000004, "[0, 1, 2]": 0.10714999999999997, "[0, 1, 2, 3, 2, 3, 1]": 0.6412}, "features": {"constants": 0.2306882170570279, "variables": 0.7693117829429722}, "functions": {"sin": 0.5375354426520524, "cos": 0.46246455734794756}, "operators": {"+": 0.5526072071408452, "-": 0.4473927928591549}, "function_conditionals": {"sin": {"features": {"constants": 0.0, "variables": 1.0}, "functions": {"sin": 0.0, "cos": 1.0}, "operators": {"+": 0.5, "-": 0.5}}, "cos": {"features": {"constants": 0.0, "variables": 1.0}, "functions": {"cos": 1.0, "sin": 0.0}, "operators": {"+": 0.0, "-": 1.0}}}, "operator_conditionals": {"+": {"features": {"constants": 0.6152504745737963, "variables": 0.3847495254262038}, "functions": {"sin": 1.0, "cos": 0.0}, "operators": {"+": 1.0, "-": 0.0}}, "-": {"features": {"constants": 0.2838943217919089, "variables": 0.7161056782080912}, "functions": {"cos": 0.5054986338797814, "sin": 0.4945013661202186}, "operators": {"+": 0.9381255377114999, "-": 0.06187446228850014}}}}, "{'features': {'constants': 0.5, 'variables': 0.5}, 'functions': {'abs': 0.1111111111111111, 'acos': 0.1111111111111111, 'asin': 0.1111111111111111, 'cos': 0.1111111111111111, 'exp': 0.1111111111111111, 'log': 0.1111111111111111, 'sin': 0.1111111111111111, 'sqrt': 0.1111111111111111, 'tan': 0.1111111111111111}, 'max_num_variables': 1, 'operators': {'*': 0.14285714285714285, '+': 0.14285714285714285, '-': 0.14285714285714285, '/': 0.14285714285714285, '^': 0.14285714285714285, 'max': 0.14285714285714285, 'min': 0.14285714285714285}, 'structures': {'[0, 1, 1, 2, 2, 3]': 0.027777777777777776, '[0, 1, 1, 2, 2]': 0.027777777777777776, '[0, 1, 1, 2, 3, 2]': 0.027777777777777776, '[0, 1, 1, 2, 3, 3]': 0.027777777777777776, '[0, 1, 1, 2, 3, 4]': 0.027777777777777776, '[0, 1, 1, 2, 3]': 0.027777777777777776, '[0, 1, 1, 2]': 0.027777777777777776, '[0, 1, 1]': 0.027777777777777776, '[0, 1, 2, 1, 2, 2]': 0.027777777777777776, '[0, 1, 2, 1, 2, 3]': 0.027777777777777776, '[0, 1, 2, 1, 2]': 0.027777777777777776, '[0, 1, 2, 1]': 0.027777777777777776, '[0, 1, 2, 2, 1, 2]': 0.027777777777777776, '[0, 1, 2, 2, 1]': 0.027777777777777776, '[0, 1, 2, 2, 3, 1]': 0.027777777777777776, '[0, 1, 2, 2, 3, 3]': 0.027777777777777776, '[0, 1, 2, 2, 3, 4]': 0.027777777777777776, '[0, 1, 2, 2, 3]': 0.027777777777777776, '[0, 1, 2, 2]': 0.027777777777777776, '[0, 1, 2, 3, 1, 2]': 0.027777777777777776, '[0, 1, 2, 3, 1]': 0.027777777777777776, '[0, 1, 2, 3, 2, 1]': 0.027777777777777776, '[0, 1, 2, 3, 2, 3]': 0.027777777777777776, '[0, 1, 2, 3, 2]': 0.027777777777777776, '[0, 1, 2, 3, 3, 1]': 0.027777777777777776, '[0, 1, 2, 3, 3, 2]': 0.027777777777777776, '[0, 1, 2, 3, 3, 4]': 0.027777777777777776, '[0, 1, 2, 3, 3]': 0.027777777777777776, '[0, 1, 2, 3, 4, 1]': 0.027777777777777776, '[0, 1, 2, 3, 4, 2]': 0.027777777777777776, '[0, 1, 2, 3, 4, 3]': 0.027777777777777776, '[0, 1, 2, 3, 4, 4]': 0.027777777777777776, '[0, 1, 2, 3, 4, 5]': 0.027777777777777776, '[0, 1, 2, 3, 4]': 0.027777777777777776, '[0, 1, 2, 3]': 0.027777777777777776, '[0, 1, 2]': 0.027777777777777776}}": {"structures": {"[0, 1, 2, 3]": 0.023266666666666665, "[0, 1, 2, 3, 1]": 0.03311666666666666, "[0, 1, 2, 3, 4, 5]": 0.029416666666666664, "[0, 1, 2]": 0.021566666666666665, "[0, 1, 2, 1]": 0.025216666666666665, "[0, 1, 2, 3, 3, 4]": 0.028766666666666663, "[0, 1, 1, 2]": 0.018366666666666663, "[0, 1, 2, 3, 3, 1]": 0.03356666666666666, "[0, 1, 2, 2, 3, 4]": 0.026366666666666663, "[0, 1, 2, 3, 2, 1]": 0.03506666666666666, "[0, 1, 1, 2, 2, 3]": 0.033666666666666664, "[0, 1, 2, 1, 2, 2]": 0.029416666666666664, "[0, 1, 2, 3, 4, 2]": 0.033466666666666665, "[0, 1, 2, 2, 3, 1]": 0.030766666666666664, "[0, 1, 2, 3, 2, 3]": 0.03256666666666666, "[0, 1, 1, 2, 2]": 0.026016666666666664, "[0, 1, 2, 2]": 0.014916666666666665, "[0, 1, 2, 3, 1, 2]": 0.034216666666666666, "[0, 1, 2, 3, 4, 1]": 0.032516666666666666, "[0, 1, 1, 2, 3]": 0.026966666666666667, "[0, 1, 2, 1, 2, 3]": 0.033666666666666664, "[0, 1, 2, 3, 3, 2]": 0.029266666666666663, "[0, 1, 1]": 0.012866666666666665, "[0, 1, 2, 3, 3]": 0.021866666666666663, "[0, 1, 2, 3, 2]": 0.030616666666666664, "[0, 1, 2, 3, 4, 3]": 0.032016666666666665, "[0, 1, 2, 1, 2]": 0.03281666666666666, "[0, 1, 2, 2, 3]": 0.026566666666666662, "[0, 1, 2, 3, 4]": 0.028466666666666664, "[0, 1, 2, 2, 1]": 0.026866666666666664, "[0, 1, 1, 2, 3, 3]": 0.021866666666666663, "[0, 1, 1, 2, 3, 2]": 0.031466666666666664, "[0, 1, 1, 2, 3, 4]": 0.028766666666666663, "[0, 1, 2, 2, 3, 3]": 0.024866666666666665, "[0, 1, 2, 3, 4, 4]": 0.023266666666666665, "[0, 1, 2, 2, 1, 2]": 0.025516666666666663}, "functions": {"log": 0.11468674789410348, "exp": 0.11322014139590852, "sqrt": 0.11070998796630566, "abs": 0.11206377858002406, "acos": 0.1089895457280385, "sin": 0.11082280385078218, "cos": 0.1097510529482551, "asin": 0.11133047533092658, "tan": 0.10842546630565583}, "operators": {"^": 0.11614890979362648, "max": 0.15966601035513744, "*": 0.13720557135564793, "-": 0.13894965847492646, "/": 0.14490507790660928, "min": 0.159878703906269, "+": 0.14324606820778335}, "features": {"constants": 0.5949710398087709, "variables": 0.4050289601912292}}}
\ No newline at end of file
diff --git a/src/equation_tree/defaults.py b/src/equation_tree/defaults.py
index dd8fc48..a2a9237 100644
--- a/src/equation_tree/defaults.py
+++ b/src/equation_tree/defaults.py
@@ -11,9 +11,17 @@
function_space = DEFAULT_FUNCTION_SPACE
operators_prior = DEFAULT_PRIOR_OPERATORS
functions_prior = DEFAULT_PRIOR_FUNCTIONS
+features_prior = {'constants': 0.5, 'variables': 0.5}
structure_prior_from_depth = structure_prior_from_depth
structure_prior_from_leaves = structure_prior_from_max_depth
+DEFAULT_PRIOR = {
+ 'structures': structure_prior_from_max_depth(6),
+ 'functions': functions_prior,
+ 'operators': operators_prior,
+ 'features': features_prior
+}
+
def is_operator(a):
return a.lower() in operator_space
diff --git a/src/equation_tree/prior.py b/src/equation_tree/prior.py
index df14878..5f8a9a3 100644
--- a/src/equation_tree/prior.py
+++ b/src/equation_tree/prior.py
@@ -23,6 +23,8 @@
DEFAULT_PRIOR_OPERATORS = priors_from_space(DEFAULT_OPERATOR_SPACE)
+
+
def prior_from_space(space):
"""
Uniform prior from a list of strings
diff --git a/src/equation_tree/sample.py b/src/equation_tree/sample.py
index 976227d..cf58355 100644
--- a/src/equation_tree/sample.py
+++ b/src/equation_tree/sample.py
@@ -1,3 +1,4 @@
+import copy
from typing import Dict, List, Optional, Union
from tqdm import tqdm
@@ -19,6 +20,9 @@
from equation_tree.util.priors import priors_from_space
from equation_tree.util.type_check import is_constant_formatted, is_variable_formatted
+from equation_tree.defaults import DEFAULT_PRIOR, structure_prior_from_max_depth, \
+ structure_prior_from_depth
+
PriorType = Union[List, Dict]
MAX_ITER = 10_000
@@ -29,8 +33,21 @@ def sample_fast(n, prior, tree_depth, max_num_variables, file=None):
return sample_trees_fast(n, adjusted_prior, tree_depth, max_num_variables)
-def sample(n, prior, max_num_variables, file=None):
- adjusted_prior = load(prior, max_num_variables, file)
+def sample(n=1,
+ prior=DEFAULT_PRIOR,
+ max_num_variables=1,
+ file=None,
+ max_depth=None,
+ depth=None):
+ _prior = copy.deepcopy(prior)
+ if max_depth is not None and depth is not None:
+ raise Exception("Both depth and max depth are defined. Please only define one of both")
+ elif max_depth is not None:
+ _prior['structures'] = structure_prior_from_max_depth(max_depth)
+ elif depth is not None:
+ _prior['structures'] = structure_prior_from_depth(depth)
+
+ adjusted_prior = load(_prior, max_num_variables, file)
return sample_trees(n, adjusted_prior, max_num_variables)
diff --git a/src/equation_tree/src/__init__.py b/src/equation_tree/src/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/src/equation_tree/tree.py b/src/equation_tree/tree.py
index 6b0dfde..6e4e8f5 100644
--- a/src/equation_tree/tree.py
+++ b/src/equation_tree/tree.py
@@ -186,6 +186,9 @@ def __init__(self, node: TreeNode):
self._build()
+ def __repr__(self):
+ return str(self.sympy_expr)
+
@classmethod
def from_prefix(
cls,
@@ -350,6 +353,8 @@ def from_prior(cls, prior: Dict, max_variables_unique: int):
root = sample_tree_full(prior, max_variables_unique)
return cls(root)
+
+
@classmethod
def from_priors(
cls,
@@ -625,6 +630,14 @@ def has_valid_value(self):
ev = self.evaluation[0, :]
return np.any(np.isfinite(ev) & ~np.isnan(ev))
+ @property
+ def depth(self):
+ return max(self.structure)
+
+ @property
+ def n_nodes(self):
+ return len(self.structure)
+
@property
def info(self):
"""
diff --git a/src/equation_tree/util/__init__.py b/src/equation_tree/util/__init__.py
new file mode 100644
index 0000000..e69de29